ETH Price: $2,623.77 (-2.68%)

Token

The Crypto Mos (MOS)
 

Overview

Max Total Supply

333 MOS

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kajmak.eth
Balance
1 MOS
0x35ec46646c5ae18d0a8ed57b67fd5bbba4c5a9d4
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:
CryptoMo

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : CryptoMo.sol
// SPDX-License-Identifier: MIT
/*
 _______ .-. .-.,---.    
|__   __|| | | || .-'      The Crypto Mos (MOS)
  )| |   | `-' || `-.       by The Crypto Art
  _) |   | .-. || .-'        Appreciation Society
   | |   | | |)||  `--.       https://cryptomo.art
   `-'   /(  (_)/( __.'        MINTING FEBRUARY 2022
        (__)   (__)                         
  ,--,  ,---.  .-.   .-.,---.  _______  .---. 
.' .')  | .-.\  \ \_/ )/| .-.\|__   __|/ .-. )
|  |(_) | `-'/   \   (_)| |-' ) )| |   | | |(_)
\  \    |   (     ) (   | |--' (_) |   | | | | 
 \  `-. | |\ \    | |   | |      | |   \ `-' / 
  \____\|_| \)\  /(_|   /(       `-'    )---' 
            (__)(__)   (__)            (_)  
         .---.    .---.                          
|\    /|/ .-. )  ( .-._)   JOIN A SOCIETY OF
|(\  / || | |(_)(_) \       ART LOVERS
(_)\/  || | | | _  \ \       THAT INVESTS IN
| \  / |\ `-' /( `-'  )       EMERGING ARTISTS.
| |\/| | )---'  `----'         BE REWARDED
'-'  '-'(_)                     WITH THEIR ART.

The Crypto Art Appreciation Society is offering 14 up-and-coming
artists from around the globe a residency and supporting 
them with 6 ETH each to create limited edition NFT art.
Enjoy your MO; Copyright transfers to the NFT holder!
*/

pragma solidity 0.8.2;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";

contract CryptoMo is Ownable, ERC721Enumerable, PaymentSplitter {

    uint public publicSale = 1643644800; 

    uint public MAX_MO = 10000; 
    // The MOs reserve the right to *reduce* the supply shown, if needed.
    // But we hard-coded it below to *never* raise it above 10,000.

    uint public PUBLIC_MO_PRICE = 0.08 ether;
    uint public PRESALE_MO_PRICE = 0.05 ether;
    uint public walletLimit = 50;

    string public PROVENANCE_HASH;
    // Once we sellout and are sure of no errors requiring any image changes,
    // we will lock the provenance hash. This hash is a proof that the
    // images have not been tampered with in terms of order or content.

    string private _baseURIExtended;
    string private _contractURI;
    bool public _isSaleLive = false;
    bool public _isPreSaleLive = false;
    bool private locked;
    bool private PROVENANCE_LOCK = false;
    uint public _reserved;
    uint id = totalSupply();

    struct Account {
        uint nftsReserved;
        uint mintedNFTs;
        bool isAdmin ;
    }

    mapping(address => Account) public accounts;

    event Mint(address indexed sender, uint totalSupply);
    event PermanentURI(string _value, uint256 indexed _id);
    event Burn(address indexed sender, uint indexed _id);

    address[] private _distro;
    uint[] private _distro_shares;

    constructor(address[] memory distro, uint[] memory distro_shares, address[] memory teamclaim)
        ERC721("The Crypto Mos", "MOS")
        PaymentSplitter(distro, distro_shares)
    {
        _baseURIExtended = "ipfs://QmbHjsvFJT8uP64xRRSKoXuoq4VYXeRaao1VKzK3JFyEvE/";

        accounts[msg.sender] = Account( 0, 0, true);

        // teamclaim (7 wallets) 
        accounts[teamclaim[0]] = Account( 100, 0, true); // CMAAS 100 NFTs
        accounts[teamclaim[1]] = Account( 100, 0, true); // CMAAS 100 NFTs
        accounts[teamclaim[2]] = Account( 100, 0, true); // CMAAS 100 NFTs
        accounts[teamclaim[3]] = Account( 20, 0, true); // Dev 20 NFT
        accounts[teamclaim[4]] = Account( 20, 0, true); // Dev 20 NFT
        accounts[teamclaim[5]] = Account( 20, 0, true); // Dev 20 NFT
        accounts[teamclaim[6]] = Account( 15, 0, true); // Dev 15 NFT 

        _reserved = 375;

        _distro = distro;
        _distro_shares = distro_shares;
    }

    // (^_^) MODIFIERS (^_^) 

    modifier onlyAdmin() {
        require(accounts[msg.sender].isAdmin == true, "Error: You must be an admin.");
        _;
    }

    modifier noReentrant() {
        require(!locked, "Error: No re-entrancy.");
        locked = true;
        _;
        locked = false;
    }

    // (^_^) SETTERS (^_^) 

    function setAdmin(address _addr) external onlyOwner {
        accounts[_addr].isAdmin = !accounts[_addr].isAdmin;
    }

    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
        require(PROVENANCE_LOCK == false);
        PROVENANCE_HASH = _provenanceHash;
    }

    function lockProvenance() external onlyOwner {
        PROVENANCE_LOCK = true;
    }

    function setBaseURI(string memory _newURI) external onlyOwner {
        _baseURIExtended = _newURI;
    }

    function setContractURI(string memory _newURI) external onlyOwner {
        _contractURI = _newURI;
    }

    function activatePreSale() external onlyOwner {
        _isPreSaleLive = true;
    }

    function deactivatePreSale() external onlyOwner {
        _isPreSaleLive = false;
    }

    function activateSale() external onlyOwner {
        _isSaleLive = true;
        _isPreSaleLive = false;
    }

    function deactivateSale() external onlyOwner {
        _isSaleLive = false;
    }

    function setNewSaleTime(uint _newTime) external onlyOwner {
        publicSale = _newTime;
    }
    
    function setNewPublicPrice(uint _newPrice) external onlyOwner {
        PUBLIC_MO_PRICE = _newPrice;
    }

    function setNewPreSalePrice(uint _newPrice) external onlyOwner {
        PRESALE_MO_PRICE = _newPrice;
    }

    function setMaxMO(uint _maxMo) external onlyOwner {
        require(_maxMo <= MAX_MO, 'Error: New max supply cannot exceed original max.'); 
        MAX_MO = _maxMo;
    }

    function setWalletLimit(uint _newLimit) external onlyOwner {
       walletLimit = _newLimit;
    }

    function increaseReserved(uint _increaseReservedBy, address _addr) external onlyOwner {
        require(_reserved + totalSupply() + _increaseReservedBy <= MAX_MO, "Error: This would exceed the max supply.");

        _reserved += _increaseReservedBy;
        accounts[_addr].nftsReserved += _increaseReservedBy;
        accounts[_addr].isAdmin = true;
    }

    function decreaseReserved(uint _decreaseReservedBy, address _addr) external onlyOwner {
        require(_reserved - _decreaseReservedBy >= 0, "Error: This would make reserved less than 0.");
        require(accounts[_addr].nftsReserved - _decreaseReservedBy >= 0, "Error: User does not have this many reserved NFTs.");
        
        _reserved -= _decreaseReservedBy;
        accounts[_addr].nftsReserved -= _decreaseReservedBy;
        accounts[_addr].isAdmin = true;
    }
    

    // (^_^) GETTERS (^_^)

    // -- For OpenSea
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    // -- For Metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // -- For Convenience
    function getMintPrice() public view returns (uint){
        return PUBLIC_MO_PRICE;
    }


    // (^_^) BUSINESS LOGIC (^_^) 

    function claimReserved(uint _amount) external onlyAdmin {

        require(_amount > 0, "Error: Need to have reserved supply.");
        require(accounts[msg.sender].isAdmin == true,"Error: Only an admin can claim.");
        require(accounts[msg.sender].nftsReserved >= _amount, "Error: You are trying to claim more NFTs than you have reserved.");
        require(totalSupply() + _amount <= MAX_MO, "Error: You would exceed the max supply limit.");

        accounts[msg.sender].nftsReserved -= _amount;
        _reserved = _reserved - _amount;

       for (uint i = 0; i < _amount; i++) {
           id++;
           _safeMint(msg.sender, id);
           emit Mint(msg.sender, totalSupply());
        }

    }

    function airDropNFT(address[] memory _addr) external onlyOwner {

        require(totalSupply() + _addr.length <= (MAX_MO - _reserved), "Error: You would exceed the airdrop limit.");
        for (uint i = 0; i < _addr.length; i++) {
            id++;
            _safeMint(_addr[i], id);
            emit Mint(msg.sender, totalSupply());
        }

    }

    function mint(uint _amount) external payable noReentrant {

        require(_isSaleLive || _isPreSaleLive, "Error: Sale is not active.");
        require(totalSupply() + _amount <= (MAX_MO - _reserved), "Error: Purchase would exceed max supply.");
        require((_amount + accounts[msg.sender].mintedNFTs) <= walletLimit, "Error: You would exceed the wallet limit.");
        require(!isContract(msg.sender), "Error: Contracts cannot mint.");

        if(_isPreSaleLive) {

            require(msg.value >= (PRESALE_MO_PRICE * _amount), "Error: Not enough ether sent.");

        } else if (_isSaleLive) {

            require(msg.value >= (PUBLIC_MO_PRICE * _amount), "Error: Not enough ether sent.");
            require(block.timestamp >= publicSale, "Error: Public sale has not started.");

        }

        for (uint i = 0; i < _amount; i++) {
            id++;
            accounts[msg.sender].mintedNFTs++;
            _safeMint(msg.sender, id);
            emit Mint(msg.sender, totalSupply());
        }

    }

    function burn(uint _id) external returns (bool, uint) {
        require(msg.sender == ownerOf(_id) || msg.sender == getApproved(_id) || isApprovedForAll(ownerOf(_id), msg.sender), "Error: You must own this token to burn it.");
        _burn(_id);
        emit Burn(msg.sender, _id);
        return (true, _id);
    }

    function distributeShares() external onlyAdmin {
        for (uint i = 0; i < _distro.length; i++) {
            release(payable(_distro[i]));
        }
    }

    // (^_^) HELPER. (^_^)
    function isContract(address account) internal view returns (bool) {
  
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    } 

    // (^_^) THE END. (^_^)
    // .--- .. -- .--.-. --. . -. . .-. .- - .. ...- . -. ..-. - ... .-.-.- .. ---

}

