ETH Price: $2,988.76 (-2.29%)
Gas: 1 Gwei

Token

The Meta Art Club (TMAC)
 

Overview

Max Total Supply

398 TMAC

Holders

132

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TMAC
0x5739435229d163d165b9ebc0a61895e73d15250f
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:
TMAC

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : TMAC.sol
// SPDX-License-Identifier: MIT

/*
#     #                           #                     #####                       
##   ## ###### #####   ##        # #   #####  #####    #     # #      #    # #####  
# # # # #        #    #  #      #   #  #    #   #      #       #      #    # #    # 
#  #  # #####    #   #    #    #     # #    #   #      #       #      #    # #####  
#     # #        #   ######    ####### #####    #      #       #      #    # #    # 
#     # #        #   #    #    #     # #   #    #      #     # #      #    # #    # 
#     # ######   #   #    #    #     # #    #   #       #####  ######  ####  #####  
                                                                                    

*/

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './lib/TieredTokensWithDistributor.sol';

contract TMAC is TieredTokensWithDistributor, Ownable, ReentrancyGuard, ERC721Enumerable {
    string public provenance;
    string private _baseURIextended;
    bool public saleActive = false;

    uint256 public immutable tier0MaxAllowListMint;
    uint256 public immutable tier0MaxPublicMint;
    uint256 public immutable tier0PricePerToken;
    uint256 public immutable tier1MaxAllowListMint;
    uint256 public immutable tier1MaxPublicMint;
    uint256 public immutable tier1PricePerToken;

    uint256 public immutable maxSupply;
    address public immutable shareholderAddress;

    constructor(
        address shareholderAddress_,
        uint256[] memory tierSupply,
        uint256[] memory maxAllowListMint,
        uint256[] memory maxPublicMint,
        uint256[] memory pricePerToken
    ) ERC721("The Meta Art Club", "TMAC") TieredTokensWithDistributor(tierSupply) {
        require(shareholderAddress_ != address(0));
        require(tierSupply.length == 2, 'Invalid tier supply length');
        require(maxAllowListMint.length == 2, 'Invalid max allow list mint length');
        require(maxPublicMint.length == 2, 'Invalid max public mint length');
        require(pricePerToken.length == 2, 'Invalid price per token length');

        // set shareholder address
        shareholderAddress = shareholderAddress_;

        // calculate total supply
        uint256 supply = 0;

        for (uint256 index = 0; index < tierSupply.length; index++) {
            supply += tierSupply[index];
        }

        maxSupply = supply;

        // assign constants
        tier0MaxAllowListMint = maxAllowListMint[0];
        tier0MaxPublicMint = maxPublicMint[0];
        tier0PricePerToken = pricePerToken[0];
        tier1MaxAllowListMint = maxAllowListMint[1];
        tier1MaxPublicMint = maxPublicMint[1];
        tier1PricePerToken = pricePerToken[1];
    }

    /**
     * @dev throws when sale is not active
     */
    modifier isSaleActive() {
        require(saleActive, 'Public sale is not active');
        _;
    }

    /**
     * tokens
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance_) public onlyOwner {
        provenance = provenance_;
    }

    function setSaleActive(bool saleActive_) public onlyOwner {
        saleActive = saleActive_;
    }

    /**
     * allow list
     */
    function setAllowListActive(bool allowListActive) external onlyOwner {
        _setAllowListActive(allowListActive);
    }

    function setAllowList(bytes32 merkleRoot) external onlyOwner {
        _setAllowList(merkleRoot);
    }

    function _mintTieredToken(uint256 tierId, uint256 numberOfTokens) internal canMintInTier(tierId, numberOfTokens) {
        uint256 ts = _getTokenIndexInTier(tierId);

        _incrementTokensInTier(tierId, numberOfTokens);

        for (uint256 index = 0; index < numberOfTokens; index++) {
            _safeMint(msg.sender, ts + index);
        }
    }

    function reserve(uint256 tierId, uint256 numberOfTokens) public onlyOwner {
        _mintTieredToken(tierId, numberOfTokens);
    }

    /**
     * public
     */
    function _mintAllowList(
        uint256 tierId,
        uint256 numberOfTokens,
        uint256 tierTokenLimit,
        bytes32[] memory merkleProof
    ) internal isAllowListActive withinTierLimitForAddress(msg.sender, tierId, numberOfTokens, tierTokenLimit) {
        _claim(msg.sender, tierId, numberOfTokens, merkleProof);

        _mintTieredToken(tierId, numberOfTokens);
    }

    function mintAllowListTier0(uint256 numberOfTokens, bytes32[] memory merkleProof) external payable nonReentrant {
        require(tier0PricePerToken * numberOfTokens <= msg.value, 'Ether value sent is not correct');

        _mintAllowList(0, numberOfTokens, tier0MaxAllowListMint, merkleProof);
    }

    function mintAllowListTier1(uint256 numberOfTokens, bytes32[] memory merkleProof) external payable nonReentrant {
        require(tier1PricePerToken * numberOfTokens <= msg.value, 'Ether value sent is not correct');
        _mintAllowList(1, numberOfTokens, tier1MaxAllowListMint, merkleProof);
    }

    function mintTier0(uint256 numberOfTokens) external payable nonReentrant isSaleActive {
        require(tier0PricePerToken * numberOfTokens <= msg.value, 'Ether value sent is not correct');
        require(numberOfTokens <= tier0MaxPublicMint, 'Number of tokens exceeds limit');

        _mintTieredToken(0, numberOfTokens);
    }

    function mintTier1(uint256 numberOfTokens) external payable nonReentrant isSaleActive {
        require(tier1PricePerToken * numberOfTokens <= msg.value, 'Ether value sent is not correct');
        require(numberOfTokens <= tier1MaxPublicMint, 'Number of tokens exceeds limit');

        _mintTieredToken(1, numberOfTokens);
    }

    function numberAvailableToMint(
        uint256 tierId,
        address claimer,
        bytes32[] memory merkleProof
    ) external view returns (uint256) {
        if (onAllowList(claimer, merkleProof)) {
            if (tierId == 0) {
                return tier0MaxAllowListMint - numberMintedInTier(tierId, claimer);
            } else if (tierId == 1) {
                return tier1MaxAllowListMint - numberMintedInTier(tierId, claimer);
            }

            return 0;
        }

        return 0;
    }

    /**
     * withdraw
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(shareholderAddress).transfer(balance);
    }
}

File 2 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 16 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 16 : TieredTokensWithDistributor.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

abstract contract TieredTokensWithDistributor {
    struct TierConfig {
        uint256 minIndexInclusive;
        uint256 index;
        uint256 maxIndexExclusive;
        mapping(address => uint256) allowListNumberMinted;
    }

    bytes32 private _merkleRoot;
    bool public allowListActive;

    uint256 public immutable numberOfTiers;
    mapping(uint256 => TierConfig) private _tiers;

    /**
     * @dev initialize tiered tokens structure with an array of integers
     */
    constructor(uint256[] memory maximumSupplyPerTier) {
        require(maximumSupplyPerTier.length > 0, 'Tiers cannot be empty');

        numberOfTiers = maximumSupplyPerTier.length;

        uint256 tierStartIndex = 0;
        for (uint256 i = 0; i < maximumSupplyPerTier.length; i++) {
            TierConfig storage tier = _tiers[i];
            tier.minIndexInclusive = tierStartIndex;
            tier.index = tierStartIndex;
            tier.maxIndexExclusive = tierStartIndex + maximumSupplyPerTier[i];

            tierStartIndex += maximumSupplyPerTier[i];
        }
    }

    /**
     * @dev emitted when an account has claimed some tokens
     */
    event Claimed(address indexed account, uint256 tierId, uint256 amount);

    /**
     * @dev emitted when the merkle root has changed
     */
    event MerkleRootChanged(bytes32 merkleRoot);

    /**
     * @dev throws when the tier does not exist
     */
    modifier tierExists(uint256 tierId) {
        require(tierId < numberOfTiers, 'Tier does not exist');
        _;
    }

    /**
     * @dev throws when allow list is not active
     */
    modifier isAllowListActive() {
        require(allowListActive, 'Allow list is not active');
        _;
    }

    /**
     * @dev throws when amount to purchase exceeds the capacity
     */
    modifier withinTierLimitForAddress(
        address from,
        uint256 tierId,
        uint256 numberOfTokens,
        uint256 limit
    ) {
        require(
            _tiers[tierId].allowListNumberMinted[from] + numberOfTokens <= limit,
            'Purchase would exceed token limit for address'
        );
        _;
    }

    /**
     * @dev throws when number of tokens exceeds tier supply
     */
    modifier canMintInTier(uint256 tierId, uint256 numberOfTokens) {
        require(
            (_tiers[tierId].index + numberOfTokens) <= _tiers[tierId].maxIndexExclusive,
            'Purchase would exceed maximum supply for tier'
        );
        _;
    }

    /**
     * allow list functions
     */

    /**
     * @dev sets the state of the allow list
     */
    function _setAllowListActive(bool allowListActive_) internal virtual {
        allowListActive = allowListActive_;
    }

    /**
     * @dev sets the merkle root
     */
    function _setAllowList(bytes32 merkleRoot_) internal virtual {
        _merkleRoot = merkleRoot_;

        emit MerkleRootChanged(_merkleRoot);
    }

    /**
     * @dev checks if the claimer has a valid proof
     */
    function onAllowList(address claimer, bytes32[] memory proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(claimer));
        return MerkleProof.verify(proof, _merkleRoot, leaf);
    }

    /**
     * tiered tokens functions
     */

    /**
     * @dev increments the number of tokens in the tier
     */
    function _incrementTokensInTier(uint256 tierId, uint256 numberOfTokens) internal virtual tierExists(tierId) {
        _tiers[tierId].index += numberOfTokens;
    }

    /**
     * @dev returns the current tokens index for the tier
     */
    function _getTokenIndexInTier(uint256 tierId) internal view virtual tierExists(tierId) returns (uint256) {
        return _tiers[tierId].index;
    }

    /**
     * @dev returns the tokens minted for the tier
     */
    function getTotalMintedInTier(uint256 tierId) external view tierExists(tierId) returns (uint256) {
        return _tiers[tierId].index - _tiers[tierId].minIndexInclusive;
    }

    /**
     * @dev returns number of tokens left in the tier
     */
    function getTierSupply(uint256 tierId) external view tierExists(tierId) returns (uint256) {
        return _tiers[tierId].maxIndexExclusive - _tiers[tierId].index;
    }

    /**
     * @dev get total minted (does not take into account burned tokens)
     */
    function totalMinted() external view returns (uint256) {
        uint256 minted = 0;

        for (uint256 tierIndex = 0; tierIndex < numberOfTiers; tierIndex++) {
            minted += _tiers[tierIndex].index - _tiers[tierIndex].minIndexInclusive;
        }

        return minted;
    }

    /**
     * @dev get available to mint in tier
     */
    function numberMintedInTier(uint256 tierId, address from) public view tierExists(tierId) returns (uint256) {
        return _tiers[tierId].allowListNumberMinted[from];
    }


    /**
     * @dev claims a token in a tier
     */
    function _claim(
        address to,
        uint256 tierId,
        uint256 numberOfTokens,
        bytes32[] memory proof
    ) internal virtual tierExists(tierId) {
        require(onAllowList(to, proof), 'Not on allow list');

        _tiers[tierId].allowListNumberMinted[to] += numberOfTokens;

        emit Claimed(to, tierId, numberOfTokens);
    }
}

