ETH Price: $3,399.51 (+6.64%)
Gas: 13 Gwei

Token

Cryptolovelocks (LOCK)
 

Overview

Max Total Supply

127 LOCK

Holders

83

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LOCK
0x78a78a06467f7191d588afa7c373a4b7fb971a1b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cryptolovelocks is a collection of 10,890 unique digital locks that symbolize any form of love. If you own one of them you have the privilege to write a custom love note to celebrate your sentiments and capture your moment.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Media

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 24 : Media.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;

import {ERC721Burnable} from "./ERC721Burnable.sol";
import {ERC721} from "./ERC721.sol";
import {EnumerableSet} from "@openzeppelin/contracts/utils/EnumerableSet.sol";
import {Counters} from "@openzeppelin/contracts/utils/Counters.sol";
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {Math} from "@openzeppelin/contracts/math/Math.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {
    ReentrancyGuard
} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import {Decimal} from "./Decimal.sol";
import {IMarket} from "./interfaces/IMarket.sol";
import "./interfaces/IMedia.sol";

/**
 * @title A media value system, with perpetual equity to creators
 * @notice This contract provides an interface to mint media with a market
 * owned by the creator.
 */
contract Media is IMedia, ERC721Burnable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    /* *******
     * Events
     * *******/

    event CurrentPriceChanged(
        uint256 _currentPrice        
    );

    event DeveloperChanged(
        address _developer        
    );

    event SetMessage(
        address indexed _from,
        uint256 _token,
        string _msg
    );

    /* *******
     * Globals
     * *******
     */

    // Hash of 
    uint256 public constant COLLECTION_LIBRARY_HASH = 0x152d4f1109f051d3d477f8179dbbc746f65e1abb0d11d796b1943f5ca596c245;

    // Developer address
    address public constant INITIAL_DEVELOPER_ADDRESS = 0xDE89fb5bd8f420301fAB3930fAaEf185776c4b07;

    // Initial cryptolovelock price
    uint256 public constant INITIAL_PRICE = 0.04e18;

    // First 1089 tokens are reserved for future sales
    uint16 public constant RESERVED_FOR_FUTURE_SALES = 1089;

    // Total number of token available
    uint256 public constant TOTAL_SUPPLY = 10890;

    // Current price for Cryptolovelock
    uint256 public crytolovelockPrice;

    // Developer of Cryptolovelocks
    address public developer;

    // When true the owner of the token specified by the key
    // can set the love note: when owner set a love note this flag is
    // resetted.
    // We set this flag to true when token is transferred.
    mapping(uint256 => bool) public _canSetMessage;

    // Address for the market
    address public marketContract;

    // Mapping from token to previous owner of the token
    mapping(uint256 => address) public previousTokenOwners;

    // Mapping from token id to creator address
    mapping(uint256 => address) public tokenCreators;

    // Mapping from creator address to their (enumerable) set of created tokens
    mapping(address => EnumerableSet.UintSet) private _creatorTokens;

    // Mapping from token id to sha256 hash of content
    mapping(uint256 => bytes32) public tokenContentHashes;

    // Mapping from token id to sha256 hash of metadata
    mapping(uint256 => bytes32) public tokenMetadataHashes;

    // Mapping from token id to metadataURI
    mapping(uint256 => string) private _tokenMetadataURIs;

    // Mapping from contentHash to bool
    mapping(bytes32 => bool) private _contentHashes;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *     bytes4(keccak256('tokenMetadataURI(uint256)')) == 0x157c3df9
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd ^ 0x157c3df9 == 0x4e222e66
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x4e222e66;

    /* *********
     * Modifiers
     * *********
     */

    /**
     * @notice Require that the token has not been burned and has been minted
     */
    modifier onlyExistingToken(uint256 tokenId) {
        require(_exists(tokenId), "Media: nonexistent token");
        _;
    }

    /**
     * @notice Require that the token has had a content hash set
     */
    modifier onlyTokenWithContentHash(uint256 tokenId) {
        require(
            tokenContentHashes[tokenId] != 0,
            "Media: token does not have hash of created content"
        );
        _;
    }

    /**
     * @notice Require that the token has had a metadata hash set
     */
    modifier onlyTokenWithMetadataHash(uint256 tokenId) {
        require(
            tokenMetadataHashes[tokenId] != 0,
            "Media: token does not have hash of its metadata"
        );
        _;
    }

    /**
     * @notice Ensure that the provided spender is the approved or the owner of
     * the media for the specified tokenId
     */
    modifier onlyApprovedOrOwner(address spender, uint256 tokenId) {
        require(
            _isApprovedOrOwner(spender, tokenId),
            "Media: Only approved or owner"
        );
        _;
    }

    /**
     * @notice Ensure the token has been created (even if it has been burned)
     */
    modifier onlyTokenCreated(uint256 tokenId) {
        require (tokenCreators[tokenId] != address(0x0), "Media: token with that id does not exist");
        _;
    }

    /**
     * @notice Ensure that the provided URI is not empty
     */
    modifier onlyValidURI(string memory uri) {
        require(
            bytes(uri).length != 0,
            "Media: specified uri must be non-empty"
        );
        _;
    }

    /**
     * @notice On deployment, set the market contract address and register the
     * ERC721 metadata interface
     */
    constructor(address marketContractAddr) public ERC721("Cryptolovelocks", "LOCK") {
        marketContract = marketContractAddr;
        crytolovelockPrice = INITIAL_PRICE;
        developer = INITIAL_DEVELOPER_ADDRESS;
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /* **************
     * View Functions
     * **************
     */

    /**
     * Constant BidShares for Cryptolovelocs: 5% to creator
     * the rest to the owner
     */
    function initialBidShares() public pure returns (IMarket.BidShares memory) {
        return IMarket.BidShares({
            creator: Decimal.D256(5 * Decimal.BASE),
            prevOwner: Decimal.D256(0),
            owner: Decimal.D256(95 * Decimal.BASE)
        });
    }

    function currentPrice() public view returns (uint256) {
        return crytolovelockPrice;
    }

    function setCurrentPrice(uint256 _crytolovelockPrice) public {
        require(msg.sender == developer, "Media: only developer can set the price");
        crytolovelockPrice = _crytolovelockPrice;
        emit CurrentPriceChanged(_crytolovelockPrice);
    }

    function currentDeveloper() public view returns (address) {
        return developer;
    }

    function setDeveloper(address _developer) public {
        require(msg.sender == developer, "Media: only developer can change the developer");
        developer = _developer;
        emit DeveloperChanged(_developer);
    }

    /**
     * @notice return the URI for a particular piece of media with the specified tokenId
     * @dev This function is an override of the base OZ implementation because we
     * will return the tokenURI even if the media has been burned. In addition, this
     * protocol does not support a base URI, so relevant conditionals are removed.
     * @return the URI for a token
     */
    function tokenURI(uint256 tokenId)
        public
        view
        override
        onlyTokenCreated(tokenId)
        returns (string memory)
    {
        string memory _tokenURI = _tokenURIs[tokenId];

        return _tokenURI;
    }

    /**
     * @notice Return the metadata URI for a piece of media given the token URI
     * @return the metadata URI for the token
     */
    function tokenMetadataURI(uint256 tokenId)
        external
        view
        override
        onlyTokenCreated(tokenId)
        returns (string memory)
    {
        return _tokenMetadataURIs[tokenId];
    }

    /* ****************
     * Public Functions
     * ****************
     */

    /**
     * Set your love message
     */
    function setLoveMessage(uint256 _tokenId, string memory _msg) public onlyApprovedOrOwner(msg.sender, _tokenId) {
        require(_canSetMessage[_tokenId], "Cryptolovelock: You already chosen your love note");
        _canSetMessage[_tokenId] = false;
        emit SetMessage(msg.sender, _tokenId, _msg);
    }

    /**
     * @notice see IMedia
     */
    function mint(uint256 tokenId, MediaData memory data)
        public
        override
        payable
        nonReentrant
    {
        if (msg.sender != developer) {
            require(msg.value >= crytolovelockPrice, "Media: price not payed");
        }
        _mintForCreator(tokenId, msg.sender, data, initialBidShares());
        if (msg.sender != developer) {
            payable(developer).transfer(msg.value);
        }
    }

    /**
     * @notice see IMedia
     */
    function auctionTransfer(uint256 tokenId, address recipient)
        external
        override
    {
        require(msg.sender == marketContract, "Media: only market contract");
        previousTokenOwners[tokenId] = ownerOf(tokenId);
        _safeTransfer(ownerOf(tokenId), recipient, tokenId, "");
    }

    /**
     * @notice see IMedia
     */
    function setAsk(uint256 tokenId, IMarket.Ask memory ask)
        public
        override
        nonReentrant
        onlyApprovedOrOwner(msg.sender, tokenId)
    {
        IMarket(marketContract).setAsk(tokenId, ask);
    }

    /**
     * @notice see IMedia
     */
    function removeAsk(uint256 tokenId)
        external
        override
        nonReentrant
        onlyApprovedOrOwner(msg.sender, tokenId)
    {
        IMarket(marketContract).removeAsk(tokenId);
    }

    /**
     * @notice see IMedia
     */
    function setBid(uint256 tokenId, IMarket.Bid memory bid)
        public
        override
        nonReentrant
        onlyExistingToken(tokenId)
    {
        require(msg.sender == bid.bidder, "Market: Bidder must be msg sender");
        IMarket(marketContract).setBid(tokenId, bid, msg.sender);
    }

    /**
     * @notice see IMedia
     */
    function removeBid(uint256 tokenId)
        external
        override
        nonReentrant
        onlyTokenCreated(tokenId)
    {
        IMarket(marketContract).removeBid(tokenId, msg.sender);
    }

    /**
     * @notice see IMedia
     */
    function acceptBid(uint256 tokenId, IMarket.Bid memory bid)
        public
        override
        nonReentrant
        onlyApprovedOrOwner(msg.sender, tokenId)
    {
        IMarket(marketContract).acceptBid(tokenId, bid);
    }

    /**
     * @notice Burn a token.
     * @dev Only callable if the media owner is also the creator.
     */
    function burn(uint256 tokenId)
        public
        override
        nonReentrant
        onlyExistingToken(tokenId)
        onlyApprovedOrOwner(msg.sender, tokenId)
    {
        address owner = ownerOf(tokenId);

        require(
            tokenCreators[tokenId] == owner,
            "Media: owner is not creator of media"
        );

        _burn(tokenId);
    }

    /**
     * @notice Revoke the approvals for a token. The provided `approve` function is not sufficient
     * for this protocol, as it does not allow an approved address to revoke it's own approval.
     */
    function revokeApproval(uint256 tokenId) external override nonReentrant {
        require(
            msg.sender == getApproved(tokenId),
            "Media: caller not approved address"
        );
        _approve(address(0), tokenId);
    }

    /**
     * @notice see IMedia
     * @dev only callable by approved or owner
     */
    function updateTokenURI(uint256 tokenId, string calldata _tokenURI)
        external
        override
        nonReentrant
        onlyApprovedOrOwner(msg.sender, tokenId)
        onlyTokenWithContentHash(tokenId)
        onlyValidURI(_tokenURI)
    {
        _setTokenURI(tokenId, _tokenURI);
        emit TokenURIUpdated(tokenId, msg.sender, _tokenURI);
    }

    /**
     * @notice see IMedia
     * @dev only callable by approved or owner
     */
    function updateTokenMetadataURI(
        uint256 tokenId,
        string calldata metadataURI
    )
        external
        override
        nonReentrant
        onlyApprovedOrOwner(msg.sender, tokenId)
        onlyTokenWithMetadataHash(tokenId)
        onlyValidURI(metadataURI)
    {
        _setTokenMetadataURI(tokenId, metadataURI);
        emit TokenMetadataURIUpdated(tokenId, msg.sender, metadataURI);
    }

    /* *****************
     * Private Functions
     * *****************
     */

    /**
     * @notice Creates a new token for `creator`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_safeMint}.
     *
     * On mint, also set the sha256 hashes of the content and its metadata for integrity
     * checks, along with the initial URIs to point to the content and metadata. Attribute
     * the token ID to the creator, mark the content hash as used, and set the bid shares for
     * the media's market.
     *
     * Note that although the content hash must be unique for future mints to prevent duplicate media,
     * metadata has no such requirement.
     */
    function _mintForCreator(
        uint256 tokenId,
        address creator,
        MediaData memory data,
        IMarket.BidShares memory bidShares
    ) internal onlyValidURI(data.tokenURI) onlyValidURI(data.metadataURI) {
        require(data.contentHash != 0, "Media: content hash must be non-zero");
        require(
            _contentHashes[data.contentHash] == false,
            "Media: a token has already been created with this content hash"
        );
        require(
            data.metadataHash != 0,
            "Media: metadata hash must be non-zero"
        );
        require(!_exists(tokenId), "Media: token already exists");
        require(tokenId >= 0 && tokenId < TOTAL_SUPPLY, "Media: collection has a limited supply");
        if (creator != developer) {
            require(tokenId >= RESERVED_FOR_FUTURE_SALES, "Media: this token is left for future sales");
        }
        else {
            require(tokenId < RESERVED_FOR_FUTURE_SALES, "Media: developer can mint only token left for future sales");
        }

        _safeMint(creator, tokenId);

        _setTokenContentHash(tokenId, data.contentHash);
        _setTokenMetadataHash(tokenId, data.metadataHash);
        _setTokenMetadataURI(tokenId, data.metadataURI);
        _setTokenURI(tokenId, data.tokenURI);
        _canSetMessage[tokenId] = true;
        _creatorTokens[creator].add(tokenId);
        _contentHashes[data.contentHash] = true;

        tokenCreators[tokenId] = creator;
        previousTokenOwners[tokenId] = creator;
        IMarket(marketContract).setBidShares(tokenId, bidShares);
    }

    function _setTokenContentHash(uint256 tokenId, bytes32 contentHash)
        internal
        virtual
        onlyExistingToken(tokenId)
    {
        tokenContentHashes[tokenId] = contentHash;
    }

    function _setTokenMetadataHash(uint256 tokenId, bytes32 metadataHash)
        internal
        virtual
        onlyExistingToken(tokenId)
    {
        tokenMetadataHashes[tokenId] = metadataHash;
    }

    function _setTokenMetadataURI(uint256 tokenId, string memory metadataURI)
        internal
        virtual
        onlyExistingToken(tokenId)
    {
        _tokenMetadataURIs[tokenId] = metadataURI;
    }

    /**
     * @notice Destroys `tokenId`.
     * @dev We modify the OZ _burn implementation to
     * maintain metadata and to remove the
     * previous token owner from the piece
     */
    function _burn(uint256 tokenId) internal override {
        string memory _tokenURI = _tokenURIs[tokenId];

        super._burn(tokenId);

        if (bytes(_tokenURI).length != 0) {
            _tokenURIs[tokenId] = _tokenURI;
        }

        delete previousTokenOwners[tokenId];
    }

    /**
     * @notice transfer a token and remove the ask for it.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        IMarket(marketContract).removeAsk(tokenId);
        super._transfer(from, to, tokenId);
        _canSetMessage[tokenId] = true;
    }

}

File 2 of 24 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

/**
 * NOTE: This file is a clone of the OpenZeppelin ERC721Burnable.sol contract. It was forked from https://github.com/OpenZeppelin/openzeppelin-contracts
 * at commit 1ada3b633e5bfd9d4ffe0207d64773a11f5a7c40
 *
 * It was cloned in order to ensure it imported from the cloned ERC721.sol file. No other modifications have been made.
 */

pragma solidity 0.6.8;

import "@openzeppelin/contracts/GSN/Context.sol";
import "./ERC721.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

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

/**
 * NOTE: This file is a clone of the OpenZeppelin ERC721.sol contract. It was forked from https://github.com/OpenZeppelin/openzeppelin-contracts
 * at commit 1ada3b633e5bfd9d4ffe0207d64773a11f5a7c40
 *
 *
 * The following functions needed to be modified, prompting this clone:
 *  - `_tokenURIs` visibility was changed from private to internal to support updating URIs after minting
 *  - `_baseURI` visibiility was changed from private to internal to support fetching token URI even after the token was burned
 *  - `_INTERFACE_ID_ERC721_METADATA` is no longer registered as an interface because _tokenURI now returns raw content instead of a JSON file, and supports updatable URIs
 *  - `_approve` visibility was changed from private to internal to support EIP-2612 flavored permits and approval revocation by an approved address
 */

pragma solidity 0.6.8;

import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/introspection/ERC165.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
import "@openzeppelin/contracts/utils/EnumerableMap.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // 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;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) internal _tokenURIs;

    // Base URI
    string internal _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return
            _tokenOwners.get(
                tokenId,
                "ERC721: owner query for nonexistent token"
            );
    }

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

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view 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 _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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
        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
        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 returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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 = ownerOf(tokenId);

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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(
            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);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata =
            to.functionCall(
                abi.encodeWithSelector(
                    IERC721Receiver(to).onERC721Received.selector,
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                ),
                "ERC721: transfer to non ERC721Receiver implementer"
            );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) internal {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

File 4 of 24 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 5 of 24 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../math/SafeMath.sol";

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

File 6 of 24 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 7 of 24 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

File 8 of 24 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

File 9 of 24 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        _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 10 of 24 : Decimal.sol
// SPDX-License-Identifier: Apache2

/*
    Copyright 2019 dYdX Trading Inc.
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;

/**
 * NOTE: This file is a clone of the dydx protocol's Decimal.sol contract. It was forked from https://github.com/dydxprotocol/solo
 * at commit 2d8454e02702fe5bc455b848556660629c3cad36
 *
 * It has not been modified other than to use a newer solidity in the pragma to match the rest of the contract suite of this project
 */

import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {Math} from "./Math.sol";

/**
 * @title Decimal
 *
 * Library that defines a fixed-point number with 18 decimal places.
 */
library Decimal {
    using SafeMath for uint256;

    // ============ Constants ============

    uint256 constant BASE_POW = 18;
    uint256 constant BASE = 10**BASE_POW;

    // ============ Structs ============

    struct D256 {
        uint256 value;
    }

    // ============ Functions ============

    function one() internal pure returns (D256 memory) {
        return D256({value: BASE});
    }

    function onePlus(D256 memory d) internal pure returns (D256 memory) {
        return D256({value: d.value.add(BASE)});
    }

    function mul(uint256 target, D256 memory d)
        internal
        pure
        returns (uint256)
    {
        return Math.getPartial(target, d.value, BASE);
    }

    function div(uint256 target, D256 memory d)
        internal
        pure
        returns (uint256)
    {
        return Math.getPartial(target, BASE, d.value);
    }
}

File 11 of 24 : IMarket.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;

import {Decimal} from "../Decimal.sol";

/**
 * @title Interface for Zora Protocol's Market
 */
interface IMarket {
    struct Bid {
        // Amount of the currency being bid
        uint256 amount;
        // Address to the ERC20 token being used to bid
        address currency;
        // Address of the bidder
        address bidder;
        // Address of the recipient
        address recipient;
        // % of the next sale to award the current owner
        Decimal.D256 sellOnShare;
    }

    struct Ask {
        // Amount of the currency being asked
        uint256 amount;
        // Address to the ERC20 token being asked
        address currency;
    }

    struct BidShares {
        // % of sale value that goes to the _previous_ owner of the nft
        Decimal.D256 prevOwner;
        // % of sale value that goes to the original creator of the nft
        Decimal.D256 creator;
        // % of sale value that goes to the seller (current owner) of the nft
        Decimal.D256 owner;
    }

    event BidCreated(uint256 indexed tokenId, Bid bid);
    event BidRemoved(uint256 indexed tokenId, Bid bid);
    event BidFinalized(uint256 indexed tokenId, Bid bid);
    event AskCreated(uint256 indexed tokenId, Ask ask);
    event AskRemoved(uint256 indexed tokenId, Ask ask);
    event BidShareUpdated(uint256 indexed tokenId, BidShares bidShares);

    function bidForTokenBidder(uint256 tokenId, address bidder)
        external
        view
        returns (Bid memory);

    function currentAskForToken(uint256 tokenId)
        external
        view
        returns (Ask memory);

    function bidSharesForToken(uint256 tokenId)
        external
        view
        returns (BidShares memory);

    function isValidBid(uint256 tokenId, uint256 bidAmount)
        external
        view
        returns (bool);

    function isValidBidShares(BidShares calldata bidShares)
        external
        pure
        returns (bool);

    function splitShare(Decimal.D256 calldata sharePercentage, uint256 amount)
        external
        pure
        returns (uint256);

    function configure(address mediaContractAddress) external;

    function setBidShares(uint256 tokenId, BidShares calldata bidShares)
        external;

    function setAsk(uint256 tokenId, Ask calldata ask) external;

    function removeAsk(uint256 tokenId) external;

    function setBid(
        uint256 tokenId,
        Bid calldata bid,
        address spender
    ) external;

    function removeBid(uint256 tokenId, address bidder) external;

    function acceptBid(uint256 tokenId, Bid calldata expectedBid) external;
}

File 12 of 24 : IMedia.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;

import {IMarket} from "./IMarket.sol";

/**
 * @title Interface for Zora Protocol's Media
 */
interface IMedia {

    struct MediaData {
        // A valid URI of the content represented by this token
        string tokenURI;
        // A valid URI of the metadata associated with this token
        string metadataURI;
        // A SHA256 hash of the content pointed to by tokenURI
        bytes32 contentHash;
        // A SHA256 hash of the content pointed to by metadataURI
        bytes32 metadataHash;
    }

    event TokenURIUpdated(uint256 indexed _tokenId, address owner, string _uri);
    event TokenMetadataURIUpdated(
        uint256 indexed _tokenId,
        address owner,
        string _uri
    );

    /**
     * @notice Return the metadata URI for a piece of media given the token URI
     */
    function tokenMetadataURI(uint256 tokenId)
        external
        view
        returns (string memory);

    /**
     * @notice Mint new media for msg.sender.
     */
    function mint(uint256 tokenId, MediaData calldata data) payable
        external;

    /**
     * @notice Transfer the token with the given ID to a given address.
     * Save the previous owner before the transfer, in case there is a sell-on fee.
     * @dev This can only be called by the auction contract specified at deployment
     */
    function auctionTransfer(uint256 tokenId, address recipient) external;

    /**
     * @notice Set the ask on a piece of media
     */
    function setAsk(uint256 tokenId, IMarket.Ask calldata ask) external;

    /**
     * @notice Remove the ask on a piece of media
     */
    function removeAsk(uint256 tokenId) external;

    /**
     * @notice Set the bid on a piece of media
     */
    function setBid(uint256 tokenId, IMarket.Bid calldata bid) external;

    /**
     * @notice Remove the bid on a piece of media
     */
    function removeBid(uint256 tokenId) external;

    function acceptBid(uint256 tokenId, IMarket.Bid calldata bid) external;

    /**
     * @notice Revoke approval for a piece of media
     */
    function revokeApproval(uint256 tokenId) external;

    /**
     * @notice Update the token URI
     */
    function updateTokenURI(uint256 tokenId, string calldata tokenURI) external;

    /**
     * @notice Update the token metadata uri
     */
    function updateTokenMetadataURI(
        uint256 tokenId,
        string calldata metadataURI
    ) external;

}

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

pragma solidity >=0.6.0 <0.8.0;

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

File 14 of 24 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 15 of 24 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "../../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 16 of 24 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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 17 of 24 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 18 of 24 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 19 of 24 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

File 20 of 24 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 21 of 24 : EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

File 22 of 24 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

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

File 24 of 24 : Math.sol
// SPDX-License-Identifier: Apache2

pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;

import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";

/**
 * @title Math
 *
 * Library for non-standard Math functions
 * NOTE: This file is a clone of the dydx protocol's Decimal.sol contract.
 * It was forked from https://github.com/dydxprotocol/solo at commit
 * 2d8454e02702fe5bc455b848556660629c3cad36. It has not been modified other than to use a
 * newer solidity in the pragma to match the rest of the contract suite of this project.
 */
library Math {
    using SafeMath for uint256;

    // ============ Library Functions ============

    /*
     * Return target * (numerator / denominator).
     */
    function getPartial(
        uint256 target,
        uint256 numerator,
        uint256 denominator
    ) internal pure returns (uint256) {
        return target.mul(numerator).div(denominator);
    }

    /*
     * Return target * (numerator / denominator), but rounded up.
     */
    function getPartialRoundUp(
        uint256 target,
        uint256 numerator,
        uint256 denominator
    ) internal pure returns (uint256) {
        if (target == 0 || numerator == 0) {
            // SafeMath will check for zero denominator
            return SafeMath.div(0, denominator);
        }
        return target.mul(numerator).sub(1).div(denominator).add(1);
    }

    function to128(uint256 number) internal pure returns (uint128) {
        uint128 result = uint128(number);
        require(result == number, "Math: Unsafe cast to uint128");
        return result;
    }

    function to96(uint256 number) internal pure returns (uint96) {
        uint96 result = uint96(number);
        require(result == number, "Math: Unsafe cast to uint96");
        return result;
    }

    function to32(uint256 number) internal pure returns (uint32) {
        uint32 result = uint32(number);
        require(result == number, "Math: Unsafe cast to uint32");
        return result;
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketContractAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_currentPrice","type":"uint256"}],"name":"CurrentPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_developer","type":"address"}],"name":"DeveloperChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_token","type":"uint256"},{"indexed":false,"internalType":"string","name":"_msg","type":"string"}],"name":"SetMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"TokenMetadataURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"TokenURIUpdated","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":"COLLECTION_LIBRARY_HASH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_DEVELOPER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_FOR_FUTURE_SALES","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_canSetMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"address","name":"bidder","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"sellOnShare","type":"tuple"}],"internalType":"struct IMarket.Bid","name":"bid","type":"tuple"}],"name":"acceptBid","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"auctionTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"crytolovelockPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDeveloper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialBidShares","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"prevOwner","type":"tuple"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"creator","type":"tuple"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"owner","type":"tuple"}],"internalType":"struct IMarket.BidShares","name":"","type":"tuple"}],"stateMutability":"pure","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":"marketContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"bytes32","name":"contentHash","type":"bytes32"},{"internalType":"bytes32","name":"metadataHash","type":"bytes32"}],"internalType":"struct IMedia.MediaData","name":"data","type":"tuple"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"previousTokenOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"removeAsk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"removeBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"revokeApproval","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":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IMarket.Ask","name":"ask","type":"tuple"}],"name":"setAsk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"address","name":"bidder","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"sellOnShare","type":"tuple"}],"internalType":"struct IMarket.Bid","name":"bid","type":"tuple"}],"name":"setBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_crytolovelockPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developer","type":"address"}],"name":"setDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_msg","type":"string"}],"name":"setLoveMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenContentHashes","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenCreators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadataHashes","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadataURI","type":"string"}],"name":"updateTokenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200403738038062004037833981016040819052620000349162000264565b604080518082018252600f81526e43727970746f6c6f76656c6f636b7360881b602080830191909152825180840190935260048352634c4f434b60e01b9083015290620000916301ffc9a760e01b6001600160e01b036200016416565b8151620000a6906006906020850190620001bf565b508051620000bc906007906020840190620001bf565b50620000d86380ac58cd60e01b6001600160e01b036200016416565b620000f363780e9d6360e01b6001600160e01b036200016416565b50506001600a55600e80546001600160a01b0383166001600160a01b031991821617909155668e1bc9bf040000600b55600c805490911673de89fb5bd8f420301fab3930faaef185776c4b071790556200015d632711173360e11b6001600160e01b036200016416565b50620002cb565b6001600160e01b031980821614156200019a5760405162461bcd60e51b8152600401620001919062000294565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020257805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023257825182559160200191906001019062000215565b506200024092915062000244565b5090565b6200026191905b808211156200024057600081556001016200024b565b90565b60006020828403121562000276578081fd5b81516001600160a01b03811681146200028d578182fd5b9392505050565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b613d5c80620002db6000396000f3fe6080604052600436106102935760003560e01c806375682e791161015a578063ba339399116100c1578063e4ffee6e1161007a578063e4ffee6e14610788578063e821c55d146107aa578063e985e9c5146107bf578063f6b630f0146107df578063fad32197146107ff578063ff70fa491461081f57610293565b8063ba339399146106de578063c47494db146106fe578063c87b56dd1461071e578063c9b78dfb1461073e578063ca4b208b14610753578063e0fd045f1461076857610293565b80639d8e7260116101135780639d8e726014610629578063a1794bcd14610649578063a22cb4651461065e578063b1e130fc1461067e578063b320f4591461069e578063b88d4fde146106be57610293565b806375682e79146105955780637b5b9879146105b55780637c5e2795146105d5578063902d55a5146105ea57806395d89b41146105ff5780639d1b464a1461061457610293565b806328220f35116101fe5780635bf62422116101b75780635bf62422146104ed57806362f24b701461050d5780636352211e1461052d5780636c0360eb1461054d57806370a08231146105625780637550a4d21461058257610293565b806328220f35146104385780632f745c591461045857806342842e0e1461047857806342966c6814610498578063487c57c7146104b85780634f6ccce7146104cd57610293565b80630caa1917116102505780630caa191714610381578063157c3df9146103a357806318160ddd146103c357806318b20071146103d857806318e97fd1146103f857806323b872dd1461041857610293565b806301ddc3b51461029857806301ffc9a7146102ce57806306fdde03146102fb578063081812fc1461031d578063095ea7b31461034a578063099fa48a1461036c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612cf9565b61083f565b6040516102c591906130d9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612cc1565b610851565b6040516102c591906130ce565b34801561030757600080fd5b50610310610870565b6040516102c591906130e2565b34801561032957600080fd5b5061033d610338366004612cf9565b610907565b6040516102c5919061303d565b34801561035657600080fd5b5061036a610365366004612c97565b610953565b005b34801561037857600080fd5b5061033d6109eb565b34801561038d57600080fd5b50610396610a03565b6040516102c59190613b95565b3480156103af57600080fd5b506103106103be366004612cf9565b610a09565b3480156103cf57600080fd5b506102b8610ae2565b3480156103e457600080fd5b5061036a6103f3366004612cf9565b610af3565b34801561040457600080fd5b5061036a610413366004612d34565b610b5d565b34801561042457600080fd5b5061036a610433366004612bb4565b610cbc565b34801561044457600080fd5b5061036a610453366004612cf9565b610cf4565b34801561046457600080fd5b506102b8610473366004612c97565b610db0565b34801561048457600080fd5b5061036a610493366004612bb4565b610de1565b3480156104a457600080fd5b5061036a6104b3366004612cf9565b610dfc565b3480156104c457600080fd5b506102b8610ece565b3480156104d957600080fd5b506102b86104e8366004612cf9565b610ed4565b3480156104f957600080fd5b5061036a610508366004612e45565b610ef0565b34801561051957600080fd5b5061036a610528366004612dee565b610fa7565b34801561053957600080fd5b5061033d610548366004612cf9565b611066565b34801561055957600080fd5b50610310611094565b34801561056e57600080fd5b506102b861057d366004612b65565b6110f5565b61036a610590366004612ee9565b61113e565b3480156105a157600080fd5b5061036a6105b0366004612d34565b611203565b3480156105c157600080fd5b5061036a6105d0366004612da9565b61134c565b3480156105e157600080fd5b506102b86113fa565b3480156105f657600080fd5b506102b8611405565b34801561060b57600080fd5b5061031061140b565b34801561062057600080fd5b506102b861146c565b34801561063557600080fd5b5061033d610644366004612cf9565b611472565b34801561065557600080fd5b5061033d61148d565b34801561066a57600080fd5b5061036a610679366004612c5c565b61149c565b34801561068a57600080fd5b5061036a610699366004612cf9565b61156a565b3480156106aa57600080fd5b5061036a6106b9366004612cf9565b6115de565b3480156106ca57600080fd5b5061036a6106d9366004612bf4565b6116a9565b3480156106ea57600080fd5b5061036a6106f9366004612e45565b6116e8565b34801561070a57600080fd5b506102ee610719366004612cf9565b61176a565b34801561072a57600080fd5b50610310610739366004612cf9565b61177f565b34801561074a57600080fd5b506102b861185b565b34801561075f57600080fd5b5061033d61187f565b34801561077457600080fd5b5061033d610783366004612cf9565b61188e565b34801561079457600080fd5b5061079d6118a9565b6040516102c59190613b87565b3480156107b657600080fd5b5061033d6118ff565b3480156107cb57600080fd5b506102ee6107da366004612b80565b61190e565b3480156107eb57600080fd5b5061036a6107fa366004612d11565b61193c565b34801561080b57600080fd5b506102b861081a366004612cf9565b6119c2565b34801561082b57600080fd5b5061036a61083a366004612b65565b6119d4565b60136020526000908152604090205481565b6001600160e01b03191660009081526020819052604090205460ff1690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b505050505090505b90565b600061091282611a49565b6109375760405162461bcd60e51b815260040161092e9061374d565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061095e82611066565b9050806001600160a01b0316836001600160a01b031614156109925760405162461bcd60e51b815260040161092e90613959565b806001600160a01b03166109a4611a5c565b6001600160a01b031614806109c057506109c0816107da611a5c565b6109dc5760405162461bcd60e51b815260040161092e90613557565b6109e68383611a60565b505050565b73de89fb5bd8f420301fab3930faaef185776c4b0781565b61044181565b60008181526010602052604090205460609082906001600160a01b0316610a425760405162461bcd60e51b815260040161092e90613137565b60008381526014602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610ad55780601f10610aaa57610100808354040283529160200191610ad5565b820191906000526020600020905b815481529060010190602001808311610ab857829003601f168201915b5050505050915050919050565b6000610aee6002611ace565b905090565b600c546001600160a01b03163314610b1d5760405162461bcd60e51b815260040161092e9061317f565b600b8190556040517f60dd0ad4d19841e4abbfd59adfb3f4c989fde6a95a01a04575158ff06d6eeb4b90610b529083906130d9565b60405180910390a150565b6002600a541415610b805760405162461bcd60e51b815260040161092e90613b0a565b6002600a553383610b918282611ad9565b610bad5760405162461bcd60e51b815260040161092e906137e5565b6000858152601260205260409020548590610bda5760405162461bcd60e51b815260040161092e906138c2565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050825115159150610c3290505760405162461bcd60e51b815260040161092e90613b41565b610c728787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b5e92505050565b867f702fe2dc2dc0f68023540aa4a1e11811c0f29112f6ebf01e61b90538e4f29810338888604051610ca69392919061308e565b60405180910390a250506001600a555050505050565b610ccd610cc7611a5c565b82611ad9565b610ce95760405162461bcd60e51b815260040161092e906139e4565b6109e6838383611ba2565b6002600a541415610d175760405162461bcd60e51b815260040161092e90613b0a565b6002600a553381610d288282611ad9565b610d445760405162461bcd60e51b815260040161092e906137e5565b600e546040516328220f3560e01b81526001600160a01b03909116906328220f3590610d749086906004016130d9565b600060405180830381600087803b158015610d8e57600080fd5b505af1158015610da2573d6000803e3d6000fd5b50506001600a555050505050565b6001600160a01b0382166000908152600160205260408120610dd8908363ffffffff611c2c16565b90505b92915050565b6109e6838383604051806020016040528060008152506116a9565b6002600a541415610e1f5760405162461bcd60e51b815260040161092e90613b0a565b6002600a5580610e2e81611a49565b610e4a5760405162461bcd60e51b815260040161092e90613ad3565b3382610e568282611ad9565b610e725760405162461bcd60e51b815260040161092e906137e5565b6000610e7d85611066565b6000868152601060205260409020549091506001600160a01b03808316911614610eb95760405162461bcd60e51b815260040161092e90613709565b610ec285611c38565b50506001600a55505050565b600b5481565b600080610ee860028463ffffffff611d2416565b509392505050565b6002600a541415610f135760405162461bcd60e51b815260040161092e90613b0a565b6002600a5581610f2281611a49565b610f3e5760405162461bcd60e51b815260040161092e90613ad3565b81604001516001600160a01b0316336001600160a01b031614610f735760405162461bcd60e51b815260040161092e906132a0565b600e546040516317b6b0d360e31b81526001600160a01b039091169063bdb5869890610d7490869086903390600401613c20565b6002600a541415610fca5760405162461bcd60e51b815260040161092e90613b0a565b6002600a553382610fdb8282611ad9565b610ff75760405162461bcd60e51b815260040161092e906137e5565b600e5460405163062f24b760e41b81526001600160a01b03909116906362f24b70906110299087908790600401613bd4565b600060405180830381600087803b15801561104357600080fd5b505af1158015611057573d6000803e3d6000fd5b50506001600a55505050505050565b6000610ddb82604051806060016040528060298152602001613cfe602991396002919063ffffffff611d4016565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b60006001600160a01b03821661111d5760405162461bcd60e51b815260040161092e906135b4565b6001600160a01b0382166000908152600160205260409020610ddb90611ace565b6002600a5414156111615760405162461bcd60e51b815260040161092e90613b0a565b6002600a55600c546001600160a01b0316331461119a57600b5434101561119a5760405162461bcd60e51b815260040161092e90613a35565b6111ad8233836111a86118a9565b611d57565b600c546001600160a01b031633146111fa57600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156111f8573d6000803e3d6000fd5b505b50506001600a55565b6002600a5414156112265760405162461bcd60e51b815260040161092e90613b0a565b6002600a5533836112378282611ad9565b6112535760405162461bcd60e51b815260040161092e906137e5565b60008581526013602052604090205485906112805760405162461bcd60e51b815260040161092e906133ec565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251151591506112d890505760405162461bcd60e51b815260040161092e90613b41565b6113188787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ff092505050565b867fe3df41127db820c79e5b8d541a63e40e3e97b9af96f7a50bded13091b70df9ae338888604051610ca69392919061308e565b33826113588282611ad9565b6113745760405162461bcd60e51b815260040161092e906137e5565b6000848152600d602052604090205460ff166113a25760405162461bcd60e51b815260040161092e90613218565b6000848152600d602052604090819020805460ff191690555133907f9175285cfd95090468bf4b53f596aabe9f07e447eb6b54f0a9235efdcce0f5ea906113ec9087908790613bbb565b60405180910390a250505050565b668e1bc9bf04000081565b612a8a81565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b600b5490565b600f602052600090815260409020546001600160a01b031681565b600e546001600160a01b031681565b6114a4611a5c565b6001600160a01b0316826001600160a01b031614156114d55760405162461bcd60e51b815260040161092e906133b5565b80600560006114e2611a5c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611526611a5c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155e91906130ce565b60405180910390a35050565b6002600a54141561158d5760405162461bcd60e51b815260040161092e90613b0a565b6002600a5561159b81610907565b6001600160a01b0316336001600160a01b0316146115cb5760405162461bcd60e51b815260040161092e9061332f565b6115d6600082611a60565b506001600a55565b6002600a5414156116015760405162461bcd60e51b815260040161092e90613b0a565b6002600a5560008181526010602052604090205481906001600160a01b031661163c5760405162461bcd60e51b815260040161092e90613137565b600e5460405163776a083560e01b81526001600160a01b039091169063776a08359061166e9085903390600401613ba4565b600060405180830381600087803b15801561168857600080fd5b505af115801561169c573d6000803e3d6000fd5b50506001600a5550505050565b6116ba6116b4611a5c565b83611ad9565b6116d65760405162461bcd60e51b815260040161092e906139e4565b6116e284848484612035565b50505050565b6002600a54141561170b5760405162461bcd60e51b815260040161092e90613b0a565b6002600a55338261171c8282611ad9565b6117385760405162461bcd60e51b815260040161092e906137e5565b600e5460405163ba33939960e01b81526001600160a01b039091169063ba339399906110299087908790600401613c0c565b600d6020526000908152604090205460ff1681565b60008181526010602052604090205460609082906001600160a01b03166117b85760405162461bcd60e51b815260040161092e90613137565b60008381526008602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561184d5780601f106118225761010080835404028352916020019161184d565b820191906000526020600020905b81548152906001019060200180831161183057829003601f168201915b509398975050505050505050565b7f152d4f1109f051d3d477f8179dbbc746f65e1abb0d11d796b1943f5ca596c24581565b600c546001600160a01b031681565b6010602052600090815260409020546001600160a01b031681565b6118b16129c1565b50604080516080810182526000606082019081528152815160208181018452674563918244f400008252808301919091528251908101835268052663ccab1e1c000081529181019190915290565b600c546001600160a01b031690565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e546001600160a01b031633146119665760405162461bcd60e51b815260040161092e9061369d565b61196f82611066565b6000838152600f6020526040902080546001600160a01b0319166001600160a01b03929092169190911790556119be6119a783611066565b828460405180602001604052806000815250612035565b5050565b60126020526000908152604090205481565b600c546001600160a01b031633146119fe5760405162461bcd60e51b815260040161092e906132e1565b600c80546001600160a01b0319166001600160a01b0383161790556040517f0d8eb149859b88d6932b25f3ba953e5eb11cad6b096a85eb618feedbd31e90b190610b5290839061303d565b6000610ddb60028363ffffffff61206816565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9582611066565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610ddb82612074565b6000611ae482611a49565b611b005760405162461bcd60e51b815260040161092e9061350b565b6000611b0b83611066565b9050806001600160a01b0316846001600160a01b03161480611b465750836001600160a01b0316611b3b84610907565b6001600160a01b0316145b80611b565750611b56818561190e565b949350505050565b611b6782611a49565b611b835760405162461bcd60e51b815260040161092e90613799565b600082815260086020908152604090912082516109e6928401906129f3565b600e546040516328220f3560e01b81526001600160a01b03909116906328220f3590611bd29084906004016130d9565b600060405180830381600087803b158015611bec57600080fd5b505af1158015611c00573d6000803e3d6000fd5b50505050611c0f838383612078565b6000908152600d60205260409020805460ff191660011790555050565b6000610dd88383612198565b60008181526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611ccd5780601f10611ca257610100808354040283529160200191611ccd565b820191906000526020600020905b815481529060010190602001808311611cb057829003601f168201915b50505050509050611cdd826121dd565b805115611d055760008281526008602090815260409091208251611d03928401906129f3565b505b506000908152600f6020526040902080546001600160a01b0319169055565b6000808080611d3386866122b6565b9097909650945050505050565b6000611d4d848484612312565b90505b9392505050565b81518051611d775760405162461bcd60e51b815260040161092e90613b41565b60208301518051611d9a5760405162461bcd60e51b815260040161092e90613b41565b6040840151611dbb5760405162461bcd60e51b815260040161092e90613481565b60408085015160009081526015602052205460ff1615611ded5760405162461bcd60e51b815260040161092e906135fe565b6060840151611e0e5760405162461bcd60e51b815260040161092e90613914565b611e1786611a49565b15611e345760405162461bcd60e51b815260040161092e90613a9c565b612a8a8610611e555760405162461bcd60e51b815260040161092e9061343b565b600c546001600160a01b03868116911614611e9157610441861015611e8c5760405162461bcd60e51b815260040161092e9061399a565b611eb2565b6104418610611eb25760405162461bcd60e51b815260040161092e9061381c565b611ebc8587612371565b611eca86856040015161238b565b611ed88685606001516123c4565b611ee6868560200151611ff0565b611ef4868560000151611b5e565b6000868152600d60209081526040808320805460ff191660011790556001600160a01b038816835260119091529020611f33908763ffffffff6123fd16565b50604080850151600090815260156020908152828220805460ff191660011790558882526010815282822080546001600160a01b03808b166001600160a01b03199283168117909355600f90935292849020805490931617909155600e5491516375aab41d60e11b815291169063eb55683a90611fb69089908790600401613bf8565b600060405180830381600087803b158015611fd057600080fd5b505af1158015611fe4573d6000803e3d6000fd5b50505050505050505050565b81611ffa81611a49565b6120165760405162461bcd60e51b815260040161092e90613ad3565b600083815260146020908152604090912083516116e2928501906129f3565b612040848484611ba2565b61204c84848484612409565b6116e25760405162461bcd60e51b815260040161092e906131c6565b6000610dd883836124ee565b5490565b826001600160a01b031661208b82611066565b6001600160a01b0316146120b15760405162461bcd60e51b815260040161092e90613879565b6001600160a01b0382166120d75760405162461bcd60e51b815260040161092e90613371565b6120e28383836109e6565b6120ed600082611a60565b6001600160a01b0383166000908152600160205260409020612115908263ffffffff61250616565b506001600160a01b038216600090815260016020526040902061213e908263ffffffff6123fd16565b506121516002828463ffffffff61251216565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b815460009082106121bb5760405162461bcd60e51b815260040161092e906130f5565b8260000182815481106121ca57fe5b9060005260206000200154905092915050565b60006121e882611066565b90506121f6816000846109e6565b612201600083611a60565b600082815260086020526040902054600260001961010060018416150201909116041561223f57600082815260086020526040812061223f91612a71565b6001600160a01b0381166000908152600160205260409020612267908363ffffffff61250616565b5061227960028363ffffffff61252816565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b8154600090819083106122db5760405162461bcd60e51b815260040161092e9061365b565b60008460000184815481106122ec57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816123425760405162461bcd60e51b815260040161092e91906130e2565b5084600001600182038154811061235557fe5b9060005260206000209060020201600101549150509392505050565b6119be828260405180602001604052806000815250612534565b8161239581611a49565b6123b15760405162461bcd60e51b815260040161092e90613ad3565b5060009182526012602052604090912055565b816123ce81611a49565b6123ea5760405162461bcd60e51b815260040161092e90613ad3565b5060009182526013602052604090912055565b6000610dd88383612567565b600061241d846001600160a01b03166125b1565b61242957506001611b56565b60606124b7630a85bd0160e11b61243e611a5c565b8887876040516024016124549493929190613051565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613ccc603291396001600160a01b038816919063ffffffff6125b716565b90506000818060200190518101906124cf9190612cdd565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6000610dd883836125c6565b6000611d4d84846001600160a01b03851661268c565b6000610dd88383612723565b61253e83836127f7565b61254b6000848484612409565b6109e65760405162461bcd60e51b815260040161092e906131c6565b600061257383836124ee565b6125a957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ddb565b506000610ddb565b3b151590565b6060611d4d84846000856128c7565b6000818152600183016020526040812054801561268257835460001980830191908101906000908790839081106125f957fe5b906000526020600020015490508087600001848154811061261657fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061264657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610ddb565b6000915050610ddb565b6000828152600184016020526040812054806126f1575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611d50565b8285600001600183038154811061270457fe5b9060005260206000209060020201600101819055506000915050611d50565b60008181526001830160205260408120548015612682578354600019808301919081019060009087908390811061275657fe5b906000526020600020906002020190508087600001848154811061277657fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806127b557fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610ddb9350505050565b6001600160a01b03821661281d5760405162461bcd60e51b815260040161092e906136d4565b61282681611a49565b156128435760405162461bcd60e51b815260040161092e90613269565b61284f600083836109e6565b6001600160a01b0382166000908152600160205260409020612877908263ffffffff6123fd16565b5061288a6002828463ffffffff61251216565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156128e95760405162461bcd60e51b815260040161092e906134c5565b6128f2856125b1565b61290e5760405162461bcd60e51b815260040161092e90613a65565b60006060866001600160a01b0316858760405161292b9190613021565b60006040518083038185875af1925050503d8060008114612968576040519150601f19603f3d011682016040523d82523d6000602084013e61296d565b606091505b509150915061297d828286612988565b979650505050505050565b60608315612997575081611d50565b8251156129a75782518084602001fd5b8160405162461bcd60e51b815260040161092e91906130e2565b60405180606001604052806129d4612ab8565b81526020016129e1612ab8565b81526020016129ee612ab8565b905290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612a3457805160ff1916838001178555612a61565b82800160010185558215612a61579182015b82811115612a61578251825591602001919060010190612a46565b50612a6d929150612acb565b5090565b50805460018160011615610100020316600290046000825580601f10612a975750612ab5565b601f016020900490600052602060002090810190612ab59190612acb565b50565b6040518060200160405280600081525090565b61090491905b80821115612a6d5760008155600101612ad1565b80356001600160a01b0381168114610ddb57600080fd5b600082601f830112612b0c578081fd5b813567ffffffffffffffff811115612b22578182fd5b612b35601f8201601f1916602001613c4d565b9150808252836020828501011115612b4c57600080fd5b8060208401602084013760009082016020015292915050565b600060208284031215612b76578081fd5b610dd88383612ae5565b60008060408385031215612b92578081fd5b612b9c8484612ae5565b9150612bab8460208501612ae5565b90509250929050565b600080600060608486031215612bc8578081fd5b8335612bd381613ca0565b92506020840135612be381613ca0565b929592945050506040919091013590565b60008060008060808587031215612c09578081fd5b612c138686612ae5565b9350612c228660208701612ae5565b925060408501359150606085013567ffffffffffffffff811115612c44578182fd5b612c5087828801612afc565b91505092959194509250565b60008060408385031215612c6e578182fd5b612c788484612ae5565b915060208301358015158114612c8c578182fd5b809150509250929050565b60008060408385031215612ca9578182fd5b612cb38484612ae5565b946020939093013593505050565b600060208284031215612cd2578081fd5b8135611d5081613cb5565b600060208284031215612cee578081fd5b8151611d5081613cb5565b600060208284031215612d0a578081fd5b5035919050565b60008060408385031215612d23578081fd5b82359150612bab8460208501612ae5565b600080600060408486031215612d48578081fd5b83359250602084013567ffffffffffffffff80821115612d66578283fd5b81860187601f820112612d77578384fd5b8035925081831115612d87578384fd5b876020848301011115612d98578384fd5b949760209095019650909450505050565b60008060408385031215612dbb578182fd5b82359150602083013567ffffffffffffffff811115612dd8578182fd5b612de485828601612afc565b9150509250929050565b6000808284036060811215612e01578283fd5b833592506040601f1982011215612e16578182fd5b50612e216040613c4d565b60208401358152612e358560408601612ae5565b6020820152809150509250929050565b60008082840360c0811215612e58578283fd5b8335925060a0601f1982011215612e6d578182fd5b612e7760a0613c4d565b60208501358152612e8b8660408701612ae5565b6020820152612e9d8660608701612ae5565b6040820152612eaf8660808701612ae5565b60608201526020609f1983011215612ec5578283fd5b612ecf6020613c4d565b60a095909501358552608081019490945250909391925050565b60008060408385031215612efb578182fd5b82359150602083013567ffffffffffffffff80821115612f19578283fd5b81850160808188031215612f2b578384fd5b612f356080613c4d565b9250803582811115612f45578485fd5b612f5188828401612afc565b845250602081013582811115612f65578485fd5b612f7188828401612afc565b60208501525060408101356040840152606081013560608401525050809150509250929050565b60008151808452612fb0816020860160208601613c74565b601f01601f19169290920160200192915050565b8051518252602080820151519083015260409081015151910152565b805182526020808201516001600160a01b03908116918401919091526040808301518216908401526060808301519091169083015260809081015151910152565b60008251613033818460208701613c74565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061308490830184612f98565b9695505050505050565b6001600160a01b03841681526040602082018190528101829052600082846060840137818301606090810191909152601f909201601f1916010192915050565b901515815260200190565b90815260200190565b600060208252610dd86020830184612f98565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526028908201527f4d656469613a20746f6b656e2077697468207468617420696420646f6573206e6040820152671bdd08195e1a5cdd60c21b606082015260800190565b60208082526027908201527f4d656469613a206f6e6c7920646576656c6f7065722063616e207365742074686040820152666520707269636560c81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f43727970746f6c6f76656c6f636b3a20596f7520616c72656164792063686f73604082015270656e20796f7572206c6f7665206e6f746560781b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526021908201527f4d61726b65743a20426964646572206d757374206265206d73672073656e64656040820152603960f91b606082015260800190565b6020808252602e908201527f4d656469613a206f6e6c7920646576656c6f7065722063616e206368616e676560408201526d103a3432903232bb32b637b832b960911b606082015260800190565b60208082526022908201527f4d656469613a2063616c6c6572206e6f7420617070726f766564206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602f908201527f4d656469613a20746f6b656e20646f6573206e6f74206861766520686173682060408201526e6f6620697473206d6574616461746160881b606082015260800190565b60208082526026908201527f4d656469613a20636f6c6c656374696f6e206861732061206c696d6974656420604082015265737570706c7960d01b606082015260800190565b60208082526024908201527f4d656469613a20636f6e74656e742068617368206d757374206265206e6f6e2d6040820152637a65726f60e01b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252603e908201527f4d656469613a206120746f6b656e2068617320616c7265616479206265656e2060408201527f637265617465642077697468207468697320636f6e74656e7420686173680000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d656469613a206f6e6c79206d61726b657420636f6e74726163740000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526024908201527f4d656469613a206f776e6572206973206e6f742063726561746f72206f66206d6040820152636564696160e01b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f4d656469613a204f6e6c7920617070726f766564206f72206f776e6572000000604082015260600190565b6020808252603a908201527f4d656469613a20646576656c6f7065722063616e206d696e74206f6e6c79207460408201527f6f6b656e206c65667420666f72206675747572652073616c6573000000000000606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526032908201527f4d656469613a20746f6b656e20646f6573206e6f7420686176652068617368206040820152711bd98818dc99585d19590818dbdb9d195b9d60721b606082015260800190565b60208082526025908201527f4d656469613a206d657461646174612068617368206d757374206265206e6f6e6040820152642d7a65726f60d81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252602a908201527f4d656469613a207468697320746f6b656e206973206c65667420666f72206675604082015269747572652073616c657360b01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601690820152751359591a584e881c1c9a58d9481b9bdd081c185e595960521b604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601b908201527f4d656469613a20746f6b656e20616c7265616479206578697374730000000000604082015260600190565b60208082526018908201527f4d656469613a206e6f6e6578697374656e7420746f6b656e0000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526026908201527f4d656469613a2073706563696669656420757269206d757374206265206e6f6e6040820152652d656d70747960d01b606082015260800190565b60608101610ddb8284612fc4565b61ffff91909116815260200190565b9182526001600160a01b0316602082015260400190565b600083825260406020830152611d4d6040830184612f98565b918252805160208084019190915201516001600160a01b0316604082015260600190565b82815260808101611d506020830184612fc4565b82815260c08101611d506020830184612fe0565b83815260e08101613c346020830185612fe0565b6001600160a01b039290921660c0919091015292915050565b60405181810167ffffffffffffffff81118282101715613c6c57600080fd5b604052919050565b60005b83811015613c8f578181015183820152602001613c77565b838111156116e25750506000910152565b6001600160a01b0381168114612ab557600080fd5b6001600160e01b031981168114612ab557600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220a892145f30d14a94b6fa9ed79d0595663304c2e8a04912a54ab782c878fcf98464736f6c6343000608003300000000000000000000000042b255be54d2a38b13ca7e242898134469c3ef08

