ETH Price: $3,386.36 (-1.76%)
Gas: 1 Gwei

Token

ape mfer (apemfer)
 

Overview

Max Total Supply

8,888 apemfer

Holders

2,118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 apemfer
0x79a2bd7e4614a7be3833f617e7f51652dc517b4e
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:
apemfers

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : apemfers.sol
pragma solidity ^0.8.0;

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

contract apemfers is ERC721Enumerable, Ownable {
    string public baseURI;

    address public sartoshi = 0xF7DcF798971452737f1E6196D36Dd215b43b428D;
    address public kingBlackBored = 0x6Cd2D84298F731fa443061255a9a84a09dbCA769;
    address public tropoFarmer = 0xA442dDf27063320789B59A8fdcA5b849Cd2CDeAC;
    address public franklin = 0x72FAe93d08A060A7f0A8919708c0Db74Ca46cbB6;
    address public deezeFi = 0xC46Db2d89327D4C41Eb81c43ED5e3dfF111f9A8f;
    address public seraStarGirl = 0xCb96594AbA4627e6064731b0098Dc97547b397BE;
    address public storm = 0x4385FF4B76d8A7fa8075Ed1ee27c82fFE0951456;
    address public joshOng = 0xaf469C4a0914938e6149CF621c54FB4b1EC0c202;
    address public danielgothits =  0xe9F1E4dC4D1F3F62d54d70Ea73A8c9B4Cd2BDE2D;
    address public keyboardmonkey = 0xe1D29d0a39962a9a8d2A297ebe82e166F8b8EC18;
    address public beanieMaxie = 0xaBF107de3E01c7c257e64E0a18d60A733Aad395d;
    address public j1mmy =  0x442DCCEe68425828C106A3662014B4F131e3BD9b;
    address public pranksy = 0xD387A6E4e84a6C86bd90C158C6028A58CC8Ac459;
    address public dfarmer =  0x7500935C3C34D0d48e9c388b3dFFa0AbBda52633;
    address public shamdoo = 0x11360F0c5552443b33720a44408aba01a809905e;
    address public farokh = 0xc5F59709974262c4AFacc5386287820bDBC7eB3A;

    address public withdrawAddress;

    bool    public publicSaleState = false;
    bool    public preSaleState = false;
    bytes32 public allowListMerkleRoot = 0x0;
    uint256 public MAX_SUPPLY = 8889;

    uint256 public constant MAX_PER_TX = 8;
    uint256 public constant RESERVES = 25;
    uint256 private price = 0.03333 ether;

    mapping(address => bool) public projectProxy;
    mapping(address => uint) public addressToMinted;

    constructor(
        string memory _baseURI,
        address _withdrawAddress
    ) ERC721("ape mfer", "apemfer")

    {
        baseURI = _baseURI;
        withdrawAddress = _withdrawAddress;

        // reserves
        _mint( sartoshi, 0);
        _mint( deezeFi, 1);
        _mint( dfarmer, 2);
        _mint( farokh, 3);
        _mint( franklin, 4);
        _mint( j1mmy, 5);
        _mint( joshOng, 6);
        _mint( keyboardmonkey, 7);
        _mint( kingBlackBored, 8);
        _mint( pranksy, 9);
        _mint( seraStarGirl, 10);
        _mint( shamdoo, 11);
        _mint( storm, 12);
        _mint( tropoFarmer, 13);
        _mint( beanieMaxie, 14);
        _mint( danielgothits, 15);

        for (uint256 i = 16; i <= 16+RESERVES; i++) {
            _mint( withdrawAddress, i);
        }
    }

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


    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function togglePublicSale() external onlyOwner {
        publicSaleState = true;
        preSaleState = false;
        delete allowListMerkleRoot;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

    // This also starts the presale
    function setAllowlistMerkleRoot(bytes32 _allowListMerkleRoot) external onlyOwner {
        preSaleState = true;
        allowListMerkleRoot = _allowListMerkleRoot;
    }

    function allowListMint(uint256 count, bytes32[] calldata proof) public payable {
        uint256 totalSupply = _owners.length;
        require(totalSupply + count < MAX_SUPPLY, "Exceeds max supply.");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify( proof, allowListMerkleRoot, leaf), "wrong proof");
        require(count <= MAX_PER_TX, "exceeds tx max"); 
        require(count * price == msg.value, "invalid funds");

        addressToMinted[_msgSender()] += count;
        for(uint i = 0; i < count; i++) { 
            _mint(_msgSender(), totalSupply+i);
        }
    }

    function publicMint(uint256 count) public payable {
        uint256 totalSupply = _owners.length;
        require(publicSaleState == true, "public sale not started");
        require(totalSupply + count < MAX_SUPPLY, "Excedes max supply.");
        require(count <= MAX_PER_TX, "Exceeds max per transaction.");
        require(count * price == msg.value, "Invalid funds provided.");
    
        for(uint i = 0; i < count; i++) { 
            _mint(_msgSender(), totalSupply+i );
        }
    }

    function burn(uint256 tokenId) public { 
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }

    function withdraw() external onlyOwner  {
        (bool success, ) = withdrawAddress.call{value: address(this).balance}("");
        require(success, "Failed to send to apetoshi.");
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }


    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

    function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){
        for(uint256 i; i < _tokenIds.length; ++i ){
            if(_owners[_tokenIds[i]] != account)
                return false;
        }

        return true;
    }

    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

    function setMintPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

}

 

contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 3 of 14 : 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 4 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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 (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

        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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 14 : Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_withdrawAddress","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beanieMaxie","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"danielgothits","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deezeFi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dfarmer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"farokh","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"franklin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"j1mmy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"joshOng","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keyboardmonkey","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kingBlackBored","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"pranksy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"sartoshi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seraStarGirl","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_allowListMerkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shamdoo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"storm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tropoFarmer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600780546001600160a01b031990811673f7dcf798971452737f1e6196d36dd215b43b428d17909155600880548216736cd2d84298f731fa443061255a9a84a09dbca76917905560098054821673a442ddf27063320789b59a8fdca5b849cd2cdeac179055600a805482167372fae93d08a060a7f0a8919708c0db74ca46cbb6179055600b8054821673c46db2d89327d4c41eb81c43ed5e3dff111f9a8f179055600c8054821673cb96594aba4627e6064731b0098dc97547b397be179055600d80548216734385ff4b76d8a7fa8075ed1ee27c82ffe0951456179055600e8054821673af469c4a0914938e6149cf621c54fb4b1ec0c202179055600f8054821673e9f1e4dc4d1f3f62d54d70ea73a8c9b4cd2bde2d17905560108054821673e1d29d0a39962a9a8d2a297ebe82e166f8b8ec1817905560118054821673abf107de3e01c7c257e64e0a18d60a733aad395d17905560128054821673442dccee68425828c106a3662014b4f131e3bd9b17905560138054821673d387a6e4e84a6c86bd90c158c6028a58cc8ac459179055601480548216737500935c3c34d0d48e9c388b3dffa0abbda526331790556015805482167311360f0c5552443b33720a44408aba01a809905e1790556016805490911673c5f59709974262c4afacc5386287820bdbc7eb3a1790556017805461ffff60a01b1916905560006018556122b9601955667669755a5d2000601a553480156200022157600080fd5b50604051620033d7380380620033d7833981016040819052620002449162000681565b604080518082018252600881526730b8329036b332b960c11b60208083019182528351808501909452600784526630b832b6b332b960c91b9084015281519192916200029391600091620005a8565b508051620002a9906001906020840190620005a8565b505050620002c6620002c0620004d660201b60201c565b620004da565b8151620002db906006906020850190620005a8565b50601780546001600160a01b0319166001600160a01b03838116919091179091556007546200030d911660006200052c565b600b5462000326906001600160a01b031660016200052c565b6014546200033f906001600160a01b031660026200052c565b60165462000358906001600160a01b031660036200052c565b600a5462000371906001600160a01b031660046200052c565b6012546200038a906001600160a01b031660056200052c565b600e54620003a3906001600160a01b031660066200052c565b601054620003bc906001600160a01b031660076200052c565b60088054620003d7916001600160a01b03909116906200052c565b601354620003f0906001600160a01b031660096200052c565b600c5462000409906001600160a01b0316600a6200052c565b60155462000422906001600160a01b0316600b6200052c565b600d546200043b906001600160a01b0316600c6200052c565b60095462000454906001600160a01b0316600d6200052c565b6011546200046d906001600160a01b0316600e6200052c565b600f805462000488916001600160a01b03909116906200052c565b60105b620004996019601062000788565b8111620004cd57601754620004b8906001600160a01b0316826200052c565b80620004c481620007a3565b9150506200048b565b505050620007fe565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620005b690620007c1565b90600052602060002090601f016020900481019282620005da576000855562000625565b82601f10620005f557805160ff191683800117855562000625565b8280016001018555821562000625579182015b828111156200062557825182559160200191906001019062000608565b506200063392915062000637565b5090565b5b8082111562000633576000815560010162000638565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200067c57600080fd5b919050565b600080604083850312156200069557600080fd5b82516001600160401b0380821115620006ad57600080fd5b818501915085601f830112620006c257600080fd5b815181811115620006d757620006d76200064e565b604051601f8201601f19908116603f011681019083821181831017156200070257620007026200064e565b816040528281526020935088848487010111156200071f57600080fd5b600091505b8282101562000743578482018401518183018501529083019062000724565b82821115620007555760008484830101525b95506200076791505085820162000664565b925050509250929050565b634e487b7160e01b600052601160045260246000fd5b600082198211156200079e576200079e62000772565b500190565b6000600019821415620007ba57620007ba62000772565b5060010190565b600181811c90821680620007d657607f821691505b60208210811415620007f857634e487b7160e01b600052602260045260246000fd5b50919050565b612bc9806200080e6000396000f3fe6080604052600436106103815760003560e01c80636c0360eb116101d1578063c46fd00611610102578063ec8bda8e116100a0578063f4a0a5281161006f578063f4a0a52814610a52578063f550eef014610a72578063f73c814b14610a92578063f95df41414610ab257600080fd5b8063ec8bda8e146109ea578063f2fde38b146109fd578063f3993d1114610a1d578063f43a22dc14610a3d57600080fd5b8063e222c7f9116100dc578063e222c7f91461094b578063e294ba5914610960578063e932444414610980578063e985e9c5146109a157600080fd5b8063c46fd006146108eb578063c87b56dd1461090b578063d14859cb1461092b57600080fd5b80639bb906e01161016f578063a398278911610149578063a39827891461086b578063ab75dcfd1461088b578063b2e621d4146108ab578063b88d4fde146108cb57600080fd5b80639bb906e0146108085780639ec00c951461081e578063a22cb4651461084b57600080fd5b806371adc02a116101ab57806371adc02a146107945780638913df2d146107b55780638da5cb5b146107d557806395d89b41146107f357600080fd5b80636c0360eb1461074a57806370a082311461075f578063715018a61461077f57600080fd5b806331a3c773116102b65780634dda9f681161025457806355f804b31161022357806355f804b3146106ba5780635a4fee30146106da5780635bab26e2146106fa5780636352211e1461072a57600080fd5b80634dda9f681461063a5780634e80412a1461065a5780634f6ccce71461067a57806352dce2e91461069a57600080fd5b806342842e0e1161029057806342842e0e146105ad57806342966c68146105cd578063438b6300146105ed5780634d44660c1461061a57600080fd5b806331a3c7731461056257806332cb6b0c146105825780633ccfd60b1461059857600080fd5b806316346a82116103235780631fc16082116102fd5780631fc16082146104ef57806323b872dd1461050f5780632db115441461052f5780632f745c591461054257600080fd5b806316346a821461049a5780631681383c146104ba57806318160ddd146104da57600080fd5b80630922f9c51161035f5780630922f9c514610415578063095ea7b3146104385780630f3f77f01461045a5780631581b6001461047a57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122bb565b610ad2565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610afd565b6040516103b29190612330565b3480156103e957600080fd5b506103fd6103f8366004612343565b610b8f565b6040516001600160a01b0390911681526020016103b2565b34801561042157600080fd5b5061042a601981565b6040519081526020016103b2565b34801561044457600080fd5b50610458610453366004612378565b610c1c565b005b34801561046657600080fd5b50600e546103fd906001600160a01b031681565b34801561048657600080fd5b506017546103fd906001600160a01b031681565b3480156104a657600080fd5b506008546103fd906001600160a01b031681565b3480156104c657600080fd5b506012546103fd906001600160a01b031681565b3480156104e657600080fd5b5060025461042a565b3480156104fb57600080fd5b506007546103fd906001600160a01b031681565b34801561051b57600080fd5b5061045861052a3660046123a2565b610d32565b61045861053d366004612343565b610d64565b34801561054e57600080fd5b5061042a61055d366004612378565b610ef2565b34801561056e57600080fd5b506016546103fd906001600160a01b031681565b34801561058e57600080fd5b5061042a60195481565b3480156105a457600080fd5b50610458610fa5565b3480156105b957600080fd5b506104586105c83660046123a2565b611075565b3480156105d957600080fd5b506104586105e8366004612343565b611090565b3480156105f957600080fd5b5061060d6106083660046123de565b6110e6565b6040516103b291906123f9565b34801561062657600080fd5b506103a6610635366004612489565b61119f565b34801561064657600080fd5b50600a546103fd906001600160a01b031681565b34801561066657600080fd5b506010546103fd906001600160a01b031681565b34801561068657600080fd5b5061042a610695366004612343565b611221565b3480156106a657600080fd5b506011546103fd906001600160a01b031681565b3480156106c657600080fd5b506104586106d536600461257b565b61128e565b3480156106e657600080fd5b506104586106f5366004612664565b6112cf565b34801561070657600080fd5b506103a66107153660046123de565b601b6020526000908152604090205460ff1681565b34801561073657600080fd5b506103fd610745366004612343565b611319565b34801561075657600080fd5b506103d06113a5565b34801561076b57600080fd5b5061042a61077a3660046123de565b611433565b34801561078b57600080fd5b50610458611501565b3480156107a057600080fd5b506017546103a690600160a01b900460ff1681565b3480156107c157600080fd5b506013546103fd906001600160a01b031681565b3480156107e157600080fd5b506005546001600160a01b03166103fd565b3480156107ff57600080fd5b506103d0611537565b34801561081457600080fd5b5061042a60185481565b34801561082a57600080fd5b5061042a6108393660046123de565b601c6020526000908152604090205481565b34801561085757600080fd5b506104586108663660046126e9565b611546565b34801561087757600080fd5b50600d546103fd906001600160a01b031681565b34801561089757600080fd5b506009546103fd906001600160a01b031681565b3480156108b757600080fd5b506014546103fd906001600160a01b031681565b3480156108d757600080fd5b506104586108e6366004612725565b61160b565b3480156108f757600080fd5b50600f546103fd906001600160a01b031681565b34801561091757600080fd5b506103d0610926366004612343565b611643565b34801561093757600080fd5b50600c546103fd906001600160a01b031681565b34801561095757600080fd5b506104586116c4565b34801561096c57600080fd5b50600b546103fd906001600160a01b031681565b34801561098c57600080fd5b506017546103a690600160a81b900460ff1681565b3480156109ad57600080fd5b506103a66109bc366004612781565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6104586109f83660046127b4565b611709565b348015610a0957600080fd5b50610458610a183660046123de565b6118f6565b348015610a2957600080fd5b50610458610a383660046127e7565b61198e565b348015610a4957600080fd5b5061042a600881565b348015610a5e57600080fd5b50610458610a6d366004612343565b6119d0565b348015610a7e57600080fd5b506015546103fd906001600160a01b031681565b348015610a9e57600080fd5b50610458610aad3660046123de565b6119ff565b348015610abe57600080fd5b50610458610acd366004612343565b611a52565b60006001600160e01b0319821663780e9d6360e01b1480610af75750610af782611a94565b92915050565b606060008054610b0c90612845565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890612845565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82611ae4565b610c005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610c2782611319565b9050806001600160a01b0316836001600160a01b03161415610c955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bf7565b336001600160a01b0382161480610cb15750610cb181336109bc565b610d235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bf7565b610d2d8383611b2e565b505050565b610d3d335b82611b9c565b610d595760405162461bcd60e51b8152600401610bf790612880565b610d2d838383611c86565b600254601754600160a01b900460ff161515600114610dc55760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206e6f7420737461727465640000000000000000006044820152606401610bf7565b601954610dd283836128e7565b10610e155760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bf7565b6008821115610e665760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610bf7565b34601a5483610e7591906128ff565b14610ec25760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610bf7565b60005b82811015610d2d57610ee033610edb83856128e7565b611ddc565b80610eea8161291e565b915050610ec5565b6000610efd83611433565b8210610f1b5760405162461bcd60e51b8152600401610bf790612939565b6000805b600254811015610f8c5760028181548110610f3c57610f3c612984565b6000918252602090912001546001600160a01b0386811691161415610f7a5783821415610f6c579150610af79050565b81610f768161291e565b9250505b80610f848161291e565b915050610f1f565b5060405162461bcd60e51b8152600401610bf790612939565b6005546001600160a01b03163314610fcf5760405162461bcd60e51b8152600401610bf79061299a565b6017546040516000916001600160a01b03169047908381818185875af1925050503d806000811461101c576040519150601f19603f3d011682016040523d82523d6000602084013e611021565b606091505b50509050806110725760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2073656e6420746f20617065746f7368692e00000000006044820152606401610bf7565b50565b610d2d8383836040518060200160405280600081525061160b565b61109933610d37565b6110dd5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610bf7565b61107281611e58565b606060006110f383611433565b9050806111145760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561112f5761112f6124dc565b604051908082528060200260200182016040528015611158578160200160208202803683370190505b50905060005b8281101561110c576111708582610ef2565b82828151811061118257611182612984565b6020908102919091010152806111978161291e565b91505061115e565b6000805b8281101561121457846001600160a01b031660028585848181106111c9576111c9612984565b90506020020135815481106111e0576111e0612984565b6000918252602090912001546001600160a01b03161461120457600091505061121a565b61120d8161291e565b90506111a3565b50600190505b9392505050565b600254600090821061128a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bf7565b5090565b6005546001600160a01b031633146112b85760405162461bcd60e51b8152600401610bf79061299a565b80516112cb906006906020840190612215565b5050565b60005b82518110156113125761130085858584815181106112f2576112f2612984565b60200260200101518561160b565b8061130a8161291e565b9150506112d2565b5050505050565b6000806002838154811061132f5761132f612984565b6000918252602090912001546001600160a01b0316905080610af75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bf7565b600680546113b290612845565b80601f01602080910402602001604051908101604052809291908181526020018280546113de90612845565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b505050505081565b60006001600160a01b03821661149e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bf7565b6000805b6002548110156114fa57600281815481106114bf576114bf612984565b6000918252602090912001546001600160a01b03858116911614156114ea576114e78261291e565b91505b6114f38161291e565b90506114a2565b5092915050565b6005546001600160a01b0316331461152b5760405162461bcd60e51b8152600401610bf79061299a565b6115356000611eda565b565b606060018054610b0c90612845565b6001600160a01b03821633141561159f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bf7565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116153383611b9c565b6116315760405162461bcd60e51b8152600401610bf790612880565b61163d84848484611f2c565b50505050565b606061164e82611ae4565b6116925760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610bf7565b600661169d83611f5f565b6040516020016116ae9291906129eb565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146116ee5760405162461bcd60e51b8152600401610bf79061299a565b6017805461ffff60a01b1916600160a01b1790556000601855565b60025460195461171985836128e7565b1061175c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610bf7565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117d684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601854915084905061205d565b6118105760405162461bcd60e51b815260206004820152600b60248201526a3bb937b73390383937b7b360a91b6044820152606401610bf7565b60088511156118525760405162461bcd60e51b815260206004820152600e60248201526d0caf0c6cacac8e640e8f040dac2f60931b6044820152606401610bf7565b34601a548661186191906128ff565b1461189e5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c69642066756e647360981b6044820152606401610bf7565b336000908152601c6020526040812080548792906118bd9084906128e7565b90915550600090505b858110156118ee576118dc33610edb83866128e7565b806118e68161291e565b9150506118c6565b505050505050565b6005546001600160a01b031633146119205760405162461bcd60e51b8152600401610bf79061299a565b6001600160a01b0381166119855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf7565b61107281611eda565b60005b815181101561163d576119be84848484815181106119b1576119b1612984565b6020026020010151610d32565b806119c88161291e565b915050611991565b6005546001600160a01b031633146119fa5760405162461bcd60e51b8152600401610bf79061299a565b601a55565b6005546001600160a01b03163314611a295760405162461bcd60e51b8152600401610bf79061299a565b6001600160a01b03166000908152601b60205260409020805460ff19811660ff90911615179055565b6005546001600160a01b03163314611a7c5760405162461bcd60e51b8152600401610bf79061299a565b6017805460ff60a81b1916600160a81b179055601855565b60006001600160e01b031982166380ac58cd60e01b1480611ac557506001600160e01b03198216635b5e139f60e01b145b80610af757506301ffc9a760e01b6001600160e01b0319831614610af7565b60025460009082108015610af7575060006001600160a01b031660028381548110611b1157611b11612984565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6382611319565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ba782611ae4565b611c085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bf7565b6000611c1383611319565b9050806001600160a01b0316846001600160a01b03161480611c4e5750836001600160a01b0316611c4384610b8f565b6001600160a01b0316145b80611c7e57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c9982611319565b6001600160a01b031614611d015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bf7565b6001600160a01b038216611d635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf7565b611d6e600082611b2e565b8160028281548110611d8257611d82612984565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611e6382611319565b9050611e70600083611b2e565b600060028381548110611e8557611e85612984565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f37848484611c86565b611f4384848484612073565b61163d5760405162461bcd60e51b8152600401610bf790612a92565b606081611f835750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fad5780611f978161291e565b9150611fa69050600a83612afa565b9150611f87565b60008167ffffffffffffffff811115611fc857611fc86124dc565b6040519080825280601f01601f191660200182016040528015611ff2576020820181803683370190505b5090505b8415611c7e57612007600183612b0e565b9150612014600a86612b25565b61201f9060306128e7565b60f81b81838151811061203457612034612984565b60200101906001600160f81b031916908160001a905350612056600a86612afa565b9450611ff6565b60008261206a8584612171565b14949350505050565b60006001600160a01b0384163b1561216657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b7903390899088908890600401612b39565b6020604051808303816000875af19250505080156120f2575060408051601f3d908101601f191682019092526120ef91810190612b76565b60015b61214c573d808015612120576040519150601f19603f3d011682016040523d82523d6000602084013e612125565b606091505b5080516121445760405162461bcd60e51b8152600401610bf790612a92565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c7e565b506001949350505050565b600081815b845181101561110c57600085828151811061219357612193612984565b602002602001015190508083116121d5576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612202565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061220d8161291e565b915050612176565b82805461222190612845565b90600052602060002090601f0160209004810192826122435760008555612289565b82601f1061225c57805160ff1916838001178555612289565b82800160010185558215612289579182015b8281111561228957825182559160200191906001019061226e565b5061128a9291505b8082111561128a5760008155600101612291565b6001600160e01b03198116811461107257600080fd5b6000602082840312156122cd57600080fd5b813561121a816122a5565b60005b838110156122f35781810151838201526020016122db565b8381111561163d5750506000910152565b6000815180845261231c8160208601602086016122d8565b601f01601f19169290920160200192915050565b60208152600061121a6020830184612304565b60006020828403121561235557600080fd5b5035919050565b80356001600160a01b038116811461237357600080fd5b919050565b6000806040838503121561238b57600080fd5b6123948361235c565b946020939093013593505050565b6000806000606084860312156123b757600080fd5b6123c08461235c565b92506123ce6020850161235c565b9150604084013590509250925092565b6000602082840312156123f057600080fd5b61121a8261235c565b6020808252825182820181905260009190848201906040850190845b8181101561243157835183529284019291840191600101612415565b50909695505050505050565b60008083601f84011261244f57600080fd5b50813567ffffffffffffffff81111561246757600080fd5b6020830191508360208260051b850101111561248257600080fd5b9250929050565b60008060006040848603121561249e57600080fd5b6124a78461235c565b9250602084013567ffffffffffffffff8111156124c357600080fd5b6124cf8682870161243d565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561251b5761251b6124dc565b604052919050565b600067ffffffffffffffff83111561253d5761253d6124dc565b612550601f8401601f19166020016124f2565b905082815283838301111561256457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561258d57600080fd5b813567ffffffffffffffff8111156125a457600080fd5b8201601f810184136125b557600080fd5b611c7e84823560208401612523565b600082601f8301126125d557600080fd5b8135602067ffffffffffffffff8211156125f1576125f16124dc565b8160051b6126008282016124f2565b928352848101820192828101908785111561261a57600080fd5b83870192505b8483101561263957823582529183019190830190612620565b979650505050505050565b600082601f83011261265557600080fd5b61121a83833560208501612523565b6000806000806080858703121561267a57600080fd5b6126838561235c565b93506126916020860161235c565b9250604085013567ffffffffffffffff808211156126ae57600080fd5b6126ba888389016125c4565b935060608701359150808211156126d057600080fd5b506126dd87828801612644565b91505092959194509250565b600080604083850312156126fc57600080fd5b6127058361235c565b91506020830135801515811461271a57600080fd5b809150509250929050565b6000806000806080858703121561273b57600080fd5b6127448561235c565b93506127526020860161235c565b925060408501359150606085013567ffffffffffffffff81111561277557600080fd5b6126dd87828801612644565b6000806040838503121561279457600080fd5b61279d8361235c565b91506127ab6020840161235c565b90509250929050565b6000806000604084860312156127c957600080fd5b83359250602084013567ffffffffffffffff8111156124c357600080fd5b6000806000606084860312156127fc57600080fd5b6128058461235c565b92506128136020850161235c565b9150604084013567ffffffffffffffff81111561282f57600080fd5b61283b868287016125c4565b9150509250925092565b600181811c9082168061285957607f821691505b6020821081141561287a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128fa576128fa6128d1565b500190565b6000816000190483118215151615612919576129196128d1565b500290565b6000600019821415612932576129326128d1565b5060010190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081516129e18185602086016122d8565b9290920192915050565b600080845481600182811c915080831680612a0757607f831692505b6020808410821415612a2757634e487b7160e01b86526022600452602486fd5b818015612a3b5760018114612a4c57612a79565b60ff19861689528489019650612a79565b60008b81526020902060005b86811015612a715781548b820152908501908301612a58565b505084890196505b505050505050612a8981856129cf565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612b0957612b09612ae4565b500490565b600082821015612b2057612b206128d1565b500390565b600082612b3457612b34612ae4565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6c90830184612304565b9695505050505050565b600060208284031215612b8857600080fd5b815161121a816122a556fea26469706673582212201ef480b5ae993e68ebe3baae923585b8f94b76bda07abd1450d5af416d2227ba64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a05123b49c1094a83f7a3032eb43c3bd1d61d21d000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63504835686e5176544641614a6e7569464c4b7939456377475a4271535362645a316f5a4156337961484b562f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103815760003560e01c80636c0360eb116101d1578063c46fd00611610102578063ec8bda8e116100a0578063f4a0a5281161006f578063f4a0a52814610a52578063f550eef014610a72578063f73c814b14610a92578063f95df41414610ab257600080fd5b8063ec8bda8e146109ea578063f2fde38b146109fd578063f3993d1114610a1d578063f43a22dc14610a3d57600080fd5b8063e222c7f9116100dc578063e222c7f91461094b578063e294ba5914610960578063e932444414610980578063e985e9c5146109a157600080fd5b8063c46fd006146108eb578063c87b56dd1461090b578063d14859cb1461092b57600080fd5b80639bb906e01161016f578063a398278911610149578063a39827891461086b578063ab75dcfd1461088b578063b2e621d4146108ab578063b88d4fde146108cb57600080fd5b80639bb906e0146108085780639ec00c951461081e578063a22cb4651461084b57600080fd5b806371adc02a116101ab57806371adc02a146107945780638913df2d146107b55780638da5cb5b146107d557806395d89b41146107f357600080fd5b80636c0360eb1461074a57806370a082311461075f578063715018a61461077f57600080fd5b806331a3c773116102b65780634dda9f681161025457806355f804b31161022357806355f804b3146106ba5780635a4fee30146106da5780635bab26e2146106fa5780636352211e1461072a57600080fd5b80634dda9f681461063a5780634e80412a1461065a5780634f6ccce71461067a57806352dce2e91461069a57600080fd5b806342842e0e1161029057806342842e0e146105ad57806342966c68146105cd578063438b6300146105ed5780634d44660c1461061a57600080fd5b806331a3c7731461056257806332cb6b0c146105825780633ccfd60b1461059857600080fd5b806316346a82116103235780631fc16082116102fd5780631fc16082146104ef57806323b872dd1461050f5780632db115441461052f5780632f745c591461054257600080fd5b806316346a821461049a5780631681383c146104ba57806318160ddd146104da57600080fd5b80630922f9c51161035f5780630922f9c514610415578063095ea7b3146104385780630f3f77f01461045a5780631581b6001461047a57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122bb565b610ad2565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610afd565b6040516103b29190612330565b3480156103e957600080fd5b506103fd6103f8366004612343565b610b8f565b6040516001600160a01b0390911681526020016103b2565b34801561042157600080fd5b5061042a601981565b6040519081526020016103b2565b34801561044457600080fd5b50610458610453366004612378565b610c1c565b005b34801561046657600080fd5b50600e546103fd906001600160a01b031681565b34801561048657600080fd5b506017546103fd906001600160a01b031681565b3480156104a657600080fd5b506008546103fd906001600160a01b031681565b3480156104c657600080fd5b506012546103fd906001600160a01b031681565b3480156104e657600080fd5b5060025461042a565b3480156104fb57600080fd5b506007546103fd906001600160a01b031681565b34801561051b57600080fd5b5061045861052a3660046123a2565b610d32565b61045861053d366004612343565b610d64565b34801561054e57600080fd5b5061042a61055d366004612378565b610ef2565b34801561056e57600080fd5b506016546103fd906001600160a01b031681565b34801561058e57600080fd5b5061042a60195481565b3480156105a457600080fd5b50610458610fa5565b3480156105b957600080fd5b506104586105c83660046123a2565b611075565b3480156105d957600080fd5b506104586105e8366004612343565b611090565b3480156105f957600080fd5b5061060d6106083660046123de565b6110e6565b6040516103b291906123f9565b34801561062657600080fd5b506103a6610635366004612489565b61119f565b34801561064657600080fd5b50600a546103fd906001600160a01b031681565b34801561066657600080fd5b506010546103fd906001600160a01b031681565b34801561068657600080fd5b5061042a610695366004612343565b611221565b3480156106a657600080fd5b506011546103fd906001600160a01b031681565b3480156106c657600080fd5b506104586106d536600461257b565b61128e565b3480156106e657600080fd5b506104586106f5366004612664565b6112cf565b34801561070657600080fd5b506103a66107153660046123de565b601b6020526000908152604090205460ff1681565b34801561073657600080fd5b506103fd610745366004612343565b611319565b34801561075657600080fd5b506103d06113a5565b34801561076b57600080fd5b5061042a61077a3660046123de565b611433565b34801561078b57600080fd5b50610458611501565b3480156107a057600080fd5b506017546103a690600160a01b900460ff1681565b3480156107c157600080fd5b506013546103fd906001600160a01b031681565b3480156107e157600080fd5b506005546001600160a01b03166103fd565b3480156107ff57600080fd5b506103d0611537565b34801561081457600080fd5b5061042a60185481565b34801561082a57600080fd5b5061042a6108393660046123de565b601c6020526000908152604090205481565b34801561085757600080fd5b506104586108663660046126e9565b611546565b34801561087757600080fd5b50600d546103fd906001600160a01b031681565b34801561089757600080fd5b506009546103fd906001600160a01b031681565b3480156108b757600080fd5b506014546103fd906001600160a01b031681565b3480156108d757600080fd5b506104586108e6366004612725565b61160b565b3480156108f757600080fd5b50600f546103fd906001600160a01b031681565b34801561091757600080fd5b506103d0610926366004612343565b611643565b34801561093757600080fd5b50600c546103fd906001600160a01b031681565b34801561095757600080fd5b506104586116c4565b34801561096c57600080fd5b50600b546103fd906001600160a01b031681565b34801561098c57600080fd5b506017546103a690600160a81b900460ff1681565b3480156109ad57600080fd5b506103a66109bc366004612781565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6104586109f83660046127b4565b611709565b348015610a0957600080fd5b50610458610a183660046123de565b6118f6565b348015610a2957600080fd5b50610458610a383660046127e7565b61198e565b348015610a4957600080fd5b5061042a600881565b348015610a5e57600080fd5b50610458610a6d366004612343565b6119d0565b348015610a7e57600080fd5b506015546103fd906001600160a01b031681565b348015610a9e57600080fd5b50610458610aad3660046123de565b6119ff565b348015610abe57600080fd5b50610458610acd366004612343565b611a52565b60006001600160e01b0319821663780e9d6360e01b1480610af75750610af782611a94565b92915050565b606060008054610b0c90612845565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890612845565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82611ae4565b610c005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610c2782611319565b9050806001600160a01b0316836001600160a01b03161415610c955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bf7565b336001600160a01b0382161480610cb15750610cb181336109bc565b610d235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bf7565b610d2d8383611b2e565b505050565b610d3d335b82611b9c565b610d595760405162461bcd60e51b8152600401610bf790612880565b610d2d838383611c86565b600254601754600160a01b900460ff161515600114610dc55760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206e6f7420737461727465640000000000000000006044820152606401610bf7565b601954610dd283836128e7565b10610e155760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bf7565b6008821115610e665760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610bf7565b34601a5483610e7591906128ff565b14610ec25760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610bf7565b60005b82811015610d2d57610ee033610edb83856128e7565b611ddc565b80610eea8161291e565b915050610ec5565b6000610efd83611433565b8210610f1b5760405162461bcd60e51b8152600401610bf790612939565b6000805b600254811015610f8c5760028181548110610f3c57610f3c612984565b6000918252602090912001546001600160a01b0386811691161415610f7a5783821415610f6c579150610af79050565b81610f768161291e565b9250505b80610f848161291e565b915050610f1f565b5060405162461bcd60e51b8152600401610bf790612939565b6005546001600160a01b03163314610fcf5760405162461bcd60e51b8152600401610bf79061299a565b6017546040516000916001600160a01b03169047908381818185875af1925050503d806000811461101c576040519150601f19603f3d011682016040523d82523d6000602084013e611021565b606091505b50509050806110725760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2073656e6420746f20617065746f7368692e00000000006044820152606401610bf7565b50565b610d2d8383836040518060200160405280600081525061160b565b61109933610d37565b6110dd5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610bf7565b61107281611e58565b606060006110f383611433565b9050806111145760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561112f5761112f6124dc565b604051908082528060200260200182016040528015611158578160200160208202803683370190505b50905060005b8281101561110c576111708582610ef2565b82828151811061118257611182612984565b6020908102919091010152806111978161291e565b91505061115e565b6000805b8281101561121457846001600160a01b031660028585848181106111c9576111c9612984565b90506020020135815481106111e0576111e0612984565b6000918252602090912001546001600160a01b03161461120457600091505061121a565b61120d8161291e565b90506111a3565b50600190505b9392505050565b600254600090821061128a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bf7565b5090565b6005546001600160a01b031633146112b85760405162461bcd60e51b8152600401610bf79061299a565b80516112cb906006906020840190612215565b5050565b60005b82518110156113125761130085858584815181106112f2576112f2612984565b60200260200101518561160b565b8061130a8161291e565b9150506112d2565b5050505050565b6000806002838154811061132f5761132f612984565b6000918252602090912001546001600160a01b0316905080610af75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bf7565b600680546113b290612845565b80601f01602080910402602001604051908101604052809291908181526020018280546113de90612845565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b505050505081565b60006001600160a01b03821661149e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bf7565b6000805b6002548110156114fa57600281815481106114bf576114bf612984565b6000918252602090912001546001600160a01b03858116911614156114ea576114e78261291e565b91505b6114f38161291e565b90506114a2565b5092915050565b6005546001600160a01b0316331461152b5760405162461bcd60e51b8152600401610bf79061299a565b6115356000611eda565b565b606060018054610b0c90612845565b6001600160a01b03821633141561159f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bf7565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116153383611b9c565b6116315760405162461bcd60e51b8152600401610bf790612880565b61163d84848484611f2c565b50505050565b606061164e82611ae4565b6116925760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610bf7565b600661169d83611f5f565b6040516020016116ae9291906129eb565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146116ee5760405162461bcd60e51b8152600401610bf79061299a565b6017805461ffff60a01b1916600160a01b1790556000601855565b60025460195461171985836128e7565b1061175c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610bf7565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117d684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601854915084905061205d565b6118105760405162461bcd60e51b815260206004820152600b60248201526a3bb937b73390383937b7b360a91b6044820152606401610bf7565b60088511156118525760405162461bcd60e51b815260206004820152600e60248201526d0caf0c6cacac8e640e8f040dac2f60931b6044820152606401610bf7565b34601a548661186191906128ff565b1461189e5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c69642066756e647360981b6044820152606401610bf7565b336000908152601c6020526040812080548792906118bd9084906128e7565b90915550600090505b858110156118ee576118dc33610edb83866128e7565b806118e68161291e565b9150506118c6565b505050505050565b6005546001600160a01b031633146119205760405162461bcd60e51b8152600401610bf79061299a565b6001600160a01b0381166119855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf7565b61107281611eda565b60005b815181101561163d576119be84848484815181106119b1576119b1612984565b6020026020010151610d32565b806119c88161291e565b915050611991565b6005546001600160a01b031633146119fa5760405162461bcd60e51b8152600401610bf79061299a565b601a55565b6005546001600160a01b03163314611a295760405162461bcd60e51b8152600401610bf79061299a565b6001600160a01b03166000908152601b60205260409020805460ff19811660ff90911615179055565b6005546001600160a01b03163314611a7c5760405162461bcd60e51b8152600401610bf79061299a565b6017805460ff60a81b1916600160a81b179055601855565b60006001600160e01b031982166380ac58cd60e01b1480611ac557506001600160e01b03198216635b5e139f60e01b145b80610af757506301ffc9a760e01b6001600160e01b0319831614610af7565b60025460009082108015610af7575060006001600160a01b031660028381548110611b1157611b11612984565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6382611319565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ba782611ae4565b611c085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bf7565b6000611c1383611319565b9050806001600160a01b0316846001600160a01b03161480611c4e5750836001600160a01b0316611c4384610b8f565b6001600160a01b0316145b80611c7e57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c9982611319565b6001600160a01b031614611d015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bf7565b6001600160a01b038216611d635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf7565b611d6e600082611b2e565b8160028281548110611d8257611d82612984565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611e6382611319565b9050611e70600083611b2e565b600060028381548110611e8557611e85612984565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f37848484611c86565b611f4384848484612073565b61163d5760405162461bcd60e51b8152600401610bf790612a92565b606081611f835750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fad5780611f978161291e565b9150611fa69050600a83612afa565b9150611f87565b60008167ffffffffffffffff811115611fc857611fc86124dc565b6040519080825280601f01601f191660200182016040528015611ff2576020820181803683370190505b5090505b8415611c7e57612007600183612b0e565b9150612014600a86612b25565b61201f9060306128e7565b60f81b81838151811061203457612034612984565b60200101906001600160f81b031916908160001a905350612056600a86612afa565b9450611ff6565b60008261206a8584612171565b14949350505050565b60006001600160a01b0384163b1561216657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120b7903390899088908890600401612b39565b6020604051808303816000875af19250505080156120f2575060408051601f3d908101601f191682019092526120ef91810190612b76565b60015b61214c573d808015612120576040519150601f19603f3d011682016040523d82523d6000602084013e612125565b606091505b5080516121445760405162461bcd60e51b8152600401610bf790612a92565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c7e565b506001949350505050565b600081815b845181101561110c57600085828151811061219357612193612984565b602002602001015190508083116121d5576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612202565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061220d8161291e565b915050612176565b82805461222190612845565b90600052602060002090601f0160209004810192826122435760008555612289565b82601f1061225c57805160ff1916838001178555612289565b82800160010185558215612289579182015b8281111561228957825182559160200191906001019061226e565b5061128a9291505b8082111561128a5760008155600101612291565b6001600160e01b03198116811461107257600080fd5b6000602082840312156122cd57600080fd5b813561121a816122a5565b60005b838110156122f35781810151838201526020016122db565b8381111561163d5750506000910152565b6000815180845261231c8160208601602086016122d8565b601f01601f19169290920160200192915050565b60208152600061121a6020830184612304565b60006020828403121561235557600080fd5b5035919050565b80356001600160a01b038116811461237357600080fd5b919050565b6000806040838503121561238b57600080fd5b6123948361235c565b946020939093013593505050565b6000806000606084860312156123b757600080fd5b6123c08461235c565b92506123ce6020850161235c565b9150604084013590509250925092565b6000602082840312156123f057600080fd5b61121a8261235c565b6020808252825182820181905260009190848201906040850190845b8181101561243157835183529284019291840191600101612415565b50909695505050505050565b60008083601f84011261244f57600080fd5b50813567ffffffffffffffff81111561246757600080fd5b6020830191508360208260051b850101111561248257600080fd5b9250929050565b60008060006040848603121561249e57600080fd5b6124a78461235c565b9250602084013567ffffffffffffffff8111156124c357600080fd5b6124cf8682870161243d565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561251b5761251b6124dc565b604052919050565b600067ffffffffffffffff83111561253d5761253d6124dc565b612550601f8401601f19166020016124f2565b905082815283838301111561256457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561258d57600080fd5b813567ffffffffffffffff8111156125a457600080fd5b8201601f810184136125b557600080fd5b611c7e84823560208401612523565b600082601f8301126125d557600080fd5b8135602067ffffffffffffffff8211156125f1576125f16124dc565b8160051b6126008282016124f2565b928352848101820192828101908785111561261a57600080fd5b83870192505b8483101561263957823582529183019190830190612620565b979650505050505050565b600082601f83011261265557600080fd5b61121a83833560208501612523565b6000806000806080858703121561267a57600080fd5b6126838561235c565b93506126916020860161235c565b9250604085013567ffffffffffffffff808211156126ae57600080fd5b6126ba888389016125c4565b935060608701359150808211156126d057600080fd5b506126dd87828801612644565b91505092959194509250565b600080604083850312156126fc57600080fd5b6127058361235c565b91506020830135801515811461271a57600080fd5b809150509250929050565b6000806000806080858703121561273b57600080fd5b6127448561235c565b93506127526020860161235c565b925060408501359150606085013567ffffffffffffffff81111561277557600080fd5b6126dd87828801612644565b6000806040838503121561279457600080fd5b61279d8361235c565b91506127ab6020840161235c565b90509250929050565b6000806000604084860312156127c957600080fd5b83359250602084013567ffffffffffffffff8111156124c357600080fd5b6000806000606084860312156127fc57600080fd5b6128058461235c565b92506128136020850161235c565b9150604084013567ffffffffffffffff81111561282f57600080fd5b61283b868287016125c4565b9150509250925092565b600181811c9082168061285957607f821691505b6020821081141561287a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128fa576128fa6128d1565b500190565b6000816000190483118215151615612919576129196128d1565b500290565b6000600019821415612932576129326128d1565b5060010190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081516129e18185602086016122d8565b9290920192915050565b600080845481600182811c915080831680612a0757607f831692505b6020808410821415612a2757634e487b7160e01b86526022600452602486fd5b818015612a3b5760018114612a4c57612a79565b60ff19861689528489019650612a79565b60008b81526020902060005b86811015612a715781548b820152908501908301612a58565b505084890196505b505050505050612a8981856129cf565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612b0957612b09612ae4565b500490565b600082821015612b2057612b206128d1565b500390565b600082612b3457612b34612ae4565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6c90830184612304565b9695505050505050565b600060208284031215612b8857600080fd5b815161121a816122a556fea26469706673582212201ef480b5ae993e68ebe3baae923585b8f94b76bda07abd1450d5af416d2227ba64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a05123b49c1094a83f7a3032eb43c3bd1d61d21d000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63504835686e5176544641614a6e7569464c4b7939456377475a4271535362645a316f5a4156337961484b562f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmcPH5hnQvTFAaJnuiFLKy9EcwGZBqSSbdZ1oZAV3yaHKV/
Arg [1] : _withdrawAddress (address): 0xa05123B49c1094a83F7A3032EB43C3bd1D61D21d

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a05123b49c1094a83f7a3032eb43c3bd1d61d21d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d63504835686e5176544641614a6e7569464c4b7939456377475a4271
Arg [5] : 535362645a316f5a4156337961484b562f000000000000000000000000000000


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.