File 2 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 16 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

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

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

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

File 12 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 13 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 15 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 16 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"distro","type":"address[]"},{"internalType":"uint256[]","name":"distro_shares","type":"uint256[]"},{"internalType":"address[]","name":"teamclaim","type":"address[]"}],"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":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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":"MAX_MO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MO_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MO_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPreSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accounts","outputs":[{"internalType":"uint256","name":"nftsReserved","type":"uint256"},{"internalType":"uint256","name":"mintedNFTs","type":"uint256"},{"internalType":"bool","name":"isAdmin","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activatePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"airDropNFT","outputs":[],"stateMutability":"nonpayable","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":"_id","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivatePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_decreaseReservedBy","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"decreaseReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_increaseReservedBy","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"increaseReserved","outputs":[],"stateMutability":"nonpayable","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":"lockProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setAdmin","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMo","type":"uint256"}],"name":"setMaxMO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTime","type":"uint256"}],"name":"setNewSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526361f8078060125561271060135567011c37937e08000060145566b1a2bc2ec500006015556032601655601a805463ff00ffff19169055600954601c553480156200004e57600080fd5b5060405162004b6838038062004b68833981016040819052620000719162000b6c565b82826040518060400160405280600e81526020016d5468652043727970746f204d6f7360901b815250604051806040016040528060038152602001624d4f5360e81b815250620000d0620000ca6200076660201b60201c565b6200076a565b8151620000e5906001906020850190620009a8565b508051620000fb906002906020840190620009a8565b5050508051825114620001705760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001c35760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000167565b60005b8251811015620002475762000232838281518110620001f557634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200021e57634e487b7160e01b600052603260045260246000fd5b6020026020010151620007ba60201b60201c565b806200023e8162000d05565b915050620001c6565b50505060405180606001604052806036815260200162004b326036913980516200027a91601891602090910190620009a8565b506040805160608082018352600080835260208084018281526001858701818152338552601d80855288862097518855925187830155516002909601805460ff191696151596909617909555855193840186526064845290830182905293820192909252835190929190849082906200030357634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050506040518060600160405280606481526020016000815260200160011515815250601d600083600181518110620003a857634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050506040518060600160405280606481526020016000815260200160011515815250601d6000836002815181106200044d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050506040518060600160405280601481526020016000815260200160011515815250601d600083600381518110620004f257634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050506040518060600160405280601481526020016000815260200160011515815250601d6000836004815181106200059757634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050506040518060600160405280601481526020016000815260200160011515815250601d6000836005815181106200063c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050506040518060600160405280600f81526020016000815260200160011515815250601d600083600681518110620006e157634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252818101929092526040908101600020835181558383015160018201559201516002909201805460ff191692151592909217909155610177601b5583516200074691601e919086019062000a37565b5081516200075c90601f90602085019062000a8f565b5050505062000d4f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620008275760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000167565b60008111620008795760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000167565b6001600160a01b0382166000908152600d602052604090205415620008f55760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000167565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b546200095f90829062000cad565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620009b69062000cc8565b90600052602060002090601f016020900481019282620009da576000855562000a25565b82601f10620009f557805160ff191683800117855562000a25565b8280016001018555821562000a25579182015b8281111562000a2557825182559160200191906001019062000a08565b5062000a3392915062000acc565b5090565b82805482825590600052602060002090810192821562000a25579160200282015b8281111562000a2557825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000a58565b82805482825590600052602060002090810192821562000a25579160200282018281111562000a2557825182559160200191906001019062000a08565b5b8082111562000a33576000815560010162000acd565b600082601f83011262000af4578081fd5b8151602062000b0d62000b078362000c87565b62000c54565b828152818101908583018385028701840188101562000b2a578586fd5b855b8581101562000b5f5781516001600160a01b038116811462000b4c578788fd5b8452928401929084019060010162000b2c565b5090979650505050505050565b60008060006060848603121562000b81578283fd5b83516001600160401b038082111562000b98578485fd5b62000ba68783880162000ae3565b945060209150818601518181111562000bbd578485fd5b8601601f8101881362000bce578485fd5b805162000bdf62000b078262000c87565b81815284810190838601868402850187018c101562000bfc578889fd5b8894505b8385101562000c2057805183526001949094019391860191860162000c00565b5060408a015190975094505050508082111562000c3b578283fd5b5062000c4a8682870162000ae3565b9150509250925092565b604051601f8201601f191681016001600160401b038111828210171562000c7f5762000c7f62000d39565b604052919050565b60006001600160401b0382111562000ca35762000ca362000d39565b5060209081020190565b6000821982111562000cc35762000cc362000d23565b500190565b60028104600182168062000cdd57607f821691505b6020821081141562000cff57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000d1c5762000d1c62000d23565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613dd38062000d5f6000396000f3fe6080604052600436106103a65760003560e01c8063704b6c02116101e7578063c721f08d1161010d578063e5f4d771116100a0578063f1d5f5171161006f578063f1d5f51714610b29578063f2fde38b14610b49578063fc15ad0614610b69578063ff1b655614610b89576103ef565b8063e5f4d77114610aca578063e8a3d48514610adf578063e985e9c514610af4578063ea7523ee14610b14576103ef565b8063d79779b2116100dc578063d79779b214610a49578063db24f62414610a7f578063db563d0514610a9f578063e33b7de314610ab5576103ef565b8063c721f08d146109be578063c87b56dd146109d3578063ce7c2ac2146109f3578063d6f7818314610a29576103ef565b806395d89b4111610185578063a617e97611610154578063a617e97614610949578063a7f93ebd14610969578063afad20af1461097e578063b88d4fde1461099e576103ef565b806395d89b41146108cb5780639852595c146108e0578063a0712d6814610916578063a22cb46514610929576103ef565b806379aaa009116101c157806379aaa0091461084d5780638b83209b1461086d5780638da5cb5b1461088d578063938e3d7b146108ab576103ef565b8063704b6c02146107f857806370a0823114610818578063715018a614610838576103ef565b80633a98ef39116102cc5780634f5e0b281161026a578063616d0dfd11610239578063616d0dfd1461078d5780636352211e146107a25780636a672769146107c25780636aaa571d146107e2576103ef565b80634f5e0b28146106d75780634f6ccce7146106f157806355f804b3146107115780635e5c06e214610731576103ef565b806342842e0e116102a657806342842e0e1461064b57806342966c681461066b578063429e3846146106a257806348b75044146106b7576103ef565b80633a98ef39146105da5780633c8463a1146105ef578063406072a914610605576103ef565b8063191655871161034457806323b872dd1161031357806323b872dd1461056457806326f8f7e6146105845780632f745c59146105a457806333bc1c5c146105c4576103ef565b806319165587146104f95780631969f7b1146105195780631c5f22531461052f578063220ae7f914610545576103ef565b8063095ea7b311610380578063095ea7b31461048357806310969523146104a55780631307bb00146104c557806318160ddd146104da576103ef565b806301ffc9a7146103f457806306fdde0314610429578063081812fc1461044b576103ef565b366103ef577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040057600080fd5b5061041461040f3660046138e5565b610b9e565b60405190151581526020015b60405180910390f35b34801561043557600080fd5b5061043e610bcb565b6040516104209190613a7d565b34801561045757600080fd5b5061046b610466366004613975565b610c5d565b6040516001600160a01b039091168152602001610420565b34801561048f57600080fd5b506104a361049e3660046137eb565b610cf7565b005b3480156104b157600080fd5b506104a36104c036600461392f565b610e0d565b3480156104d157600080fd5b506104a3610e65565b3480156104e657600080fd5b506009545b604051908152602001610420565b34801561050557600080fd5b506104a36105143660046136ad565b610ea0565b34801561052557600080fd5b506104eb60135481565b34801561053b57600080fd5b506104eb60145481565b34801561055157600080fd5b50601a5461041490610100900460ff1681565b34801561057057600080fd5b506104a361057f366004613701565b610fce565b34801561059057600080fd5b506104a361059f366004613975565b610fff565b3480156105b057600080fd5b506104eb6105bf3660046137eb565b6112da565b3480156105d057600080fd5b506104eb60125481565b3480156105e657600080fd5b50600b546104eb565b3480156105fb57600080fd5b506104eb60165481565b34801561061157600080fd5b506104eb61062036600461391d565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561065757600080fd5b506104a3610666366004613701565b611370565b34801561067757600080fd5b5061068b610686366004613975565b61138b565b604080519215158352602083019190915201610420565b3480156106ae57600080fd5b506104a3611484565b3480156106c357600080fd5b506104a36106d236600461391d565b61154b565b3480156106e357600080fd5b50601a546104149060ff1681565b3480156106fd57600080fd5b506104eb61070c366004613975565b611733565b34801561071d57600080fd5b506104a361072c36600461392f565b6117d4565b34801561073d57600080fd5b5061077061074c3660046136ad565b601d6020526000908152604090208054600182015460029092015490919060ff1683565b604080519384526020840192909252151590820152606001610420565b34801561079957600080fd5b506104a3611811565b3480156107ae57600080fd5b5061046b6107bd366004613975565b611847565b3480156107ce57600080fd5b506104a36107dd366004613975565b6118be565b3480156107ee57600080fd5b506104eb601b5481565b34801561080457600080fd5b506104a36108133660046136ad565b6118ed565b34801561082457600080fd5b506104eb6108333660046136ad565b611943565b34801561084457600080fd5b506104a36119ca565b34801561085957600080fd5b506104a36108683660046139a5565b611a00565b34801561087957600080fd5b5061046b610888366004613975565b611b19565b34801561089957600080fd5b506000546001600160a01b031661046b565b3480156108b757600080fd5b506104a36108c636600461392f565b611b57565b3480156108d757600080fd5b5061043e611b94565b3480156108ec57600080fd5b506104eb6108fb3660046136ad565b6001600160a01b03166000908152600e602052604090205490565b6104a3610924366004613975565b611ba3565b34801561093557600080fd5b506104a36109443660046137be565b611fa0565b34801561095557600080fd5b506104a3610964366004613975565b611fab565b34801561097557600080fd5b506014546104eb565b34801561098a57600080fd5b506104a36109993660046139a5565b611fda565b3480156109aa57600080fd5b506104a36109b9366004613741565b612143565b3480156109ca57600080fd5b506104a361217b565b3480156109df57600080fd5b5061043e6109ee366004613975565b6121bb565b3480156109ff57600080fd5b506104eb610a0e3660046136ad565b6001600160a01b03166000908152600d602052604090205490565b348015610a3557600080fd5b506104a3610a44366004613975565b612296565b348015610a5557600080fd5b506104eb610a643660046136ad565b6001600160a01b031660009081526010602052604090205490565b348015610a8b57600080fd5b506104a3610a9a366004613975565b612331565b348015610aab57600080fd5b506104eb60155481565b348015610ac157600080fd5b50600c546104eb565b348015610ad657600080fd5b506104a3612360565b348015610aeb57600080fd5b5061043e612397565b348015610b0057600080fd5b50610414610b0f3660046136c9565b6123a6565b348015610b2057600080fd5b506104a36123d4565b348015610b3557600080fd5b506104a3610b44366004613975565b612413565b348015610b5557600080fd5b506104a3610b643660046136ad565b612442565b348015610b7557600080fd5b506104a3610b84366004613816565b6124da565b348015610b9557600080fd5b5061043e612626565b60006001600160e01b0319821663780e9d6360e01b1480610bc35750610bc3826126b4565b90505b919050565b606060018054610bda90613cb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0690613cb8565b8015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610cdb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610d0282611847565b9050806001600160a01b0316836001600160a01b03161415610d705760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610cd2565b336001600160a01b0382161480610d8c5750610d8c8133610b0f565b610dfe5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cd2565b610e088383612704565b505050565b6000546001600160a01b03163314610e375760405162461bcd60e51b8152600401610cd290613b73565b601a546301000000900460ff1615610e4e57600080fd5b8051610e619060179060208401906135bc565b5050565b6000546001600160a01b03163314610e8f5760405162461bcd60e51b8152600401610cd290613b73565b601a805461ff001916610100179055565b6001600160a01b0381166000908152600d6020526040902054610ed55760405162461bcd60e51b8152600401610cd290613ae2565b6000610ee0600c5490565b610eea9047613c2a565b90506000610f178383610f12866001600160a01b03166000908152600e602052604090205490565b612772565b905080610f365760405162461bcd60e51b8152600401610cd290613b28565b6001600160a01b0383166000908152600e602052604081208054839290610f5e908490613c2a565b9250508190555080600c6000828254610f779190613c2a565b90915550610f87905083826127b8565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610fd833826128d1565b610ff45760405162461bcd60e51b8152600401610cd290613ba8565b610e088383836129a0565b336000908152601d602052604090206002015460ff1615156001146110665760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a20596f75206d75737420626520616e2061646d696e2e000000006044820152606401610cd2565b600081116110c25760405162461bcd60e51b8152602060048201526024808201527f4572726f723a204e65656420746f20686176652072657365727665642073757060448201526338363c9760e11b6064820152608401610cd2565b336000908152601d602052604090206002015460ff1615156001146111295760405162461bcd60e51b815260206004820152601f60248201527f4572726f723a204f6e6c7920616e2061646d696e2063616e20636c61696d2e006044820152606401610cd2565b336000908152601d60205260409020548111156111b0576040805162461bcd60e51b81526020600482015260248101919091527f4572726f723a20596f752061726520747279696e6720746f20636c61696d206d60448201527f6f7265204e465473207468616e20796f7520686176652072657365727665642e6064820152608401610cd2565b601354816111bd60095490565b6111c79190613c2a565b111561122b5760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a20596f7520776f756c642065786365656420746865206d61782060448201526c39bab838363c903634b6b4ba1760991b6064820152608401610cd2565b336000908152601d60205260408120805483929061124a908490613c75565b9091555050601b5461125d908290613c75565b601b5560005b81811015610e6157601c805490600061127b83613cf3565b919050555061128c33601c54612b4b565b337f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856112b760095490565b60405190815260200160405180910390a2806112d281613cf3565b915050611263565b60006112e583611943565b82106113475760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610cd2565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610e0883838360405180602001604052806000815250612143565b60008061139783611847565b6001600160a01b0316336001600160a01b031614806113cf57506113ba83610c5d565b6001600160a01b0316336001600160a01b0316145b806113e757506113e76113e184611847565b336123a6565b6114465760405162461bcd60e51b815260206004820152602a60248201527f4572726f723a20596f75206d757374206f776e207468697320746f6b656e20746044820152693790313ab9371034ba1760b11b6064820152608401610cd2565b61144f83612b65565b604051839033907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca590600090a3506001905091565b336000908152601d602052604090206002015460ff1615156001146114eb5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a20596f75206d75737420626520616e2061646d696e2e000000006044820152606401610cd2565b60005b601e5481101561154857611536601e828154811061151c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316610ea0565b8061154081613cf3565b9150506114ee565b50565b6001600160a01b0381166000908152600d60205260409020546115805760405162461bcd60e51b8152600401610cd290613ae2565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156115d857600080fd5b505afa1580156115ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611610919061398d565b61161a9190613c2a565b905060006116538383610f1287876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806116725760405162461bcd60e51b8152600401610cd290613b28565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906116a9908490613c2a565b90915550506001600160a01b038416600090815260106020526040812080548392906116d6908490613c2a565b909155506116e79050848483612c0c565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061173e60095490565b82106117a15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610cd2565b600982815481106117c257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b031633146117fe5760405162461bcd60e51b8152600401610cd290613b73565b8051610e619060189060208401906135bc565b6000546001600160a01b0316331461183b5760405162461bcd60e51b8152600401610cd290613b73565b601a805460ff19169055565b6000818152600360205260408120546001600160a01b031680610bc35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610cd2565b6000546001600160a01b031633146118e85760405162461bcd60e51b8152600401610cd290613b73565b601455565b6000546001600160a01b031633146119175760405162461bcd60e51b8152600401610cd290613b73565b6001600160a01b03166000908152601d60205260409020600201805460ff19811660ff90911615179055565b60006001600160a01b0382166119ae5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610cd2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146119f45760405162461bcd60e51b8152600401610cd290613b73565b6119fe6000612c5e565b565b6000546001600160a01b03163314611a2a5760405162461bcd60e51b8152600401610cd290613b73565b60135482611a3760095490565b601b54611a449190613c2a565b611a4e9190613c2a565b1115611aad5760405162461bcd60e51b815260206004820152602860248201527f4572726f723a205468697320776f756c642065786365656420746865206d61786044820152671039bab838363c9760c11b6064820152608401610cd2565b81601b6000828254611abf9190613c2a565b90915550506001600160a01b0381166000908152601d602052604081208054849290611aec908490613c2a565b90915550506001600160a01b03166000908152601d60205260409020600201805460ff1916600117905550565b6000600f8281548110611b3c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6000546001600160a01b03163314611b815760405162461bcd60e51b8152600401610cd290613b73565b8051610e619060199060208401906135bc565b606060028054610bda90613cb8565b601a5462010000900460ff1615611bf55760405162461bcd60e51b815260206004820152601660248201527522b93937b91d10273790393296b2b73a3930b731bc9760511b6044820152606401610cd2565b601a805462ff0000191662010000179081905560ff1680611c1d5750601a54610100900460ff165b611c695760405162461bcd60e51b815260206004820152601a60248201527f4572726f723a2053616c65206973206e6f74206163746976652e0000000000006044820152606401610cd2565b601b54601354611c799190613c75565b81611c8360095490565b611c8d9190613c2a565b1115611cec5760405162461bcd60e51b815260206004820152602860248201527f4572726f723a20507572636861736520776f756c6420657863656564206d61786044820152671039bab838363c9760c11b6064820152608401610cd2565b601654336000908152601d6020526040902060010154611d0c9083613c2a565b1115611d6c5760405162461bcd60e51b815260206004820152602960248201527f4572726f723a20596f7520776f756c6420657863656564207468652077616c6c60448201526832ba103634b6b4ba1760b91b6064820152608401610cd2565b333b15611dbb5760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a20436f6e7472616374732063616e6e6f74206d696e742e0000006044820152606401610cd2565b601a54610100900460ff1615611e2d5780601554611dd99190613c56565b341015611e285760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a204e6f7420656e6f7567682065746865722073656e742e0000006044820152606401610cd2565b611ef3565b601a5460ff1615611ef35780601454611e469190613c56565b341015611e955760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a204e6f7420656e6f7567682065746865722073656e742e0000006044820152606401610cd2565b601254421015611ef35760405162461bcd60e51b815260206004820152602360248201527f4572726f723a205075626c69632073616c6520686173206e6f7420737461727460448201526232b21760e91b6064820152608401610cd2565b60005b81811015611f9057601c8054906000611f0e83613cf3565b9091555050336000908152601d60205260408120600101805491611f3183613cf3565b9190505550611f4233601c54612b4b565b337f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611f6d60095490565b60405190815260200160405180910390a280611f8881613cf3565b915050611ef6565b5050601a805462ff000019169055565b610e61338383612cae565b6000546001600160a01b03163314611fd55760405162461bcd60e51b8152600401610cd290613b73565b601555565b6000546001600160a01b031633146120045760405162461bcd60e51b8152600401610cd290613b73565b600082601b546120149190613c75565b10156120775760405162461bcd60e51b815260206004820152602c60248201527f4572726f723a205468697320776f756c64206d616b652072657365727665642060448201526b3632b9b9903a3430b710181760a11b6064820152608401610cd2565b6001600160a01b0381166000908152601d602052604081205461209b908490613c75565b10156121045760405162461bcd60e51b815260206004820152603260248201527f4572726f723a205573657220646f6573206e6f7420686176652074686973206d60448201527130b73c903932b9b2b93b32b21027232a399760711b6064820152608401610cd2565b81601b60008282546121169190613c75565b90915550506001600160a01b0381166000908152601d602052604081208054849290611aec908490613c75565b61214d33836128d1565b6121695760405162461bcd60e51b8152600401610cd290613ba8565b61217584848484612d7d565b50505050565b6000546001600160a01b031633146121a55760405162461bcd60e51b8152600401610cd290613b73565b601a805461ff001960ff19909116600117169055565b6000818152600360205260409020546060906001600160a01b031661223a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cd2565b6000612244612db0565b90506000815111612264576040518060200160405280600081525061228f565b8061226e84612dbf565b60405160200161227f929190613a11565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146122c05760405162461bcd60e51b8152600401610cd290613b73565b60135481111561232c5760405162461bcd60e51b815260206004820152603160248201527f4572726f723a204e6577206d617820737570706c792063616e6e6f742065786360448201527032b2b21037b934b3b4b730b61036b0bc1760791b6064820152608401610cd2565b601355565b6000546001600160a01b0316331461235b5760405162461bcd60e51b8152600401610cd290613b73565b601255565b6000546001600160a01b0316331461238a5760405162461bcd60e51b8152600401610cd290613b73565b601a805461ff0019169055565b606060198054610bda90613cb8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146123fe5760405162461bcd60e51b8152600401610cd290613b73565b601a805463ff00000019166301000000179055565b6000546001600160a01b0316331461243d5760405162461bcd60e51b8152600401610cd290613b73565b601655565b6000546001600160a01b0316331461246c5760405162461bcd60e51b8152600401610cd290613b73565b6001600160a01b0381166124d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cd2565b61154881612c5e565b6000546001600160a01b031633146125045760405162461bcd60e51b8152600401610cd290613b73565b601b546013546125149190613c75565b81516009546125239190613c2a565b11156125845760405162461bcd60e51b815260206004820152602a60248201527f4572726f723a20596f7520776f756c64206578636565642074686520616972646044820152693937b8103634b6b4ba1760b11b6064820152608401610cd2565b60005b8151811015610e6157601c80549060006125a083613cf3565b91905055506125d88282815181106125c857634e487b7160e01b600052603260045260246000fd5b6020026020010151601c54612b4b565b337f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561260360095490565b60405190815260200160405180910390a28061261e81613cf3565b915050612587565b6017805461263390613cb8565b80601f016020809104026020016040519081016040528092919081815260200182805461265f90613cb8565b80156126ac5780601f10612681576101008083540402835291602001916126ac565b820191906000526020600020905b81548152906001019060200180831161268f57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b14806126e557506001600160e01b03198216635b5e139f60e01b145b80610bc357506301ffc9a760e01b6001600160e01b0319831614610bc3565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061273982611847565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d60205260408120549091839161279c9086613c56565b6127a69190613c42565b6127b09190613c75565b949350505050565b804710156128085760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cd2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612855576040519150601f19603f3d011682016040523d82523d6000602084013e61285a565b606091505b5050905080610e085760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cd2565b6000818152600360205260408120546001600160a01b031661294a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cd2565b600061295583611847565b9050806001600160a01b0316846001600160a01b031614806129905750836001600160a01b031661298584610c5d565b6001600160a01b0316145b806127b057506127b081856123a6565b826001600160a01b03166129b382611847565b6001600160a01b031614612a1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610cd2565b6001600160a01b038216612a7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cd2565b612a88838383612eda565b612a93600082612704565b6001600160a01b0383166000908152600460205260408120805460019290612abc908490613c75565b90915550506001600160a01b0382166000908152600460205260408120805460019290612aea908490613c2a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e61828260405180602001604052806000815250612f97565b6000612b7082611847565b9050612b7e81600084612eda565b612b89600083612704565b6001600160a01b0381166000908152600460205260408120805460019290612bb2908490613c75565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e08908490612fca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415612d105760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cd2565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612d888484846129a0565b612d948484848461309c565b6121755760405162461bcd60e51b8152600401610cd290613a90565b606060188054610bda90613cb8565b606081612de457506040805180820190915260018152600360fc1b6020820152610bc6565b8160005b8115612e0e5780612df881613cf3565b9150612e079050600a83613c42565b9150612de8565b60008167ffffffffffffffff811115612e3757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e61576020820181803683370190505b5090505b84156127b057612e76600183613c75565b9150612e83600a86613d0e565b612e8e906030613c2a565b60f81b818381518110612eb157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612ed3600a86613c42565b9450612e65565b6001600160a01b038316612f3557612f3081600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612f58565b816001600160a01b0316836001600160a01b031614612f5857612f5883826131a9565b6001600160a01b038216612f7457612f6f81613246565b610e08565b826001600160a01b0316826001600160a01b031614610e0857610e08828261331f565b612fa18383613363565b612fae600084848461309c565b610e085760405162461bcd60e51b8152600401610cd290613a90565b600061301f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134b19092919063ffffffff16565b805190915015610e08578080602001905181019061303d91906138c9565b610e085760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610cd2565b60006001600160a01b0384163b1561319e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130e0903390899088908890600401613a40565b602060405180830381600087803b1580156130fa57600080fd5b505af192505050801561312a575060408051601f3d908101601f1916820190925261312791810190613901565b60015b613184573d808015613158576040519150601f19603f3d011682016040523d82523d6000602084013e61315d565b606091505b50805161317c5760405162461bcd60e51b8152600401610cd290613a90565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127b0565b506001949350505050565b600060016131b684611943565b6131c09190613c75565b600083815260086020526040902054909150808214613213576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061325890600190613c75565b6000838152600a60205260408120546009805493945090928490811061328e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106132bd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061330357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061332a83611943565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166133b95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cd2565b6000818152600360205260409020546001600160a01b03161561341e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610cd2565b61342a60008383612eda565b6001600160a01b0382166000908152600460205260408120805460019290613453908490613c2a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606127b0848460008585843b61350a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610cd2565b600080866001600160a01b0316858760405161352691906139f5565b60006040518083038185875af1925050503d8060008114613563576040519150601f19603f3d011682016040523d82523d6000602084013e613568565b606091505b5091509150613578828286613583565b979650505050505050565b6060831561359257508161228f565b8251156135a25782518084602001fd5b8160405162461bcd60e51b8152600401610cd29190613a7d565b8280546135c890613cb8565b90600052602060002090601f0160209004810192826135ea5760008555613630565b82601f1061360357805160ff1916838001178555613630565b82800160010185558215613630579182015b82811115613630578251825591602001919060010190613615565b5061363c929150613640565b5090565b5b8082111561363c5760008155600101613641565b600067ffffffffffffffff83111561366f5761366f613d4e565b613682601f8401601f1916602001613bf9565b905082815283838301111561369657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156136be578081fd5b813561228f81613d64565b600080604083850312156136db578081fd5b82356136e681613d64565b915060208301356136f681613d64565b809150509250929050565b600080600060608486031215613715578081fd5b833561372081613d64565b9250602084013561373081613d64565b929592945050506040919091013590565b60008060008060808587031215613756578081fd5b843561376181613d64565b9350602085013561377181613d64565b925060408501359150606085013567ffffffffffffffff811115613793578182fd5b8501601f810187136137a3578182fd5b6137b287823560208401613655565b91505092959194509250565b600080604083850312156137d0578182fd5b82356137db81613d64565b915060208301356136f681613d79565b600080604083850312156137fd578182fd5b823561380881613d64565b946020939093013593505050565b60006020808385031215613828578182fd5b823567ffffffffffffffff8082111561383f578384fd5b818501915085601f830112613852578384fd5b81358181111561386457613864613d4e565b8381029150613874848301613bf9565b8181528481019084860184860187018a101561388e578788fd5b8795505b838610156138bc57803594506138a785613d64565b84835260019590950194918601918601613892565b5098975050505050505050565b6000602082840312156138da578081fd5b815161228f81613d79565b6000602082840312156138f6578081fd5b813561228f81613d87565b600060208284031215613912578081fd5b815161228f81613d87565b600080604083850312156136db578182fd5b600060208284031215613940578081fd5b813567ffffffffffffffff811115613956578182fd5b8201601f81018413613966578182fd5b6127b084823560208401613655565b600060208284031215613986578081fd5b5035919050565b60006020828403121561399e578081fd5b5051919050565b600080604083850312156139b7578182fd5b8235915060208301356136f681613d64565b600081518084526139e1816020860160208601613c8c565b601f01601f19169290920160200192915050565b60008251613a07818460208701613c8c565b9190910192915050565b60008351613a23818460208801613c8c565b835190830190613a37818360208801613c8c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a73908301846139c9565b9695505050505050565b60006020825261228f60208301846139c9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c2257613c22613d4e565b604052919050565b60008219821115613c3d57613c3d613d22565b500190565b600082613c5157613c51613d38565b500490565b6000816000190483118215151615613c7057613c70613d22565b500290565b600082821015613c8757613c87613d22565b500390565b60005b83811015613ca7578181015183820152602001613c8f565b838111156121755750506000910152565b600281046001821680613ccc57607f821691505b60208210811415613ced57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d0757613d07613d22565b5060010190565b600082613d1d57613d1d613d38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154857600080fd5b801515811461154857600080fd5b6001600160e01b03198116811461154857600080fdfea264697066735822122026171f54908c2ad5aac87ba23502c2a1ec91081c617e0f2741b8fa337a27b96764736f6c63430008020033697066733a2f2f516d62486a7376464a543875503634785252534b6f58756f7134565958655261616f31564b7a4b334a46794576452f0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001b6fa78e6fa3fe8a117ab228cddbc49b5551366c0000000000000000000000007f831d14cf103559b4af2e3f73d23f83bb1783380000000000000000000000003d03ca0e2f947607f08c88cc232c409d8e432cab000000000000000000000000ef4d7b2c57bc6c710924966651331626aaf73104000000000000000000000000a287df004974aa012dc63fc9d689316229b21340000000000000000000000000a77c50154a0d89f5cfc3c9559b082d7cce4edc5000000000000000000000000079c4a70847f5fb3939c4041f39eb55172865ae47000000000000000000000000e14178837a5bdbe37c157753cb443f1f1ef46430000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000044c00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000384000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000002bc0000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000070000000000000000000000007f831d14cf103559b4af2e3f73d23f83bb1783380000000000000000000000003d03ca0e2f947607f08c88cc232c409d8e432cab00000000000000000000000093926cbb19dd863c8d90ab148f0b7121e7006940000000000000000000000000402905d2aa5d66515d51faf2dfa4e350634dd20a00000000000000000000000002c65175f7daf40be976e4fa54842b08149d8c6d00000000000000000000000047e2e4aa911a75006076986d09741a48f12c2526000000000000000000000000bbea2edb1eb8dba31d69eaeea328b8a59c65da58