Deployed Bytecode

0x6080604052600436106102935760003560e01c806375682e791161015a578063ba339399116100c1578063e4ffee6e1161007a578063e4ffee6e14610788578063e821c55d146107aa578063e985e9c5146107bf578063f6b630f0146107df578063fad32197146107ff578063ff70fa491461081f57610293565b8063ba339399146106de578063c47494db146106fe578063c87b56dd1461071e578063c9b78dfb1461073e578063ca4b208b14610753578063e0fd045f1461076857610293565b80639d8e7260116101135780639d8e726014610629578063a1794bcd14610649578063a22cb4651461065e578063b1e130fc1461067e578063b320f4591461069e578063b88d4fde146106be57610293565b806375682e79146105955780637b5b9879146105b55780637c5e2795146105d5578063902d55a5146105ea57806395d89b41146105ff5780639d1b464a1461061457610293565b806328220f35116101fe5780635bf62422116101b75780635bf62422146104ed57806362f24b701461050d5780636352211e1461052d5780636c0360eb1461054d57806370a08231146105625780637550a4d21461058257610293565b806328220f35146104385780632f745c591461045857806342842e0e1461047857806342966c6814610498578063487c57c7146104b85780634f6ccce7146104cd57610293565b80630caa1917116102505780630caa191714610381578063157c3df9146103a357806318160ddd146103c357806318b20071146103d857806318e97fd1146103f857806323b872dd1461041857610293565b806301ddc3b51461029857806301ffc9a7146102ce57806306fdde03146102fb578063081812fc1461031d578063095ea7b31461034a578063099fa48a1461036c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612cf9565b61083f565b6040516102c591906130d9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612cc1565b610851565b6040516102c591906130ce565b34801561030757600080fd5b50610310610870565b6040516102c591906130e2565b34801561032957600080fd5b5061033d610338366004612cf9565b610907565b6040516102c5919061303d565b34801561035657600080fd5b5061036a610365366004612c97565b610953565b005b34801561037857600080fd5b5061033d6109eb565b34801561038d57600080fd5b50610396610a03565b6040516102c59190613b95565b3480156103af57600080fd5b506103106103be366004612cf9565b610a09565b3480156103cf57600080fd5b506102b8610ae2565b3480156103e457600080fd5b5061036a6103f3366004612cf9565b610af3565b34801561040457600080fd5b5061036a610413366004612d34565b610b5d565b34801561042457600080fd5b5061036a610433366004612bb4565b610cbc565b34801561044457600080fd5b5061036a610453366004612cf9565b610cf4565b34801561046457600080fd5b506102b8610473366004612c97565b610db0565b34801561048457600080fd5b5061036a610493366004612bb4565b610de1565b3480156104a457600080fd5b5061036a6104b3366004612cf9565b610dfc565b3480156104c457600080fd5b506102b8610ece565b3480156104d957600080fd5b506102b86104e8366004612cf9565b610ed4565b3480156104f957600080fd5b5061036a610508366004612e45565b610ef0565b34801561051957600080fd5b5061036a610528366004612dee565b610fa7565b34801561053957600080fd5b5061033d610548366004612cf9565b611066565b34801561055957600080fd5b50610310611094565b34801561056e57600080fd5b506102b861057d366004612b65565b6110f5565b61036a610590366004612ee9565b61113e565b3480156105a157600080fd5b5061036a6105b0366004612d34565b611203565b3480156105c157600080fd5b5061036a6105d0366004612da9565b61134c565b3480156105e157600080fd5b506102b86113fa565b3480156105f657600080fd5b506102b8611405565b34801561060b57600080fd5b5061031061140b565b34801561062057600080fd5b506102b861146c565b34801561063557600080fd5b5061033d610644366004612cf9565b611472565b34801561065557600080fd5b5061033d61148d565b34801561066a57600080fd5b5061036a610679366004612c5c565b61149c565b34801561068a57600080fd5b5061036a610699366004612cf9565b61156a565b3480156106aa57600080fd5b5061036a6106b9366004612cf9565b6115de565b3480156106ca57600080fd5b5061036a6106d9366004612bf4565b6116a9565b3480156106ea57600080fd5b5061036a6106f9366004612e45565b6116e8565b34801561070a57600080fd5b506102ee610719366004612cf9565b61176a565b34801561072a57600080fd5b50610310610739366004612cf9565b61177f565b34801561074a57600080fd5b506102b861185b565b34801561075f57600080fd5b5061033d61187f565b34801561077457600080fd5b5061033d610783366004612cf9565b61188e565b34801561079457600080fd5b5061079d6118a9565b6040516102c59190613b87565b3480156107b657600080fd5b5061033d6118ff565b3480156107cb57600080fd5b506102ee6107da366004612b80565b61190e565b3480156107eb57600080fd5b5061036a6107fa366004612d11565b61193c565b34801561080b57600080fd5b506102b861081a366004612cf9565b6119c2565b34801561082b57600080fd5b5061036a61083a366004612b65565b6119d4565b60136020526000908152604090205481565b6001600160e01b03191660009081526020819052604090205460ff1690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b505050505090505b90565b600061091282611a49565b6109375760405162461bcd60e51b815260040161092e9061374d565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061095e82611066565b9050806001600160a01b0316836001600160a01b031614156109925760405162461bcd60e51b815260040161092e90613959565b806001600160a01b03166109a4611a5c565b6001600160a01b031614806109c057506109c0816107da611a5c565b6109dc5760405162461bcd60e51b815260040161092e90613557565b6109e68383611a60565b505050565b73de89fb5bd8f420301fab3930faaef185776c4b0781565b61044181565b60008181526010602052604090205460609082906001600160a01b0316610a425760405162461bcd60e51b815260040161092e90613137565b60008381526014602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610ad55780601f10610aaa57610100808354040283529160200191610ad5565b820191906000526020600020905b815481529060010190602001808311610ab857829003601f168201915b5050505050915050919050565b6000610aee6002611ace565b905090565b600c546001600160a01b03163314610b1d5760405162461bcd60e51b815260040161092e9061317f565b600b8190556040517f60dd0ad4d19841e4abbfd59adfb3f4c989fde6a95a01a04575158ff06d6eeb4b90610b529083906130d9565b60405180910390a150565b6002600a541415610b805760405162461bcd60e51b815260040161092e90613b0a565b6002600a553383610b918282611ad9565b610bad5760405162461bcd60e51b815260040161092e906137e5565b6000858152601260205260409020548590610bda5760405162461bcd60e51b815260040161092e906138c2565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050825115159150610c3290505760405162461bcd60e51b815260040161092e90613b41565b610c728787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b5e92505050565b867f702fe2dc2dc0f68023540aa4a1e11811c0f29112f6ebf01e61b90538e4f29810338888604051610ca69392919061308e565b60405180910390a250506001600a555050505050565b610ccd610cc7611a5c565b82611ad9565b610ce95760405162461bcd60e51b815260040161092e906139e4565b6109e6838383611ba2565b6002600a541415610d175760405162461bcd60e51b815260040161092e90613b0a565b6002600a553381610d288282611ad9565b610d445760405162461bcd60e51b815260040161092e906137e5565b600e546040516328220f3560e01b81526001600160a01b03909116906328220f3590610d749086906004016130d9565b600060405180830381600087803b158015610d8e57600080fd5b505af1158015610da2573d6000803e3d6000fd5b50506001600a555050505050565b6001600160a01b0382166000908152600160205260408120610dd8908363ffffffff611c2c16565b90505b92915050565b6109e6838383604051806020016040528060008152506116a9565b6002600a541415610e1f5760405162461bcd60e51b815260040161092e90613b0a565b6002600a5580610e2e81611a49565b610e4a5760405162461bcd60e51b815260040161092e90613ad3565b3382610e568282611ad9565b610e725760405162461bcd60e51b815260040161092e906137e5565b6000610e7d85611066565b6000868152601060205260409020549091506001600160a01b03808316911614610eb95760405162461bcd60e51b815260040161092e90613709565b610ec285611c38565b50506001600a55505050565b600b5481565b600080610ee860028463ffffffff611d2416565b509392505050565b6002600a541415610f135760405162461bcd60e51b815260040161092e90613b0a565b6002600a5581610f2281611a49565b610f3e5760405162461bcd60e51b815260040161092e90613ad3565b81604001516001600160a01b0316336001600160a01b031614610f735760405162461bcd60e51b815260040161092e906132a0565b600e546040516317b6b0d360e31b81526001600160a01b039091169063bdb5869890610d7490869086903390600401613c20565b6002600a541415610fca5760405162461bcd60e51b815260040161092e90613b0a565b6002600a553382610fdb8282611ad9565b610ff75760405162461bcd60e51b815260040161092e906137e5565b600e5460405163062f24b760e41b81526001600160a01b03909116906362f24b70906110299087908790600401613bd4565b600060405180830381600087803b15801561104357600080fd5b505af1158015611057573d6000803e3d6000fd5b50506001600a55505050505050565b6000610ddb82604051806060016040528060298152602001613cfe602991396002919063ffffffff611d4016565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b60006001600160a01b03821661111d5760405162461bcd60e51b815260040161092e906135b4565b6001600160a01b0382166000908152600160205260409020610ddb90611ace565b6002600a5414156111615760405162461bcd60e51b815260040161092e90613b0a565b6002600a55600c546001600160a01b0316331461119a57600b5434101561119a5760405162461bcd60e51b815260040161092e90613a35565b6111ad8233836111a86118a9565b611d57565b600c546001600160a01b031633146111fa57600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156111f8573d6000803e3d6000fd5b505b50506001600a55565b6002600a5414156112265760405162461bcd60e51b815260040161092e90613b0a565b6002600a5533836112378282611ad9565b6112535760405162461bcd60e51b815260040161092e906137e5565b60008581526013602052604090205485906112805760405162461bcd60e51b815260040161092e906133ec565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251151591506112d890505760405162461bcd60e51b815260040161092e90613b41565b6113188787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ff092505050565b867fe3df41127db820c79e5b8d541a63e40e3e97b9af96f7a50bded13091b70df9ae338888604051610ca69392919061308e565b33826113588282611ad9565b6113745760405162461bcd60e51b815260040161092e906137e5565b6000848152600d602052604090205460ff166113a25760405162461bcd60e51b815260040161092e90613218565b6000848152600d602052604090819020805460ff191690555133907f9175285cfd95090468bf4b53f596aabe9f07e447eb6b54f0a9235efdcce0f5ea906113ec9087908790613bbb565b60405180910390a250505050565b668e1bc9bf04000081565b612a8a81565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fc5780601f106108d1576101008083540402835291602001916108fc565b600b5490565b600f602052600090815260409020546001600160a01b031681565b600e546001600160a01b031681565b6114a4611a5c565b6001600160a01b0316826001600160a01b031614156114d55760405162461bcd60e51b815260040161092e906133b5565b80600560006114e2611a5c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611526611a5c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155e91906130ce565b60405180910390a35050565b6002600a54141561158d5760405162461bcd60e51b815260040161092e90613b0a565b6002600a5561159b81610907565b6001600160a01b0316336001600160a01b0316146115cb5760405162461bcd60e51b815260040161092e9061332f565b6115d6600082611a60565b506001600a55565b6002600a5414156116015760405162461bcd60e51b815260040161092e90613b0a565b6002600a5560008181526010602052604090205481906001600160a01b031661163c5760405162461bcd60e51b815260040161092e90613137565b600e5460405163776a083560e01b81526001600160a01b039091169063776a08359061166e9085903390600401613ba4565b600060405180830381600087803b15801561168857600080fd5b505af115801561169c573d6000803e3d6000fd5b50506001600a5550505050565b6116ba6116b4611a5c565b83611ad9565b6116d65760405162461bcd60e51b815260040161092e906139e4565b6116e284848484612035565b50505050565b6002600a54141561170b5760405162461bcd60e51b815260040161092e90613b0a565b6002600a55338261171c8282611ad9565b6117385760405162461bcd60e51b815260040161092e906137e5565b600e5460405163ba33939960e01b81526001600160a01b039091169063ba339399906110299087908790600401613c0c565b600d6020526000908152604090205460ff1681565b60008181526010602052604090205460609082906001600160a01b03166117b85760405162461bcd60e51b815260040161092e90613137565b60008381526008602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084526060939283018282801561184d5780601f106118225761010080835404028352916020019161184d565b820191906000526020600020905b81548152906001019060200180831161183057829003601f168201915b509398975050505050505050565b7f152d4f1109f051d3d477f8179dbbc746f65e1abb0d11d796b1943f5ca596c24581565b600c546001600160a01b031681565b6010602052600090815260409020546001600160a01b031681565b6118b16129c1565b50604080516080810182526000606082019081528152815160208181018452674563918244f400008252808301919091528251908101835268052663ccab1e1c000081529181019190915290565b600c546001600160a01b031690565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e546001600160a01b031633146119665760405162461bcd60e51b815260040161092e9061369d565b61196f82611066565b6000838152600f6020526040902080546001600160a01b0319166001600160a01b03929092169190911790556119be6119a783611066565b828460405180602001604052806000815250612035565b5050565b60126020526000908152604090205481565b600c546001600160a01b031633146119fe5760405162461bcd60e51b815260040161092e906132e1565b600c80546001600160a01b0319166001600160a01b0383161790556040517f0d8eb149859b88d6932b25f3ba953e5eb11cad6b096a85eb618feedbd31e90b190610b5290839061303d565b6000610ddb60028363ffffffff61206816565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9582611066565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610ddb82612074565b6000611ae482611a49565b611b005760405162461bcd60e51b815260040161092e9061350b565b6000611b0b83611066565b9050806001600160a01b0316846001600160a01b03161480611b465750836001600160a01b0316611b3b84610907565b6001600160a01b0316145b80611b565750611b56818561190e565b949350505050565b611b6782611a49565b611b835760405162461bcd60e51b815260040161092e90613799565b600082815260086020908152604090912082516109e6928401906129f3565b600e546040516328220f3560e01b81526001600160a01b03909116906328220f3590611bd29084906004016130d9565b600060405180830381600087803b158015611bec57600080fd5b505af1158015611c00573d6000803e3d6000fd5b50505050611c0f838383612078565b6000908152600d60205260409020805460ff191660011790555050565b6000610dd88383612198565b60008181526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611ccd5780601f10611ca257610100808354040283529160200191611ccd565b820191906000526020600020905b815481529060010190602001808311611cb057829003601f168201915b50505050509050611cdd826121dd565b805115611d055760008281526008602090815260409091208251611d03928401906129f3565b505b506000908152600f6020526040902080546001600160a01b0319169055565b6000808080611d3386866122b6565b9097909650945050505050565b6000611d4d848484612312565b90505b9392505050565b81518051611d775760405162461bcd60e51b815260040161092e90613b41565b60208301518051611d9a5760405162461bcd60e51b815260040161092e90613b41565b6040840151611dbb5760405162461bcd60e51b815260040161092e90613481565b60408085015160009081526015602052205460ff1615611ded5760405162461bcd60e51b815260040161092e906135fe565b6060840151611e0e5760405162461bcd60e51b815260040161092e90613914565b611e1786611a49565b15611e345760405162461bcd60e51b815260040161092e90613a9c565b612a8a8610611e555760405162461bcd60e51b815260040161092e9061343b565b600c546001600160a01b03868116911614611e9157610441861015611e8c5760405162461bcd60e51b815260040161092e9061399a565b611eb2565b6104418610611eb25760405162461bcd60e51b815260040161092e9061381c565b611ebc8587612371565b611eca86856040015161238b565b611ed88685606001516123c4565b611ee6868560200151611ff0565b611ef4868560000151611b5e565b6000868152600d60209081526040808320805460ff191660011790556001600160a01b038816835260119091529020611f33908763ffffffff6123fd16565b50604080850151600090815260156020908152828220805460ff191660011790558882526010815282822080546001600160a01b03808b166001600160a01b03199283168117909355600f90935292849020805490931617909155600e5491516375aab41d60e11b815291169063eb55683a90611fb69089908790600401613bf8565b600060405180830381600087803b158015611fd057600080fd5b505af1158015611fe4573d6000803e3d6000fd5b50505050505050505050565b81611ffa81611a49565b6120165760405162461bcd60e51b815260040161092e90613ad3565b600083815260146020908152604090912083516116e2928501906129f3565b612040848484611ba2565b61204c84848484612409565b6116e25760405162461bcd60e51b815260040161092e906131c6565b6000610dd883836124ee565b5490565b826001600160a01b031661208b82611066565b6001600160a01b0316146120b15760405162461bcd60e51b815260040161092e90613879565b6001600160a01b0382166120d75760405162461bcd60e51b815260040161092e90613371565b6120e28383836109e6565b6120ed600082611a60565b6001600160a01b0383166000908152600160205260409020612115908263ffffffff61250616565b506001600160a01b038216600090815260016020526040902061213e908263ffffffff6123fd16565b506121516002828463ffffffff61251216565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b815460009082106121bb5760405162461bcd60e51b815260040161092e906130f5565b8260000182815481106121ca57fe5b9060005260206000200154905092915050565b60006121e882611066565b90506121f6816000846109e6565b612201600083611a60565b600082815260086020526040902054600260001961010060018416150201909116041561223f57600082815260086020526040812061223f91612a71565b6001600160a01b0381166000908152600160205260409020612267908363ffffffff61250616565b5061227960028363ffffffff61252816565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b8154600090819083106122db5760405162461bcd60e51b815260040161092e9061365b565b60008460000184815481106122ec57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816123425760405162461bcd60e51b815260040161092e91906130e2565b5084600001600182038154811061235557fe5b9060005260206000209060020201600101549150509392505050565b6119be828260405180602001604052806000815250612534565b8161239581611a49565b6123b15760405162461bcd60e51b815260040161092e90613ad3565b5060009182526012602052604090912055565b816123ce81611a49565b6123ea5760405162461bcd60e51b815260040161092e90613ad3565b5060009182526013602052604090912055565b6000610dd88383612567565b600061241d846001600160a01b03166125b1565b61242957506001611b56565b60606124b7630a85bd0160e11b61243e611a5c565b8887876040516024016124549493929190613051565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613ccc603291396001600160a01b038816919063ffffffff6125b716565b90506000818060200190518101906124cf9190612cdd565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6000610dd883836125c6565b6000611d4d84846001600160a01b03851661268c565b6000610dd88383612723565b61253e83836127f7565b61254b6000848484612409565b6109e65760405162461bcd60e51b815260040161092e906131c6565b600061257383836124ee565b6125a957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ddb565b506000610ddb565b3b151590565b6060611d4d84846000856128c7565b6000818152600183016020526040812054801561268257835460001980830191908101906000908790839081106125f957fe5b906000526020600020015490508087600001848154811061261657fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061264657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610ddb565b6000915050610ddb565b6000828152600184016020526040812054806126f1575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611d50565b8285600001600183038154811061270457fe5b9060005260206000209060020201600101819055506000915050611d50565b60008181526001830160205260408120548015612682578354600019808301919081019060009087908390811061275657fe5b906000526020600020906002020190508087600001848154811061277657fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806127b557fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610ddb9350505050565b6001600160a01b03821661281d5760405162461bcd60e51b815260040161092e906136d4565b61282681611a49565b156128435760405162461bcd60e51b815260040161092e90613269565b61284f600083836109e6565b6001600160a01b0382166000908152600160205260409020612877908263ffffffff6123fd16565b5061288a6002828463ffffffff61251216565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156128e95760405162461bcd60e51b815260040161092e906134c5565b6128f2856125b1565b61290e5760405162461bcd60e51b815260040161092e90613a65565b60006060866001600160a01b0316858760405161292b9190613021565b60006040518083038185875af1925050503d8060008114612968576040519150601f19603f3d011682016040523d82523d6000602084013e61296d565b606091505b509150915061297d828286612988565b979650505050505050565b60608315612997575081611d50565b8251156129a75782518084602001fd5b8160405162461bcd60e51b815260040161092e91906130e2565b60405180606001604052806129d4612ab8565b81526020016129e1612ab8565b81526020016129ee612ab8565b905290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612a3457805160ff1916838001178555612a61565b82800160010185558215612a61579182015b82811115612a61578251825591602001919060010190612a46565b50612a6d929150612acb565b5090565b50805460018160011615610100020316600290046000825580601f10612a975750612ab5565b601f016020900490600052602060002090810190612ab59190612acb565b50565b6040518060200160405280600081525090565b61090491905b80821115612a6d5760008155600101612ad1565b80356001600160a01b0381168114610ddb57600080fd5b600082601f830112612b0c578081fd5b813567ffffffffffffffff811115612b22578182fd5b612b35601f8201601f1916602001613c4d565b9150808252836020828501011115612b4c57600080fd5b8060208401602084013760009082016020015292915050565b600060208284031215612b76578081fd5b610dd88383612ae5565b60008060408385031215612b92578081fd5b612b9c8484612ae5565b9150612bab8460208501612ae5565b90509250929050565b600080600060608486031215612bc8578081fd5b8335612bd381613ca0565b92506020840135612be381613ca0565b929592945050506040919091013590565b60008060008060808587031215612c09578081fd5b612c138686612ae5565b9350612c228660208701612ae5565b925060408501359150606085013567ffffffffffffffff811115612c44578182fd5b612c5087828801612afc565b91505092959194509250565b60008060408385031215612c6e578182fd5b612c788484612ae5565b915060208301358015158114612c8c578182fd5b809150509250929050565b60008060408385031215612ca9578182fd5b612cb38484612ae5565b946020939093013593505050565b600060208284031215612cd2578081fd5b8135611d5081613cb5565b600060208284031215612cee578081fd5b8151611d5081613cb5565b600060208284031215612d0a578081fd5b5035919050565b60008060408385031215612d23578081fd5b82359150612bab8460208501612ae5565b600080600060408486031215612d48578081fd5b83359250602084013567ffffffffffffffff80821115612d66578283fd5b81860187601f820112612d77578384fd5b8035925081831115612d87578384fd5b876020848301011115612d98578384fd5b949760209095019650909450505050565b60008060408385031215612dbb578182fd5b82359150602083013567ffffffffffffffff811115612dd8578182fd5b612de485828601612afc565b9150509250929050565b6000808284036060811215612e01578283fd5b833592506040601f1982011215612e16578182fd5b50612e216040613c4d565b60208401358152612e358560408601612ae5565b6020820152809150509250929050565b60008082840360c0811215612e58578283fd5b8335925060a0601f1982011215612e6d578182fd5b612e7760a0613c4d565b60208501358152612e8b8660408701612ae5565b6020820152612e9d8660608701612ae5565b6040820152612eaf8660808701612ae5565b60608201526020609f1983011215612ec5578283fd5b612ecf6020613c4d565b60a095909501358552608081019490945250909391925050565b60008060408385031215612efb578182fd5b82359150602083013567ffffffffffffffff80821115612f19578283fd5b81850160808188031215612f2b578384fd5b612f356080613c4d565b9250803582811115612f45578485fd5b612f5188828401612afc565b845250602081013582811115612f65578485fd5b612f7188828401612afc565b60208501525060408101356040840152606081013560608401525050809150509250929050565b60008151808452612fb0816020860160208601613c74565b601f01601f19169290920160200192915050565b8051518252602080820151519083015260409081015151910152565b805182526020808201516001600160a01b03908116918401919091526040808301518216908401526060808301519091169083015260809081015151910152565b60008251613033818460208701613c74565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061308490830184612f98565b9695505050505050565b6001600160a01b03841681526040602082018190528101829052600082846060840137818301606090810191909152601f909201601f1916010192915050565b901515815260200190565b90815260200190565b600060208252610dd86020830184612f98565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526028908201527f4d656469613a20746f6b656e2077697468207468617420696420646f6573206e6040820152671bdd08195e1a5cdd60c21b606082015260800190565b60208082526027908201527f4d656469613a206f6e6c7920646576656c6f7065722063616e207365742074686040820152666520707269636560c81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f43727970746f6c6f76656c6f636b3a20596f7520616c72656164792063686f73604082015270656e20796f7572206c6f7665206e6f746560781b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526021908201527f4d61726b65743a20426964646572206d757374206265206d73672073656e64656040820152603960f91b606082015260800190565b6020808252602e908201527f4d656469613a206f6e6c7920646576656c6f7065722063616e206368616e676560408201526d103a3432903232bb32b637b832b960911b606082015260800190565b60208082526022908201527f4d656469613a2063616c6c6572206e6f7420617070726f766564206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602f908201527f4d656469613a20746f6b656e20646f6573206e6f74206861766520686173682060408201526e6f6620697473206d6574616461746160881b606082015260800190565b60208082526026908201527f4d656469613a20636f6c6c656374696f6e206861732061206c696d6974656420604082015265737570706c7960d01b606082015260800190565b60208082526024908201527f4d656469613a20636f6e74656e742068617368206d757374206265206e6f6e2d6040820152637a65726f60e01b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252603e908201527f4d656469613a206120746f6b656e2068617320616c7265616479206265656e2060408201527f637265617465642077697468207468697320636f6e74656e7420686173680000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d656469613a206f6e6c79206d61726b657420636f6e74726163740000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526024908201527f4d656469613a206f776e6572206973206e6f742063726561746f72206f66206d6040820152636564696160e01b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f4d656469613a204f6e6c7920617070726f766564206f72206f776e6572000000604082015260600190565b6020808252603a908201527f4d656469613a20646576656c6f7065722063616e206d696e74206f6e6c79207460408201527f6f6b656e206c65667420666f72206675747572652073616c6573000000000000606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526032908201527f4d656469613a20746f6b656e20646f6573206e6f7420686176652068617368206040820152711bd98818dc99585d19590818dbdb9d195b9d60721b606082015260800190565b60208082526025908201527f4d656469613a206d657461646174612068617368206d757374206265206e6f6e6040820152642d7a65726f60d81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252602a908201527f4d656469613a207468697320746f6b656e206973206c65667420666f72206675604082015269747572652073616c657360b01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601690820152751359591a584e881c1c9a58d9481b9bdd081c185e595960521b604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601b908201527f4d656469613a20746f6b656e20616c7265616479206578697374730000000000604082015260600190565b60208082526018908201527f4d656469613a206e6f6e6578697374656e7420746f6b656e0000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526026908201527f4d656469613a2073706563696669656420757269206d757374206265206e6f6e6040820152652d656d70747960d01b606082015260800190565b60608101610ddb8284612fc4565b61ffff91909116815260200190565b9182526001600160a01b0316602082015260400190565b600083825260406020830152611d4d6040830184612f98565b918252805160208084019190915201516001600160a01b0316604082015260600190565b82815260808101611d506020830184612fc4565b82815260c08101611d506020830184612fe0565b83815260e08101613c346020830185612fe0565b6001600160a01b039290921660c0919091015292915050565b60405181810167ffffffffffffffff81118282101715613c6c57600080fd5b604052919050565b60005b83811015613c8f578181015183820152602001613c77565b838111156116e25750506000910152565b6001600160a01b0381168114612ab557600080fd5b6001600160e01b031981168114612ab557600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220a892145f30d14a94b6fa9ed79d0595663304c2e8a04912a54ab782c878fcf98464736f6c63430006080033

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

00000000000000000000000042b255be54d2a38b13ca7e242898134469c3ef08

-----Decoded View---------------
Arg [0] : marketContractAddr (address): 0x42b255be54d2a38b13ca7e242898134469c3EF08

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000042b255be54d2a38b13ca7e242898134469c3ef08


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.