ETH Price: $3,305.42 (-3.34%)
Gas: 16 Gwei

Token

Watchfaces (WFW)
 

Overview

Max Total Supply

363 WFW

Holders

290

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yitong.eth
Balance
1 WFW
0xc3fdadbae46798cd8762185a09c5b672a7aa36bb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WatchfacesWorld

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 15 : WatchfacesWorld.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import './EIP712Signing.sol';
import './Renderer.sol';

/*
 _    _       _       _      __                     _    _            _     _ 
| |  | |     | |     | |    / _|                   | |  | |          | |   | |
| |  | | __ _| |_ ___| |__ | |_ __ _  ___ ___  ___ | |  | | ___  _ __| | __| |
| |/\| |/ _` | __/ __| '_ \|  _/ _` |/ __/ _ \/ __|| |/\| |/ _ \| '__| |/ _` |
\  /\  / (_| | || (__| | | | || (_| | (_|  __/\__ \\  /\  / (_) | |  | | (_| |
 \/  \/ \__,_|\__\___|_| |_|_| \__,_|\___\___||___(_)/  \/ \___/|_|  |_|\__,_|                                                                                                               

  https://www.watchfaces.world/ | https://twitter.com/watchfacesworld

*/

interface IERC2981 is IERC165 {
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// External contract for early access to minting
interface IWatchfacesPriorityPass {
    function redeem(address holder) external;
}

contract WatchfacesWorld is ERC721, IERC2981, EIP712Signing {
    // Token ID
    // We encode each of the traits into the actual tokenId as an 8 digit number:
    //    00   00   00      00
    // bezel face mood glasses

    // Emitted when we know that something about the token has changed
    // tokenId is 0xfff...ff when all tokens have been updated
    event MetadataUpdated(uint256 indexed tokenId);

    uint256 public totalSupply;

    // Store renderer as separate contract so we can update it if needed
    Renderer public renderer;

    // Need to check if current minter has a priority pass, and if so, redeem it
    IWatchfacesPriorityPass public pass;

    // Once all watchfaces sell out and any moderation issues are resolved,
    // we will turn this flag on and lock all engravings in permanently
    bool public engravingsLockedForever;

    // In case we want to have a more complex logic for royalties, we can delegate
    // to a separate contract. If it's not available, default to 5%
    IERC2981 public royaltyInfoDelegate;

    // Token Id -> Minted (or transferred) Timestamp
    mapping(uint256 => uint256) public timestamps;

    // We store the engravings separately from the watchface tokenIds
    // This lets us moderate engravings before locking them in forever
    mapping(uint256 => string) public engravings;

    // This flag lets us check
    mapping(uint256 => bool) private heldForAtLeast8WeeksBeforeTransfer;

    // Use a special ID for glow in the dark to view the correct rendering
    uint256 constant GLOW_IN_THE_DARK_TOKEN_ID = 4049999;

    constructor(address _whitelistSigningKey)
        ERC721('Watchfaces', 'WFW')
        EIP712Signing(_whitelistSigningKey)
    {
        // Initial total supply is 1 (the Glow In The Dark watch)
        totalSupply = 1;

        // We automatically mint the glow in the dark watch to one of the admins.
        // We'll give this away in the future
        _mint(msg.sender, GLOW_IN_THE_DARK_TOKEN_ID);
    }

    function mint(
        uint256 _tokenId,
        bool _usePass,
        string calldata _engraving,
        bytes calldata _signature
    ) public payable {
        require(totalSupply < 3600, 'No more left');
        unchecked {
            // Can't overflow, save gas
            totalSupply++;
        }

        // All token parameters must be signed by a trusted server. This way we
        // can avoid storing prices and supply data on chain, making the mint
        // function use less gas.
        requireValidSignature(msg.sender, _tokenId, _usePass, msg.value, _engraving, _signature);

        if (bytes(_engraving).length > 0) {
            engravings[_tokenId] = _engraving;
        }

        // We could use pass.balanceOf() to see if the sender has a pass, but
        // this adds gas and is only useful to the 360 passes holders. To make
        // minting cheaper, we ask the frontend do the check
        if (_usePass) {
            require(address(pass) != address(0), 'Pass not set');
            pass.redeem(msg.sender);
        }

        // Each watch is unique, and we rely on OpenZeppelin ERC721 implementation
        // to do the existance check
        _mint(msg.sender, _tokenId);
    }

    // Any owner can wipe the engraving off a watchface, but not rewrite it.
    // This helps us avoid any long term moderation issues while still giving
    // control to new owners
    function wipeEngraving(uint256 _tokenId) public {
        require(ownerOf(_tokenId) == msg.sender, 'Not yours');
        delete engravings[_tokenId];
        emit MetadataUpdated(_tokenId);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        return
            renderer.render(
                _tokenId,
                ownerOf(_tokenId),
                timestamps[_tokenId],
                holdingProgress(_tokenId),
                engravings[_tokenId]
            );
    }

    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(_from, _to, _tokenId);

        // We want to reward holding watchfaces for a long time. Once a watchface
        // has been "cared-for", we set a special flag so the new owner can benefit
        // from it.
        // Note: this function is also called on _mint, and we know that timestamps[_tokenId]
        // is not set yet, so no point in checking the rest of this logic
        if (_from != address(0)) {
            if (!heldForAtLeast8WeeksBeforeTransfer[_tokenId]) {
                if (timestamps[_tokenId] + 8 weeks <= block.timestamp) {
                    heldForAtLeast8WeeksBeforeTransfer[_tokenId] = true;
                }
            }
        }

        timestamps[_tokenId] = block.timestamp;
        emit MetadataUpdated(_tokenId);
    }