File 6 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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 {}
}

File 7 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 tokenId);

    /**
     * @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 8 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

File 9 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 11 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 16 : Context.sol
// SPDX-License-Identifier: MIT

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 13 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }
}

File 14 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

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 15 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

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);
}

File 16 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"shareholderAddress_","type":"address"},{"internalType":"uint256[]","name":"tierSupply","type":"uint256[]"},{"internalType":"uint256[]","name":"maxAllowListMint","type":"uint256[]"},{"internalType":"uint256[]","name":"maxPublicMint","type":"uint256[]"},{"internalType":"uint256[]","name":"pricePerToken","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"tierId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","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":[],"name":"allowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tierId","type":"uint256"}],"name":"getTierSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tierId","type":"uint256"}],"name":"getTotalMintedInTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintAllowListTier0","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintAllowListTier1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTier0","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTier1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tierId","type":"uint256"},{"internalType":"address","name":"claimer","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"numberAvailableToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tierId","type":"uint256"},{"internalType":"address","name":"from","type":"address"}],"name":"numberMintedInTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tierId","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowListActive","type":"bool"}],"name":"setAllowListActive","outputs":[],"stateMutability":"nonpayable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance_","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleActive_","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareholderAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"tier0MaxAllowListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier0MaxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier0PricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier1MaxAllowListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier1MaxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier1PricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101a06040526000601160006101000a81548160ff0219169083151502179055503480156200002d57600080fd5b50604051620066fe380380620066fe833981810160405281019062000053919062000754565b6040518060400160405280601181526020017f546865204d6574612041727420436c75620000000000000000000000000000008152506040518060400160405280600481526020017f544d41430000000000000000000000000000000000000000000000000000000081525085600081511162000107576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fe906200093d565b60405180910390fd5b8051608081815250506000805b8251811015620001be5760006002600083815260200190815260200160002090508281600001819055508281600101819055508382815181106200015d576200015c62000be1565b5b60200260200101518362000172919062000a2e565b816002018190555083828151811062000190576200018f62000be1565b5b602002602001015183620001a5919062000a2e565b9250508080620001b59062000b35565b91505062000114565b505050620001e1620001d5620004fa60201b60201c565b6200050260201b60201c565b6001600481905550816005908051906020019062000201929190620005c8565b5080600690805190602001906200021a929190620005c8565b505050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200025857600080fd5b60028451146200029f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029690620009a3565b60405180910390fd5b6002835114620002e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dd9062000981565b60405180910390fd5b60028251146200032d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000324906200095f565b60405180910390fd5b600281511462000374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036b906200091b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166101808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506000805b8551811015620003fd57858181518110620003d057620003cf62000be1565b5b602002602001015182620003e5919062000a2e565b91508080620003f49062000b35565b915050620003b0565b50806101608181525050836000815181106200041e576200041d62000be1565b5b602002602001015160a081815250508260008151811062000444576200044362000be1565b5b602002602001015160c08181525050816000815181106200046a576200046962000be1565b5b602002602001015160e081815250508360018151811062000490576200048f62000be1565b5b6020026020010151610100818152505082600181518110620004b757620004b662000be1565b5b6020026020010151610120818152505081600181518110620004de57620004dd62000be1565b5b6020026020010151610140818152505050505050505062000d8b565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005d69062000ac9565b90600052602060002090601f016020900481019282620005fa576000855562000646565b82601f106200061557805160ff191683800117855562000646565b8280016001018555821562000646579182015b828111156200064557825182559160200191906001019062000628565b5b50905062000655919062000659565b5090565b5b80821115620006745760008160009055506001016200065a565b5090565b60006200068f6200068984620009ee565b620009c5565b90508083825260208201905082856020860282011115620006b557620006b462000c44565b5b60005b85811015620006e95781620006ce88826200073d565b845260208401935060208301925050600181019050620006b8565b5050509392505050565b600081519050620007048162000d57565b92915050565b600082601f83011262000722576200072162000c3f565b5b81516200073484826020860162000678565b91505092915050565b6000815190506200074e8162000d71565b92915050565b600080600080600060a0868803121562000773576200077262000c4e565b5b60006200078388828901620006f3565b955050602086015167ffffffffffffffff811115620007a757620007a662000c49565b5b620007b5888289016200070a565b945050604086015167ffffffffffffffff811115620007d957620007d862000c49565b5b620007e7888289016200070a565b935050606086015167ffffffffffffffff8111156200080b576200080a62000c49565b5b62000819888289016200070a565b925050608086015167ffffffffffffffff8111156200083d576200083c62000c49565b5b6200084b888289016200070a565b9150509295509295909350565b600062000867601e8362000a1d565b9150620008748262000c64565b602082019050919050565b60006200088e60158362000a1d565b91506200089b8262000c8d565b602082019050919050565b6000620008b5601e8362000a1d565b9150620008c28262000cb6565b602082019050919050565b6000620008dc60228362000a1d565b9150620008e98262000cdf565b604082019050919050565b600062000903601a8362000a1d565b9150620009108262000d2e565b602082019050919050565b60006020820190508181036000830152620009368162000858565b9050919050565b6000602082019050818103600083015262000958816200087f565b9050919050565b600060208201905081810360008301526200097a81620008a6565b9050919050565b600060208201905081810360008301526200099c81620008cd565b9050919050565b60006020820190508181036000830152620009be81620008f4565b9050919050565b6000620009d1620009e4565b9050620009df828262000aff565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a0c5762000a0b62000c10565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000a3b8262000abf565b915062000a488362000abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a805762000a7f62000b83565b5b828201905092915050565b600062000a988262000a9f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000ae257607f821691505b6020821081141562000af95762000af862000bb2565b5b50919050565b62000b0a8262000c53565b810181811067ffffffffffffffff8211171562000b2c5762000b2b62000c10565b5b80604052505050565b600062000b428262000abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b785762000b7762000b83565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c69642070726963652070657220746f6b656e206c656e6774680000600082015250565b7f54696572732063616e6e6f7420626520656d7074790000000000000000000000600082015250565b7f496e76616c6964206d6178207075626c6963206d696e74206c656e6774680000600082015250565b7f496e76616c6964206d617820616c6c6f77206c697374206d696e74206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207469657220737570706c79206c656e677468000000000000600082015250565b62000d628162000a8b565b811462000d6e57600080fd5b50565b62000d7c8162000abf565b811462000d8857600080fd5b50565b60805160a05160c05160e051610100516101205161014051610160516101805160601c61588162000e7d600039600081816114b20152611b880152600061225d01526000818161159f01528181612009015261240d015260008181610f440152612075015260008181611362015281816116110152612239015260008181610bb601528181611ea10152612431015260008181610c22015261164401526000818161131d01528181611f130152611f460152600081816110f001528181611195015281816118340152818161199b01528181611dc901528181613044015281816130c601526132f701526158816000f3fe6080604052600436106102925760003560e01c80636e27a2e51161015a578063afbefa01116100c1578063d5abeb011161007a578063d5abeb0114610a05578063e985e9c514610a30578063f2fde38b14610a6d578063f9435c1214610a96578063fcd298e714610ac1578063ffe630b514610aec57610292565b8063afbefa01146108f0578063b004e8a91461091b578063b32c568014610937578063b88d4fde14610974578063c87b56dd1461099d578063ccb8338e146109da57610292565b80638da5cb5b116101135780638da5cb5b146107ff578063943d40e71461082a57806395d89b4114610855578063a22cb46514610880578063a2309ff8146108a9578063a3684354146108d457610292565b80636e27a2e5146106f157806370a082311461071c578063715018a614610759578063781c5bde14610770578063841718a6146107ad57806384584d07146107d657610292565b80632f745c59116101fe57806347e495d5116101b757806347e495d5146105dc5780634a9d6f34146105f85780634f6ccce71461062357806355f804b3146106605780636352211e1461068957806368428a1b146106c657610292565b80632f745c59146104ce57806331f9c5f41461050b5780633a73c58d146105485780633ccfd60b1461057157806342842e0e14610588578063457dbf21146105b157610292565b80630f7309e8116102505780630f7309e8146103ac57806318160ddd146103d757806323b872dd14610402578063244282211461042b57806325555cd61461045457806327a1ab5b1461049157610292565b806215fcb91461029757806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b3146103585780630dc4f83814610381575b600080fd5b6102b160048036038101906102ac91906140fa565b610b15565b005b3480156102bf57600080fd5b506102da60048036038101906102d59190614057565b610c99565b6040516102e79190614802565b60405180910390f35b3480156102fc57600080fd5b50610305610d13565b6040516103129190614838565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906140fa565b610da5565b60405161034f919061479b565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613fbd565b610e2a565b005b34801561038d57600080fd5b50610396610f42565b6040516103a39190614bba565b60405180910390f35b3480156103b857600080fd5b506103c1610f66565b6040516103ce9190614838565b60405180910390f35b3480156103e357600080fd5b506103ec610ff4565b6040516103f99190614bba565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613e4b565b611001565b005b34801561043757600080fd5b50610452600480360381019061044d9190614232565b611061565b005b34801561046057600080fd5b5061047b600480360381019061047691906140fa565b6110eb565b6040516104889190614bba565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190614127565b611190565b6040516104c59190614bba565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613fbd565b611252565b6040516105029190614bba565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190614167565b6112f7565b60405161053f9190614bba565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190613ffd565b6113a7565b005b34801561057d57600080fd5b5061058661142f565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613e4b565b61151a565b005b3480156105bd57600080fd5b506105c661153a565b6040516105d39190614802565b60405180910390f35b6105f660048036038101906105f191906141d6565b61154d565b005b34801561060457600080fd5b5061060d611642565b60405161061a9190614bba565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906140fa565b611666565b6040516106579190614bba565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906140b1565b6116d7565b005b34801561069557600080fd5b506106b060048036038101906106ab91906140fa565b61176d565b6040516106bd919061479b565b60405180910390f35b3480156106d257600080fd5b506106db61181f565b6040516106e89190614802565b60405180910390f35b3480156106fd57600080fd5b50610706611832565b6040516107139190614bba565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613dde565b611856565b6040516107509190614bba565b60405180910390f35b34801561076557600080fd5b5061076e61190e565b005b34801561077c57600080fd5b50610797600480360381019061079291906140fa565b611996565b6040516107a49190614bba565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613ffd565b611a3b565b005b3480156107e257600080fd5b506107fd60048036038101906107f8919061402a565b611ad4565b005b34801561080b57600080fd5b50610814611b5c565b604051610821919061479b565b60405180910390f35b34801561083657600080fd5b5061083f611b86565b60405161084c919061479b565b60405180910390f35b34801561086157600080fd5b5061086a611baa565b6040516108779190614838565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613f7d565b611c3c565b005b3480156108b557600080fd5b506108be611dbd565b6040516108cb9190614bba565b60405180910390f35b6108ee60048036038101906108e991906141d6565b611e4f565b005b3480156108fc57600080fd5b50610905611f44565b6040516109129190614bba565b60405180910390f35b610935600480360381019061093091906140fa565b611f68565b005b34801561094357600080fd5b5061095e60048036038101906109599190613f21565b6120ec565b60405161096b9190614802565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190613e9e565b61212e565b005b3480156109a957600080fd5b506109c460048036038101906109bf91906140fa565b612190565b6040516109d19190614838565b60405180910390f35b3480156109e657600080fd5b506109ef612237565b6040516109fc9190614bba565b60405180910390f35b348015610a1157600080fd5b50610a1a61225b565b604051610a279190614bba565b60405180910390f35b348015610a3c57600080fd5b50610a576004803603810190610a529190613e0b565b61227f565b604051610a649190614802565b60405180910390f35b348015610a7957600080fd5b50610a946004803603810190610a8f9190613dde565b612313565b005b348015610aa257600080fd5b50610aab61240b565b604051610ab89190614bba565b60405180910390f35b348015610acd57600080fd5b50610ad661242f565b604051610ae39190614bba565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e91906140b1565b612453565b005b60026004541415610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290614b9a565b60405180910390fd5b6002600481905550601160009054906101000a900460ff16610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba9906149fa565b60405180910390fd5b34817f0000000000000000000000000000000000000000000000000000000000000000610bdf9190614d7b565b1115610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c179061493a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000811115610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90614a7a565b60405180910390fd5b610c8e6000826124e9565b600160048190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d0c5750610d0b826125b7565b5b9050919050565b606060058054610d2290614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90614ec9565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b6000610db082612699565b610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690614a5a565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e358261176d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90614b1a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec5612705565b73ffffffffffffffffffffffffffffffffffffffff161480610ef45750610ef381610eee612705565b61227f565b5b610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a9061499a565b60405180910390fd5b610f3d838361270d565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f8054610f7390614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9f90614ec9565b8015610fec5780601f10610fc157610100808354040283529160200191610fec565b820191906000526020600020905b815481529060010190602001808311610fcf57829003601f168201915b505050505081565b6000600d80549050905090565b61101261100c612705565b826127c6565b611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890614b3a565b60405180910390fd5b61105c8383836128a4565b505050565b611069612705565b73ffffffffffffffffffffffffffffffffffffffff16611087611b5c565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490614a9a565b60405180910390fd5b6110e782826124e9565b5050565b6000817f00000000000000000000000000000000000000000000000000000000000000008110611150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111479061495a565b60405180910390fd5b600260008481526020019081526020016000206000015460026000858152602001908152602001600020600101546111889190614dd5565b915050919050565b6000827f000000000000000000000000000000000000000000000000000000000000000081106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec9061495a565b60405180910390fd5b6002600085815260200190815260200160002060030160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491505092915050565b600061125d83611856565b821061129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112959061485a565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061130383836120ec565b1561139b57600084141561134d5761131b8484611190565b7f00000000000000000000000000000000000000000000000000000000000000006113469190614dd5565b90506113a0565b6001841415611392576113608484611190565b7f000000000000000000000000000000000000000000000000000000000000000061138b9190614dd5565b90506113a0565b600090506113a0565b600090505b9392505050565b6113af612705565b73ffffffffffffffffffffffffffffffffffffffff166113cd611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90614a9a565b60405180910390fd5b61142c81612b00565b50565b611437612705565b73ffffffffffffffffffffffffffffffffffffffff16611455611b5c565b73ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290614a9a565b60405180910390fd5b60004790507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611516573d6000803e3d6000fd5b5050565b6115358383836040518060200160405280600081525061212e565b505050565b600160009054906101000a900460ff1681565b60026004541415611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614b9a565b60405180910390fd5b600260048190555034827f00000000000000000000000000000000000000000000000000000000000000006115c89190614d7b565b1115611609576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116009061493a565b60405180910390fd5b6116366001837f000000000000000000000000000000000000000000000000000000000000000084612b1d565b60016004819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000611670610ff4565b82106116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890614b5a565b60405180910390fd5b600d82815481106116c5576116c4615090565b5b90600052602060002001549050919050565b6116df612705565b73ffffffffffffffffffffffffffffffffffffffff166116fd611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614a9a565b60405180910390fd5b8060109080519060200190611769929190613b3f565b5050565b6000806007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d906149da565b60405180910390fd5b80915050919050565b601160009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906149ba565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611916612705565b73ffffffffffffffffffffffffffffffffffffffff16611934611b5c565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614a9a565b60405180910390fd5b6119946000612c31565b565b6000817f000000000000000000000000000000000000000000000000000000000000000081106119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f29061495a565b60405180910390fd5b60026000848152602001908152602001600020600101546002600085815260200190815260200160002060020154611a339190614dd5565b915050919050565b611a43612705565b73ffffffffffffffffffffffffffffffffffffffff16611a61611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90614a9a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611adc612705565b73ffffffffffffffffffffffffffffffffffffffff16611afa611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614a9a565b60405180910390fd5b611b5981612cf7565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b606060068054611bb990614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054611be590614ec9565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b5050505050905090565b611c44612705565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca99061491a565b60405180910390fd5b80600a6000611cbf612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d6c612705565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611db19190614802565b60405180910390a35050565b6000806000905060005b7f0000000000000000000000000000000000000000000000000000000000000000811015611e475760026000828152602001908152602001600020600001546002600083815260200190815260200160002060010154611e279190614dd5565b82611e329190614cf4565b91508080611e3f90614f2c565b915050611dc7565b508091505090565b60026004541415611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90614b9a565b60405180910390fd5b600260048190555034827f0000000000000000000000000000000000000000000000000000000000000000611eca9190614d7b565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f029061493a565b60405180910390fd5b611f386000837f000000000000000000000000000000000000000000000000000000000000000084612b1d565b60016004819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60026004541415611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590614b9a565b60405180910390fd5b6002600481905550601160009054906101000a900460ff16612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc906149fa565b60405180910390fd5b34817f00000000000000000000000000000000000000000000000000000000000000006120329190614d7b565b1115612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a9061493a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008111156120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90614a7a565b60405180910390fd5b6120e16001826124e9565b600160048190555050565b600080836040516020016121009190614730565b6040516020818303038152906040528051906020012090506121258360005483612d3a565b91505092915050565b61213f612139612705565b836127c6565b61217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590614b3a565b60405180910390fd5b61218a84848484612df0565b50505050565b606061219b82612699565b6121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190614ada565b60405180910390fd5b60006121e4612e4c565b90506000815111612204576040518060200160405280600081525061222f565b8061220e84612ede565b60405160200161221f929190614777565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61231b612705565b73ffffffffffffffffffffffffffffffffffffffff16612339611b5c565b73ffffffffffffffffffffffffffffffffffffffff161461238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614a9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f6906148ba565b60405180910390fd5b61240881612c31565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b61245b612705565b73ffffffffffffffffffffffffffffffffffffffff16612479611b5c565b73ffffffffffffffffffffffffffffffffffffffff16146124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690614a9a565b60405180910390fd5b80600f90805190602001906124e5929190613b3f565b5050565b818160026000838152602001908152602001600020600201548160026000858152602001908152602001600020600101546125249190614cf4565b1115612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614afa565b60405180910390fd5b60006125708561303f565b905061257c85856130c3565b60005b848110156125af5761259c3382846125979190614cf4565b613158565b80806125a790614f2c565b91505061257f565b505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061268257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612692575061269182613176565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127808361176d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127d182612699565b612810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128079061497a565b60405180910390fd5b600061281b8361176d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061288a57508373ffffffffffffffffffffffffffffffffffffffff1661287284610da5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061289b575061289a818561227f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128c48261176d565b73ffffffffffffffffffffffffffffffffffffffff161461291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614aba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561298a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612981906148fa565b60405180910390fd5b6129958383836131e0565b6129a060008261270d565b6001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f09190614dd5565b925050819055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a479190614cf4565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600160006101000a81548160ff02191690831515021790555050565b600160009054906101000a900460ff16612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6390614b7a565b60405180910390fd5b3384848480826002600086815260200190815260200160002060030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09190614cf4565b1115612c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0890614a1a565b60405180910390fd5b612c1d338989886132f4565b612c2788886124e9565b5050505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806000819055507f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c600054604051612d2f919061481d565b60405180910390a150565b60008082905060005b8551811015612de2576000868281518110612d6157612d60615090565b5b60200260200101519050808311612da2578281604051602001612d8592919061474b565b604051602081830303815290604052805190602001209250612dce565b8083604051602001612db592919061474b565b6040516020818303038152906040528051906020012092505b508080612dda90614f2c565b915050612d43565b508381149150509392505050565b612dfb8484846128a4565b612e0784848484613461565b612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d9061487a565b60405180910390fd5b50505050565b606060108054612e5b90614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8790614ec9565b8015612ed45780601f10612ea957610100808354040283529160200191612ed4565b820191906000526020600020905b815481529060010190602001808311612eb757829003601f168201915b5050505050905090565b60606000821415612f26576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061303a565b600082905060005b60008214612f58578080612f4190614f2c565b915050600a82612f519190614d4a565b9150612f2e565b60008167ffffffffffffffff811115612f7457612f736150bf565b5b6040519080825280601f01601f191660200182016040528015612fa65781602001600182028036833780820191505090505b5090505b6000851461303357600182612fbf9190614dd5565b9150600a85612fce9190614fa3565b6030612fda9190614cf4565b60f81b818381518110612ff057612fef615090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561302c9190614d4a565b9450612faa565b8093505050505b919050565b6000817f000000000000000000000000000000000000000000000000000000000000000081106130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b9061495a565b60405180910390fd5b6002600084815260200190815260200160002060010154915050919050565b817f00000000000000000000000000000000000000000000000000000000000000008110613126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311d9061495a565b60405180910390fd5b8160026000858152602001908152602001600020600101600082825461314c9190614cf4565b92505081905550505050565b6131728282604051806020016040528060008152506135f8565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131eb838383613653565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561322e5761322981613658565b61326d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461326c5761326b83826136a1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132b0576132ab8161380e565b6132ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132ee576132ed82826138df565b5b5b505050565b827f00000000000000000000000000000000000000000000000000000000000000008110613357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334e9061495a565b60405180910390fd5b61336185836120ec565b6133a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133979061489a565b60405180910390fd5b826002600086815260200190815260200160002060030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134039190614cf4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff167f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a8585604051613452929190614bd5565b60405180910390a25050505050565b60006134828473ffffffffffffffffffffffffffffffffffffffff1661395e565b156135eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134ab612705565b8786866040518563ffffffff1660e01b81526004016134cd94939291906147b6565b602060405180830381600087803b1580156134e757600080fd5b505af192505050801561351857506040513d601f19601f820116820180604052508101906135159190614084565b60015b61359b573d8060008114613548576040519150601f19603f3d011682016040523d82523d6000602084013e61354d565b606091505b50600081511415613593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358a9061487a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135f0565b600190505b949350505050565b6136028383613971565b61360f6000848484613461565b61364e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136459061487a565b60405180910390fd5b505050565b505050565b600d80549050600e600083815260200190815260200160002081905550600d81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136ae84611856565b6136b89190614dd5565b90506000600c600084815260200190815260200160002054905081811461379d576000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600c600083815260200190815260200160002081905550505b600c600084815260200190815260200160002060009055600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600d805490506138229190614dd5565b90506000600e60008481526020019081526020016000205490506000600d838154811061385257613851615090565b5b9060005260206000200154905080600d838154811061387457613873615090565b5b906000526020600020018190555081600e600083815260200190815260200160002081905550600e600085815260200190815260200160002060009055600d8054806138c3576138c2615061565b5b6001900381819060005260206000200160009055905550505050565b60006138ea83611856565b905081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600c600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d890614a3a565b60405180910390fd5b6139ea81612699565b15613a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a21906148da565b60405180910390fd5b613a36600083836131e0565b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a869190614cf4565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b4b90614ec9565b90600052602060002090601f016020900481019282613b6d5760008555613bb4565b82601f10613b8657805160ff1916838001178555613bb4565b82800160010185558215613bb4579182015b82811115613bb3578251825591602001919060010190613b98565b5b509050613bc19190613bc5565b5090565b5b80821115613bde576000816000905550600101613bc6565b5090565b6000613bf5613bf084614c23565b614bfe565b90508083825260208201905082856020860282011115613c1857613c176150f3565b5b60005b85811015613c485781613c2e8882613d2e565b845260208401935060208301925050600181019050613c1b565b5050509392505050565b6000613c65613c6084614c4f565b614bfe565b905082815260208101848484011115613c8157613c806150f8565b5b613c8c848285614e87565b509392505050565b6000613ca7613ca284614c80565b614bfe565b905082815260208101848484011115613cc357613cc26150f8565b5b613cce848285614e87565b509392505050565b600081359050613ce5816157d8565b92915050565b600082601f830112613d0057613cff6150ee565b5b8135613d10848260208601613be2565b91505092915050565b600081359050613d28816157ef565b92915050565b600081359050613d3d81615806565b92915050565b600081359050613d528161581d565b92915050565b600081519050613d678161581d565b92915050565b600082601f830112613d8257613d816150ee565b5b8135613d92848260208601613c52565b91505092915050565b600082601f830112613db057613daf6150ee565b5b8135613dc0848260208601613c94565b91505092915050565b600081359050613dd881615834565b92915050565b600060208284031215613df457613df3615102565b5b6000613e0284828501613cd6565b91505092915050565b60008060408385031215613e2257613e21615102565b5b6000613e3085828601613cd6565b9250506020613e4185828601613cd6565b9150509250929050565b600080600060608486031215613e6457613e63615102565b5b6000613e7286828701613cd6565b9350506020613e8386828701613cd6565b9250506040613e9486828701613dc9565b9150509250925092565b60008060008060808587031215613eb857613eb7615102565b5b6000613ec687828801613cd6565b9450506020613ed787828801613cd6565b9350506040613ee887828801613dc9565b925050606085013567ffffffffffffffff811115613f0957613f086150fd565b5b613f1587828801613d6d565b91505092959194509250565b60008060408385031215613f3857613f37615102565b5b6000613f4685828601613cd6565b925050602083013567ffffffffffffffff811115613f6757613f666150fd565b5b613f7385828601613ceb565b9150509250929050565b60008060408385031215613f9457613f93615102565b5b6000613fa285828601613cd6565b9250506020613fb385828601613d19565b9150509250929050565b60008060408385031215613fd457613fd3615102565b5b6000613fe285828601613cd6565b9250506020613ff385828601613dc9565b9150509250929050565b60006020828403121561401357614012615102565b5b600061402184828501613d19565b91505092915050565b6000602082840312156140405761403f615102565b5b600061404e84828501613d2e565b91505092915050565b60006020828403121561406d5761406c615102565b5b600061407b84828501613d43565b91505092915050565b60006020828403121561409a57614099615102565b5b60006140a884828501613d58565b91505092915050565b6000602082840312156140c7576140c6615102565b5b600082013567ffffffffffffffff8111156140e5576140e46150fd565b5b6140f184828501613d9b565b91505092915050565b6000602082840312156141105761410f615102565b5b600061411e84828501613dc9565b91505092915050565b6000806040838503121561413e5761413d615102565b5b600061414c85828601613dc9565b925050602061415d85828601613cd6565b9150509250929050565b6000806000606084860312156141805761417f615102565b5b600061418e86828701613dc9565b935050602061419f86828701613cd6565b925050604084013567ffffffffffffffff8111156141c0576141bf6150fd565b5b6141cc86828701613ceb565b9150509250925092565b600080604083850312156141ed576141ec615102565b5b60006141fb85828601613dc9565b925050602083013567ffffffffffffffff81111561421c5761421b6150fd565b5b61422885828601613ceb565b9150509250929050565b6000806040838503121561424957614248615102565b5b600061425785828601613dc9565b925050602061426885828601613dc9565b9150509250929050565b61427b81614e09565b82525050565b61429261428d82614e09565b614f75565b82525050565b6142a181614e1b565b82525050565b6142b081614e27565b82525050565b6142c76142c282614e27565b614f87565b82525050565b60006142d882614cb1565b6142e28185614cc7565b93506142f2818560208601614e96565b6142fb81615107565b840191505092915050565b600061431182614cbc565b61431b8185614cd8565b935061432b818560208601614e96565b61433481615107565b840191505092915050565b600061434a82614cbc565b6143548185614ce9565b9350614364818560208601614e96565b80840191505092915050565b600061437d602b83614cd8565b915061438882615125565b604082019050919050565b60006143a0603283614cd8565b91506143ab82615174565b604082019050919050565b60006143c3601183614cd8565b91506143ce826151c3565b602082019050919050565b60006143e6602683614cd8565b91506143f1826151ec565b604082019050919050565b6000614409601c83614cd8565b91506144148261523b565b602082019050919050565b600061442c602483614cd8565b915061443782615264565b604082019050919050565b600061444f601983614cd8565b915061445a826152b3565b602082019050919050565b6000614472601f83614cd8565b915061447d826152dc565b602082019050919050565b6000614495601383614cd8565b91506144a082615305565b602082019050919050565b60006144b8602c83614cd8565b91506144c38261532e565b604082019050919050565b60006144db603883614cd8565b91506144e68261537d565b604082019050919050565b60006144fe602a83614cd8565b9150614509826153cc565b604082019050919050565b6000614521602983614cd8565b915061452c8261541b565b604082019050919050565b6000614544601983614cd8565b915061454f8261546a565b602082019050919050565b6000614567602d83614cd8565b915061457282615493565b604082019050919050565b600061458a602083614cd8565b9150614595826154e2565b602082019050919050565b60006145ad602c83614cd8565b91506145b88261550b565b604082019050919050565b60006145d0601e83614cd8565b91506145db8261555a565b602082019050919050565b60006145f3602083614cd8565b91506145fe82615583565b602082019050919050565b6000614616602983614cd8565b9150614621826155ac565b604082019050919050565b6000614639602f83614cd8565b9150614644826155fb565b604082019050919050565b600061465c602d83614cd8565b91506146678261564a565b604082019050919050565b600061467f602183614cd8565b915061468a82615699565b604082019050919050565b60006146a2603183614cd8565b91506146ad826156e8565b604082019050919050565b60006146c5602c83614cd8565b91506146d082615737565b604082019050919050565b60006146e8601883614cd8565b91506146f382615786565b602082019050919050565b600061470b601f83614cd8565b9150614716826157af565b602082019050919050565b61472a81614e7d565b82525050565b600061473c8284614281565b60148201915081905092915050565b600061475782856142b6565b60208201915061476782846142b6565b6020820191508190509392505050565b6000614783828561433f565b915061478f828461433f565b91508190509392505050565b60006020820190506147b06000830184614272565b92915050565b60006080820190506147cb6000830187614272565b6147d86020830186614272565b6147e56040830185614721565b81810360608301526147f781846142cd565b905095945050505050565b60006020820190506148176000830184614298565b92915050565b600060208201905061483260008301846142a7565b92915050565b600060208201905081810360008301526148528184614306565b905092915050565b6000602082019050818103600083015261487381614370565b9050919050565b6000602082019050818103600083015261489381614393565b9050919050565b600060208201905081810360008301526148b3816143b6565b9050919050565b600060208201905081810360008301526148d3816143d9565b9050919050565b600060208201905081810360008301526148f3816143fc565b9050919050565b600060208201905081810360008301526149138161441f565b9050919050565b6000602082019050818103600083015261493381614442565b9050919050565b6000602082019050818103600083015261495381614465565b9050919050565b6000602082019050818103600083015261497381614488565b9050919050565b60006020820190508181036000830152614993816144ab565b9050919050565b600060208201905081810360008301526149b3816144ce565b9050919050565b600060208201905081810360008301526149d3816144f1565b9050919050565b600060208201905081810360008301526149f381614514565b9050919050565b60006020820190508181036000830152614a1381614537565b9050919050565b60006020820190508181036000830152614a338161455a565b9050919050565b60006020820190508181036000830152614a538161457d565b9050919050565b60006020820190508181036000830152614a73816145a0565b9050919050565b60006020820190508181036000830152614a93816145c3565b9050919050565b60006020820190508181036000830152614ab3816145e6565b9050919050565b60006020820190508181036000830152614ad381614609565b9050919050565b60006020820190508181036000830152614af38161462c565b9050919050565b60006020820190508181036000830152614b138161464f565b9050919050565b60006020820190508181036000830152614b3381614672565b9050919050565b60006020820190508181036000830152614b5381614695565b9050919050565b60006020820190508181036000830152614b73816146b8565b9050919050565b60006020820190508181036000830152614b93816146db565b9050919050565b60006020820190508181036000830152614bb3816146fe565b9050919050565b6000602082019050614bcf6000830184614721565b92915050565b6000604082019050614bea6000830185614721565b614bf76020830184614721565b9392505050565b6000614c08614c19565b9050614c148282614efb565b919050565b6000604051905090565b600067ffffffffffffffff821115614c3e57614c3d6150bf565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c6a57614c696150bf565b5b614c7382615107565b9050602081019050919050565b600067ffffffffffffffff821115614c9b57614c9a6150bf565b5b614ca482615107565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cff82614e7d565b9150614d0a83614e7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3f57614d3e614fd4565b5b828201905092915050565b6000614d5582614e7d565b9150614d6083614e7d565b925082614d7057614d6f615003565b5b828204905092915050565b6000614d8682614e7d565b9150614d9183614e7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dca57614dc9614fd4565b5b828202905092915050565b6000614de082614e7d565b9150614deb83614e7d565b925082821015614dfe57614dfd614fd4565b5b828203905092915050565b6000614e1482614e5d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614eb4578082015181840152602081019050614e99565b83811115614ec3576000848401525b50505050565b60006002820490506001821680614ee157607f821691505b60208210811415614ef557614ef4615032565b5b50919050565b614f0482615107565b810181811067ffffffffffffffff82111715614f2357614f226150bf565b5b80604052505050565b6000614f3782614e7d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f6a57614f69614fd4565b5b600182019050919050565b6000614f8082614f91565b9050919050565b6000819050919050565b6000614f9c82615118565b9050919050565b6000614fae82614e7d565b9150614fb983614e7d565b925082614fc957614fc8615003565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5469657220646f6573206e6f7420657869737400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f507572636861736520776f756c642065786365656420746f6b656e206c696d6960008201527f7420666f72206164647265737300000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732065786365656473206c696d69740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178696d756d20737560008201527f70706c7920666f72207469657200000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6157e181614e09565b81146157ec57600080fd5b50565b6157f881614e1b565b811461580357600080fd5b50565b61580f81614e27565b811461581a57600080fd5b50565b61582681614e31565b811461583157600080fd5b50565b61583d81614e7d565b811461584857600080fd5b5056fea264697066735822122096b4fef2698f9012c54405204224747297e4c8c2f03601d5870e130669af6c1964736f6c634300080600330000000000000000000000005bc992dad5430632ca8527f5f55cd666ae60955c00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000001e30000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000138a388a43c0000000000000000000000000000000000000000000000000000186cc6acd4b00000

Deployed Bytecode

0x6080604052600436106102925760003560e01c80636e27a2e51161015a578063afbefa01116100c1578063d5abeb011161007a578063d5abeb0114610a05578063e985e9c514610a30578063f2fde38b14610a6d578063f9435c1214610a96578063fcd298e714610ac1578063ffe630b514610aec57610292565b8063afbefa01146108f0578063b004e8a91461091b578063b32c568014610937578063b88d4fde14610974578063c87b56dd1461099d578063ccb8338e146109da57610292565b80638da5cb5b116101135780638da5cb5b146107ff578063943d40e71461082a57806395d89b4114610855578063a22cb46514610880578063a2309ff8146108a9578063a3684354146108d457610292565b80636e27a2e5146106f157806370a082311461071c578063715018a614610759578063781c5bde14610770578063841718a6146107ad57806384584d07146107d657610292565b80632f745c59116101fe57806347e495d5116101b757806347e495d5146105dc5780634a9d6f34146105f85780634f6ccce71461062357806355f804b3146106605780636352211e1461068957806368428a1b146106c657610292565b80632f745c59146104ce57806331f9c5f41461050b5780633a73c58d146105485780633ccfd60b1461057157806342842e0e14610588578063457dbf21146105b157610292565b80630f7309e8116102505780630f7309e8146103ac57806318160ddd146103d757806323b872dd14610402578063244282211461042b57806325555cd61461045457806327a1ab5b1461049157610292565b806215fcb91461029757806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b3146103585780630dc4f83814610381575b600080fd5b6102b160048036038101906102ac91906140fa565b610b15565b005b3480156102bf57600080fd5b506102da60048036038101906102d59190614057565b610c99565b6040516102e79190614802565b60405180910390f35b3480156102fc57600080fd5b50610305610d13565b6040516103129190614838565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906140fa565b610da5565b60405161034f919061479b565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613fbd565b610e2a565b005b34801561038d57600080fd5b50610396610f42565b6040516103a39190614bba565b60405180910390f35b3480156103b857600080fd5b506103c1610f66565b6040516103ce9190614838565b60405180910390f35b3480156103e357600080fd5b506103ec610ff4565b6040516103f99190614bba565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613e4b565b611001565b005b34801561043757600080fd5b50610452600480360381019061044d9190614232565b611061565b005b34801561046057600080fd5b5061047b600480360381019061047691906140fa565b6110eb565b6040516104889190614bba565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190614127565b611190565b6040516104c59190614bba565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613fbd565b611252565b6040516105029190614bba565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190614167565b6112f7565b60405161053f9190614bba565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190613ffd565b6113a7565b005b34801561057d57600080fd5b5061058661142f565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613e4b565b61151a565b005b3480156105bd57600080fd5b506105c661153a565b6040516105d39190614802565b60405180910390f35b6105f660048036038101906105f191906141d6565b61154d565b005b34801561060457600080fd5b5061060d611642565b60405161061a9190614bba565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906140fa565b611666565b6040516106579190614bba565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906140b1565b6116d7565b005b34801561069557600080fd5b506106b060048036038101906106ab91906140fa565b61176d565b6040516106bd919061479b565b60405180910390f35b3480156106d257600080fd5b506106db61181f565b6040516106e89190614802565b60405180910390f35b3480156106fd57600080fd5b50610706611832565b6040516107139190614bba565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613dde565b611856565b6040516107509190614bba565b60405180910390f35b34801561076557600080fd5b5061076e61190e565b005b34801561077c57600080fd5b50610797600480360381019061079291906140fa565b611996565b6040516107a49190614bba565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613ffd565b611a3b565b005b3480156107e257600080fd5b506107fd60048036038101906107f8919061402a565b611ad4565b005b34801561080b57600080fd5b50610814611b5c565b604051610821919061479b565b60405180910390f35b34801561083657600080fd5b5061083f611b86565b60405161084c919061479b565b60405180910390f35b34801561086157600080fd5b5061086a611baa565b6040516108779190614838565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613f7d565b611c3c565b005b3480156108b557600080fd5b506108be611dbd565b6040516108cb9190614bba565b60405180910390f35b6108ee60048036038101906108e991906141d6565b611e4f565b005b3480156108fc57600080fd5b50610905611f44565b6040516109129190614bba565b60405180910390f35b610935600480360381019061093091906140fa565b611f68565b005b34801561094357600080fd5b5061095e60048036038101906109599190613f21565b6120ec565b60405161096b9190614802565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190613e9e565b61212e565b005b3480156109a957600080fd5b506109c460048036038101906109bf91906140fa565b612190565b6040516109d19190614838565b60405180910390f35b3480156109e657600080fd5b506109ef612237565b6040516109fc9190614bba565b60405180910390f35b348015610a1157600080fd5b50610a1a61225b565b604051610a279190614bba565b60405180910390f35b348015610a3c57600080fd5b50610a576004803603810190610a529190613e0b565b61227f565b604051610a649190614802565b60405180910390f35b348015610a7957600080fd5b50610a946004803603810190610a8f9190613dde565b612313565b005b348015610aa257600080fd5b50610aab61240b565b604051610ab89190614bba565b60405180910390f35b348015610acd57600080fd5b50610ad661242f565b604051610ae39190614bba565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e91906140b1565b612453565b005b60026004541415610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290614b9a565b60405180910390fd5b6002600481905550601160009054906101000a900460ff16610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba9906149fa565b60405180910390fd5b34817f0000000000000000000000000000000000000000000000000138a388a43c0000610bdf9190614d7b565b1115610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c179061493a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014811115610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90614a7a565b60405180910390fd5b610c8e6000826124e9565b600160048190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d0c5750610d0b826125b7565b5b9050919050565b606060058054610d2290614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90614ec9565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b6000610db082612699565b610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690614a5a565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e358261176d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90614b1a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec5612705565b73ffffffffffffffffffffffffffffffffffffffff161480610ef45750610ef381610eee612705565b61227f565b5b610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a9061499a565b60405180910390fd5b610f3d838361270d565b505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b600f8054610f7390614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9f90614ec9565b8015610fec5780601f10610fc157610100808354040283529160200191610fec565b820191906000526020600020905b815481529060010190602001808311610fcf57829003601f168201915b505050505081565b6000600d80549050905090565b61101261100c612705565b826127c6565b611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890614b3a565b60405180910390fd5b61105c8383836128a4565b505050565b611069612705565b73ffffffffffffffffffffffffffffffffffffffff16611087611b5c565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490614a9a565b60405180910390fd5b6110e782826124e9565b5050565b6000817f00000000000000000000000000000000000000000000000000000000000000028110611150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111479061495a565b60405180910390fd5b600260008481526020019081526020016000206000015460026000858152602001908152602001600020600101546111889190614dd5565b915050919050565b6000827f000000000000000000000000000000000000000000000000000000000000000281106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec9061495a565b60405180910390fd5b6002600085815260200190815260200160002060030160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491505092915050565b600061125d83611856565b821061129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112959061485a565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061130383836120ec565b1561139b57600084141561134d5761131b8484611190565b7f00000000000000000000000000000000000000000000000000000000000000146113469190614dd5565b90506113a0565b6001841415611392576113608484611190565b7f000000000000000000000000000000000000000000000000000000000000001461138b9190614dd5565b90506113a0565b600090506113a0565b600090505b9392505050565b6113af612705565b73ffffffffffffffffffffffffffffffffffffffff166113cd611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90614a9a565b60405180910390fd5b61142c81612b00565b50565b611437612705565b73ffffffffffffffffffffffffffffffffffffffff16611455611b5c565b73ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290614a9a565b60405180910390fd5b60004790507f0000000000000000000000005bc992dad5430632ca8527f5f55cd666ae60955c73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611516573d6000803e3d6000fd5b5050565b6115358383836040518060200160405280600081525061212e565b505050565b600160009054906101000a900460ff1681565b60026004541415611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614b9a565b60405180910390fd5b600260048190555034827f000000000000000000000000000000000000000000000000186cc6acd4b000006115c89190614d7b565b1115611609576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116009061493a565b60405180910390fd5b6116366001837f000000000000000000000000000000000000000000000000000000000000001484612b1d565b60016004819055505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000611670610ff4565b82106116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890614b5a565b60405180910390fd5b600d82815481106116c5576116c4615090565b5b90600052602060002001549050919050565b6116df612705565b73ffffffffffffffffffffffffffffffffffffffff166116fd611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614a9a565b60405180910390fd5b8060109080519060200190611769929190613b3f565b5050565b6000806007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d906149da565b60405180910390fd5b80915050919050565b601160009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000281565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906149ba565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611916612705565b73ffffffffffffffffffffffffffffffffffffffff16611934611b5c565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614a9a565b60405180910390fd5b6119946000612c31565b565b6000817f000000000000000000000000000000000000000000000000000000000000000281106119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f29061495a565b60405180910390fd5b60026000848152602001908152602001600020600101546002600085815260200190815260200160002060020154611a339190614dd5565b915050919050565b611a43612705565b73ffffffffffffffffffffffffffffffffffffffff16611a61611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90614a9a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611adc612705565b73ffffffffffffffffffffffffffffffffffffffff16611afa611b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614a9a565b60405180910390fd5b611b5981612cf7565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000005bc992dad5430632ca8527f5f55cd666ae60955c81565b606060068054611bb990614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054611be590614ec9565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b5050505050905090565b611c44612705565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca99061491a565b60405180910390fd5b80600a6000611cbf612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d6c612705565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611db19190614802565b60405180910390a35050565b6000806000905060005b7f0000000000000000000000000000000000000000000000000000000000000002811015611e475760026000828152602001908152602001600020600001546002600083815260200190815260200160002060010154611e279190614dd5565b82611e329190614cf4565b91508080611e3f90614f2c565b915050611dc7565b508091505090565b60026004541415611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90614b9a565b60405180910390fd5b600260048190555034827f0000000000000000000000000000000000000000000000000138a388a43c0000611eca9190614d7b565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f029061493a565b60405180910390fd5b611f386000837f000000000000000000000000000000000000000000000000000000000000001484612b1d565b60016004819055505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b60026004541415611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590614b9a565b60405180910390fd5b6002600481905550601160009054906101000a900460ff16612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc906149fa565b60405180910390fd5b34817f000000000000000000000000000000000000000000000000186cc6acd4b000006120329190614d7b565b1115612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a9061493a565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000148111156120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90614a7a565b60405180910390fd5b6120e16001826124e9565b600160048190555050565b600080836040516020016121009190614730565b6040516020818303038152906040528051906020012090506121258360005483612d3a565b91505092915050565b61213f612139612705565b836127c6565b61217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590614b3a565b60405180910390fd5b61218a84848484612df0565b50505050565b606061219b82612699565b6121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190614ada565b60405180910390fd5b60006121e4612e4c565b90506000815111612204576040518060200160405280600081525061222f565b8061220e84612ede565b60405160200161221f929190614777565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000001481565b7f0000000000000000000000000000000000000000000000000000000000001e9c81565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61231b612705565b73ffffffffffffffffffffffffffffffffffffffff16612339611b5c565b73ffffffffffffffffffffffffffffffffffffffff161461238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614a9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f6906148ba565b60405180910390fd5b61240881612c31565b50565b7f000000000000000000000000000000000000000000000000186cc6acd4b0000081565b7f0000000000000000000000000000000000000000000000000138a388a43c000081565b61245b612705565b73ffffffffffffffffffffffffffffffffffffffff16612479611b5c565b73ffffffffffffffffffffffffffffffffffffffff16146124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690614a9a565b60405180910390fd5b80600f90805190602001906124e5929190613b3f565b5050565b818160026000838152602001908152602001600020600201548160026000858152602001908152602001600020600101546125249190614cf4565b1115612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90614afa565b60405180910390fd5b60006125708561303f565b905061257c85856130c3565b60005b848110156125af5761259c3382846125979190614cf4565b613158565b80806125a790614f2c565b91505061257f565b505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061268257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612692575061269182613176565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127808361176d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127d182612699565b612810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128079061497a565b60405180910390fd5b600061281b8361176d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061288a57508373ffffffffffffffffffffffffffffffffffffffff1661287284610da5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061289b575061289a818561227f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128c48261176d565b73ffffffffffffffffffffffffffffffffffffffff161461291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614aba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561298a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612981906148fa565b60405180910390fd5b6129958383836131e0565b6129a060008261270d565b6001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f09190614dd5565b925050819055506001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a479190614cf4565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600160006101000a81548160ff02191690831515021790555050565b600160009054906101000a900460ff16612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6390614b7a565b60405180910390fd5b3384848480826002600086815260200190815260200160002060030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09190614cf4565b1115612c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0890614a1a565b60405180910390fd5b612c1d338989886132f4565b612c2788886124e9565b5050505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806000819055507f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c600054604051612d2f919061481d565b60405180910390a150565b60008082905060005b8551811015612de2576000868281518110612d6157612d60615090565b5b60200260200101519050808311612da2578281604051602001612d8592919061474b565b604051602081830303815290604052805190602001209250612dce565b8083604051602001612db592919061474b565b6040516020818303038152906040528051906020012092505b508080612dda90614f2c565b915050612d43565b508381149150509392505050565b612dfb8484846128a4565b612e0784848484613461565b612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d9061487a565b60405180910390fd5b50505050565b606060108054612e5b90614ec9565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8790614ec9565b8015612ed45780601f10612ea957610100808354040283529160200191612ed4565b820191906000526020600020905b815481529060010190602001808311612eb757829003601f168201915b5050505050905090565b60606000821415612f26576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061303a565b600082905060005b60008214612f58578080612f4190614f2c565b915050600a82612f519190614d4a565b9150612f2e565b60008167ffffffffffffffff811115612f7457612f736150bf565b5b6040519080825280601f01601f191660200182016040528015612fa65781602001600182028036833780820191505090505b5090505b6000851461303357600182612fbf9190614dd5565b9150600a85612fce9190614fa3565b6030612fda9190614cf4565b60f81b818381518110612ff057612fef615090565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561302c9190614d4a565b9450612faa565b8093505050505b919050565b6000817f000000000000000000000000000000000000000000000000000000000000000281106130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b9061495a565b60405180910390fd5b6002600084815260200190815260200160002060010154915050919050565b817f00000000000000000000000000000000000000000000000000000000000000028110613126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311d9061495a565b60405180910390fd5b8160026000858152602001908152602001600020600101600082825461314c9190614cf4565b92505081905550505050565b6131728282604051806020016040528060008152506135f8565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131eb838383613653565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561322e5761322981613658565b61326d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461326c5761326b83826136a1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132b0576132ab8161380e565b6132ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132ee576132ed82826138df565b5b5b505050565b827f00000000000000000000000000000000000000000000000000000000000000028110613357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334e9061495a565b60405180910390fd5b61336185836120ec565b6133a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133979061489a565b60405180910390fd5b826002600086815260200190815260200160002060030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134039190614cf4565b925050819055508473ffffffffffffffffffffffffffffffffffffffff167f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a8585604051613452929190614bd5565b60405180910390a25050505050565b60006134828473ffffffffffffffffffffffffffffffffffffffff1661395e565b156135eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134ab612705565b8786866040518563ffffffff1660e01b81526004016134cd94939291906147b6565b602060405180830381600087803b1580156134e757600080fd5b505af192505050801561351857506040513d601f19601f820116820180604052508101906135159190614084565b60015b61359b573d8060008114613548576040519150601f19603f3d011682016040523d82523d6000602084013e61354d565b606091505b50600081511415613593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358a9061487a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135f0565b600190505b949350505050565b6136028383613971565b61360f6000848484613461565b61364e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136459061487a565b60405180910390fd5b505050565b505050565b600d80549050600e600083815260200190815260200160002081905550600d81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136ae84611856565b6136b89190614dd5565b90506000600c600084815260200190815260200160002054905081811461379d576000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000208190555081600c600083815260200190815260200160002081905550505b600c600084815260200190815260200160002060009055600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600d805490506138229190614dd5565b90506000600e60008481526020019081526020016000205490506000600d838154811061385257613851615090565b5b9060005260206000200154905080600d838154811061387457613873615090565b5b906000526020600020018190555081600e600083815260200190815260200160002081905550600e600085815260200190815260200160002060009055600d8054806138c3576138c2615061565b5b6001900381819060005260206000200160009055905550505050565b60006138ea83611856565b905081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000208190555080600c600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d890614a3a565b60405180910390fd5b6139ea81612699565b15613a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a21906148da565b60405180910390fd5b613a36600083836131e0565b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a869190614cf4565b92505081905550816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b4b90614ec9565b90600052602060002090601f016020900481019282613b6d5760008555613bb4565b82601f10613b8657805160ff1916838001178555613bb4565b82800160010185558215613bb4579182015b82811115613bb3578251825591602001919060010190613b98565b5b509050613bc19190613bc5565b5090565b5b80821115613bde576000816000905550600101613bc6565b5090565b6000613bf5613bf084614c23565b614bfe565b90508083825260208201905082856020860282011115613c1857613c176150f3565b5b60005b85811015613c485781613c2e8882613d2e565b845260208401935060208301925050600181019050613c1b565b5050509392505050565b6000613c65613c6084614c4f565b614bfe565b905082815260208101848484011115613c8157613c806150f8565b5b613c8c848285614e87565b509392505050565b6000613ca7613ca284614c80565b614bfe565b905082815260208101848484011115613cc357613cc26150f8565b5b613cce848285614e87565b509392505050565b600081359050613ce5816157d8565b92915050565b600082601f830112613d0057613cff6150ee565b5b8135613d10848260208601613be2565b91505092915050565b600081359050613d28816157ef565b92915050565b600081359050613d3d81615806565b92915050565b600081359050613d528161581d565b92915050565b600081519050613d678161581d565b92915050565b600082601f830112613d8257613d816150ee565b5b8135613d92848260208601613c52565b91505092915050565b600082601f830112613db057613daf6150ee565b5b8135613dc0848260208601613c94565b91505092915050565b600081359050613dd881615834565b92915050565b600060208284031215613df457613df3615102565b5b6000613e0284828501613cd6565b91505092915050565b60008060408385031215613e2257613e21615102565b5b6000613e3085828601613cd6565b9250506020613e4185828601613cd6565b9150509250929050565b600080600060608486031215613e6457613e63615102565b5b6000613e7286828701613cd6565b9350506020613e8386828701613cd6565b9250506040613e9486828701613dc9565b9150509250925092565b60008060008060808587031215613eb857613eb7615102565b5b6000613ec687828801613cd6565b9450506020613ed787828801613cd6565b9350506040613ee887828801613dc9565b925050606085013567ffffffffffffffff811115613f0957613f086150fd565b5b613f1587828801613d6d565b91505092959194509250565b60008060408385031215613f3857613f37615102565b5b6000613f4685828601613cd6565b925050602083013567ffffffffffffffff811115613f6757613f666150fd565b5b613f7385828601613ceb565b9150509250929050565b60008060408385031215613f9457613f93615102565b5b6000613fa285828601613cd6565b9250506020613fb385828601613d19565b9150509250929050565b60008060408385031215613fd457613fd3615102565b5b6000613fe285828601613cd6565b9250506020613ff385828601613dc9565b9150509250929050565b60006020828403121561401357614012615102565b5b600061402184828501613d19565b91505092915050565b6000602082840312156140405761403f615102565b5b600061404e84828501613d2e565b91505092915050565b60006020828403121561406d5761406c615102565b5b600061407b84828501613d43565b91505092915050565b60006020828403121561409a57614099615102565b5b60006140a884828501613d58565b91505092915050565b6000602082840312156140c7576140c6615102565b5b600082013567ffffffffffffffff8111156140e5576140e46150fd565b5b6140f184828501613d9b565b91505092915050565b6000602082840312156141105761410f615102565b5b600061411e84828501613dc9565b91505092915050565b6000806040838503121561413e5761413d615102565b5b600061414c85828601613dc9565b925050602061415d85828601613cd6565b9150509250929050565b6000806000606084860312156141805761417f615102565b5b600061418e86828701613dc9565b935050602061419f86828701613cd6565b925050604084013567ffffffffffffffff8111156141c0576141bf6150fd565b5b6141cc86828701613ceb565b9150509250925092565b600080604083850312156141ed576141ec615102565b5b60006141fb85828601613dc9565b925050602083013567ffffffffffffffff81111561421c5761421b6150fd565b5b61422885828601613ceb565b9150509250929050565b6000806040838503121561424957614248615102565b5b600061425785828601613dc9565b925050602061426885828601613dc9565b9150509250929050565b61427b81614e09565b82525050565b61429261428d82614e09565b614f75565b82525050565b6142a181614e1b565b82525050565b6142b081614e27565b82525050565b6142c76142c282614e27565b614f87565b82525050565b60006142d882614cb1565b6142e28185614cc7565b93506142f2818560208601614e96565b6142fb81615107565b840191505092915050565b600061431182614cbc565b61431b8185614cd8565b935061432b818560208601614e96565b61433481615107565b840191505092915050565b600061434a82614cbc565b6143548185614ce9565b9350614364818560208601614e96565b80840191505092915050565b600061437d602b83614cd8565b915061438882615125565b604082019050919050565b60006143a0603283614cd8565b91506143ab82615174565b604082019050919050565b60006143c3601183614cd8565b91506143ce826151c3565b602082019050919050565b60006143e6602683614cd8565b91506143f1826151ec565b604082019050919050565b6000614409601c83614cd8565b91506144148261523b565b602082019050919050565b600061442c602483614cd8565b915061443782615264565b604082019050919050565b600061444f601983614cd8565b915061445a826152b3565b602082019050919050565b6000614472601f83614cd8565b915061447d826152dc565b602082019050919050565b6000614495601383614cd8565b91506144a082615305565b602082019050919050565b60006144b8602c83614cd8565b91506144c38261532e565b604082019050919050565b60006144db603883614cd8565b91506144e68261537d565b604082019050919050565b60006144fe602a83614cd8565b9150614509826153cc565b604082019050919050565b6000614521602983614cd8565b915061452c8261541b565b604082019050919050565b6000614544601983614cd8565b915061454f8261546a565b602082019050919050565b6000614567602d83614cd8565b915061457282615493565b604082019050919050565b600061458a602083614cd8565b9150614595826154e2565b602082019050919050565b60006145ad602c83614cd8565b91506145b88261550b565b604082019050919050565b60006145d0601e83614cd8565b91506145db8261555a565b602082019050919050565b60006145f3602083614cd8565b91506145fe82615583565b602082019050919050565b6000614616602983614cd8565b9150614621826155ac565b604082019050919050565b6000614639602f83614cd8565b9150614644826155fb565b604082019050919050565b600061465c602d83614cd8565b91506146678261564a565b604082019050919050565b600061467f602183614cd8565b915061468a82615699565b604082019050919050565b60006146a2603183614cd8565b91506146ad826156e8565b604082019050919050565b60006146c5602c83614cd8565b91506146d082615737565b604082019050919050565b60006146e8601883614cd8565b91506146f382615786565b602082019050919050565b600061470b601f83614cd8565b9150614716826157af565b602082019050919050565b61472a81614e7d565b82525050565b600061473c8284614281565b60148201915081905092915050565b600061475782856142b6565b60208201915061476782846142b6565b6020820191508190509392505050565b6000614783828561433f565b915061478f828461433f565b91508190509392505050565b60006020820190506147b06000830184614272565b92915050565b60006080820190506147cb6000830187614272565b6147d86020830186614272565b6147e56040830185614721565b81810360608301526147f781846142cd565b905095945050505050565b60006020820190506148176000830184614298565b92915050565b600060208201905061483260008301846142a7565b92915050565b600060208201905081810360008301526148528184614306565b905092915050565b6000602082019050818103600083015261487381614370565b9050919050565b6000602082019050818103600083015261489381614393565b9050919050565b600060208201905081810360008301526148b3816143b6565b9050919050565b600060208201905081810360008301526148d3816143d9565b9050919050565b600060208201905081810360008301526148f3816143fc565b9050919050565b600060208201905081810360008301526149138161441f565b9050919050565b6000602082019050818103600083015261493381614442565b9050919050565b6000602082019050818103600083015261495381614465565b9050919050565b6000602082019050818103600083015261497381614488565b9050919050565b60006020820190508181036000830152614993816144ab565b9050919050565b600060208201905081810360008301526149b3816144ce565b9050919050565b600060208201905081810360008301526149d3816144f1565b9050919050565b600060208201905081810360008301526149f381614514565b9050919050565b60006020820190508181036000830152614a1381614537565b9050919050565b60006020820190508181036000830152614a338161455a565b9050919050565b60006020820190508181036000830152614a538161457d565b9050919050565b60006020820190508181036000830152614a73816145a0565b9050919050565b60006020820190508181036000830152614a93816145c3565b9050919050565b60006020820190508181036000830152614ab3816145e6565b9050919050565b60006020820190508181036000830152614ad381614609565b9050919050565b60006020820190508181036000830152614af38161462c565b9050919050565b60006020820190508181036000830152614b138161464f565b9050919050565b60006020820190508181036000830152614b3381614672565b9050919050565b60006020820190508181036000830152614b5381614695565b9050919050565b60006020820190508181036000830152614b73816146b8565b9050919050565b60006020820190508181036000830152614b93816146db565b9050919050565b60006020820190508181036000830152614bb3816146fe565b9050919050565b6000602082019050614bcf6000830184614721565b92915050565b6000604082019050614bea6000830185614721565b614bf76020830184614721565b9392505050565b6000614c08614c19565b9050614c148282614efb565b919050565b6000604051905090565b600067ffffffffffffffff821115614c3e57614c3d6150bf565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c6a57614c696150bf565b5b614c7382615107565b9050602081019050919050565b600067ffffffffffffffff821115614c9b57614c9a6150bf565b5b614ca482615107565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cff82614e7d565b9150614d0a83614e7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3f57614d3e614fd4565b5b828201905092915050565b6000614d5582614e7d565b9150614d6083614e7d565b925082614d7057614d6f615003565b5b828204905092915050565b6000614d8682614e7d565b9150614d9183614e7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dca57614dc9614fd4565b5b828202905092915050565b6000614de082614e7d565b9150614deb83614e7d565b925082821015614dfe57614dfd614fd4565b5b828203905092915050565b6000614e1482614e5d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614eb4578082015181840152602081019050614e99565b83811115614ec3576000848401525b50505050565b60006002820490506001821680614ee157607f821691505b60208210811415614ef557614ef4615032565b5b50919050565b614f0482615107565b810181811067ffffffffffffffff82111715614f2357614f226150bf565b5b80604052505050565b6000614f3782614e7d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f6a57614f69614fd4565b5b600182019050919050565b6000614f8082614f91565b9050919050565b6000819050919050565b6000614f9c82615118565b9050919050565b6000614fae82614e7d565b9150614fb983614e7d565b925082614fc957614fc8615003565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5469657220646f6573206e6f7420657869737400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f507572636861736520776f756c642065786365656420746f6b656e206c696d6960008201527f7420666f72206164647265737300000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732065786365656473206c696d69740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178696d756d20737560008201527f70706c7920666f72207469657200000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6157e181614e09565b81146157ec57600080fd5b50565b6157f881614e1b565b811461580357600080fd5b50565b61580f81614e27565b811461581a57600080fd5b50565b61582681614e31565b811461583157600080fd5b50565b61583d81614e7d565b811461584857600080fd5b5056fea264697066735822122096b4fef2698f9012c54405204224747297e4c8c2f03601d5870e130669af6c1964736f6c63430008060033

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

0000000000000000000000005bc992dad5430632ca8527f5f55cd666ae60955c00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000001e30000000000000000000000000000000000000000000000000000000000000006c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000138a388a43c0000000000000000000000000000000000000000000000000000186cc6acd4b00000

-----Decoded View---------------
Arg [0] : shareholderAddress_ (address): 0x5Bc992Dad5430632ca8527f5F55cd666Ae60955c
Arg [1] : tierSupply (uint256[]): 7728,108
Arg [2] : maxAllowListMint (uint256[]): 20,20
Arg [3] : maxPublicMint (uint256[]): 20,20
Arg [4] : pricePerToken (uint256[]): 88000000000000000,1760000000000000000

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000005bc992dad5430632ca8527f5f55cd666ae60955c
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000001e30
Arg [7] : 000000000000000000000000000000000000000000000000000000000000006c
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 0000000000000000000000000000000000000000000000000138a388a43c0000
Arg [16] : 000000000000000000000000000000000000000000000000186cc6acd4b00000


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.