Deployed Bytecode

0x6080604052600436106103a65760003560e01c8063704b6c02116101e7578063c721f08d1161010d578063e5f4d771116100a0578063f1d5f5171161006f578063f1d5f51714610b29578063f2fde38b14610b49578063fc15ad0614610b69578063ff1b655614610b89576103ef565b8063e5f4d77114610aca578063e8a3d48514610adf578063e985e9c514610af4578063ea7523ee14610b14576103ef565b8063d79779b2116100dc578063d79779b214610a49578063db24f62414610a7f578063db563d0514610a9f578063e33b7de314610ab5576103ef565b8063c721f08d146109be578063c87b56dd146109d3578063ce7c2ac2146109f3578063d6f7818314610a29576103ef565b806395d89b4111610185578063a617e97611610154578063a617e97614610949578063a7f93ebd14610969578063afad20af1461097e578063b88d4fde1461099e576103ef565b806395d89b41146108cb5780639852595c146108e0578063a0712d6814610916578063a22cb46514610929576103ef565b806379aaa009116101c157806379aaa0091461084d5780638b83209b1461086d5780638da5cb5b1461088d578063938e3d7b146108ab576103ef565b8063704b6c02146107f857806370a0823114610818578063715018a614610838576103ef565b80633a98ef39116102cc5780634f5e0b281161026a578063616d0dfd11610239578063616d0dfd1461078d5780636352211e146107a25780636a672769146107c25780636aaa571d146107e2576103ef565b80634f5e0b28146106d75780634f6ccce7146106f157806355f804b3146107115780635e5c06e214610731576103ef565b806342842e0e116102a657806342842e0e1461064b57806342966c681461066b578063429e3846146106a257806348b75044146106b7576103ef565b80633a98ef39146105da5780633c8463a1146105ef578063406072a914610605576103ef565b8063191655871161034457806323b872dd1161031357806323b872dd1461056457806326f8f7e6146105845780632f745c59146105a457806333bc1c5c146105c4576103ef565b806319165587146104f95780631969f7b1146105195780631c5f22531461052f578063220ae7f914610545576103ef565b8063095ea7b311610380578063095ea7b31461048357806310969523146104a55780631307bb00146104c557806318160ddd146104da576103ef565b806301ffc9a7146103f457806306fdde0314610429578063081812fc1461044b576103ef565b366103ef577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040057600080fd5b5061041461040f3660046138e5565b610b9e565b60405190151581526020015b60405180910390f35b34801561043557600080fd5b5061043e610bcb565b6040516104209190613a7d565b34801561045757600080fd5b5061046b610466366004613975565b610c5d565b6040516001600160a01b039091168152602001610420565b34801561048f57600080fd5b506104a361049e3660046137eb565b610cf7565b005b3480156104b157600080fd5b506104a36104c036600461392f565b610e0d565b3480156104d157600080fd5b506104a3610e65565b3480156104e657600080fd5b506009545b604051908152602001610420565b34801561050557600080fd5b506104a36105143660046136ad565b610ea0565b34801561052557600080fd5b506104eb60135481565b34801561053b57600080fd5b506104eb60145481565b34801561055157600080fd5b50601a5461041490610100900460ff1681565b34801561057057600080fd5b506104a361057f366004613701565b610fce565b34801561059057600080fd5b506104a361059f366004613975565b610fff565b3480156105b057600080fd5b506104eb6105bf3660046137eb565b6112da565b3480156105d057600080fd5b506104eb60125481565b3480156105e657600080fd5b50600b546104eb565b3480156105fb57600080fd5b506104eb60165481565b34801561061157600080fd5b506104eb61062036600461391d565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561065757600080fd5b506104a3610666366004613701565b611370565b34801561067757600080fd5b5061068b610686366004613975565b61138b565b604080519215158352602083019190915201610420565b3480156106ae57600080fd5b506104a3611484565b3480156106c357600080fd5b506104a36106d236600461391d565b61154b565b3480156106e357600080fd5b50601a546104149060ff1681565b3480156106fd57600080fd5b506104eb61070c366004613975565b611733565b34801561071d57600080fd5b506104a361072c36600461392f565b6117d4565b34801561073d57600080fd5b5061077061074c3660046136ad565b601d6020526000908152604090208054600182015460029092015490919060ff1683565b604080519384526020840192909252151590820152606001610420565b34801561079957600080fd5b506104a3611811565b3480156107ae57600080fd5b5061046b6107bd366004613975565b611847565b3480156107ce57600080fd5b506104a36107dd366004613975565b6118be565b3480156107ee57600080fd5b506104eb601b5481565b34801561080457600080fd5b506104a36108133660046136ad565b6118ed565b34801561082457600080fd5b506104eb6108333660046136ad565b611943565b34801561084457600080fd5b506104a36119ca565b34801561085957600080fd5b506104a36108683660046139a5565b611a00565b34801561087957600080fd5b5061046b610888366004613975565b611b19565b34801561089957600080fd5b506000546001600160a01b031661046b565b3480156108b757600080fd5b506104a36108c636600461392f565b611b57565b3480156108d757600080fd5b5061043e611b94565b3480156108ec57600080fd5b506104eb6108fb3660046136ad565b6001600160a01b03166000908152600e602052604090205490565b6104a3610924366004613975565b611ba3565b34801561093557600080fd5b506104a36109443660046137be565b611fa0565b34801561095557600080fd5b506104a3610964366004613975565b611fab565b34801561097557600080fd5b506014546104eb565b34801561098a57600080fd5b506104a36109993660046139a5565b611fda565b3480156109aa57600080fd5b506104a36109b9366004613741565b612143565b3480156109ca57600080fd5b506104a361217b565b3480156109df57600080fd5b5061043e6109ee366004613975565b6121bb565b3480156109ff57600080fd5b506104eb610a0e3660046136ad565b6001600160a01b03166000908152600d602052604090205490565b348015610a3557600080fd5b506104a3610a44366004613975565b612296565b348015610a5557600080fd5b506104eb610a643660046136ad565b6001600160a01b031660009081526010602052604090205490565b348015610a8b57600080fd5b506104a3610a9a366004613975565b612331565b348015610aab57600080fd5b506104eb60155481565b348015610ac157600080fd5b50600c546104eb565b348015610ad657600080fd5b506104a3612360565b348015610aeb57600080fd5b5061043e612397565b348015610b0057600080fd5b50610414610b0f3660046136c9565b6123a6565b348015610b2057600080fd5b506104a36123d4565b348015610b3557600080fd5b506104a3610b44366004613975565b612413565b348015610b5557600080fd5b506104a3610b643660046136ad565b612442565b348015610b7557600080fd5b506104a3610b84366004613816565b6124da565b348015610b9557600080fd5b5061043e612626565b60006001600160e01b0319821663780e9d6360e01b1480610bc35750610bc3826126b4565b90505b919050565b606060018054610bda90613cb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0690613cb8565b8015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610cdb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610d0282611847565b9050806001600160a01b0316836001600160a01b03161415610d705760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610cd2565b336001600160a01b0382161480610d8c5750610d8c8133610b0f565b610dfe5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cd2565b610e088383612704565b505050565b6000546001600160a01b03163314610e375760405162461bcd60e51b8152600401610cd290613b73565b601a546301000000900460ff1615610e4e57600080fd5b8051610e619060179060208401906135bc565b5050565b6000546001600160a01b03163314610e8f5760405162461bcd60e51b8152600401610cd290613b73565b601a805461ff001916610100179055565b6001600160a01b0381166000908152600d6020526040902054610ed55760405162461bcd60e51b8152600401610cd290613ae2565b6000610ee0600c5490565b610eea9047613c2a565b90506000610f178383610f12866001600160a01b03166000908152600e602052604090205490565b612772565b905080610f365760405162461bcd60e51b8152600401610cd290613b28565b6001600160a01b0383166000908152600e602052604081208054839290610f5e908490613c2a565b9250508190555080600c6000828254610f779190613c2a565b90915550610f87905083826127b8565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610fd833826128d1565b610ff45760405162461bcd60e51b8152600401610cd290613ba8565b610e088383836129a0565b336000908152601d602052604090206002015460ff1615156001146110665760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a20596f75206d75737420626520616e2061646d696e2e000000006044820152606401610cd2565b600081116110c25760405162461bcd60e51b8152602060048201526024808201527f4572726f723a204e65656420746f20686176652072657365727665642073757060448201526338363c9760e11b6064820152608401610cd2565b336000908152601d602052604090206002015460ff1615156001146111295760405162461bcd60e51b815260206004820152601f60248201527f4572726f723a204f6e6c7920616e2061646d696e2063616e20636c61696d2e006044820152606401610cd2565b336000908152601d60205260409020548111156111b0576040805162461bcd60e51b81526020600482015260248101919091527f4572726f723a20596f752061726520747279696e6720746f20636c61696d206d60448201527f6f7265204e465473207468616e20796f7520686176652072657365727665642e6064820152608401610cd2565b601354816111bd60095490565b6111c79190613c2a565b111561122b5760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a20596f7520776f756c642065786365656420746865206d61782060448201526c39bab838363c903634b6b4ba1760991b6064820152608401610cd2565b336000908152601d60205260408120805483929061124a908490613c75565b9091555050601b5461125d908290613c75565b601b5560005b81811015610e6157601c805490600061127b83613cf3565b919050555061128c33601c54612b4b565b337f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856112b760095490565b60405190815260200160405180910390a2806112d281613cf3565b915050611263565b60006112e583611943565b82106113475760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610cd2565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610e0883838360405180602001604052806000815250612143565b60008061139783611847565b6001600160a01b0316336001600160a01b031614806113cf57506113ba83610c5d565b6001600160a01b0316336001600160a01b0316145b806113e757506113e76113e184611847565b336123a6565b6114465760405162461bcd60e51b815260206004820152602a60248201527f4572726f723a20596f75206d757374206f776e207468697320746f6b656e20746044820152693790313ab9371034ba1760b11b6064820152608401610cd2565b61144f83612b65565b604051839033907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca590600090a3506001905091565b336000908152601d602052604090206002015460ff1615156001146114eb5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a20596f75206d75737420626520616e2061646d696e2e000000006044820152606401610cd2565b60005b601e5481101561154857611536601e828154811061151c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316610ea0565b8061154081613cf3565b9150506114ee565b50565b6001600160a01b0381166000908152600d60205260409020546115805760405162461bcd60e51b8152600401610cd290613ae2565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156115d857600080fd5b505afa1580156115ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611610919061398d565b61161a9190613c2a565b905060006116538383610f1287876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806116725760405162461bcd60e51b8152600401610cd290613b28565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906116a9908490613c2a565b90915550506001600160a01b038416600090815260106020526040812080548392906116d6908490613c2a565b909155506116e79050848483612c0c565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061173e60095490565b82106117a15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610cd2565b600982815481106117c257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b031633146117fe5760405162461bcd60e51b8152600401610cd290613b73565b8051610e619060189060208401906135bc565b6000546001600160a01b0316331461183b5760405162461bcd60e51b8152600401610cd290613b73565b601a805460ff19169055565b6000818152600360205260408120546001600160a01b031680610bc35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610cd2565b6000546001600160a01b031633146118e85760405162461bcd60e51b8152600401610cd290613b73565b601455565b6000546001600160a01b031633146119175760405162461bcd60e51b8152600401610cd290613b73565b6001600160a01b03166000908152601d60205260409020600201805460ff19811660ff90911615179055565b60006001600160a01b0382166119ae5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610cd2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146119f45760405162461bcd60e51b8152600401610cd290613b73565b6119fe6000612c5e565b565b6000546001600160a01b03163314611a2a5760405162461bcd60e51b8152600401610cd290613b73565b60135482611a3760095490565b601b54611a449190613c2a565b611a4e9190613c2a565b1115611aad5760405162461bcd60e51b815260206004820152602860248201527f4572726f723a205468697320776f756c642065786365656420746865206d61786044820152671039bab838363c9760c11b6064820152608401610cd2565b81601b6000828254611abf9190613c2a565b90915550506001600160a01b0381166000908152601d602052604081208054849290611aec908490613c2a565b90915550506001600160a01b03166000908152601d60205260409020600201805460ff1916600117905550565b6000600f8281548110611b3c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6000546001600160a01b03163314611b815760405162461bcd60e51b8152600401610cd290613b73565b8051610e619060199060208401906135bc565b606060028054610bda90613cb8565b601a5462010000900460ff1615611bf55760405162461bcd60e51b815260206004820152601660248201527522b93937b91d10273790393296b2b73a3930b731bc9760511b6044820152606401610cd2565b601a805462ff0000191662010000179081905560ff1680611c1d5750601a54610100900460ff165b611c695760405162461bcd60e51b815260206004820152601a60248201527f4572726f723a2053616c65206973206e6f74206163746976652e0000000000006044820152606401610cd2565b601b54601354611c799190613c75565b81611c8360095490565b611c8d9190613c2a565b1115611cec5760405162461bcd60e51b815260206004820152602860248201527f4572726f723a20507572636861736520776f756c6420657863656564206d61786044820152671039bab838363c9760c11b6064820152608401610cd2565b601654336000908152601d6020526040902060010154611d0c9083613c2a565b1115611d6c5760405162461bcd60e51b815260206004820152602960248201527f4572726f723a20596f7520776f756c6420657863656564207468652077616c6c60448201526832ba103634b6b4ba1760b91b6064820152608401610cd2565b333b15611dbb5760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a20436f6e7472616374732063616e6e6f74206d696e742e0000006044820152606401610cd2565b601a54610100900460ff1615611e2d5780601554611dd99190613c56565b341015611e285760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a204e6f7420656e6f7567682065746865722073656e742e0000006044820152606401610cd2565b611ef3565b601a5460ff1615611ef35780601454611e469190613c56565b341015611e955760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a204e6f7420656e6f7567682065746865722073656e742e0000006044820152606401610cd2565b601254421015611ef35760405162461bcd60e51b815260206004820152602360248201527f4572726f723a205075626c69632073616c6520686173206e6f7420737461727460448201526232b21760e91b6064820152608401610cd2565b60005b81811015611f9057601c8054906000611f0e83613cf3565b9091555050336000908152601d60205260408120600101805491611f3183613cf3565b9190505550611f4233601c54612b4b565b337f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611f6d60095490565b60405190815260200160405180910390a280611f8881613cf3565b915050611ef6565b5050601a805462ff000019169055565b610e61338383612cae565b6000546001600160a01b03163314611fd55760405162461bcd60e51b8152600401610cd290613b73565b601555565b6000546001600160a01b031633146120045760405162461bcd60e51b8152600401610cd290613b73565b600082601b546120149190613c75565b10156120775760405162461bcd60e51b815260206004820152602c60248201527f4572726f723a205468697320776f756c64206d616b652072657365727665642060448201526b3632b9b9903a3430b710181760a11b6064820152608401610cd2565b6001600160a01b0381166000908152601d602052604081205461209b908490613c75565b10156121045760405162461bcd60e51b815260206004820152603260248201527f4572726f723a205573657220646f6573206e6f7420686176652074686973206d60448201527130b73c903932b9b2b93b32b21027232a399760711b6064820152608401610cd2565b81601b60008282546121169190613c75565b90915550506001600160a01b0381166000908152601d602052604081208054849290611aec908490613c75565b61214d33836128d1565b6121695760405162461bcd60e51b8152600401610cd290613ba8565b61217584848484612d7d565b50505050565b6000546001600160a01b031633146121a55760405162461bcd60e51b8152600401610cd290613b73565b601a805461ff001960ff19909116600117169055565b6000818152600360205260409020546060906001600160a01b031661223a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cd2565b6000612244612db0565b90506000815111612264576040518060200160405280600081525061228f565b8061226e84612dbf565b60405160200161227f929190613a11565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146122c05760405162461bcd60e51b8152600401610cd290613b73565b60135481111561232c5760405162461bcd60e51b815260206004820152603160248201527f4572726f723a204e6577206d617820737570706c792063616e6e6f742065786360448201527032b2b21037b934b3b4b730b61036b0bc1760791b6064820152608401610cd2565b601355565b6000546001600160a01b0316331461235b5760405162461bcd60e51b8152600401610cd290613b73565b601255565b6000546001600160a01b0316331461238a5760405162461bcd60e51b8152600401610cd290613b73565b601a805461ff0019169055565b606060198054610bda90613cb8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146123fe5760405162461bcd60e51b8152600401610cd290613b73565b601a805463ff00000019166301000000179055565b6000546001600160a01b0316331461243d5760405162461bcd60e51b8152600401610cd290613b73565b601655565b6000546001600160a01b0316331461246c5760405162461bcd60e51b8152600401610cd290613b73565b6001600160a01b0381166124d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cd2565b61154881612c5e565b6000546001600160a01b031633146125045760405162461bcd60e51b8152600401610cd290613b73565b601b546013546125149190613c75565b81516009546125239190613c2a565b11156125845760405162461bcd60e51b815260206004820152602a60248201527f4572726f723a20596f7520776f756c64206578636565642074686520616972646044820152693937b8103634b6b4ba1760b11b6064820152608401610cd2565b60005b8151811015610e6157601c80549060006125a083613cf3565b91905055506125d88282815181106125c857634e487b7160e01b600052603260045260246000fd5b6020026020010151601c54612b4b565b337f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561260360095490565b60405190815260200160405180910390a28061261e81613cf3565b915050612587565b6017805461263390613cb8565b80601f016020809104026020016040519081016040528092919081815260200182805461265f90613cb8565b80156126ac5780601f10612681576101008083540402835291602001916126ac565b820191906000526020600020905b81548152906001019060200180831161268f57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b14806126e557506001600160e01b03198216635b5e139f60e01b145b80610bc357506301ffc9a760e01b6001600160e01b0319831614610bc3565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061273982611847565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d60205260408120549091839161279c9086613c56565b6127a69190613c42565b6127b09190613c75565b949350505050565b804710156128085760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cd2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612855576040519150601f19603f3d011682016040523d82523d6000602084013e61285a565b606091505b5050905080610e085760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cd2565b6000818152600360205260408120546001600160a01b031661294a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cd2565b600061295583611847565b9050806001600160a01b0316846001600160a01b031614806129905750836001600160a01b031661298584610c5d565b6001600160a01b0316145b806127b057506127b081856123a6565b826001600160a01b03166129b382611847565b6001600160a01b031614612a1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610cd2565b6001600160a01b038216612a7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cd2565b612a88838383612eda565b612a93600082612704565b6001600160a01b0383166000908152600460205260408120805460019290612abc908490613c75565b90915550506001600160a01b0382166000908152600460205260408120805460019290612aea908490613c2a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e61828260405180602001604052806000815250612f97565b6000612b7082611847565b9050612b7e81600084612eda565b612b89600083612704565b6001600160a01b0381166000908152600460205260408120805460019290612bb2908490613c75565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e08908490612fca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415612d105760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cd2565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612d888484846129a0565b612d948484848461309c565b6121755760405162461bcd60e51b8152600401610cd290613a90565b606060188054610bda90613cb8565b606081612de457506040805180820190915260018152600360fc1b6020820152610bc6565b8160005b8115612e0e5780612df881613cf3565b9150612e079050600a83613c42565b9150612de8565b60008167ffffffffffffffff811115612e3757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e61576020820181803683370190505b5090505b84156127b057612e76600183613c75565b9150612e83600a86613d0e565b612e8e906030613c2a565b60f81b818381518110612eb157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612ed3600a86613c42565b9450612e65565b6001600160a01b038316612f3557612f3081600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612f58565b816001600160a01b0316836001600160a01b031614612f5857612f5883826131a9565b6001600160a01b038216612f7457612f6f81613246565b610e08565b826001600160a01b0316826001600160a01b031614610e0857610e08828261331f565b612fa18383613363565b612fae600084848461309c565b610e085760405162461bcd60e51b8152600401610cd290613a90565b600061301f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134b19092919063ffffffff16565b805190915015610e08578080602001905181019061303d91906138c9565b610e085760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610cd2565b60006001600160a01b0384163b1561319e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906130e0903390899088908890600401613a40565b602060405180830381600087803b1580156130fa57600080fd5b505af192505050801561312a575060408051601f3d908101601f1916820190925261312791810190613901565b60015b613184573d808015613158576040519150601f19603f3d011682016040523d82523d6000602084013e61315d565b606091505b50805161317c5760405162461bcd60e51b8152600401610cd290613a90565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127b0565b506001949350505050565b600060016131b684611943565b6131c09190613c75565b600083815260086020526040902054909150808214613213576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061325890600190613c75565b6000838152600a60205260408120546009805493945090928490811061328e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106132bd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061330357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061332a83611943565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166133b95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cd2565b6000818152600360205260409020546001600160a01b03161561341e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610cd2565b61342a60008383612eda565b6001600160a01b0382166000908152600460205260408120805460019290613453908490613c2a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606127b0848460008585843b61350a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610cd2565b600080866001600160a01b0316858760405161352691906139f5565b60006040518083038185875af1925050503d8060008114613563576040519150601f19603f3d011682016040523d82523d6000602084013e613568565b606091505b5091509150613578828286613583565b979650505050505050565b6060831561359257508161228f565b8251156135a25782518084602001fd5b8160405162461bcd60e51b8152600401610cd29190613a7d565b8280546135c890613cb8565b90600052602060002090601f0160209004810192826135ea5760008555613630565b82601f1061360357805160ff1916838001178555613630565b82800160010185558215613630579182015b82811115613630578251825591602001919060010190613615565b5061363c929150613640565b5090565b5b8082111561363c5760008155600101613641565b600067ffffffffffffffff83111561366f5761366f613d4e565b613682601f8401601f1916602001613bf9565b905082815283838301111561369657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156136be578081fd5b813561228f81613d64565b600080604083850312156136db578081fd5b82356136e681613d64565b915060208301356136f681613d64565b809150509250929050565b600080600060608486031215613715578081fd5b833561372081613d64565b9250602084013561373081613d64565b929592945050506040919091013590565b60008060008060808587031215613756578081fd5b843561376181613d64565b9350602085013561377181613d64565b925060408501359150606085013567ffffffffffffffff811115613793578182fd5b8501601f810187136137a3578182fd5b6137b287823560208401613655565b91505092959194509250565b600080604083850312156137d0578182fd5b82356137db81613d64565b915060208301356136f681613d79565b600080604083850312156137fd578182fd5b823561380881613d64565b946020939093013593505050565b60006020808385031215613828578182fd5b823567ffffffffffffffff8082111561383f578384fd5b818501915085601f830112613852578384fd5b81358181111561386457613864613d4e565b8381029150613874848301613bf9565b8181528481019084860184860187018a101561388e578788fd5b8795505b838610156138bc57803594506138a785613d64565b84835260019590950194918601918601613892565b5098975050505050505050565b6000602082840312156138da578081fd5b815161228f81613d79565b6000602082840312156138f6578081fd5b813561228f81613d87565b600060208284031215613912578081fd5b815161228f81613d87565b600080604083850312156136db578182fd5b600060208284031215613940578081fd5b813567ffffffffffffffff811115613956578182fd5b8201601f81018413613966578182fd5b6127b084823560208401613655565b600060208284031215613986578081fd5b5035919050565b60006020828403121561399e578081fd5b5051919050565b600080604083850312156139b7578182fd5b8235915060208301356136f681613d64565b600081518084526139e1816020860160208601613c8c565b601f01601f19169290920160200192915050565b60008251613a07818460208701613c8c565b9190910192915050565b60008351613a23818460208801613c8c565b835190830190613a37818360208801613c8c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a73908301846139c9565b9695505050505050565b60006020825261228f60208301846139c9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c2257613c22613d4e565b604052919050565b60008219821115613c3d57613c3d613d22565b500190565b600082613c5157613c51613d38565b500490565b6000816000190483118215151615613c7057613c70613d22565b500290565b600082821015613c8757613c87613d22565b500390565b60005b83811015613ca7578181015183820152602001613c8f565b838111156121755750506000910152565b600281046001821680613ccc57607f821691505b60208210811415613ced57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d0757613d07613d22565b5060010190565b600082613d1d57613d1d613d38565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154857600080fd5b801515811461154857600080fd5b6001600160e01b03198116811461154857600080fdfea264697066735822122026171f54908c2ad5aac87ba23502c2a1ec91081c617e0f2741b8fa337a27b96764736f6c63430008020033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001b6fa78e6fa3fe8a117ab228cddbc49b5551366c0000000000000000000000007f831d14cf103559b4af2e3f73d23f83bb1783380000000000000000000000003d03ca0e2f947607f08c88cc232c409d8e432cab000000000000000000000000ef4d7b2c57bc6c710924966651331626aaf73104000000000000000000000000a287df004974aa012dc63fc9d689316229b21340000000000000000000000000a77c50154a0d89f5cfc3c9559b082d7cce4edc5000000000000000000000000079c4a70847f5fb3939c4041f39eb55172865ae47000000000000000000000000e14178837a5bdbe37c157753cb443f1f1ef46430000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000000000000000000000000000000000000044c00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000384000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000002bc0000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000070000000000000000000000007f831d14cf103559b4af2e3f73d23f83bb1783380000000000000000000000003d03ca0e2f947607f08c88cc232c409d8e432cab00000000000000000000000093926cbb19dd863c8d90ab148f0b7121e7006940000000000000000000000000402905d2aa5d66515d51faf2dfa4e350634dd20a00000000000000000000000002c65175f7daf40be976e4fa54842b08149d8c6d00000000000000000000000047e2e4aa911a75006076986d09741a48f12c2526000000000000000000000000bbea2edb1eb8dba31d69eaeea328b8a59c65da58