    // Holding progress is 0...1000 showing how much time the watchface has been
    // held for. If the watchface has been "cared-for", it's always going to be 1000
    function holdingProgress(uint256 _tokenId) public view returns (uint256) {
        require(timestamps[_tokenId] != 0, 'Token does not exist');

        if (heldForAtLeast8WeeksBeforeTransfer[_tokenId]) {
            return 1000;
        }

        if (timestamps[_tokenId] + 8 weeks <= block.timestamp) {
            return 1000;
        }

        return ((block.timestamp - timestamps[_tokenId]) * 1000) / 8 weeks;
    }

    function supportsInterface(bytes4 _interfaceId)
        public
        view
        override(ERC721, IERC165)
        returns (bool)
    {
        return _interfaceId == type(IERC2981).interfaceId || super.supportsInterface(_interfaceId);
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        override
        returns (address, uint256)
    {
        if (address(royaltyInfoDelegate) != address(0)) {
            return royaltyInfoDelegate.royaltyInfo(_tokenId, _salePrice);
        }

        // Return 5% royalties.
        return (owner(), (_salePrice * 5) / 100);
    }

    /* ADMIN */
    // If an engraving contains any text that goes against our engraving and community guidelines,
    // admins can rewrite it after discussing with the watchface owner.
    function rewriteEngraving(uint256 _tokenId, string calldata _engraving) external onlyOwner {
        require(!engravingsLockedForever, 'Locked forever');
        engravings[_tokenId] = _engraving;
        emit MetadataUpdated(_tokenId);
    }

    // After all watches sell out, we call this lock function to lock the engravings in place.
    function lockEngravingsForever() external onlyOwner {
        engravingsLockedForever = true;
    }

    function withdrawAll() external {
        payable(owner()).transfer(address(this).balance);
    }

    function withdrawAllERC20(IERC20 _erc20Token) external {
        _erc20Token.transfer(owner(), _erc20Token.balanceOf(address(this)));
    }

    function setRenderer(Renderer _renderer) external onlyOwner {
        renderer = _renderer;
        emit MetadataUpdated(type(uint256).max);
    }

    function setRoyaltyInfoDelegate(IERC2981 _royaltyInfoDelegate) external onlyOwner {
        royaltyInfoDelegate = _royaltyInfoDelegate;
    }

    function setPass(IWatchfacesPriorityPass _pass) external onlyOwner {
        pass = _pass;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 4 of 15 : EIP712Signing.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract EIP712Signing is Ownable {
    using ECDSA for bytes32;

    // The key used for signatures.
    // We will check to ensure that the key that signed the signature
    // is this one that we expect.
    address signingKey = address(0);

    // The typehash for the data type specified in the structured data
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-typehash
    // This should match whats in the client side whitelist signing code
    // https://github.com/msfeldstein/EIP712-whitelisting/blob/main/test/signWhitelist.ts#L22
    bytes32 internal constant MINTER_TYPEHASH =
        keccak256(
            'Minter(address wallet,uint256 tokenId,bool usePass,uint256 price,string engraving)'
        );
    bytes32 internal constant DOMAIN_TYPEHASH =
        keccak256(
            'EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'
        );

    function setSigningAddress(address _signingKey) public onlyOwner {
        signingKey = _signingKey;
    }

    constructor(address _signingKey) {
        signingKey = _signingKey;
    }

    function requireValidSignature(
        address _minter,
        uint256 _tokenId,
        bool usePass,
        uint256 _price,
        string calldata _engraving,
        bytes calldata _signature
    ) internal view {
        require(signingKey != address(0), 'Minting not available');

        // Domain Separator is the EIP-712 defined structure that defines what contract
        // and chain these signatures can be used for.  This ensures people can't take
        // a signature used to mint on one contract and use it for another, or a signature
        // from testnet to replay on mainnet.
        // It has to be created in the constructor so we can dynamically grab the chainId.
        // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                // This should match the domain you set in your client side signing.
                keccak256(bytes('WatchfacesWorld')),
                keccak256(bytes('1')),
                block.chainid,
                address(this)
            )
        );

        // Verify EIP-712 signature by recreating the data structure
        // that we signed on the client side, and then using that to recover
        // the address that signed the signature for this data.
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                domainSeparator,
                keccak256(
                    abi.encode(
                        MINTER_TYPEHASH,
                        _minter,
                        _tokenId,
                        usePass,
                        _price,
                        keccak256(bytes(_engraving))
                    )
                )
            )
        );
        // Use the recover method to see what address was used to create
        // the signature on this data.
        // Note that if the digest doesn't exactly match what was signed we'll
        // get a random recovered address.
        address recoveredAddress = digest.recover(_signature);
        require(recoveredAddress == signingKey, 'Invalid Signature');
    }
}

File 5 of 15 : Renderer.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/Strings.sol';

contract Renderer {
    function render(
        uint256,
        address,
        uint256,
        uint256,
        string calldata
    ) public pure returns (string memory tokenURI) {
        tokenURI = 'TODO';
    }
}

contract DumbRenderer {
    function render(
        uint256 tokenId,
        address owner,
        uint256 timestamp,
        uint256 holdingProgress,
        string calldata engraving
    ) public pure returns (string memory tokenURI) {
        tokenURI = string.concat(
            Strings.toString(tokenId),
            ' by ',
            Strings.toHexString(uint256(uint160(owner))),
            ' @ ',
            Strings.toString(timestamp),
            ' ',
            Strings.toString(holdingProgress),
            ' ',
            engraving
        );
    }
}

