ETH Price: $3,619.61 (-1.96%)

Token

ERC-20: The Collectors (TheCollectors)
 

Overview

Max Total Supply

101 TheCollectors

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TheCollectors
0x79ac02b5f837b5a9a4100a3425f7f7a403da06c3
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:
TheCollectors

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 13 : TheCollectors.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

interface IPunk {
    function punkIndexToAddress(uint256 index) external view returns (address);
}

contract TheCollectors is ERC721, Ownable, ReentrancyGuard {

    struct EmbedInfo {
        address collection;
        uint256 tokenId;
    }

    uint256 public constant MAX_SUPPLY = 10000;
    IPunk public constant PUNK = IPunk(0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB);

    mapping(address => IERC721) public erc721WhitelistedCollections;
    mapping(address => IERC1155) public erc1155WhitelistedCollections;
    mapping(uint256 => EmbedInfo) public embeddedTokensInfo;
    mapping(address => mapping(uint256 => bool)) public embeddedTokens;
    uint256 public endWhitelistMintingPeriodDateAndTime;
    address public signerPublicAddress;
    uint256 public totalSupply;
    bool public forceEndMinting;
    uint256 public maxMintsPerWhitelistedAddress;
    uint256 public maxMintsPerAddress;
    uint256 public mintFee;
    bool public finishMigration;

    string private _baseTokenURI;
    mapping(uint256 => string) private _tokenURIs;

    event EmbedTokens(uint256 indexed theCollectorTokenId, address indexed embeddedCollection, uint256 indexed embeddedTokenId);

    // -------------------- Modifiers --------------------

    modifier onlyInMintingPeriod {
        require(!mintingOver(), "Minting over");
        _;
    }

    modifier includesMintFee(uint256 amountToMint) {
        require(msg.value >= mintFee * amountToMint, "<mint cost");
        _;
    }

    // -------------------- Constructor --------------------

    constructor(
        address _signerPublicAddress,
        uint256 _endWhitelistMintingPeriodDateAndTime,
        string memory __baseTokenURI
    ) ERC721("The Collectors", "TheCollectors") {
        signerPublicAddress = _signerPublicAddress;
        endWhitelistMintingPeriodDateAndTime = _endWhitelistMintingPeriodDateAndTime;
        _baseTokenURI = __baseTokenURI;
        maxMintsPerWhitelistedAddress = 10;
        maxMintsPerAddress = 10;
        mintFee = 0.08 ether;
    }

    // -------------------- Management --------------------

    function migrateTokenOwners(uint256[] memory tokenIds, address[] memory owners) external onlyOwner {
        require(!finishMigration, "Finish migration");
        require(tokenIds.length == owners.length, "Bad length");
        for (uint256 i; i < tokenIds.length; i++) {
            _mintNextToken(owners[i]);
        }
        for (uint256 i; i < tokenIds.length; i++) {
            require(ownerOf(tokenIds[i]) == owners[i], "Bad migration");
        }
    }

    function migrateEmbeds(uint256[] memory tokenIds, string[] memory tokenURLs, EmbedInfo[] memory embedInfo) external onlyOwner {
        require(!finishMigration, "Finish migration");
        require(tokenIds.length == tokenURLs.length, "Bad length");
        for (uint256 i; i < tokenIds.length; i++) {
            _embedToken(
                tokenIds[i], embedInfo[i].collection, embedInfo[i].tokenId, tokenURLs[i]
            );
        }
        for (uint256 i; i < tokenIds.length; i++) {
            require(keccak256(abi.encodePacked(tokenURI(tokenIds[i]))) == keccak256(abi.encodePacked(tokenURLs[i])), "Bad migration");
            require(wasTokenUsed(embedInfo[i].collection, embedInfo[i].tokenId), "Bad migration");
            require(embeddedTokensInfo[tokenIds[i]].collection == embedInfo[i].collection && embeddedTokensInfo[tokenIds[i]].tokenId == embedInfo[i].tokenId, "Bad migration");
        }
        finishMigration = true;
    }

    function addERC721WhitelistedCollections(address[] memory whitelistedCollectionsArray) external onlyOwner {
        for (uint256 i; i < whitelistedCollectionsArray.length; i++) {
            erc721WhitelistedCollections[whitelistedCollectionsArray[i]] = IERC721(whitelistedCollectionsArray[i]);
        }
    }

    function addERC1155WhitelistedCollections(address[] memory whitelistedCollectionsArray) external onlyOwner {
        for (uint256 i; i < whitelistedCollectionsArray.length; i++) {
            erc1155WhitelistedCollections[whitelistedCollectionsArray[i]] = IERC1155(whitelistedCollectionsArray[i]);
        }
    }

    function removeERC721WhitelistedCollection(address whitelistedCollection) external onlyOwner {
        delete erc721WhitelistedCollections[whitelistedCollection];
    }

    function removeERC1155WhitelistedCollection(address whitelistedCollection) external onlyOwner {
        delete erc1155WhitelistedCollections[whitelistedCollection];
    }

    function setMaxMintsPerWhitelistedAddress(uint256 _maxMintsPerWhitelistedAddress) external onlyOwner {
        maxMintsPerWhitelistedAddress = _maxMintsPerWhitelistedAddress;
    }

    function setMaxMintsPerAddress(uint256 _maxMintsPerAddress) external onlyOwner {
        maxMintsPerAddress = _maxMintsPerAddress;
    }

    function setForceEndMinting(bool _forceEndMinting) external onlyOwner {
        forceEndMinting = _forceEndMinting;
    }

    function setSignerPublicAddress(address _signerPublicAddress) external onlyOwner {
        signerPublicAddress = _signerPublicAddress;
    }

    function setEndWhitelistMintingPeriodDateAndTime(uint256 _endWhitelistMintingPeriodDateAndTime) external onlyOwner {
        endWhitelistMintingPeriodDateAndTime = _endWhitelistMintingPeriodDateAndTime;
    }

    function setBaseTokenURI(string memory __baseTokenURI) external onlyOwner {
        _baseTokenURI = __baseTokenURI;
    }

    function setMintFee(uint256 _mintFee) external onlyOwner {
        mintFee = _mintFee;
    }

    // -------------------- Mints --------------------

    function mintTokenForWhitelistedAddresses(address whitelistAddress, uint8 v, bytes32 r, bytes32 s, uint256 amountToMint)
    external
    payable
    nonReentrant
    onlyInMintingPeriod
    includesMintFee(amountToMint)
    {
        require(endWhitelistMintingPeriodDateAndTime > block.timestamp, "Can't mint");
        require(_validateSignature(keccak256(abi.encodePacked(whitelistAddress)), v, r, s) && whitelistAddress == msg.sender, "Nice try");
        require(maxMintsPerWhitelistedAddress >= amountToMint, ">max");
        uint256 i;
        // Since i can be lower than amountToMint after loop ends
        for (
        ;
            i < amountToMint
            && MAX_SUPPLY > totalSupply;
            i++
        ) {
            _mintNextToken(msg.sender);
        }
        uint256 mintingFee = i * mintFee;
        Address.sendValue(payable(owner()), mintingFee);
        if (msg.value - mintingFee > 0) {
            Address.sendValue(payable(msg.sender), msg.value - mintingFee);
        }
    }

    function mintToken(uint256 amountToMint)
    external
    payable
    nonReentrant
    onlyInMintingPeriod
    includesMintFee(amountToMint)
    {
        require(block.timestamp > endWhitelistMintingPeriodDateAndTime, "Only whitelist");
        require(maxMintsPerAddress >= amountToMint, ">max");
        uint256 i;
        // Since i can be lower than amountToMint after loop ends
        for (
        ;
            i < amountToMint
            && MAX_SUPPLY > totalSupply;
            i++
        ) {
            _mintNextToken(msg.sender);
        }
        uint256 mintingFee = i * mintFee;
        Address.sendValue(payable(owner()), mintingFee);
        if (msg.value - mintingFee > 0) {
            Address.sendValue(payable(msg.sender), msg.value - mintingFee);
        }
    }

    function embedToken(
        uint256 theCollectorsTokenId,
        address whitelistCollection,
        uint256 whitelistCollectionTokenId,
        string memory uri,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
    external
    {
        require(_validateSignature(keccak256(abi.encodePacked(uri, theCollectorsTokenId)), v, r, s), "Really?");
        require(bytes(_tokenURIs[theCollectorsTokenId]).length == 0, "Already embedded");
        require(ownerOf(theCollectorsTokenId) == msg.sender, "Not token owner");
        require(
            address(erc721WhitelistedCollections[whitelistCollection]) != address(0) ||
            address(erc1155WhitelistedCollections[whitelistCollection]) != address(0) ||
            whitelistCollection == address(PUNK),
            "Bad collection"
        );
        require(
            (whitelistCollection == address(PUNK) && PUNK.punkIndexToAddress(whitelistCollectionTokenId) == msg.sender) ||
            (address(erc1155WhitelistedCollections[whitelistCollection]) != address(0) && erc1155WhitelistedCollections[whitelistCollection].balanceOf(msg.sender, whitelistCollectionTokenId) > 0) ||
            erc721WhitelistedCollections[whitelistCollection].ownerOf(whitelistCollectionTokenId) == msg.sender,
            "Bad token owner"
        );
        require(!wasTokenUsed(whitelistCollection, whitelistCollectionTokenId), "Already used");
        _embedToken(
            theCollectorsTokenId, whitelistCollection, whitelistCollectionTokenId, uri
        );
    }

    // -------------------- Views --------------------

    function wasTokenUsed(address collection, uint256 token) public view returns (bool) {
        return embeddedTokens[collection][token];
    }

    function mintingOver() public view returns (bool) {
        return totalSupply == MAX_SUPPLY || forceEndMinting;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            return _tokenURIs[tokenId];
        } else {
            string memory uri = super.tokenURI(tokenId);
            return string(abi.encodePacked(uri, ".json"));
        }

    }

    // -------------------- Internal --------------------

    function _embedToken(uint256 theCollectorsTokenId, address whitelistCollection, uint256 whitelistCollectionTokenId, string memory uri) internal {
        embeddedTokensInfo[theCollectorsTokenId] = EmbedInfo(whitelistCollection, whitelistCollectionTokenId);
        embeddedTokens[whitelistCollection][whitelistCollectionTokenId] = true;
        _tokenURIs[theCollectorsTokenId] = uri;
        emit EmbedTokens(theCollectorsTokenId, whitelistCollection, whitelistCollectionTokenId);
    }

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

    function _mintNextToken(address to) internal {
        _safeMint(to, totalSupply);
        totalSupply++;
    }

    function _validateSignature(bytes32 hashOfText, uint8 v, bytes32 r, bytes32 s) internal view returns (bool) {
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";
        bytes32 hashOfSignature = keccak256(abi.encodePacked(prefix, hashOfText));
        return ecrecover(hashOfSignature, v, r, s) == signerPublicAddress;
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 5 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signerPublicAddress","type":"address"},{"internalType":"uint256","name":"_endWhitelistMintingPeriodDateAndTime","type":"uint256"},{"internalType":"string","name":"__baseTokenURI","type":"string"}],"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":"uint256","name":"theCollectorTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"embeddedCollection","type":"address"},{"indexed":true,"internalType":"uint256","name":"embeddedTokenId","type":"uint256"}],"name":"EmbedTokens","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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUNK","outputs":[{"internalType":"contract IPunk","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelistedCollectionsArray","type":"address[]"}],"name":"addERC1155WhitelistedCollections","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelistedCollectionsArray","type":"address[]"}],"name":"addERC721WhitelistedCollections","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"theCollectorsTokenId","type":"uint256"},{"internalType":"address","name":"whitelistCollection","type":"address"},{"internalType":"uint256","name":"whitelistCollectionTokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"embedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"embeddedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"embeddedTokensInfo","outputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endWhitelistMintingPeriodDateAndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"erc1155WhitelistedCollections","outputs":[{"internalType":"contract IERC1155","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"erc721WhitelistedCollections","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishMigration","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forceEndMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWhitelistedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"tokenURLs","type":"string[]"},{"components":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct TheCollectors.EmbedInfo[]","name":"embedInfo","type":"tuple[]"}],"name":"migrateEmbeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"migrateTokenOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistAddress","type":"address"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintTokenForWhitelistedAddresses","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"whitelistedCollection","type":"address"}],"name":"removeERC1155WhitelistedCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistedCollection","type":"address"}],"name":"removeERC721WhitelistedCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endWhitelistMintingPeriodDateAndTime","type":"uint256"}],"name":"setEndWhitelistMintingPeriodDateAndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_forceEndMinting","type":"bool"}],"name":"setForceEndMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerAddress","type":"uint256"}],"name":"setMaxMintsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerWhitelistedAddress","type":"uint256"}],"name":"setMaxMintsPerWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerPublicAddress","type":"address"}],"name":"setSignerPublicAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerPublicAddress","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"token","type":"uint256"}],"name":"wasTokenUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162003a8a38038062003a8a833981016040819052620000349162000218565b604080518082018252600e81526d54686520436f6c6c6563746f727360901b60208083019182528351808501909452600d84526c546865436f6c6c6563746f727360981b9084015281519192916200008f9160009162000172565b508051620000a590600190602084019062000172565b505050620000c2620000bc6200011c60201b60201c565b62000120565b6001600755600d80546001600160a01b0319166001600160a01b038516179055600c8290558051620000fc90601490602084019062000172565b5050600a6010819055601155505067011c37937e08000060125562000374565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001809062000321565b90600052602060002090601f016020900481019282620001a45760008555620001ef565b82601f10620001bf57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ef578251825591602001919060010190620001d2565b50620001fd92915062000201565b5090565b5b80821115620001fd576000815560010162000202565b6000806000606084860312156200022e57600080fd5b83516001600160a01b03811681146200024657600080fd5b60208581015160408701519295509350906001600160401b03808211156200026d57600080fd5b818701915087601f8301126200028257600080fd5b8151818111156200029757620002976200035e565b604051601f8201601f19908116603f01168101908382118183101715620002c257620002c26200035e565b816040528281528a86848701011115620002db57600080fd5b600093505b82841015620002ff5784840186015181850187015292850192620002e0565b82841115620003115760008684830101525b8096505050505050509250925092565b600181811c908216806200033657607f821691505b602082108114156200035857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61370680620003846000396000f3fe6080604052600436106102235760003560e01c806301ffc9a714610228578063061019b11461025d57806306fdde0314610277578063081812fc14610299578063081ea4eb146102d1578063095ea7b3146103075780630a1f697f1461032957806313966db51461034d57806314a57dd91461036357806318160ddd1461038357806323b872dd14610399578063296f76b3146103b957806330176e13146103e157806332cb6b0c1461040157806336bdbed2146104175780633d01ba971461043757806342842e0e1461045757806343d65289146104775780634b3bee0a146104b257806353d44dd9146104c75780636352211e146104e757806366abbcad146105075780636d7c18b21461053d57806370a082311461055057806370b34c9014610570578063715018a61461059057806371ab7a34146105a557806388d761f2146105c55780638b169a0a146105df5780638d4e4cc5146105ff5780638da5cb5b1461061f5780638e964ba41461063457806390046fe514610682578063928e17db146106a257806395d89b41146106b8578063a22cb465146106cd578063a4f2a4df146106ed578063ae6a80d51461070d578063b869178714610723578063b88d4fde14610743578063ba40a96a14610763578063c634d03214610783578063c87b56dd14610796578063de6f0632146107b6578063e4e9b4dd146107d6578063e985e9c5146107f6578063eddd0d9c14610816578063f2fde38b14610836575b600080fd5b34801561023457600080fd5b5061024861024336600461307d565b610856565b60405190151581526020015b60405180910390f35b34801561026957600080fd5b50600f546102489060ff1681565b34801561028357600080fd5b5061028c6108a8565b60405161025491906132bb565b3480156102a557600080fd5b506102b96102b43660046130eb565b61093a565b6040516001600160a01b039091168152602001610254565b3480156102dd57600080fd5b506102b96102ec366004612cec565b6008602052600090815260409020546001600160a01b031681565b34801561031357600080fd5b50610327610322366004612e54565b6109c7565b005b34801561033557600080fd5b5061033f600c5481565b604051908152602001610254565b34801561035957600080fd5b5061033f60125481565b34801561036f57600080fd5b5061024861037e366004612e54565b610ad8565b34801561038f57600080fd5b5061033f600e5481565b3480156103a557600080fd5b506103276103b4366004612d5f565b610b03565b3480156103c557600080fd5b506102b973b47e3cd837ddf8e4c57f05d70ab865de6e193bbb81565b3480156103ed57600080fd5b506103276103fc3660046130b7565b610b34565b34801561040d57600080fd5b5061033f61271081565b34801561042357600080fd5b506103276104323660046130eb565b610b7a565b34801561044357600080fd5b5061032761045236600461311d565b610bae565b34801561046357600080fd5b50610327610472366004612d5f565b611015565b34801561048357600080fd5b50610248610492366004612e54565b600b60209081526000928352604080842090915290825290205460ff1681565b3480156104be57600080fd5b50610248611030565b3480156104d357600080fd5b506103276104e23660046130eb565b61104b565b3480156104f357600080fd5b506102b96105023660046130eb565b61107f565b34801561051357600080fd5b506102b9610522366004612cec565b6009602052600090815260409020546001600160a01b031681565b61032761054b366004612e80565b6110f6565b34801561055c57600080fd5b5061033f61056b366004612cec565b6112e4565b34801561057c57600080fd5b5061032761058b366004612ecf565b61136b565b34801561059c57600080fd5b50610327611435565b3480156105b157600080fd5b506103276105c0366004612ecf565b611470565b3480156105d157600080fd5b506013546102489060ff1681565b3480156105eb57600080fd5b506103276105fa366004612cec565b61153a565b34801561060b57600080fd5b5061032761061a3660046130eb565b611590565b34801561062b57600080fd5b506102b96115c4565b34801561064057600080fd5b5061067461064f3660046130eb565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b6040516102549291906132a2565b34801561068e57600080fd5b5061032761069d366004612cec565b6115d3565b3480156106ae57600080fd5b5061033f60105481565b3480156106c457600080fd5b5061028c611629565b3480156106d957600080fd5b506103276106e8366004612e1f565b611638565b3480156106f957600080fd5b50610327610708366004612f03565b6116f9565b34801561071957600080fd5b5061033f60115481565b34801561072f57600080fd5b5061032761073e366004612cec565b611836565b34801561074f57600080fd5b5061032761075e366004612da0565b611887565b34801561076f57600080fd5b50600d546102b9906001600160a01b031681565b6103276107913660046130eb565b6118bf565b3480156107a257600080fd5b5061028c6107b13660046130eb565b611a1b565b3480156107c257600080fd5b506103276107d1366004612f66565b611b6a565b3480156107e257600080fd5b506103276107f1366004613062565b611e7f565b34801561080257600080fd5b50610248610811366004612d26565b611ec1565b34801561082257600080fd5b506103276108313660046130eb565b611eef565b34801561084257600080fd5b50610327610851366004612cec565b611f23565b60006001600160e01b031982166380ac58cd60e01b148061088757506001600160e01b03198216635b5e139f60e01b145b806108a257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108b7906135c3565b80601f01602080910402602001604051908101604052809291908181526020018280546108e3906135c3565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b5050505050905090565b600061094582611fc3565b6109ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109d28261107f565b9050806001600160a01b0316836001600160a01b03161415610a405760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a2565b336001600160a01b0382161480610a5c5750610a5c8133611ec1565b610ac95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016109a2565b610ad38383611fe0565b505050565b6001600160a01b03919091166000908152600b60209081526040808320938352929052205460ff1690565b610b0d338261204e565b610b295760405162461bcd60e51b81526004016109a2906133e2565b610ad3838383612118565b33610b3d6115c4565b6001600160a01b031614610b635760405162461bcd60e51b81526004016109a2906133ad565b8051610b76906014906020840190612a46565b5050565b33610b836115c4565b6001600160a01b031614610ba95760405162461bcd60e51b81526004016109a2906133ad565b600c55565b610be28488604051602001610bc49291906131cf565b604051602081830303815290604052805190602001208484846122a6565b610c185760405162461bcd60e51b81526020600482015260076024820152665265616c6c793f60c81b60448201526064016109a2565b60008781526015602052604090208054610c31906135c3565b159050610c735760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195b58995919195960821b60448201526064016109a2565b33610c7d8861107f565b6001600160a01b031614610cc55760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016109a2565b6001600160a01b0386811660009081526008602052604090205416151580610d0657506001600160a01b038681166000908152600960205260409020541615155b80610d2d57506001600160a01b03861673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb145b610d6a5760405162461bcd60e51b815260206004820152600e60248201526d2130b21031b7b63632b1ba34b7b760911b60448201526064016109a2565b6001600160a01b03861673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb148015610e215750604051630b02f02d60e31b815260048101869052339073b47e3cd837ddf8e4c57f05d70ab865de6e193bbb9063581781689060240160206040518083038186803b158015610dde57600080fd5b505afa158015610df2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e169190612d09565b6001600160a01b0316145b80610edc57506001600160a01b038681166000908152600960205260409020541615801590610edc57506001600160a01b03808716600090815260096020526040808220549051627eeac760e11b81529192169062fdd58e90610e8a9033908a906004016132a2565b60206040518083038186803b158015610ea257600080fd5b505afa158015610eb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eda9190613104565b115b80610f7c57506001600160a01b03868116600090815260086020526040908190205490516331a9108f60e11b81526004810188905233929190911690636352211e9060240160206040518083038186803b158015610f3957600080fd5b505afa158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f719190612d09565b6001600160a01b0316145b610fba5760405162461bcd60e51b815260206004820152600f60248201526e2130b2103a37b5b2b71037bbb732b960891b60448201526064016109a2565b610fc48686610ad8565b156110005760405162461bcd60e51b815260206004820152600c60248201526b105b1c9958591e481d5cd95960a21b60448201526064016109a2565b61100c8787878761238b565b50505050505050565b610ad383838360405180602001604052806000815250611887565b6000612710600e5414806110465750600f5460ff165b905090565b336110546115c4565b6001600160a01b03161461107a5760405162461bcd60e51b81526004016109a2906133ad565b601155565b6000818152600260205260408120546001600160a01b0316806108a25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a2565b600260075414156111195760405162461bcd60e51b81526004016109a290613433565b6002600755611126611030565b156111435760405162461bcd60e51b81526004016109a290613494565b80806012546111529190613561565b3410156111715760405162461bcd60e51b81526004016109a290613347565b42600c54116111af5760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b60448201526064016109a2565b6040516001600160601b0319606088901b1660208201526111eb90603401604051602081830303815290604052805190602001208686866122a6565b80156111ff57506001600160a01b03861633145b6112365760405162461bcd60e51b81526020600482015260086024820152674e6963652074727960c01b60448201526064016109a2565b8160105410156112585760405162461bcd60e51b81526004016109a29061336b565b60005b828110801561126d5750600e54612710115b1561128d5761127b33612449565b80611285816135fe565b91505061125b565b60006012548261129d9190613561565b90506112b06112aa6115c4565b8261246d565b60006112bc8234613580565b11156112d5576112d5336112d08334613580565b61246d565b50506001600755505050505050565b60006001600160a01b03821661134f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a2565b506001600160a01b031660009081526003602052604090205490565b336113746115c4565b6001600160a01b03161461139a5760405162461bcd60e51b81526004016109a2906133ad565b60005b8151811015610b76578181815181106113b8576113b8613659565b6020026020010151600960008484815181106113d6576113d6613659565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061142d906135fe565b91505061139d565b3361143e6115c4565b6001600160a01b0316146114645760405162461bcd60e51b81526004016109a2906133ad565b61146e6000612583565b565b336114796115c4565b6001600160a01b03161461149f5760405162461bcd60e51b81526004016109a2906133ad565b60005b8151811015610b76578181815181106114bd576114bd613659565b6020026020010151600860008484815181106114db576114db613659565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080611532906135fe565b9150506114a2565b336115436115c4565b6001600160a01b0316146115695760405162461bcd60e51b81526004016109a2906133ad565b6001600160a01b0316600090815260086020526040902080546001600160a01b0319169055565b336115996115c4565b6001600160a01b0316146115bf5760405162461bcd60e51b81526004016109a2906133ad565b601055565b6006546001600160a01b031690565b336115dc6115c4565b6001600160a01b0316146116025760405162461bcd60e51b81526004016109a2906133ad565b6001600160a01b0316600090815260096020526040902080546001600160a01b0319169055565b6060600180546108b7906135c3565b6001600160a01b03821633141561168d5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016109a2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336117026115c4565b6001600160a01b0316146117285760405162461bcd60e51b81526004016109a2906133ad565b60135460ff161561174b5760405162461bcd60e51b81526004016109a29061346a565b805182511461176c5760405162461bcd60e51b81526004016109a290613389565b60005b82518110156117ac5761179a82828151811061178d5761178d613659565b6020026020010151612449565b806117a4816135fe565b91505061176f565b5060005b8251811015610ad3578181815181106117cb576117cb613659565b60200260200101516001600160a01b03166117fe8483815181106117f1576117f1613659565b602002602001015161107f565b6001600160a01b0316146118245760405162461bcd60e51b81526004016109a290613320565b8061182e816135fe565b9150506117b0565b3361183f6115c4565b6001600160a01b0316146118655760405162461bcd60e51b81526004016109a2906133ad565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b611891338361204e565b6118ad5760405162461bcd60e51b81526004016109a2906133e2565b6118b9848484846125d5565b50505050565b600260075414156118e25760405162461bcd60e51b81526004016109a290613433565b60026007556118ef611030565b1561190c5760405162461bcd60e51b81526004016109a290613494565b808060125461191b9190613561565b34101561193a5760405162461bcd60e51b81526004016109a290613347565b600c54421161197c5760405162461bcd60e51b815260206004820152600e60248201526d13db9b1e481dda1a5d195b1a5cdd60921b60448201526064016109a2565b81601154101561199e5760405162461bcd60e51b81526004016109a29061336b565b60005b82811080156119b35750600e54612710115b156119d3576119c133612449565b806119cb816135fe565b9150506119a1565b6000601254826119e39190613561565b90506119f06112aa6115c4565b60006119fc8234613580565b1115611a1057611a10336112d08334613580565b505060016007555050565b6060611a2682611fc3565b611a725760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016109a2565b60008281526015602052604090208054611a8b906135c3565b159050611b305760008281526015602052604090208054611aab906135c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad7906135c3565b8015611b245780601f10611af957610100808354040283529160200191611b24565b820191906000526020600020905b815481529060010190602001808311611b0757829003601f168201915b50505050509050919050565b6000611b3b83612608565b905080604051602001611b4e919061323c565b604051602081830303815290604052915050919050565b919050565b33611b736115c4565b6001600160a01b031614611b995760405162461bcd60e51b81526004016109a2906133ad565b60135460ff1615611bbc5760405162461bcd60e51b81526004016109a29061346a565b8151835114611bdd5760405162461bcd60e51b81526004016109a290613389565b60005b8351811015611c7357611c61848281518110611bfe57611bfe613659565b6020026020010151838381518110611c1857611c18613659565b602002602001015160000151848481518110611c3657611c36613659565b602002602001015160200151868581518110611c5457611c54613659565b602002602001015161238b565b80611c6b816135fe565b915050611be0565b5060005b8351811015611e6c57828181518110611c9257611c92613659565b6020026020010151604051602001611caa91906131f1565b60405160208183030381529060405280519060200120611ce2858381518110611cd557611cd5613659565b6020026020010151611a1b565b604051602001611cf291906131f1565b6040516020818303038152906040528051906020012014611d255760405162461bcd60e51b81526004016109a290613320565b611d69828281518110611d3a57611d3a613659565b602002602001015160000151838381518110611d5857611d58613659565b602002602001015160200151610ad8565b611d855760405162461bcd60e51b81526004016109a290613320565b818181518110611d9757611d97613659565b6020026020010151600001516001600160a01b0316600a6000868481518110611dc257611dc2613659565b6020908102919091018101518252810191909152604001600020546001600160a01b0316148015611e3e5750818181518110611e0057611e00613659565b602002602001015160200151600a6000868481518110611e2257611e22613659565b6020026020010151815260200190815260200160002060010154145b611e5a5760405162461bcd60e51b81526004016109a290613320565b80611e64816135fe565b915050611c77565b50506013805460ff191660011790555050565b33611e886115c4565b6001600160a01b031614611eae5760405162461bcd60e51b81526004016109a2906133ad565b600f805460ff1916911515919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611ef86115c4565b6001600160a01b031614611f1e5760405162461bcd60e51b81526004016109a2906133ad565b601255565b33611f2c6115c4565b6001600160a01b031614611f525760405162461bcd60e51b81526004016109a2906133ad565b6001600160a01b038116611fb75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a2565b611fc081612583565b50565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120158261107f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061205982611fc3565b6120ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a2565b60006120c58361107f565b9050806001600160a01b0316846001600160a01b031614806121005750836001600160a01b03166120f58461093a565b6001600160a01b0316145b8061211057506121108185611ec1565b949350505050565b826001600160a01b031661212b8261107f565b6001600160a01b0316146121935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a2565b6001600160a01b0382166121f55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a2565b612200600082611fe0565b6001600160a01b0383166000908152600360205260408120805460019290612229908490613580565b90915550506001600160a01b0382166000908152600360205260408120805460019290612257908490613535565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206136b183398151915291a4505050565b6000806040518060400160405280601c81526020017b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b8152509050600081876040516020016122f59291906131cf565b60408051808303601f190181528282528051602091820120600d546000855291840180845281905260ff8a169284019290925260608301889052608083018790529092506001600160a01b03169060019060a0016020604051602081039080840390855afa15801561236b573d6000803e3d6000fd5b505050602060405103516001600160a01b03161492505050949350505050565b6040805180820182526001600160a01b03858116808352602080840187815260008a8152600a8352868120955186546001600160a01b031916951694909417855551600194850155908252600b81528382208683528152838220805460ff19169093179092558681526015825291909120825161240a92840190612a46565b5081836001600160a01b0316857f10636a742a569a36cb5332421676b48578668dbb1415dc9a1b96809182ddd06f60405160405180910390a450505050565b61245581600e546126c3565b600e8054906000612465836135fe565b919050555050565b804710156124bd5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109a2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461250a576040519150601f19603f3d011682016040523d82523d6000602084013e61250f565b606091505b5050905080610ad35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b60648201526084016109a2565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125e0848484612118565b6125ec848484846126dd565b6118b95760405162461bcd60e51b81526004016109a2906132ce565b606061261382611fc3565b6126775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a2565b60006126816127e7565b905060008151116126a157604051806020016040528060008152506126bc565b806126ab846127f6565b604051602001611b4e92919061320d565b9392505050565b610b768282604051806020016040528060008152506128f3565b60006001600160a01b0384163b156127df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612721903390899088908890600401613265565b602060405180830381600087803b15801561273b57600080fd5b505af192505050801561276b575060408051601f3d908101601f191682019092526127689181019061309a565b60015b6127c5573d808015612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b5080516127bd5760405162461bcd60e51b81526004016109a2906132ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612110565b506001612110565b6060601480546108b7906135c3565b60608161281a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612844578061282e816135fe565b915061283d9050600a8361354d565b915061281e565b6000816001600160401b0381111561285e5761285e61366f565b6040519080825280601f01601f191660200182016040528015612888576020820181803683370190505b5090505b84156121105761289d600183613580565b91506128aa600a86613619565b6128b5906030613535565b60f81b8183815181106128ca576128ca613659565b60200101906001600160f81b031916908160001a9053506128ec600a8661354d565b945061288c565b6128fd8383612926565b61290a60008484846126dd565b610ad35760405162461bcd60e51b81526004016109a2906132ce565b6001600160a01b03821661297c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a2565b61298581611fc3565b156129d15760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016109a2565b6001600160a01b03821660009081526003602052604081208054600192906129fa908490613535565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206136b1833981519152908290a45050565b828054612a52906135c3565b90600052602060002090601f016020900481019282612a745760008555612aba565b82601f10612a8d57805160ff1916838001178555612aba565b82800160010185558215612aba579182015b82811115612aba578251825591602001919060010190612a9f565b50612ac6929150612aca565b5090565b5b80821115612ac65760008155600101612acb565b60006001600160401b03831115612af857612af861366f565b612b0b601f8401601f19166020016134e2565b9050828152838383011115612b1f57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612b4757600080fd5b81356020612b5c612b5783613512565b6134e2565b80838252828201915082860187848660051b8901011115612b7c57600080fd5b60005b85811015612ba4578135612b9281613685565b84529284019290840190600101612b7f565b5090979650505050505050565b600082601f830112612bc257600080fd5b81356020612bd2612b5783613512565b80838252828201915082860187848660061b8901011115612bf257600080fd5b6000805b86811015612c3d57604080848c031215612c0e578283fd5b612c166134ba565b8435612c2181613685565b8152848801358882015286529486019490920191600101612bf6565b509198975050505050505050565b600082601f830112612c5c57600080fd5b81356020612c6c612b5783613512565b80838252828201915082860187848660051b8901011115612c8c57600080fd5b60005b85811015612ba457813584529284019290840190600101612c8f565b80358015158114611b6557600080fd5b600082601f830112612ccc57600080fd5b6126bc83833560208501612adf565b803560ff81168114611b6557600080fd5b600060208284031215612cfe57600080fd5b81356126bc81613685565b600060208284031215612d1b57600080fd5b81516126bc81613685565b60008060408385031215612d3957600080fd5b8235612d4481613685565b91506020830135612d5481613685565b809150509250929050565b600080600060608486031215612d7457600080fd5b8335612d7f81613685565b92506020840135612d8f81613685565b929592945050506040919091013590565b60008060008060808587031215612db657600080fd5b8435612dc181613685565b93506020850135612dd181613685565b92506040850135915060608501356001600160401b03811115612df357600080fd5b8501601f81018713612e0457600080fd5b612e1387823560208401612adf565b91505092959194509250565b60008060408385031215612e3257600080fd5b8235612e3d81613685565b9150612e4b60208401612cab565b90509250929050565b60008060408385031215612e6757600080fd5b8235612e7281613685565b946020939093013593505050565b600080600080600060a08688031215612e9857600080fd5b8535612ea381613685565b9450612eb160208701612cdb565b94979496505050506040830135926060810135926080909101359150565b600060208284031215612ee157600080fd5b81356001600160401b03811115612ef757600080fd5b61211084828501612b36565b60008060408385031215612f1657600080fd5b82356001600160401b0380821115612f2d57600080fd5b612f3986838701612c4b565b93506020850135915080821115612f4f57600080fd5b50612f5c85828601612b36565b9150509250929050565b600080600060608486031215612f7b57600080fd5b83356001600160401b0380821115612f9257600080fd5b612f9e87838801612c4b565b9450602091508186013581811115612fb557600080fd5b8601601f81018813612fc657600080fd5b8035612fd4612b5782613512565b8082825285820191508584018b878560051b8701011115612ff457600080fd5b60005b8481101561302f5781358781111561300e57600080fd5b61301c8e8a838a0101612cbb565b8552509287019290870190600101612ff7565b5090975050505060408701359250508082111561304b57600080fd5b5061305886828701612bb1565b9150509250925092565b60006020828403121561307457600080fd5b6126bc82612cab565b60006020828403121561308f57600080fd5b81356126bc8161369a565b6000602082840312156130ac57600080fd5b81516126bc8161369a565b6000602082840312156130c957600080fd5b81356001600160401b038111156130df57600080fd5b61211084828501612cbb565b6000602082840312156130fd57600080fd5b5035919050565b60006020828403121561311657600080fd5b5051919050565b600080600080600080600060e0888a03121561313857600080fd5b87359650602088013561314a81613685565b95506040880135945060608801356001600160401b0381111561316c57600080fd5b6131788a828b01612cbb565b94505061318760808901612cdb565b925060a0880135915060c0880135905092959891949750929550565b600081518084526131bb816020860160208601613597565b601f01601f19169290920160200192915050565b600083516131e1818460208801613597565b9190910191825250602001919050565b60008251613203818460208701613597565b9190910192915050565b6000835161321f818460208801613597565b835190830190613233818360208801613597565b01949350505050565b6000825161324e818460208701613597565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613298908301846131a3565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020815260006126bc60208301846131a3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c2130b21036b4b3b930ba34b7b760991b604082015260600190565b6020808252600a90820152690f1b5a5b9d0818dbdcdd60b21b604082015260600190565b60208082526004908201526307cdac2f60e31b604082015260600190565b6020808252600a9082015269084c2c840d8cadccee8d60b31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f2334b734b9b41036b4b3b930ba34b7b760811b604082015260600190565b6020808252600c908201526b26b4b73a34b7339037bb32b960a11b604082015260600190565b604080519081016001600160401b03811182821017156134dc576134dc61366f565b60405290565b604051601f8201601f191681016001600160401b038111828210171561350a5761350a61366f565b604052919050565b60006001600160401b0382111561352b5761352b61366f565b5060051b60200190565b600082198211156135485761354861362d565b500190565b60008261355c5761355c613643565b500490565b600081600019048311821515161561357b5761357b61362d565b500290565b6000828210156135925761359261362d565b500390565b60005b838110156135b257818101518382015260200161359a565b838111156118b95750506000910152565b600181811c908216806135d757607f821691505b602082108114156135f857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136125761361261362d565b5060010190565b60008261362857613628613643565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611fc057600080fd5b6001600160e01b031981168114611fc057600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122012444caa5591ac365651c4ca0a7038fe06b32677fbbbc078d742213b4122780e64736f6c634300080600330000000000000000000000006f5cf0fd35bcad84824bf9c26133118e106c17bd000000000000000000000000000000000000000000000000000000006399f3000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7365727665722e746865636f6c6c6563746f72736e66742e78797a2f746f6b656e2f00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102235760003560e01c806301ffc9a714610228578063061019b11461025d57806306fdde0314610277578063081812fc14610299578063081ea4eb146102d1578063095ea7b3146103075780630a1f697f1461032957806313966db51461034d57806314a57dd91461036357806318160ddd1461038357806323b872dd14610399578063296f76b3146103b957806330176e13146103e157806332cb6b0c1461040157806336bdbed2146104175780633d01ba971461043757806342842e0e1461045757806343d65289146104775780634b3bee0a146104b257806353d44dd9146104c75780636352211e146104e757806366abbcad146105075780636d7c18b21461053d57806370a082311461055057806370b34c9014610570578063715018a61461059057806371ab7a34146105a557806388d761f2146105c55780638b169a0a146105df5780638d4e4cc5146105ff5780638da5cb5b1461061f5780638e964ba41461063457806390046fe514610682578063928e17db146106a257806395d89b41146106b8578063a22cb465146106cd578063a4f2a4df146106ed578063ae6a80d51461070d578063b869178714610723578063b88d4fde14610743578063ba40a96a14610763578063c634d03214610783578063c87b56dd14610796578063de6f0632146107b6578063e4e9b4dd146107d6578063e985e9c5146107f6578063eddd0d9c14610816578063f2fde38b14610836575b600080fd5b34801561023457600080fd5b5061024861024336600461307d565b610856565b60405190151581526020015b60405180910390f35b34801561026957600080fd5b50600f546102489060ff1681565b34801561028357600080fd5b5061028c6108a8565b60405161025491906132bb565b3480156102a557600080fd5b506102b96102b43660046130eb565b61093a565b6040516001600160a01b039091168152602001610254565b3480156102dd57600080fd5b506102b96102ec366004612cec565b6008602052600090815260409020546001600160a01b031681565b34801561031357600080fd5b50610327610322366004612e54565b6109c7565b005b34801561033557600080fd5b5061033f600c5481565b604051908152602001610254565b34801561035957600080fd5b5061033f60125481565b34801561036f57600080fd5b5061024861037e366004612e54565b610ad8565b34801561038f57600080fd5b5061033f600e5481565b3480156103a557600080fd5b506103276103b4366004612d5f565b610b03565b3480156103c557600080fd5b506102b973b47e3cd837ddf8e4c57f05d70ab865de6e193bbb81565b3480156103ed57600080fd5b506103276103fc3660046130b7565b610b34565b34801561040d57600080fd5b5061033f61271081565b34801561042357600080fd5b506103276104323660046130eb565b610b7a565b34801561044357600080fd5b5061032761045236600461311d565b610bae565b34801561046357600080fd5b50610327610472366004612d5f565b611015565b34801561048357600080fd5b50610248610492366004612e54565b600b60209081526000928352604080842090915290825290205460ff1681565b3480156104be57600080fd5b50610248611030565b3480156104d357600080fd5b506103276104e23660046130eb565b61104b565b3480156104f357600080fd5b506102b96105023660046130eb565b61107f565b34801561051357600080fd5b506102b9610522366004612cec565b6009602052600090815260409020546001600160a01b031681565b61032761054b366004612e80565b6110f6565b34801561055c57600080fd5b5061033f61056b366004612cec565b6112e4565b34801561057c57600080fd5b5061032761058b366004612ecf565b61136b565b34801561059c57600080fd5b50610327611435565b3480156105b157600080fd5b506103276105c0366004612ecf565b611470565b3480156105d157600080fd5b506013546102489060ff1681565b3480156105eb57600080fd5b506103276105fa366004612cec565b61153a565b34801561060b57600080fd5b5061032761061a3660046130eb565b611590565b34801561062b57600080fd5b506102b96115c4565b34801561064057600080fd5b5061067461064f3660046130eb565b600a60205260009081526040902080546001909101546001600160a01b039091169082565b6040516102549291906132a2565b34801561068e57600080fd5b5061032761069d366004612cec565b6115d3565b3480156106ae57600080fd5b5061033f60105481565b3480156106c457600080fd5b5061028c611629565b3480156106d957600080fd5b506103276106e8366004612e1f565b611638565b3480156106f957600080fd5b50610327610708366004612f03565b6116f9565b34801561071957600080fd5b5061033f60115481565b34801561072f57600080fd5b5061032761073e366004612cec565b611836565b34801561074f57600080fd5b5061032761075e366004612da0565b611887565b34801561076f57600080fd5b50600d546102b9906001600160a01b031681565b6103276107913660046130eb565b6118bf565b3480156107a257600080fd5b5061028c6107b13660046130eb565b611a1b565b3480156107c257600080fd5b506103276107d1366004612f66565b611b6a565b3480156107e257600080fd5b506103276107f1366004613062565b611e7f565b34801561080257600080fd5b50610248610811366004612d26565b611ec1565b34801561082257600080fd5b506103276108313660046130eb565b611eef565b34801561084257600080fd5b50610327610851366004612cec565b611f23565b60006001600160e01b031982166380ac58cd60e01b148061088757506001600160e01b03198216635b5e139f60e01b145b806108a257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108b7906135c3565b80601f01602080910402602001604051908101604052809291908181526020018280546108e3906135c3565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b5050505050905090565b600061094582611fc3565b6109ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109d28261107f565b9050806001600160a01b0316836001600160a01b03161415610a405760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a2565b336001600160a01b0382161480610a5c5750610a5c8133611ec1565b610ac95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016109a2565b610ad38383611fe0565b505050565b6001600160a01b03919091166000908152600b60209081526040808320938352929052205460ff1690565b610b0d338261204e565b610b295760405162461bcd60e51b81526004016109a2906133e2565b610ad3838383612118565b33610b3d6115c4565b6001600160a01b031614610b635760405162461bcd60e51b81526004016109a2906133ad565b8051610b76906014906020840190612a46565b5050565b33610b836115c4565b6001600160a01b031614610ba95760405162461bcd60e51b81526004016109a2906133ad565b600c55565b610be28488604051602001610bc49291906131cf565b604051602081830303815290604052805190602001208484846122a6565b610c185760405162461bcd60e51b81526020600482015260076024820152665265616c6c793f60c81b60448201526064016109a2565b60008781526015602052604090208054610c31906135c3565b159050610c735760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195b58995919195960821b60448201526064016109a2565b33610c7d8861107f565b6001600160a01b031614610cc55760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016109a2565b6001600160a01b0386811660009081526008602052604090205416151580610d0657506001600160a01b038681166000908152600960205260409020541615155b80610d2d57506001600160a01b03861673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb145b610d6a5760405162461bcd60e51b815260206004820152600e60248201526d2130b21031b7b63632b1ba34b7b760911b60448201526064016109a2565b6001600160a01b03861673b47e3cd837ddf8e4c57f05d70ab865de6e193bbb148015610e215750604051630b02f02d60e31b815260048101869052339073b47e3cd837ddf8e4c57f05d70ab865de6e193bbb9063581781689060240160206040518083038186803b158015610dde57600080fd5b505afa158015610df2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e169190612d09565b6001600160a01b0316145b80610edc57506001600160a01b038681166000908152600960205260409020541615801590610edc57506001600160a01b03808716600090815260096020526040808220549051627eeac760e11b81529192169062fdd58e90610e8a9033908a906004016132a2565b60206040518083038186803b158015610ea257600080fd5b505afa158015610eb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eda9190613104565b115b80610f7c57506001600160a01b03868116600090815260086020526040908190205490516331a9108f60e11b81526004810188905233929190911690636352211e9060240160206040518083038186803b158015610f3957600080fd5b505afa158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f719190612d09565b6001600160a01b0316145b610fba5760405162461bcd60e51b815260206004820152600f60248201526e2130b2103a37b5b2b71037bbb732b960891b60448201526064016109a2565b610fc48686610ad8565b156110005760405162461bcd60e51b815260206004820152600c60248201526b105b1c9958591e481d5cd95960a21b60448201526064016109a2565b61100c8787878761238b565b50505050505050565b610ad383838360405180602001604052806000815250611887565b6000612710600e5414806110465750600f5460ff165b905090565b336110546115c4565b6001600160a01b03161461107a5760405162461bcd60e51b81526004016109a2906133ad565b601155565b6000818152600260205260408120546001600160a01b0316806108a25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a2565b600260075414156111195760405162461bcd60e51b81526004016109a290613433565b6002600755611126611030565b156111435760405162461bcd60e51b81526004016109a290613494565b80806012546111529190613561565b3410156111715760405162461bcd60e51b81526004016109a290613347565b42600c54116111af5760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b60448201526064016109a2565b6040516001600160601b0319606088901b1660208201526111eb90603401604051602081830303815290604052805190602001208686866122a6565b80156111ff57506001600160a01b03861633145b6112365760405162461bcd60e51b81526020600482015260086024820152674e6963652074727960c01b60448201526064016109a2565b8160105410156112585760405162461bcd60e51b81526004016109a29061336b565b60005b828110801561126d5750600e54612710115b1561128d5761127b33612449565b80611285816135fe565b91505061125b565b60006012548261129d9190613561565b90506112b06112aa6115c4565b8261246d565b60006112bc8234613580565b11156112d5576112d5336112d08334613580565b61246d565b50506001600755505050505050565b60006001600160a01b03821661134f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a2565b506001600160a01b031660009081526003602052604090205490565b336113746115c4565b6001600160a01b03161461139a5760405162461bcd60e51b81526004016109a2906133ad565b60005b8151811015610b76578181815181106113b8576113b8613659565b6020026020010151600960008484815181106113d6576113d6613659565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061142d906135fe565b91505061139d565b3361143e6115c4565b6001600160a01b0316146114645760405162461bcd60e51b81526004016109a2906133ad565b61146e6000612583565b565b336114796115c4565b6001600160a01b03161461149f5760405162461bcd60e51b81526004016109a2906133ad565b60005b8151811015610b76578181815181106114bd576114bd613659565b6020026020010151600860008484815181106114db576114db613659565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080611532906135fe565b9150506114a2565b336115436115c4565b6001600160a01b0316146115695760405162461bcd60e51b81526004016109a2906133ad565b6001600160a01b0316600090815260086020526040902080546001600160a01b0319169055565b336115996115c4565b6001600160a01b0316146115bf5760405162461bcd60e51b81526004016109a2906133ad565b601055565b6006546001600160a01b031690565b336115dc6115c4565b6001600160a01b0316146116025760405162461bcd60e51b81526004016109a2906133ad565b6001600160a01b0316600090815260096020526040902080546001600160a01b0319169055565b6060600180546108b7906135c3565b6001600160a01b03821633141561168d5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016109a2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b336117026115c4565b6001600160a01b0316146117285760405162461bcd60e51b81526004016109a2906133ad565b60135460ff161561174b5760405162461bcd60e51b81526004016109a29061346a565b805182511461176c5760405162461bcd60e51b81526004016109a290613389565b60005b82518110156117ac5761179a82828151811061178d5761178d613659565b6020026020010151612449565b806117a4816135fe565b91505061176f565b5060005b8251811015610ad3578181815181106117cb576117cb613659565b60200260200101516001600160a01b03166117fe8483815181106117f1576117f1613659565b602002602001015161107f565b6001600160a01b0316146118245760405162461bcd60e51b81526004016109a290613320565b8061182e816135fe565b9150506117b0565b3361183f6115c4565b6001600160a01b0316146118655760405162461bcd60e51b81526004016109a2906133ad565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b611891338361204e565b6118ad5760405162461bcd60e51b81526004016109a2906133e2565b6118b9848484846125d5565b50505050565b600260075414156118e25760405162461bcd60e51b81526004016109a290613433565b60026007556118ef611030565b1561190c5760405162461bcd60e51b81526004016109a290613494565b808060125461191b9190613561565b34101561193a5760405162461bcd60e51b81526004016109a290613347565b600c54421161197c5760405162461bcd60e51b815260206004820152600e60248201526d13db9b1e481dda1a5d195b1a5cdd60921b60448201526064016109a2565b81601154101561199e5760405162461bcd60e51b81526004016109a29061336b565b60005b82811080156119b35750600e54612710115b156119d3576119c133612449565b806119cb816135fe565b9150506119a1565b6000601254826119e39190613561565b90506119f06112aa6115c4565b60006119fc8234613580565b1115611a1057611a10336112d08334613580565b505060016007555050565b6060611a2682611fc3565b611a725760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016109a2565b60008281526015602052604090208054611a8b906135c3565b159050611b305760008281526015602052604090208054611aab906135c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad7906135c3565b8015611b245780601f10611af957610100808354040283529160200191611b24565b820191906000526020600020905b815481529060010190602001808311611b0757829003601f168201915b50505050509050919050565b6000611b3b83612608565b905080604051602001611b4e919061323c565b604051602081830303815290604052915050919050565b919050565b33611b736115c4565b6001600160a01b031614611b995760405162461bcd60e51b81526004016109a2906133ad565b60135460ff1615611bbc5760405162461bcd60e51b81526004016109a29061346a565b8151835114611bdd5760405162461bcd60e51b81526004016109a290613389565b60005b8351811015611c7357611c61848281518110611bfe57611bfe613659565b6020026020010151838381518110611c1857611c18613659565b602002602001015160000151848481518110611c3657611c36613659565b602002602001015160200151868581518110611c5457611c54613659565b602002602001015161238b565b80611c6b816135fe565b915050611be0565b5060005b8351811015611e6c57828181518110611c9257611c92613659565b6020026020010151604051602001611caa91906131f1565b60405160208183030381529060405280519060200120611ce2858381518110611cd557611cd5613659565b6020026020010151611a1b565b604051602001611cf291906131f1565b6040516020818303038152906040528051906020012014611d255760405162461bcd60e51b81526004016109a290613320565b611d69828281518110611d3a57611d3a613659565b602002602001015160000151838381518110611d5857611d58613659565b602002602001015160200151610ad8565b611d855760405162461bcd60e51b81526004016109a290613320565b818181518110611d9757611d97613659565b6020026020010151600001516001600160a01b0316600a6000868481518110611dc257611dc2613659565b6020908102919091018101518252810191909152604001600020546001600160a01b0316148015611e3e5750818181518110611e0057611e00613659565b602002602001015160200151600a6000868481518110611e2257611e22613659565b6020026020010151815260200190815260200160002060010154145b611e5a5760405162461bcd60e51b81526004016109a290613320565b80611e64816135fe565b915050611c77565b50506013805460ff191660011790555050565b33611e886115c4565b6001600160a01b031614611eae5760405162461bcd60e51b81526004016109a2906133ad565b600f805460ff1916911515919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611ef86115c4565b6001600160a01b031614611f1e5760405162461bcd60e51b81526004016109a2906133ad565b601255565b33611f2c6115c4565b6001600160a01b031614611f525760405162461bcd60e51b81526004016109a2906133ad565b6001600160a01b038116611fb75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a2565b611fc081612583565b50565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120158261107f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061205982611fc3565b6120ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a2565b60006120c58361107f565b9050806001600160a01b0316846001600160a01b031614806121005750836001600160a01b03166120f58461093a565b6001600160a01b0316145b8061211057506121108185611ec1565b949350505050565b826001600160a01b031661212b8261107f565b6001600160a01b0316146121935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a2565b6001600160a01b0382166121f55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a2565b612200600082611fe0565b6001600160a01b0383166000908152600360205260408120805460019290612229908490613580565b90915550506001600160a01b0382166000908152600360205260408120805460019290612257908490613535565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206136b183398151915291a4505050565b6000806040518060400160405280601c81526020017b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b8152509050600081876040516020016122f59291906131cf565b60408051808303601f190181528282528051602091820120600d546000855291840180845281905260ff8a169284019290925260608301889052608083018790529092506001600160a01b03169060019060a0016020604051602081039080840390855afa15801561236b573d6000803e3d6000fd5b505050602060405103516001600160a01b03161492505050949350505050565b6040805180820182526001600160a01b03858116808352602080840187815260008a8152600a8352868120955186546001600160a01b031916951694909417855551600194850155908252600b81528382208683528152838220805460ff19169093179092558681526015825291909120825161240a92840190612a46565b5081836001600160a01b0316857f10636a742a569a36cb5332421676b48578668dbb1415dc9a1b96809182ddd06f60405160405180910390a450505050565b61245581600e546126c3565b600e8054906000612465836135fe565b919050555050565b804710156124bd5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109a2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461250a576040519150601f19603f3d011682016040523d82523d6000602084013e61250f565b606091505b5050905080610ad35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b60648201526084016109a2565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125e0848484612118565b6125ec848484846126dd565b6118b95760405162461bcd60e51b81526004016109a2906132ce565b606061261382611fc3565b6126775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a2565b60006126816127e7565b905060008151116126a157604051806020016040528060008152506126bc565b806126ab846127f6565b604051602001611b4e92919061320d565b9392505050565b610b768282604051806020016040528060008152506128f3565b60006001600160a01b0384163b156127df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612721903390899088908890600401613265565b602060405180830381600087803b15801561273b57600080fd5b505af192505050801561276b575060408051601f3d908101601f191682019092526127689181019061309a565b60015b6127c5573d808015612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b5080516127bd5760405162461bcd60e51b81526004016109a2906132ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612110565b506001612110565b6060601480546108b7906135c3565b60608161281a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612844578061282e816135fe565b915061283d9050600a8361354d565b915061281e565b6000816001600160401b0381111561285e5761285e61366f565b6040519080825280601f01601f191660200182016040528015612888576020820181803683370190505b5090505b84156121105761289d600183613580565b91506128aa600a86613619565b6128b5906030613535565b60f81b8183815181106128ca576128ca613659565b60200101906001600160f81b031916908160001a9053506128ec600a8661354d565b945061288c565b6128fd8383612926565b61290a60008484846126dd565b610ad35760405162461bcd60e51b81526004016109a2906132ce565b6001600160a01b03821661297c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a2565b61298581611fc3565b156129d15760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016109a2565b6001600160a01b03821660009081526003602052604081208054600192906129fa908490613535565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206136b1833981519152908290a45050565b828054612a52906135c3565b90600052602060002090601f016020900481019282612a745760008555612aba565b82601f10612a8d57805160ff1916838001178555612aba565b82800160010185558215612aba579182015b82811115612aba578251825591602001919060010190612a9f565b50612ac6929150612aca565b5090565b5b80821115612ac65760008155600101612acb565b60006001600160401b03831115612af857612af861366f565b612b0b601f8401601f19166020016134e2565b9050828152838383011115612b1f57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612b4757600080fd5b81356020612b5c612b5783613512565b6134e2565b80838252828201915082860187848660051b8901011115612b7c57600080fd5b60005b85811015612ba4578135612b9281613685565b84529284019290840190600101612b7f565b5090979650505050505050565b600082601f830112612bc257600080fd5b81356020612bd2612b5783613512565b80838252828201915082860187848660061b8901011115612bf257600080fd5b6000805b86811015612c3d57604080848c031215612c0e578283fd5b612c166134ba565b8435612c2181613685565b8152848801358882015286529486019490920191600101612bf6565b509198975050505050505050565b600082601f830112612c5c57600080fd5b81356020612c6c612b5783613512565b80838252828201915082860187848660051b8901011115612c8c57600080fd5b60005b85811015612ba457813584529284019290840190600101612c8f565b80358015158114611b6557600080fd5b600082601f830112612ccc57600080fd5b6126bc83833560208501612adf565b803560ff81168114611b6557600080fd5b600060208284031215612cfe57600080fd5b81356126bc81613685565b600060208284031215612d1b57600080fd5b81516126bc81613685565b60008060408385031215612d3957600080fd5b8235612d4481613685565b91506020830135612d5481613685565b809150509250929050565b600080600060608486031215612d7457600080fd5b8335612d7f81613685565b92506020840135612d8f81613685565b929592945050506040919091013590565b60008060008060808587031215612db657600080fd5b8435612dc181613685565b93506020850135612dd181613685565b92506040850135915060608501356001600160401b03811115612df357600080fd5b8501601f81018713612e0457600080fd5b612e1387823560208401612adf565b91505092959194509250565b60008060408385031215612e3257600080fd5b8235612e3d81613685565b9150612e4b60208401612cab565b90509250929050565b60008060408385031215612e6757600080fd5b8235612e7281613685565b946020939093013593505050565b600080600080600060a08688031215612e9857600080fd5b8535612ea381613685565b9450612eb160208701612cdb565b94979496505050506040830135926060810135926080909101359150565b600060208284031215612ee157600080fd5b81356001600160401b03811115612ef757600080fd5b61211084828501612b36565b60008060408385031215612f1657600080fd5b82356001600160401b0380821115612f2d57600080fd5b612f3986838701612c4b565b93506020850135915080821115612f4f57600080fd5b50612f5c85828601612b36565b9150509250929050565b600080600060608486031215612f7b57600080fd5b83356001600160401b0380821115612f9257600080fd5b612f9e87838801612c4b565b9450602091508186013581811115612fb557600080fd5b8601601f81018813612fc657600080fd5b8035612fd4612b5782613512565b8082825285820191508584018b878560051b8701011115612ff457600080fd5b60005b8481101561302f5781358781111561300e57600080fd5b61301c8e8a838a0101612cbb565b8552509287019290870190600101612ff7565b5090975050505060408701359250508082111561304b57600080fd5b5061305886828701612bb1565b9150509250925092565b60006020828403121561307457600080fd5b6126bc82612cab565b60006020828403121561308f57600080fd5b81356126bc8161369a565b6000602082840312156130ac57600080fd5b81516126bc8161369a565b6000602082840312156130c957600080fd5b81356001600160401b038111156130df57600080fd5b61211084828501612cbb565b6000602082840312156130fd57600080fd5b5035919050565b60006020828403121561311657600080fd5b5051919050565b600080600080600080600060e0888a03121561313857600080fd5b87359650602088013561314a81613685565b95506040880135945060608801356001600160401b0381111561316c57600080fd5b6131788a828b01612cbb565b94505061318760808901612cdb565b925060a0880135915060c0880135905092959891949750929550565b600081518084526131bb816020860160208601613597565b601f01601f19169290920160200192915050565b600083516131e1818460208801613597565b9190910191825250602001919050565b60008251613203818460208701613597565b9190910192915050565b6000835161321f818460208801613597565b835190830190613233818360208801613597565b01949350505050565b6000825161324e818460208701613597565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613298908301846131a3565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020815260006126bc60208301846131a3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c2130b21036b4b3b930ba34b7b760991b604082015260600190565b6020808252600a90820152690f1b5a5b9d0818dbdcdd60b21b604082015260600190565b60208082526004908201526307cdac2f60e31b604082015260600190565b6020808252600a9082015269084c2c840d8cadccee8d60b31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f2334b734b9b41036b4b3b930ba34b7b760811b604082015260600190565b6020808252600c908201526b26b4b73a34b7339037bb32b960a11b604082015260600190565b604080519081016001600160401b03811182821017156134dc576134dc61366f565b60405290565b604051601f8201601f191681016001600160401b038111828210171561350a5761350a61366f565b604052919050565b60006001600160401b0382111561352b5761352b61366f565b5060051b60200190565b600082198211156135485761354861362d565b500190565b60008261355c5761355c613643565b500490565b600081600019048311821515161561357b5761357b61362d565b500290565b6000828210156135925761359261362d565b500390565b60005b838110156135b257818101518382015260200161359a565b838111156118b95750506000910152565b600181811c908216806135d757607f821691505b602082108114156135f857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136125761361261362d565b5060010190565b60008261362857613628613643565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611fc057600080fd5b6001600160e01b031981168114611fc057600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122012444caa5591ac365651c4ca0a7038fe06b32677fbbbc078d742213b4122780e64736f6c63430008060033

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

0000000000000000000000006f5cf0fd35bcad84824bf9c26133118e106c17bd000000000000000000000000000000000000000000000000000000006399f3000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7365727665722e746865636f6c6c6563746f72736e66742e78797a2f746f6b656e2f00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _signerPublicAddress (address): 0x6f5CF0Fd35Bcad84824Bf9c26133118E106C17bD
Arg [1] : _endWhitelistMintingPeriodDateAndTime (uint256): 1671033600
Arg [2] : __baseTokenURI (string): https://server.thecollectorsnft.xyz/token/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000006f5cf0fd35bcad84824bf9c26133118e106c17bd
Arg [1] : 000000000000000000000000000000000000000000000000000000006399f300
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [4] : 68747470733a2f2f7365727665722e746865636f6c6c6563746f72736e66742e
Arg [5] : 78797a2f746f6b656e2f00000000000000000000000000000000000000000000


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.