-----Decoded View---------------
Arg [0] : distro (address[]): 0x1B6Fa78e6FA3fe8A117aB228CdDBC49B5551366c,0x7f831D14cF103559b4Af2e3f73D23f83Bb178338,0x3d03cA0E2f947607F08C88CC232c409D8E432CAb,0xEf4d7B2C57bc6c710924966651331626AAF73104,0xA287df004974Aa012dC63FC9D689316229b21340,0xA77c50154a0D89F5cfc3c9559B082d7Cce4edC50,0x79C4a70847F5Fb3939C4041f39eB55172865Ae47,0xe14178837A5bDBE37c157753Cb443F1f1Ef46430
Arg [1] : distro_shares (uint256[]): 1200,1100,1000,900,600,1500,700,3000
Arg [2] : teamclaim (address[]): 0x7f831D14cF103559b4Af2e3f73D23f83Bb178338,0x3d03cA0E2f947607F08C88CC232c409D8E432CAb,0x93926CBb19Dd863C8d90aB148f0B7121E7006940,0x402905d2AA5D66515D51FAF2dFA4e350634dd20A,0x02C65175F7DAF40bE976E4Fa54842b08149d8C6d,0x47E2e4AA911A75006076986D09741a48F12c2526,0xbbEa2Edb1eB8dbA31d69eAeEa328B8A59c65DA58