contract Web2Renderer {
    function render(
        uint256 tokenId,
        address owner,
        uint256 timestamp,
        uint256 holdingProgress,
        string calldata engraving
    ) public pure returns (string memory tokenURI) {
        tokenURI = string.concat(
            'https://www.watchfaces.world/api/watchface/',
            Strings.toString(tokenId),
            '-',
            Strings.toHexString(uint256(uint160(owner))),
            '-',
            Strings.toString(timestamp),
            '-',
            Strings.toString(holdingProgress),
            '-',
            engraving
        );
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_whitelistSigningKey","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetadataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"engravings","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"engravingsLockedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"holdingProgress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockEngravingsForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_usePass","type":"bool"},{"internalType":"string","name":"_engraving","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pass","outputs":[{"internalType":"contract IWatchfacesPriorityPass","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renderer","outputs":[{"internalType":"contract Renderer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_engraving","type":"string"}],"name":"rewriteEngraving","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyInfoDelegate","outputs":[{"internalType":"contract IERC2981","name":"","type":"address"}],"stateMutability":"view","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":"contract IWatchfacesPriorityPass","name":"_pass","type":"address"}],"name":"setPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Renderer","name":"_renderer","type":"address"}],"name":"setRenderer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC2981","name":"_royaltyInfoDelegate","type":"address"}],"name":"setRoyaltyInfoDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signingKey","type":"address"}],"name":"setSigningAddress","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":"","type":"uint256"}],"name":"timestamps","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"wipeEngraving","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_erc20Token","type":"address"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600780546001600160a01b03191690553480156200002157600080fd5b506040516200333138038062003331833981016040819052620000449162000417565b604080518082018252600a8152695761746368666163657360b01b60208083019182528351808501909452600384526257465760e81b90840152815184939162000092916000919062000371565b508051620000a890600190602084019062000371565b505050620000c5620000bf6200010060201b60201c565b62000104565b600780546001600160a01b0319166001600160a01b03929092169190911790556001600855620000f933623dcc4f62000156565b50620004ad565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620002195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001a9565b6200022760008383620002b0565b6001600160a01b03821660009081526003602052604081208054600192906200025290849062000449565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b620002c88383836200036c60201b6200096d1760201c565b6001600160a01b038316156200032f576000818152600e602052604090205460ff166200032f576000818152600c602052604090205442906200030f906249d40062000449565b116200032f576000818152600e60205260409020805460ff191660011790555b6000818152600c60205260408082204290555182917f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6891a2505050565b505050565b8280546200037f9062000470565b90600052602060002090601f016020900481019282620003a35760008555620003ee565b82601f10620003be57805160ff1916838001178555620003ee565b82800160010185558215620003ee579182015b82811115620003ee578251825591602001919060010190620003d1565b50620003fc92915062000400565b5090565b5b80821115620003fc576000815560010162000401565b6000602082840312156200042a57600080fd5b81516001600160a01b03811681146200044257600080fd5b9392505050565b600082198211156200046b57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200048557607f821691505b60208210811415620004a757634e487b7160e01b600052602260045260246000fd5b50919050565b612e7480620004bd6000396000f3fe6080604052600436106102345760003560e01c80637ddb6bb511610138578063a22cb465116100b0578063c87b56dd1161007f578063ea2dae7c11610064578063ea2dae7c14610689578063ecb7e2ad146106a9578063f2fde38b146106c957600080fd5b8063c87b56dd14610620578063e985e9c51461064057600080fd5b8063a22cb465146105ab578063a7a1ed72146105cb578063b46effc0146105eb578063b88d4fde1461060057600080fd5b8063857abbd4116101075780638bc33af3116100ec5780638bc33af31461054b5780638da5cb5b1461057857806395d89b411461059657600080fd5b8063857abbd41461050b5780638ada6b0f1461052b57600080fd5b80637ddb6bb5146104965780637f3cba00146104b657806380e9944b146104d6578063853828b6146104f657600080fd5b806331beb605116101cb5780635bb8133f1161019a57806370a082311161017f57806370a0823114610440578063715018a61461046057806376ed31561461047557600080fd5b80635bb8133f146104005780636352211e1461042057600080fd5b806331beb6051461038d57806342842e0e146103ad57806356d3163d146103cd57806357b3d3c6146103ed57600080fd5b8063095ea7b311610207578063095ea7b3146102e857806318160ddd1461030a57806323b872dd1461032e5780632a55205a1461034e57600080fd5b806301ffc9a71461023957806304b6abf81461026e57806306fdde03146102a6578063081812fc146102c8575b600080fd5b34801561024557600080fd5b5061025961025436600461273e565b6106e9565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b50600b5461028e906001600160a01b031681565b6040516001600160a01b039091168152602001610265565b3480156102b257600080fd5b506102bb610714565b60405161026591906127ba565b3480156102d457600080fd5b5061028e6102e33660046127cd565b6107a6565b3480156102f457600080fd5b506103086103033660046127fb565b610840565b005b34801561031657600080fd5b5061032060085481565b604051908152602001610265565b34801561033a57600080fd5b50610308610349366004612827565b610972565b34801561035a57600080fd5b5061036e610369366004612868565b6109f9565b604080516001600160a01b039093168352602083019190915201610265565b34801561039957600080fd5b506103086103a836600461288a565b610aba565b3480156103b957600080fd5b506103086103c8366004612827565b610b36565b3480156103d957600080fd5b506103086103e836600461288a565b610b51565b6103086103fb3660046128f7565b610bf6565b34801561040c57600080fd5b5061030861041b3660046127cd565b610d6a565b34801561042c57600080fd5b5061028e61043b3660046127cd565b610e0f565b34801561044c57600080fd5b5061032061045b36600461288a565b610e9a565b34801561046c57600080fd5b50610308610f34565b34801561048157600080fd5b50600a5461025990600160a01b900460ff1681565b3480156104a257600080fd5b506103086104b136600461288a565b610f9a565b3480156104c257600080fd5b506103086104d136600461288a565b611016565b3480156104e257600080fd5b506103086104f1366004612983565b611092565b34801561050257600080fd5b50610308611190565b34801561051757600080fd5b5061030861052636600461288a565b6111cc565b34801561053757600080fd5b5060095461028e906001600160a01b031681565b34801561055757600080fd5b506103206105663660046127cd565b600c6020526000908152604090205481565b34801561058457600080fd5b506006546001600160a01b031661028e565b3480156105a257600080fd5b506102bb6112e1565b3480156105b757600080fd5b506103086105c63660046129cf565b6112f0565b3480156105d757600080fd5b50600a5461028e906001600160a01b031681565b3480156105f757600080fd5b506103086112fb565b34801561060c57600080fd5b5061030861061b366004612a77565b611385565b34801561062c57600080fd5b506102bb61063b3660046127cd565b611413565b34801561064c57600080fd5b5061025961065b366004612b26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b506103206106a43660046127cd565b6114c2565b3480156106b557600080fd5b506102bb6106c43660046127cd565b61159d565b3480156106d557600080fd5b506103086106e436600461288a565b611637565b60006001600160e01b0319821663152a902d60e11b148061070e575061070e82611716565b92915050565b60606000805461072390612b54565b80601f016020809104026020016040519081016040528092919081815260200182805461074f90612b54565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084b82610e0f565b9050806001600160a01b0316836001600160a01b031614156108d55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161081b565b336001600160a01b03821614806108f157506108f1813361065b565b6109635760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081b565b61096d83836117b1565b505050565b61097c338261181f565b6109ee5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081b565b61096d838383611916565b600b5460009081906001600160a01b031615610a8b57600b5460405163152a902d60e11b815260048101869052602481018590526001600160a01b0390911690632a55205a906044016040805180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190612b8f565b91509150610ab3565b6006546001600160a01b03166064610aa4856005612bd3565b610aae9190612bf2565b915091505b9250929050565b6006546001600160a01b03163314610b145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b61096d83838360405180602001604052806000815250611385565b6006546001600160a01b03163314610bab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600980546001600160a01b0319166001600160a01b038316179055604051600019907f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6890600090a250565b610e1060085410610c495760405162461bcd60e51b815260206004820152600c60248201527f4e6f206d6f7265206c6566740000000000000000000000000000000000000000604482015260640161081b565b600880546001019055610c623387873488888888611aee565b8215610c83576000868152600d60205260409020610c81908585612659565b505b8415610d5857600a546001600160a01b0316610ce15760405162461bcd60e51b815260206004820152600c60248201527f50617373206e6f74207365740000000000000000000000000000000000000000604482015260640161081b565b600a546040517f95a2251f0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03909116906395a2251f90602401600060405180830381600087803b158015610d3f57600080fd5b505af1158015610d53573d6000803e3d6000fd5b505050505b610d623387611ded565b505050505050565b33610d7482610e0f565b6001600160a01b031614610dca5760405162461bcd60e51b815260206004820152600960248201527f4e6f7420796f7572730000000000000000000000000000000000000000000000604482015260640161081b565b6000818152600d60205260408120610de1916126dd565b60405181907f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6890600090a250565b6000818152600260205260408120546001600160a01b03168061070e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161081b565b60006001600160a01b038216610f185760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161081b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f8e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b610f986000611f3b565b565b6006546001600160a01b03163314610ff45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146110705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146110ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600a54600160a01b900460ff16156111465760405162461bcd60e51b815260206004820152600e60248201527f4c6f636b656420666f7265766572000000000000000000000000000000000000604482015260640161081b565b6000838152600d6020526040902061115f908383612659565b5060405183907f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6890600090a2505050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156111c9573d6000803e3d6000fd5b50565b806001600160a01b031663a9059cbb6111ed6006546001600160a01b031690565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801561124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126e9190612c14565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156112b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112dd9190612c2d565b5050565b60606001805461072390612b54565b6112dd338383611f8d565b6006546001600160a01b031633146113555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b61138f338361181f565b6114015760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081b565b61140d8484848461205c565b50505050565b6009546060906001600160a01b0316639478c81a8361143181610e0f565b6000868152600c6020526040902054611449876114c2565b6000888152600d60205260409081902090516001600160e01b031960e088901b16815261147d959493929190600401612c4a565b600060405180830381865afa15801561149a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261070e9190810190612d19565b6000818152600c602052604081205461151d5760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20646f6573206e6f74206578697374000000000000000000000000604482015260640161081b565b6000828152600e602052604090205460ff161561153d57506103e8919050565b6000828152600c6020526040902054429061155b906249d400612d90565b1161156957506103e8919050565b6000828152600c60205260409020546249d400906115879042612da8565b611593906103e8612bd3565b61070e9190612bf2565b600d60205260009081526040902080546115b690612b54565b80601f01602080910402602001604051908101604052809291908181526020018280546115e290612b54565b801561162f5780601f106116045761010080835404028352916020019161162f565b820191906000526020600020905b81548152906001019060200180831161161257829003601f168201915b505050505081565b6006546001600160a01b031633146116915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161081b565b6111c981611f3b565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061177957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061070e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461070e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117e682610e0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081b565b60006118a383610e0f565b9050806001600160a01b0316846001600160a01b031614806118de5750836001600160a01b03166118d3846107a6565b6001600160a01b0316145b8061190e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661192982610e0f565b6001600160a01b0316146119a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161081b565b6001600160a01b038216611a205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161081b565b611a2b8383836120e5565b611a366000826117b1565b6001600160a01b0383166000908152600360205260408120805460019290611a5f908490612da8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a8d908490612d90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6007546001600160a01b0316611b465760405162461bcd60e51b815260206004820152601560248201527f4d696e74696e67206e6f7420617661696c61626c650000000000000000000000604482015260640161081b565b604080518082018252600f81527f57617463686661636573576f726c64000000000000000000000000000000000060209182015281518083018352600181527f31000000000000000000000000000000000000000000000000000000000000009082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f918101919091527f7bb804e3458ba9048964584a72e2ab79db32a12f8056c220ec65b9a927590afb918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090506000817ff7357c80dab809c82f4cad9a4a982154013459d4e671ad71d97c5676cf401b3c8b8b8b8b8b8b604051611c84929190612dbf565b604051908190038120611ccc9695949392916020019586526001600160a01b03949094166020860152604085019290925215156060840152608083015260a082015260c00190565b60405160208183030381529060405280519060200120604051602001611d249291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611d8085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506121849050565b6007549091506001600160a01b03808316911614611de05760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e6174757265000000000000000000000000000000604482015260640161081b565b5050505050505050505050565b6001600160a01b038216611e435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081b565b6000818152600260205260409020546001600160a01b031615611ea85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b611eb4600083836120e5565b6001600160a01b0382166000908152600360205260408120805460019290611edd908490612d90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fef5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612067848484611916565b612073848484846121a8565b61140d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081b565b6001600160a01b03831615612147576000818152600e602052604090205460ff16612147576000818152600c60205260409020544290612128906249d400612d90565b11612147576000818152600e60205260409020805460ff191660011790555b6000818152600c60205260408082204290555182917f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6891a2505050565b600080600061219385856122fc565b915091506121a081612369565b509392505050565b60006001600160a01b0384163b156122f157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ec903390899088908890600401612dcf565b6020604051808303816000875af1925050508015612227575060408051601f3d908101601f1916820190925261222491810190612e0b565b60015b6122d7573d808015612255576040519150601f19603f3d011682016040523d82523d6000602084013e61225a565b606091505b5080516122cf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061190e565b506001949350505050565b6000808251604114156123335760208301516040840151606085015160001a61232787828585612524565b94509450505050610ab3565b82516040141561235d5760208301516040840151612352868383612611565b935093505050610ab3565b50600090506002610ab3565b600081600481111561237d5761237d612e28565b14156123865750565b600181600481111561239a5761239a612e28565b14156123e85760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161081b565b60028160048111156123fc576123fc612e28565b141561244a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161081b565b600381600481111561245e5761245e612e28565b14156124b75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161081b565b60048160048111156124cb576124cb612e28565b14156111c95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161081b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561255b5750600090506003612608565b8460ff16601b1415801561257357508460ff16601c14155b156125845750600090506004612608565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125d8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661260157600060019250925050612608565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161264b87828885612524565b935093505050935093915050565b82805461266590612b54565b90600052602060002090601f01602090048101928261268757600085556126cd565b82601f106126a05782800160ff198235161785556126cd565b828001600101855582156126cd579182015b828111156126cd5782358255916020019190600101906126b2565b506126d9929150612713565b5090565b5080546126e990612b54565b6000825580601f106126f9575050565b601f0160209004906000526020600020908101906111c991905b5b808211156126d95760008155600101612714565b6001600160e01b0319811681146111c957600080fd5b60006020828403121561275057600080fd5b813561275b81612728565b9392505050565b60005b8381101561277d578181015183820152602001612765565b8381111561140d5750506000910152565b600081518084526127a6816020860160208601612762565b601f01601f19169290920160200192915050565b60208152600061275b602083018461278e565b6000602082840312156127df57600080fd5b5035919050565b6001600160a01b03811681146111c957600080fd5b6000806040838503121561280e57600080fd5b8235612819816127e6565b946020939093013593505050565b60008060006060848603121561283c57600080fd5b8335612847816127e6565b92506020840135612857816127e6565b929592945050506040919091013590565b6000806040838503121561287b57600080fd5b50508035926020909101359150565b60006020828403121561289c57600080fd5b813561275b816127e6565b80151581146111c957600080fd5b60008083601f8401126128c757600080fd5b50813567ffffffffffffffff8111156128df57600080fd5b602083019150836020828501011115610ab357600080fd5b6000806000806000806080878903121561291057600080fd5b863595506020870135612922816128a7565b9450604087013567ffffffffffffffff8082111561293f57600080fd5b61294b8a838b016128b5565b9096509450606089013591508082111561296457600080fd5b5061297189828a016128b5565b979a9699509497509295939492505050565b60008060006040848603121561299857600080fd5b83359250602084013567ffffffffffffffff8111156129b657600080fd5b6129c2868287016128b5565b9497909650939450505050565b600080604083850312156129e257600080fd5b82356129ed816127e6565b915060208301356129fd816128a7565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612a4757612a47612a08565b604052919050565b600067ffffffffffffffff821115612a6957612a69612a08565b50601f01601f191660200190565b60008060008060808587031215612a8d57600080fd5b8435612a98816127e6565b93506020850135612aa8816127e6565b925060408501359150606085013567ffffffffffffffff811115612acb57600080fd5b8501601f81018713612adc57600080fd5b8035612aef612aea82612a4f565b612a1e565b818152886020838501011115612b0457600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215612b3957600080fd5b8235612b44816127e6565b915060208301356129fd816127e6565b600181811c90821680612b6857607f821691505b60208210811415612b8957634e487b7160e01b600052602260045260246000fd5b50919050565b60008060408385031215612ba257600080fd5b8251612bad816127e6565b6020939093015192949293505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612bed57612bed612bbd565b500290565b600082612c0f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612c2657600080fd5b5051919050565b600060208284031215612c3f57600080fd5b815161275b816128a7565b858152600060206001600160a01b0387168184015285604084015284606084015260a060808401526000845481600182811c915080831680612c8d57607f831692505b858310811415612cab57634e487b7160e01b85526022600452602485fd5b60a0880183905260c08801818015612cca5760018114612cdb57612d06565b60ff19861682528782019650612d06565b60008b81526020902060005b86811015612d0057815484820152908501908901612ce7565b83019750505b50949d9c50505050505050505050505050565b600060208284031215612d2b57600080fd5b815167ffffffffffffffff811115612d4257600080fd5b8201601f81018413612d5357600080fd5b8051612d61612aea82612a4f565b818152856020838501011115612d7657600080fd5b612d87826020830160208601612762565b95945050505050565b60008219821115612da357612da3612bbd565b500190565b600082821015612dba57612dba612bbd565b500390565b8183823760009101908152919050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e01608083018461278e565b9695505050505050565b600060208284031215612e1d57600080fd5b815161275b81612728565b634e487b7160e01b600052602160045260246000fdfea264697066735822122026d80739e24392ada625cd26d0a6d2c1885b253e215c3579d758b7cc76fb8eb064736f6c634300080c0033000000000000000000000000a9dd4ba20f98df979a0b68850771e989053532ed