-----Encoded View---------------
29 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 0000000000000000000000001b6fa78e6fa3fe8a117ab228cddbc49b5551366c
Arg [5] : 0000000000000000000000007f831d14cf103559b4af2e3f73d23f83bb178338
Arg [6] : 0000000000000000000000003d03ca0e2f947607f08c88cc232c409d8e432cab
Arg [7] : 000000000000000000000000ef4d7b2c57bc6c710924966651331626aaf73104
Arg [8] : 000000000000000000000000a287df004974aa012dc63fc9d689316229b21340
Arg [9] : 000000000000000000000000a77c50154a0d89f5cfc3c9559b082d7cce4edc50
Arg [10] : 00000000000000000000000079c4a70847f5fb3939c4041f39eb55172865ae47
Arg [11] : 000000000000000000000000e14178837a5bdbe37c157753cb443f1f1ef46430
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 00000000000000000000000000000000000000000000000000000000000004b0
Arg [14] : 000000000000000000000000000000000000000000000000000000000000044c
Arg [15] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000384
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000258
Arg [18] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [19] : 00000000000000000000000000000000000000000000000000000000000002bc
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [22] : 0000000000000000000000007f831d14cf103559b4af2e3f73d23f83bb178338
Arg [23] : 0000000000000000000000003d03ca0e2f947607f08c88cc232c409d8e432cab
Arg [24] : 00000000000000000000000093926cbb19dd863c8d90ab148f0b7121e7006940
Arg [25] : 000000000000000000000000402905d2aa5d66515d51faf2dfa4e350634dd20a
Arg [26] : 00000000000000000000000002c65175f7daf40be976e4fa54842b08149d8c6d
Arg [27] : 00000000000000000000000047e2e4aa911a75006076986d09741a48f12c2526
Arg [28] : 000000000000000000000000bbea2edb1eb8dba31d69eaeea328b8a59c65da58


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.