Deployed Bytecode

0x6080604052600436106102345760003560e01c80637ddb6bb511610138578063a22cb465116100b0578063c87b56dd1161007f578063ea2dae7c11610064578063ea2dae7c14610689578063ecb7e2ad146106a9578063f2fde38b146106c957600080fd5b8063c87b56dd14610620578063e985e9c51461064057600080fd5b8063a22cb465146105ab578063a7a1ed72146105cb578063b46effc0146105eb578063b88d4fde1461060057600080fd5b8063857abbd4116101075780638bc33af3116100ec5780638bc33af31461054b5780638da5cb5b1461057857806395d89b411461059657600080fd5b8063857abbd41461050b5780638ada6b0f1461052b57600080fd5b80637ddb6bb5146104965780637f3cba00146104b657806380e9944b146104d6578063853828b6146104f657600080fd5b806331beb605116101cb5780635bb8133f1161019a57806370a082311161017f57806370a0823114610440578063715018a61461046057806376ed31561461047557600080fd5b80635bb8133f146104005780636352211e1461042057600080fd5b806331beb6051461038d57806342842e0e146103ad57806356d3163d146103cd57806357b3d3c6146103ed57600080fd5b8063095ea7b311610207578063095ea7b3146102e857806318160ddd1461030a57806323b872dd1461032e5780632a55205a1461034e57600080fd5b806301ffc9a71461023957806304b6abf81461026e57806306fdde03146102a6578063081812fc146102c8575b600080fd5b34801561024557600080fd5b5061025961025436600461273e565b6106e9565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b50600b5461028e906001600160a01b031681565b6040516001600160a01b039091168152602001610265565b3480156102b257600080fd5b506102bb610714565b60405161026591906127ba565b3480156102d457600080fd5b5061028e6102e33660046127cd565b6107a6565b3480156102f457600080fd5b506103086103033660046127fb565b610840565b005b34801561031657600080fd5b5061032060085481565b604051908152602001610265565b34801561033a57600080fd5b50610308610349366004612827565b610972565b34801561035a57600080fd5b5061036e610369366004612868565b6109f9565b604080516001600160a01b039093168352602083019190915201610265565b34801561039957600080fd5b506103086103a836600461288a565b610aba565b3480156103b957600080fd5b506103086103c8366004612827565b610b36565b3480156103d957600080fd5b506103086103e836600461288a565b610b51565b6103086103fb3660046128f7565b610bf6565b34801561040c57600080fd5b5061030861041b3660046127cd565b610d6a565b34801561042c57600080fd5b5061028e61043b3660046127cd565b610e0f565b34801561044c57600080fd5b5061032061045b36600461288a565b610e9a565b34801561046c57600080fd5b50610308610f34565b34801561048157600080fd5b50600a5461025990600160a01b900460ff1681565b3480156104a257600080fd5b506103086104b136600461288a565b610f9a565b3480156104c257600080fd5b506103086104d136600461288a565b611016565b3480156104e257600080fd5b506103086104f1366004612983565b611092565b34801561050257600080fd5b50610308611190565b34801561051757600080fd5b5061030861052636600461288a565b6111cc565b34801561053757600080fd5b5060095461028e906001600160a01b031681565b34801561055757600080fd5b506103206105663660046127cd565b600c6020526000908152604090205481565b34801561058457600080fd5b506006546001600160a01b031661028e565b3480156105a257600080fd5b506102bb6112e1565b3480156105b757600080fd5b506103086105c63660046129cf565b6112f0565b3480156105d757600080fd5b50600a5461028e906001600160a01b031681565b3480156105f757600080fd5b506103086112fb565b34801561060c57600080fd5b5061030861061b366004612a77565b611385565b34801561062c57600080fd5b506102bb61063b3660046127cd565b611413565b34801561064c57600080fd5b5061025961065b366004612b26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b506103206106a43660046127cd565b6114c2565b3480156106b557600080fd5b506102bb6106c43660046127cd565b61159d565b3480156106d557600080fd5b506103086106e436600461288a565b611637565b60006001600160e01b0319821663152a902d60e11b148061070e575061070e82611716565b92915050565b60606000805461072390612b54565b80601f016020809104026020016040519081016040528092919081815260200182805461074f90612b54565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084b82610e0f565b9050806001600160a01b0316836001600160a01b031614156108d55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161081b565b336001600160a01b03821614806108f157506108f1813361065b565b6109635760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081b565b61096d83836117b1565b505050565b61097c338261181f565b6109ee5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081b565b61096d838383611916565b600b5460009081906001600160a01b031615610a8b57600b5460405163152a902d60e11b815260048101869052602481018590526001600160a01b0390911690632a55205a906044016040805180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190612b8f565b91509150610ab3565b6006546001600160a01b03166064610aa4856005612bd3565b610aae9190612bf2565b915091505b9250929050565b6006546001600160a01b03163314610b145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b61096d83838360405180602001604052806000815250611385565b6006546001600160a01b03163314610bab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600980546001600160a01b0319166001600160a01b038316179055604051600019907f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6890600090a250565b610e1060085410610c495760405162461bcd60e51b815260206004820152600c60248201527f4e6f206d6f7265206c6566740000000000000000000000000000000000000000604482015260640161081b565b600880546001019055610c623387873488888888611aee565b8215610c83576000868152600d60205260409020610c81908585612659565b505b8415610d5857600a546001600160a01b0316610ce15760405162461bcd60e51b815260206004820152600c60248201527f50617373206e6f74207365740000000000000000000000000000000000000000604482015260640161081b565b600a546040517f95a2251f0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03909116906395a2251f90602401600060405180830381600087803b158015610d3f57600080fd5b505af1158015610d53573d6000803e3d6000fd5b505050505b610d623387611ded565b505050505050565b33610d7482610e0f565b6001600160a01b031614610dca5760405162461bcd60e51b815260206004820152600960248201527f4e6f7420796f7572730000000000000000000000000000000000000000000000604482015260640161081b565b6000818152600d60205260408120610de1916126dd565b60405181907f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6890600090a250565b6000818152600260205260408120546001600160a01b03168061070e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161081b565b60006001600160a01b038216610f185760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161081b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f8e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b610f986000611f3b565b565b6006546001600160a01b03163314610ff45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146110705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146110ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600a54600160a01b900460ff16156111465760405162461bcd60e51b815260206004820152600e60248201527f4c6f636b656420666f7265766572000000000000000000000000000000000000604482015260640161081b565b6000838152600d6020526040902061115f908383612659565b5060405183907f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6890600090a2505050565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156111c9573d6000803e3d6000fd5b50565b806001600160a01b031663a9059cbb6111ed6006546001600160a01b031690565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801561124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126e9190612c14565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156112b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112dd9190612c2d565b5050565b60606001805461072390612b54565b6112dd338383611f8d565b6006546001600160a01b031633146113555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b61138f338361181f565b6114015760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161081b565b61140d8484848461205c565b50505050565b6009546060906001600160a01b0316639478c81a8361143181610e0f565b6000868152600c6020526040902054611449876114c2565b6000888152600d60205260409081902090516001600160e01b031960e088901b16815261147d959493929190600401612c4a565b600060405180830381865afa15801561149a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261070e9190810190612d19565b6000818152600c602052604081205461151d5760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20646f6573206e6f74206578697374000000000000000000000000604482015260640161081b565b6000828152600e602052604090205460ff161561153d57506103e8919050565b6000828152600c6020526040902054429061155b906249d400612d90565b1161156957506103e8919050565b6000828152600c60205260409020546249d400906115879042612da8565b611593906103e8612bd3565b61070e9190612bf2565b600d60205260009081526040902080546115b690612b54565b80601f01602080910402602001604051908101604052809291908181526020018280546115e290612b54565b801561162f5780601f106116045761010080835404028352916020019161162f565b820191906000526020600020905b81548152906001019060200180831161161257829003601f168201915b505050505081565b6006546001600160a01b031633146116915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161081b565b6111c981611f3b565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061177957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061070e57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461070e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117e682610e0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081b565b60006118a383610e0f565b9050806001600160a01b0316846001600160a01b031614806118de5750836001600160a01b03166118d3846107a6565b6001600160a01b0316145b8061190e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661192982610e0f565b6001600160a01b0316146119a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161081b565b6001600160a01b038216611a205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161081b565b611a2b8383836120e5565b611a366000826117b1565b6001600160a01b0383166000908152600360205260408120805460019290611a5f908490612da8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a8d908490612d90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6007546001600160a01b0316611b465760405162461bcd60e51b815260206004820152601560248201527f4d696e74696e67206e6f7420617661696c61626c650000000000000000000000604482015260640161081b565b604080518082018252600f81527f57617463686661636573576f726c64000000000000000000000000000000000060209182015281518083018352600181527f31000000000000000000000000000000000000000000000000000000000000009082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f918101919091527f7bb804e3458ba9048964584a72e2ab79db32a12f8056c220ec65b9a927590afb918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090506000817ff7357c80dab809c82f4cad9a4a982154013459d4e671ad71d97c5676cf401b3c8b8b8b8b8b8b604051611c84929190612dbf565b604051908190038120611ccc9695949392916020019586526001600160a01b03949094166020860152604085019290925215156060840152608083015260a082015260c00190565b60405160208183030381529060405280519060200120604051602001611d249291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611d8085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506121849050565b6007549091506001600160a01b03808316911614611de05760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e6174757265000000000000000000000000000000604482015260640161081b565b5050505050505050505050565b6001600160a01b038216611e435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081b565b6000818152600260205260409020546001600160a01b031615611ea85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b611eb4600083836120e5565b6001600160a01b0382166000908152600360205260408120805460019290611edd908490612d90565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fef5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612067848484611916565b612073848484846121a8565b61140d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081b565b6001600160a01b03831615612147576000818152600e602052604090205460ff16612147576000818152600c60205260409020544290612128906249d400612d90565b11612147576000818152600e60205260409020805460ff191660011790555b6000818152600c60205260408082204290555182917f9428dcbe773ffde983d366e27dc72d5f9be6e309154036dd48f60fbc0784be6891a2505050565b600080600061219385856122fc565b915091506121a081612369565b509392505050565b60006001600160a01b0384163b156122f157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ec903390899088908890600401612dcf565b6020604051808303816000875af1925050508015612227575060408051601f3d908101601f1916820190925261222491810190612e0b565b60015b6122d7573d808015612255576040519150601f19603f3d011682016040523d82523d6000602084013e61225a565b606091505b5080516122cf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161081b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061190e565b506001949350505050565b6000808251604114156123335760208301516040840151606085015160001a61232787828585612524565b94509450505050610ab3565b82516040141561235d5760208301516040840151612352868383612611565b935093505050610ab3565b50600090506002610ab3565b600081600481111561237d5761237d612e28565b14156123865750565b600181600481111561239a5761239a612e28565b14156123e85760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161081b565b60028160048111156123fc576123fc612e28565b141561244a5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161081b565b600381600481111561245e5761245e612e28565b14156124b75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161081b565b60048160048111156124cb576124cb612e28565b14156111c95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161081b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561255b5750600090506003612608565b8460ff16601b1415801561257357508460ff16601c14155b156125845750600090506004612608565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125d8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661260157600060019250925050612608565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161264b87828885612524565b935093505050935093915050565b82805461266590612b54565b90600052602060002090601f01602090048101928261268757600085556126cd565b82601f106126a05782800160ff198235161785556126cd565b828001600101855582156126cd579182015b828111156126cd5782358255916020019190600101906126b2565b506126d9929150612713565b5090565b5080546126e990612b54565b6000825580601f106126f9575050565b601f0160209004906000526020600020908101906111c991905b5b808211156126d95760008155600101612714565b6001600160e01b0319811681146111c957600080fd5b60006020828403121561275057600080fd5b813561275b81612728565b9392505050565b60005b8381101561277d578181015183820152602001612765565b8381111561140d5750506000910152565b600081518084526127a6816020860160208601612762565b601f01601f19169290920160200192915050565b60208152600061275b602083018461278e565b6000602082840312156127df57600080fd5b5035919050565b6001600160a01b03811681146111c957600080fd5b6000806040838503121561280e57600080fd5b8235612819816127e6565b946020939093013593505050565b60008060006060848603121561283c57600080fd5b8335612847816127e6565b92506020840135612857816127e6565b929592945050506040919091013590565b6000806040838503121561287b57600080fd5b50508035926020909101359150565b60006020828403121561289c57600080fd5b813561275b816127e6565b80151581146111c957600080fd5b60008083601f8401126128c757600080fd5b50813567ffffffffffffffff8111156128df57600080fd5b602083019150836020828501011115610ab357600080fd5b6000806000806000806080878903121561291057600080fd5b863595506020870135612922816128a7565b9450604087013567ffffffffffffffff8082111561293f57600080fd5b61294b8a838b016128b5565b9096509450606089013591508082111561296457600080fd5b5061297189828a016128b5565b979a9699509497509295939492505050565b60008060006040848603121561299857600080fd5b83359250602084013567ffffffffffffffff8111156129b657600080fd5b6129c2868287016128b5565b9497909650939450505050565b600080604083850312156129e257600080fd5b82356129ed816127e6565b915060208301356129fd816128a7565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612a4757612a47612a08565b604052919050565b600067ffffffffffffffff821115612a6957612a69612a08565b50601f01601f191660200190565b60008060008060808587031215612a8d57600080fd5b8435612a98816127e6565b93506020850135612aa8816127e6565b925060408501359150606085013567ffffffffffffffff811115612acb57600080fd5b8501601f81018713612adc57600080fd5b8035612aef612aea82612a4f565b612a1e565b818152886020838501011115612b0457600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215612b3957600080fd5b8235612b44816127e6565b915060208301356129fd816127e6565b600181811c90821680612b6857607f821691505b60208210811415612b8957634e487b7160e01b600052602260045260246000fd5b50919050565b60008060408385031215612ba257600080fd5b8251612bad816127e6565b6020939093015192949293505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612bed57612bed612bbd565b500290565b600082612c0f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612c2657600080fd5b5051919050565b600060208284031215612c3f57600080fd5b815161275b816128a7565b858152600060206001600160a01b0387168184015285604084015284606084015260a060808401526000845481600182811c915080831680612c8d57607f831692505b858310811415612cab57634e487b7160e01b85526022600452602485fd5b60a0880183905260c08801818015612cca5760018114612cdb57612d06565b60ff19861682528782019650612d06565b60008b81526020902060005b86811015612d0057815484820152908501908901612ce7565b83019750505b50949d9c50505050505050505050505050565b600060208284031215612d2b57600080fd5b815167ffffffffffffffff811115612d4257600080fd5b8201601f81018413612d5357600080fd5b8051612d61612aea82612a4f565b818152856020838501011115612d7657600080fd5b612d87826020830160208601612762565b95945050505050565b60008219821115612da357612da3612bbd565b500190565b600082821015612dba57612dba612bbd565b500390565b8183823760009101908152919050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e01608083018461278e565b9695505050505050565b600060208284031215612e1d57600080fd5b815161275b81612728565b634e487b7160e01b600052602160045260246000fdfea264697066735822122026d80739e24392ada625cd26d0a6d2c1885b253e215c3579d758b7cc76fb8eb064736f6c634300080c0033

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

000000000000000000000000a9dd4ba20f98df979a0b68850771e989053532ed

-----Decoded View---------------
Arg [0] : _whitelistSigningKey (address): 0xa9Dd4BA20F98Df979A0b68850771E989053532eD

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a9dd4ba20f98df979a0b68850771e989053532ed


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.