ETH Price: $3,462.82 (+5.24%)

Token

TronicMiniRacer (TRONICMINI)
 

Overview

Max Total Supply

100 TRONICMINI

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
alfrodo.eth
Balance
1 TRONICMINI
0xa95044e5b26171e06c1cc311f1f93d8b45301afb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

100 mini racers. Holding a mini racer will give you early access to Tronic Racers and community perks.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TronicMiniRacer

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : TronicMiniRacer.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

import "@1001-digital/erc721-extensions/contracts/RandomlyAssigned.sol";
import "@1001-digital/erc721-extensions/contracts/WithContractMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/WithIPFSMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/WithWithdrawals.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

// ================================================
//         _____ ____   ___  _   _ ___ ____
//        |_   _|  _ \ / _ \| \ | |_ _/ ___|
//          | | | |_) | | | |  \| || | |
//          | | |  _ <| |_| | |\  || | |___
//          |_| |_| \_\\___/|_| \_|___\____|
//               __  __ ___ _   _ ___
//              |  \/  |_ _| \ | |_ _|
//              | |\/| || ||  \| || |
//              | |  | || || |\  || |
//              |_|  |_|___|_| \_|___|
//       ____      _    ____ _____ ____  ____
//      |  _ \    / \  / ___| ____|  _ \/ ___|
//      | |_) |  / _ \| |   |  _| | |_) \___ \
//      |  _ <  / ___ \ |___| |___|  _ < ___) |
//      |_| \_\/_/   \_\____|_____|_| \_\____/
//
// ================================================
//    Mini cars and mint passes to Tronic Racing.
//    Race with us! https://discord.gg/A4sFesmFUq
// ================================================

contract TronicMiniRacer is ERC721, Ownable, RandomlyAssigned, WithIPFSMetaData, WithContractMetaData, WithWithdrawals {
    using SafeMath for uint256;
    uint256 public constant maxPerMint = 2;
    uint256 public saleStarted = 0;

    constructor(string memory _cid, string memory _contractMetaDataURI)
        ERC721("TronicMiniRacer", "TRONICMINI")
        RandomlyAssigned(100, 1)
        WithIPFSMetaData(_cid)
        WithContractMetaData(_contractMetaDataURI)
    {}

    function mint(uint256 amount) external payable ensureAvailabilityFor(amount) {
        require(saleStarted == 1, "Sale has not started");
        require(amount <= maxPerMint, "You can only mint 2 tokens at a time");
        require(amount > 0, "You need to mint at least 1 token");
        for (uint256 index = 0; index < amount; index++) {
            _safeMint(msg.sender, nextToken());
        }
    }

    // Note: There is no way to stop the sale once it starts
    function startSale() external onlyOwner {
        saleStarted = 1;
    }

    // Get the tokenURI for a specific token
    function tokenURI(uint256 tokenId) public view override(WithIPFSMetaData, ERC721) returns (string memory) {
        return WithIPFSMetaData.tokenURI(tokenId);
    }

    /// Set the content identifier for this collection.
    /// @param _cid the new content identifier
    function setCID(string memory _cid) external onlyOwner {
        cid = _cid;
    }

    // Configure the baseURI for the tokenURI method.
    function _baseURI() internal view override(WithIPFSMetaData, ERC721) returns (string memory) {
        return WithIPFSMetaData._baseURI();
    }
}

File 2 of 18 : RandomlyAssigned.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./WithLimitedSupply.sol";

/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _totalSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _totalSupply, uint256 _startFrom)
        WithLimitedSupply(_totalSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = totalSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

File 3 of 18 : WithContractMetaData.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

/// @author 1001.digital
/// @title Link to your collection's contract meta data right from within your smart contract.
abstract contract WithContractMetaData is Ownable {
    // The URI to the contract meta data.
    string private _contractURI;

    /// Instanciate the contract
    /// @param uri the URL to the contract metadata
    constructor (string memory uri) {
        _contractURI = uri;
    }

    /// Set the contract metadata URI
    /// @param uri the URI to set
    /// @dev the contract metadata should link to a metadata JSON file.
    function setContractURI(string memory uri) public virtual onlyOwner {
        _contractURI = uri;
    }

    /// Expose the contractURI
    /// @return the contract metadata URI.
    function contractURI() public view virtual returns (string memory) {
        return _contractURI;
    }

}

File 4 of 18 : WithIPFSMetaData.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/// @author 1001.digital
/// @title Handle NFT Metadata stored on IPFS
abstract contract WithIPFSMetaData is ERC721 {
    using Strings for uint256;

    /// @dev The content identifier of the folder containing all JSON files.
    string public cid;

    /// Instantiate the contract
    /// @param _cid the content identifier for the token metadata.
    /// @dev be careful & make sure your metadata is correct - you can't change this
    constructor (string memory _cid) {
        _setCID(_cid);
    }

    /// Get the tokenURI for a tokenID
    /// @param tokenId the token id for which to get the matadata URL
    /// @dev links to the metadata json file on IPFS.
    /// @return the URL to the token metadata file
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        // We don't check whether the _baseURI is set like in the OpenZeppelin implementation
        // as we're deploying the contract with the CID.
        return string(abi.encodePacked(
            _baseURI(), "/", tokenId.toString(), "/metadata.json"
        ));
    }

    /// Configure the baseURI for the tokenURI method.
    /// @dev override the standard OpenZeppelin implementation
    /// @return the IPFS base uri
    function _baseURI() internal view virtual override returns (string memory) {
        return string(abi.encodePacked("ipfs://", cid));
    }

    /// Set the content identifier for this collection.
    /// @param _cid the new content identifier
    /// @dev update the content identifier for this nft.
    function _setCID(string memory _cid) internal virtual {
        cid = _cid;
    }
}

File 5 of 18 : WithWithdrawals.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

/// @author 1001.digital
/// @title An extension that enables the contract owner to withdraw funds stored in the contract.
abstract contract WithWithdrawals is Ownable
{
    /// Withdraws the ETH stored in the contract.
    /// @dev only the owner can withdraw funds.
    function withdraw() payable onlyOwner public {
        payable(owner()).transfer(address(this).balance);
    }
}

File 6 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 8 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

File 10 of 18 : WithLimitedSupply.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Counters.sol";

/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _totalSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _totalSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return totalSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}

File 11 of 18 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 12 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 15 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 16 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 17 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"string","name":"_contractMetaDataURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"}],"name":"setCID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[],"name":"tokenCount","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600d553480156200001657600080fd5b50604051620041483803806200414883398181016040528101906200003c919062000354565b8082606460016040518060400160405280600f81526020017f54726f6e69634d696e69526163657200000000000000000000000000000000008152506040518060400160405280600a81526020017f54524f4e49434d494e49000000000000000000000000000000000000000000008152508380600181905550508160029080519060200190620000cf92919062000232565b508060039080519060200190620000e892919062000232565b5050506200010b620000ff6200014860201b60201c565b6200015060201b60201c565b80600a81905550505062000125816200021660201b60201c565b5080600c90805190602001906200013e92919062000232565b5050505062000537565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600b90805190602001906200022e92919062000232565b5050565b82805462000240906200045c565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b6000620002f9620002f384620003f0565b620003c7565b9050828152602081018484840111156200031257600080fd5b6200031f84828562000426565b509392505050565b600082601f8301126200033957600080fd5b81516200034b848260208601620002e2565b91505092915050565b600080604083850312156200036857600080fd5b600083015167ffffffffffffffff8111156200038357600080fd5b620003918582860162000327565b925050602083015167ffffffffffffffff811115620003af57600080fd5b620003bd8582860162000327565b9150509250929050565b6000620003d3620003e6565b9050620003e1828262000492565b919050565b6000604051905090565b600067ffffffffffffffff8211156200040e576200040d620004f7565b5b620004198262000526565b9050602081019050919050565b60005b838110156200044657808201518184015260208101905062000429565b8381111562000456576000848401525b50505050565b600060028204905060018216806200047557607f821691505b602082108114156200048c576200048b620004c8565b5b50919050565b6200049d8262000526565b810181811067ffffffffffffffff82111715620004bf57620004be620004f7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613c0180620005476000396000f3fe6080604052600436106101b75760003560e01c8063938e3d7b116100ec578063b88d4fde1161008a578063e14ca35311610064578063e14ca353146105b8578063e8a3d485146105e3578063e985e9c51461060e578063f2fde38b1461064b576101b7565b8063b88d4fde14610529578063c3d6ee7f14610552578063c87b56dd1461057b576101b7565b8063a0712d68116100c6578063a0712d68146104a2578063a22cb465146104be578063aa3ec0a9146104e7578063b66a0e5d14610512576101b7565b8063938e3d7b1461042357806395d89b411461044c5780639f181b5e14610477576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461036757806370a08231146103a4578063715018a6146103e15780638da5cb5b146103f8576101b7565b806342842e0e146102e8578063507e094f146103115780635c474f9e1461033c576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612752565b610674565b6040516101f09190612e0c565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b9190612e27565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906127e5565b6107e8565b6040516102589190612da5565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612716565b61086d565b005b34801561029657600080fd5b5061029f610985565b6040516102ac91906130e9565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612610565b61098f565b005b6102e66109ef565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190612610565b610abb565b005b34801561031d57600080fd5b50610326610adb565b60405161033391906130e9565b60405180910390f35b34801561034857600080fd5b50610351610ae0565b60405161035e91906130e9565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906127e5565b610ae6565b60405161039b9190612da5565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906125ab565b610b98565b6040516103d891906130e9565b60405180910390f35b3480156103ed57600080fd5b506103f6610c50565b005b34801561040457600080fd5b5061040d610cd8565b60405161041a9190612da5565b60405180910390f35b34801561042f57600080fd5b5061044a600480360381019061044591906127a4565b610d02565b005b34801561045857600080fd5b50610461610d98565b60405161046e9190612e27565b60405180910390f35b34801561048357600080fd5b5061048c610e2a565b60405161049991906130e9565b60405180910390f35b6104bc60048036038101906104b791906127e5565b610e3b565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906126da565b610f86565b005b3480156104f357600080fd5b506104fc611107565b6040516105099190612e27565b60405180910390f35b34801561051e57600080fd5b50610527611195565b005b34801561053557600080fd5b50610550600480360381019061054b919061265f565b61121b565b005b34801561055e57600080fd5b50610579600480360381019061057491906127a4565b61127d565b005b34801561058757600080fd5b506105a2600480360381019061059d91906127e5565b611313565b6040516105af9190612e27565b60405180910390f35b3480156105c457600080fd5b506105cd611325565b6040516105da91906130e9565b60405180910390f35b3480156105ef57600080fd5b506105f8611346565b6040516106059190612e27565b60405180910390f35b34801561061a57600080fd5b50610635600480360381019061063091906125d4565b6113d8565b6040516106429190612e0c565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906125ab565b61146c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611564565b5b9050919050565b60606002805461076590613366565b80601f016020809104026020016040519081016040528092919081815260200182805461079190613366565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826115ce565b610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990613009565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090613089565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090861163a565b73ffffffffffffffffffffffffffffffffffffffff16148061093757506109368161093161163a565b6113d8565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612f69565b60405180910390fd5b6109808383611642565b505050565b6000600154905090565b6109a061099a61163a565b826116fb565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906130a9565b60405180910390fd5b6109ea8383836117d9565b505050565b6109f761163a565b73ffffffffffffffffffffffffffffffffffffffff16610a15610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613029565b60405180910390fd5b610a73610cd8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ab8573d6000803e3d6000fd5b50565b610ad68383836040518060200160405280600081525061121b565b505050565b600281565b600d5481565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612fa9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090612f89565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5861163a565b73ffffffffffffffffffffffffffffffffffffffff16610c76610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613029565b60405180910390fd5b610cd66000611a35565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d0a61163a565b73ffffffffffffffffffffffffffffffffffffffff16610d28610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613029565b60405180910390fd5b80600c9080519060200190610d949291906123cf565b5050565b606060038054610da790613366565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd390613366565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b6000610e366000611afb565b905090565b8080610e45611325565b1015610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90612ec9565b60405180910390fd5b6001600d5414610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906130c9565b60405180910390fd5b6002821115610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690612e89565b60405180910390fd5b60008211610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990612fc9565b60405180910390fd5b60005b82811015610f8157610f6e33610f69611b09565b611c97565b8080610f79906133c9565b915050610f55565b505050565b610f8e61163a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390612f09565b60405180910390fd5b806007600061100961163a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110b661163a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110fb9190612e0c565b60405180910390a35050565b600b805461111490613366565b80601f016020809104026020016040519081016040528092919081815260200182805461114090613366565b801561118d5780601f106111625761010080835404028352916020019161118d565b820191906000526020600020905b81548152906001019060200180831161117057829003601f168201915b505050505081565b61119d61163a565b73ffffffffffffffffffffffffffffffffffffffff166111bb610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890613029565b60405180910390fd5b6001600d81905550565b61122c61122661163a565b836116fb565b61126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611262906130a9565b60405180910390fd5b61127784848484611cb5565b50505050565b61128561163a565b73ffffffffffffffffffffffffffffffffffffffff166112a3610cd8565b73ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613029565b60405180910390fd5b80600b908051906020019061130f9291906123cf565b5050565b606061131e82611d11565b9050919050565b600061132f610e2a565b611337610985565b611341919061326a565b905090565b6060600c805461135590613366565b80601f016020809104026020016040519081016040528092919081815260200182805461138190613366565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147461163a565b73ffffffffffffffffffffffffffffffffffffffff16611492610cd8565b73ffffffffffffffffffffffffffffffffffffffff16146114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613029565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90612e69565b60405180910390fd5b61156181611a35565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116b583610ae6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611706826115ce565b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90612f49565b60405180910390fd5b600061175083610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117bf57508373ffffffffffffffffffffffffffffffffffffffff166117a7846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806117d057506117cf81856113d8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117f982610ae6565b73ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690613049565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690612ee9565b60405180910390fd5b6118ca838383611d93565b6118d5600082611642565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611925919061326a565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197c91906131e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600080611b14611325565b11611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90612f29565b60405180910390fd5b6000611b5e610e2a565b611b66610985565b611b70919061326a565b90506000813341444542604051602001611b8e959493929190612cea565b6040516020818303038152906040528051906020012060001c611bb19190613452565b905060008060096000848152602001908152602001600020541415611bd857819050611bef565b600960008381526020019081526020016000205490505b600060096000600186611c02919061326a565b8152602001908152602001600020541415611c4057600183611c24919061326a565b6009600084815260200190815260200160002081905550611c78565b60096000600185611c51919061326a565b81526020019081526020016000205460096000848152602001908152602001600020819055505b611c80611d98565b50600a5481611c8f91906131e3565b935050505090565b611cb1828260405180602001604052806000815250611e02565b5050565b611cc08484846117d9565b611ccc84848484611e5d565b611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290612e49565b60405180910390fd5b50505050565b6060611d1c826115ce565b611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613069565b60405180910390fd5b611d63611ff4565b611d6c83612003565b604051602001611d7d929190612d49565b6040516020818303038152906040529050919050565b505050565b600080611da3611325565b11611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda90612f29565b60405180910390fd5b6000611def6000611afb565b9050611dfb60006121b0565b8091505090565b611e0c83836121c6565b611e196000848484611e5d565b611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90612e49565b60405180910390fd5b505050565b6000611e7e8473ffffffffffffffffffffffffffffffffffffffff16612394565b15611fe7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea761163a565b8786866040518563ffffffff1660e01b8152600401611ec99493929190612dc0565b602060405180830381600087803b158015611ee357600080fd5b505af1925050508015611f1457506040513d601f19601f82011682018060405250810190611f11919061277b565b60015b611f97573d8060008114611f44576040519150601f19603f3d011682016040523d82523d6000602084013e611f49565b606091505b50600081511415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690612e49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fec565b600190505b949350505050565b6060611ffe6123a7565b905090565b6060600082141561204b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ab565b600082905060005b6000821461207d578080612066906133c9565b915050600a826120769190613239565b9150612053565b60008167ffffffffffffffff8111156120bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120f15781602001600182028036833780820191505090505b5090505b600085146121a45760018261210a919061326a565b9150600a856121199190613452565b603061212591906131e3565b60f81b818381518110612161577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219d9190613239565b94506120f5565b8093505050505b919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90612fe9565b60405180910390fd5b61223f816115ce565b1561227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690612ea9565b60405180910390fd5b61228b60008383611d93565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122db91906131e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600b6040516020016123bb9190612d83565b604051602081830303815290604052905090565b8280546123db90613366565b90600052602060002090601f0160209004810192826123fd5760008555612444565b82601f1061241657805160ff1916838001178555612444565b82800160010185558215612444579182015b82811115612443578251825591602001919060010190612428565b5b5090506124519190612455565b5090565b5b8082111561246e576000816000905550600101612456565b5090565b600061248561248084613129565b613104565b90508281526020810184848401111561249d57600080fd5b6124a8848285613324565b509392505050565b60006124c36124be8461315a565b613104565b9050828152602081018484840111156124db57600080fd5b6124e6848285613324565b509392505050565b6000813590506124fd81613b6f565b92915050565b60008135905061251281613b86565b92915050565b60008135905061252781613b9d565b92915050565b60008151905061253c81613b9d565b92915050565b600082601f83011261255357600080fd5b8135612563848260208601612472565b91505092915050565b600082601f83011261257d57600080fd5b813561258d8482602086016124b0565b91505092915050565b6000813590506125a581613bb4565b92915050565b6000602082840312156125bd57600080fd5b60006125cb848285016124ee565b91505092915050565b600080604083850312156125e757600080fd5b60006125f5858286016124ee565b9250506020612606858286016124ee565b9150509250929050565b60008060006060848603121561262557600080fd5b6000612633868287016124ee565b9350506020612644868287016124ee565b925050604061265586828701612596565b9150509250925092565b6000806000806080858703121561267557600080fd5b6000612683878288016124ee565b9450506020612694878288016124ee565b93505060406126a587828801612596565b925050606085013567ffffffffffffffff8111156126c257600080fd5b6126ce87828801612542565b91505092959194509250565b600080604083850312156126ed57600080fd5b60006126fb858286016124ee565b925050602061270c85828601612503565b9150509250929050565b6000806040838503121561272957600080fd5b6000612737858286016124ee565b925050602061274885828601612596565b9150509250929050565b60006020828403121561276457600080fd5b600061277284828501612518565b91505092915050565b60006020828403121561278d57600080fd5b600061279b8482850161252d565b91505092915050565b6000602082840312156127b657600080fd5b600082013567ffffffffffffffff8111156127d057600080fd5b6127dc8482850161256c565b91505092915050565b6000602082840312156127f757600080fd5b600061280584828501612596565b91505092915050565b61281f61281a826132b0565b613424565b82525050565b61282e8161329e565b82525050565b6128456128408261329e565b613412565b82525050565b612854816132c2565b82525050565b6000612865826131a0565b61286f81856131b6565b935061287f818560208601613333565b6128888161353f565b840191505092915050565b600061289e826131ab565b6128a881856131c7565b93506128b8818560208601613333565b6128c18161353f565b840191505092915050565b60006128d7826131ab565b6128e181856131d8565b93506128f1818560208601613333565b80840191505092915050565b6000815461290a81613366565b61291481866131d8565b9450600182166000811461292f576001811461294057612973565b60ff19831686528186019350612973565b6129498561318b565b60005b8381101561296b5781548189015260018201915060208101905061294c565b838801955050505b50505092915050565b60006129896032836131c7565b91506129948261355d565b604082019050919050565b60006129ac6026836131c7565b91506129b7826135ac565b604082019050919050565b60006129cf6024836131c7565b91506129da826135fb565b604082019050919050565b60006129f2601c836131c7565b91506129fd8261364a565b602082019050919050565b6000612a15600e836131d8565b9150612a2082613673565b600e82019050919050565b6000612a386028836131c7565b9150612a438261369c565b604082019050919050565b6000612a5b6024836131c7565b9150612a66826136eb565b604082019050919050565b6000612a7e6019836131c7565b9150612a898261373a565b602082019050919050565b6000612aa16018836131c7565b9150612aac82613763565b602082019050919050565b6000612ac4602c836131c7565b9150612acf8261378c565b604082019050919050565b6000612ae76007836131d8565b9150612af2826137db565b600782019050919050565b6000612b0a6038836131c7565b9150612b1582613804565b604082019050919050565b6000612b2d602a836131c7565b9150612b3882613853565b604082019050919050565b6000612b506029836131c7565b9150612b5b826138a2565b604082019050919050565b6000612b736021836131c7565b9150612b7e826138f1565b604082019050919050565b6000612b966020836131c7565b9150612ba182613940565b602082019050919050565b6000612bb9602c836131c7565b9150612bc482613969565b604082019050919050565b6000612bdc6020836131c7565b9150612be7826139b8565b602082019050919050565b6000612bff6029836131c7565b9150612c0a826139e1565b604082019050919050565b6000612c22602f836131c7565b9150612c2d82613a30565b604082019050919050565b6000612c456021836131c7565b9150612c5082613a7f565b604082019050919050565b6000612c686031836131c7565b9150612c7382613ace565b604082019050919050565b6000612c8b6014836131c7565b9150612c9682613b1d565b602082019050919050565b6000612cae6001836131d8565b9150612cb982613b46565b600182019050919050565b612ccd8161331a565b82525050565b612ce4612cdf8261331a565b613448565b82525050565b6000612cf68288612834565b601482019150612d06828761280e565b601482019150612d168286612cd3565b602082019150612d268285612cd3565b602082019150612d368284612cd3565b6020820191508190509695505050505050565b6000612d5582856128cc565b9150612d6082612ca1565b9150612d6c82846128cc565b9150612d7782612a08565b91508190509392505050565b6000612d8e82612ada565b9150612d9a82846128fd565b915081905092915050565b6000602082019050612dba6000830184612825565b92915050565b6000608082019050612dd56000830187612825565b612de26020830186612825565b612def6040830185612cc4565b8181036060830152612e01818461285a565b905095945050505050565b6000602082019050612e21600083018461284b565b92915050565b60006020820190508181036000830152612e418184612893565b905092915050565b60006020820190508181036000830152612e628161297c565b9050919050565b60006020820190508181036000830152612e828161299f565b9050919050565b60006020820190508181036000830152612ea2816129c2565b9050919050565b60006020820190508181036000830152612ec2816129e5565b9050919050565b60006020820190508181036000830152612ee281612a2b565b9050919050565b60006020820190508181036000830152612f0281612a4e565b9050919050565b60006020820190508181036000830152612f2281612a71565b9050919050565b60006020820190508181036000830152612f4281612a94565b9050919050565b60006020820190508181036000830152612f6281612ab7565b9050919050565b60006020820190508181036000830152612f8281612afd565b9050919050565b60006020820190508181036000830152612fa281612b20565b9050919050565b60006020820190508181036000830152612fc281612b43565b9050919050565b60006020820190508181036000830152612fe281612b66565b9050919050565b6000602082019050818103600083015261300281612b89565b9050919050565b6000602082019050818103600083015261302281612bac565b9050919050565b6000602082019050818103600083015261304281612bcf565b9050919050565b6000602082019050818103600083015261306281612bf2565b9050919050565b6000602082019050818103600083015261308281612c15565b9050919050565b600060208201905081810360008301526130a281612c38565b9050919050565b600060208201905081810360008301526130c281612c5b565b9050919050565b600060208201905081810360008301526130e281612c7e565b9050919050565b60006020820190506130fe6000830184612cc4565b92915050565b600061310e61311f565b905061311a8282613398565b919050565b6000604051905090565b600067ffffffffffffffff82111561314457613143613510565b5b61314d8261353f565b9050602081019050919050565b600067ffffffffffffffff82111561317557613174613510565b5b61317e8261353f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ee8261331a565b91506131f98361331a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322e5761322d613483565b5b828201905092915050565b60006132448261331a565b915061324f8361331a565b92508261325f5761325e6134b2565b5b828204905092915050565b60006132758261331a565b91506132808361331a565b92508282101561329357613292613483565b5b828203905092915050565b60006132a9826132fa565b9050919050565b60006132bb826132fa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613351578082015181840152602081019050613336565b83811115613360576000848401525b50505050565b6000600282049050600182168061337e57607f821691505b60208210811415613392576133916134e1565b5b50919050565b6133a18261353f565b810181811067ffffffffffffffff821117156133c0576133bf613510565b5b80604052505050565b60006133d48261331a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561340757613406613483565b5b600182019050919050565b600061341d82613436565b9050919050565b600061342f82613436565b9050919050565b600061344182613550565b9050919050565b6000819050919050565b600061345d8261331a565b91506134688361331a565b925082613478576134776134b2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203220746f6b656e7320617420612060008201527f74696d6500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f2f6d657461646174612e6a736f6e000000000000000000000000000000000000600082015250565b7f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160008201527f7661696c61626c65000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f206d696e74206174206c65617374203120746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613b788161329e565b8114613b8357600080fd5b50565b613b8f816132c2565b8114613b9a57600080fd5b50565b613ba6816132ce565b8114613bb157600080fd5b50565b613bbd8161331a565b8114613bc857600080fd5b5056fea26469706673582212208ced11370bf6d917b15f572d5dc653c2f94bc8d68f450b7366f5f7c1024c242164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002e516d4e587535456b3739557163687066535a76576f7a64777a764c52624155566664535757384c61616836723768000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c68747470733a2f2f74726f6e6963726163696e672e78797a2f636f6e7472616374732f6d696e692d7261636572732f6d657461646174612e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063938e3d7b116100ec578063b88d4fde1161008a578063e14ca35311610064578063e14ca353146105b8578063e8a3d485146105e3578063e985e9c51461060e578063f2fde38b1461064b576101b7565b8063b88d4fde14610529578063c3d6ee7f14610552578063c87b56dd1461057b576101b7565b8063a0712d68116100c6578063a0712d68146104a2578063a22cb465146104be578063aa3ec0a9146104e7578063b66a0e5d14610512576101b7565b8063938e3d7b1461042357806395d89b411461044c5780639f181b5e14610477576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461036757806370a08231146103a4578063715018a6146103e15780638da5cb5b146103f8576101b7565b806342842e0e146102e8578063507e094f146103115780635c474f9e1461033c576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612752565b610674565b6040516101f09190612e0c565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b9190612e27565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906127e5565b6107e8565b6040516102589190612da5565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612716565b61086d565b005b34801561029657600080fd5b5061029f610985565b6040516102ac91906130e9565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612610565b61098f565b005b6102e66109ef565b005b3480156102f457600080fd5b5061030f600480360381019061030a9190612610565b610abb565b005b34801561031d57600080fd5b50610326610adb565b60405161033391906130e9565b60405180910390f35b34801561034857600080fd5b50610351610ae0565b60405161035e91906130e9565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906127e5565b610ae6565b60405161039b9190612da5565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906125ab565b610b98565b6040516103d891906130e9565b60405180910390f35b3480156103ed57600080fd5b506103f6610c50565b005b34801561040457600080fd5b5061040d610cd8565b60405161041a9190612da5565b60405180910390f35b34801561042f57600080fd5b5061044a600480360381019061044591906127a4565b610d02565b005b34801561045857600080fd5b50610461610d98565b60405161046e9190612e27565b60405180910390f35b34801561048357600080fd5b5061048c610e2a565b60405161049991906130e9565b60405180910390f35b6104bc60048036038101906104b791906127e5565b610e3b565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906126da565b610f86565b005b3480156104f357600080fd5b506104fc611107565b6040516105099190612e27565b60405180910390f35b34801561051e57600080fd5b50610527611195565b005b34801561053557600080fd5b50610550600480360381019061054b919061265f565b61121b565b005b34801561055e57600080fd5b50610579600480360381019061057491906127a4565b61127d565b005b34801561058757600080fd5b506105a2600480360381019061059d91906127e5565b611313565b6040516105af9190612e27565b60405180910390f35b3480156105c457600080fd5b506105cd611325565b6040516105da91906130e9565b60405180910390f35b3480156105ef57600080fd5b506105f8611346565b6040516106059190612e27565b60405180910390f35b34801561061a57600080fd5b50610635600480360381019061063091906125d4565b6113d8565b6040516106429190612e0c565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906125ab565b61146c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611564565b5b9050919050565b60606002805461076590613366565b80601f016020809104026020016040519081016040528092919081815260200182805461079190613366565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826115ce565b610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990613009565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090613089565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090861163a565b73ffffffffffffffffffffffffffffffffffffffff16148061093757506109368161093161163a565b6113d8565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612f69565b60405180910390fd5b6109808383611642565b505050565b6000600154905090565b6109a061099a61163a565b826116fb565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906130a9565b60405180910390fd5b6109ea8383836117d9565b505050565b6109f761163a565b73ffffffffffffffffffffffffffffffffffffffff16610a15610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613029565b60405180910390fd5b610a73610cd8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ab8573d6000803e3d6000fd5b50565b610ad68383836040518060200160405280600081525061121b565b505050565b600281565b600d5481565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612fa9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090612f89565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5861163a565b73ffffffffffffffffffffffffffffffffffffffff16610c76610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613029565b60405180910390fd5b610cd66000611a35565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d0a61163a565b73ffffffffffffffffffffffffffffffffffffffff16610d28610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613029565b60405180910390fd5b80600c9080519060200190610d949291906123cf565b5050565b606060038054610da790613366565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd390613366565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b6000610e366000611afb565b905090565b8080610e45611325565b1015610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90612ec9565b60405180910390fd5b6001600d5414610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906130c9565b60405180910390fd5b6002821115610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690612e89565b60405180910390fd5b60008211610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990612fc9565b60405180910390fd5b60005b82811015610f8157610f6e33610f69611b09565b611c97565b8080610f79906133c9565b915050610f55565b505050565b610f8e61163a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390612f09565b60405180910390fd5b806007600061100961163a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110b661163a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110fb9190612e0c565b60405180910390a35050565b600b805461111490613366565b80601f016020809104026020016040519081016040528092919081815260200182805461114090613366565b801561118d5780601f106111625761010080835404028352916020019161118d565b820191906000526020600020905b81548152906001019060200180831161117057829003601f168201915b505050505081565b61119d61163a565b73ffffffffffffffffffffffffffffffffffffffff166111bb610cd8565b73ffffffffffffffffffffffffffffffffffffffff1614611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890613029565b60405180910390fd5b6001600d81905550565b61122c61122661163a565b836116fb565b61126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611262906130a9565b60405180910390fd5b61127784848484611cb5565b50505050565b61128561163a565b73ffffffffffffffffffffffffffffffffffffffff166112a3610cd8565b73ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613029565b60405180910390fd5b80600b908051906020019061130f9291906123cf565b5050565b606061131e82611d11565b9050919050565b600061132f610e2a565b611337610985565b611341919061326a565b905090565b6060600c805461135590613366565b80601f016020809104026020016040519081016040528092919081815260200182805461138190613366565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147461163a565b73ffffffffffffffffffffffffffffffffffffffff16611492610cd8565b73ffffffffffffffffffffffffffffffffffffffff16146114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613029565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90612e69565b60405180910390fd5b61156181611a35565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116b583610ae6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611706826115ce565b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90612f49565b60405180910390fd5b600061175083610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117bf57508373ffffffffffffffffffffffffffffffffffffffff166117a7846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806117d057506117cf81856113d8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117f982610ae6565b73ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690613049565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690612ee9565b60405180910390fd5b6118ca838383611d93565b6118d5600082611642565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611925919061326a565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197c91906131e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600080611b14611325565b11611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90612f29565b60405180910390fd5b6000611b5e610e2a565b611b66610985565b611b70919061326a565b90506000813341444542604051602001611b8e959493929190612cea565b6040516020818303038152906040528051906020012060001c611bb19190613452565b905060008060096000848152602001908152602001600020541415611bd857819050611bef565b600960008381526020019081526020016000205490505b600060096000600186611c02919061326a565b8152602001908152602001600020541415611c4057600183611c24919061326a565b6009600084815260200190815260200160002081905550611c78565b60096000600185611c51919061326a565b81526020019081526020016000205460096000848152602001908152602001600020819055505b611c80611d98565b50600a5481611c8f91906131e3565b935050505090565b611cb1828260405180602001604052806000815250611e02565b5050565b611cc08484846117d9565b611ccc84848484611e5d565b611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290612e49565b60405180910390fd5b50505050565b6060611d1c826115ce565b611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613069565b60405180910390fd5b611d63611ff4565b611d6c83612003565b604051602001611d7d929190612d49565b6040516020818303038152906040529050919050565b505050565b600080611da3611325565b11611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda90612f29565b60405180910390fd5b6000611def6000611afb565b9050611dfb60006121b0565b8091505090565b611e0c83836121c6565b611e196000848484611e5d565b611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90612e49565b60405180910390fd5b505050565b6000611e7e8473ffffffffffffffffffffffffffffffffffffffff16612394565b15611fe7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea761163a565b8786866040518563ffffffff1660e01b8152600401611ec99493929190612dc0565b602060405180830381600087803b158015611ee357600080fd5b505af1925050508015611f1457506040513d601f19601f82011682018060405250810190611f11919061277b565b60015b611f97573d8060008114611f44576040519150601f19603f3d011682016040523d82523d6000602084013e611f49565b606091505b50600081511415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690612e49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fec565b600190505b949350505050565b6060611ffe6123a7565b905090565b6060600082141561204b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ab565b600082905060005b6000821461207d578080612066906133c9565b915050600a826120769190613239565b9150612053565b60008167ffffffffffffffff8111156120bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120f15781602001600182028036833780820191505090505b5090505b600085146121a45760018261210a919061326a565b9150600a856121199190613452565b603061212591906131e3565b60f81b818381518110612161577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219d9190613239565b94506120f5565b8093505050505b919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90612fe9565b60405180910390fd5b61223f816115ce565b1561227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227690612ea9565b60405180910390fd5b61228b60008383611d93565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122db91906131e3565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600b6040516020016123bb9190612d83565b604051602081830303815290604052905090565b8280546123db90613366565b90600052602060002090601f0160209004810192826123fd5760008555612444565b82601f1061241657805160ff1916838001178555612444565b82800160010185558215612444579182015b82811115612443578251825591602001919060010190612428565b5b5090506124519190612455565b5090565b5b8082111561246e576000816000905550600101612456565b5090565b600061248561248084613129565b613104565b90508281526020810184848401111561249d57600080fd5b6124a8848285613324565b509392505050565b60006124c36124be8461315a565b613104565b9050828152602081018484840111156124db57600080fd5b6124e6848285613324565b509392505050565b6000813590506124fd81613b6f565b92915050565b60008135905061251281613b86565b92915050565b60008135905061252781613b9d565b92915050565b60008151905061253c81613b9d565b92915050565b600082601f83011261255357600080fd5b8135612563848260208601612472565b91505092915050565b600082601f83011261257d57600080fd5b813561258d8482602086016124b0565b91505092915050565b6000813590506125a581613bb4565b92915050565b6000602082840312156125bd57600080fd5b60006125cb848285016124ee565b91505092915050565b600080604083850312156125e757600080fd5b60006125f5858286016124ee565b9250506020612606858286016124ee565b9150509250929050565b60008060006060848603121561262557600080fd5b6000612633868287016124ee565b9350506020612644868287016124ee565b925050604061265586828701612596565b9150509250925092565b6000806000806080858703121561267557600080fd5b6000612683878288016124ee565b9450506020612694878288016124ee565b93505060406126a587828801612596565b925050606085013567ffffffffffffffff8111156126c257600080fd5b6126ce87828801612542565b91505092959194509250565b600080604083850312156126ed57600080fd5b60006126fb858286016124ee565b925050602061270c85828601612503565b9150509250929050565b6000806040838503121561272957600080fd5b6000612737858286016124ee565b925050602061274885828601612596565b9150509250929050565b60006020828403121561276457600080fd5b600061277284828501612518565b91505092915050565b60006020828403121561278d57600080fd5b600061279b8482850161252d565b91505092915050565b6000602082840312156127b657600080fd5b600082013567ffffffffffffffff8111156127d057600080fd5b6127dc8482850161256c565b91505092915050565b6000602082840312156127f757600080fd5b600061280584828501612596565b91505092915050565b61281f61281a826132b0565b613424565b82525050565b61282e8161329e565b82525050565b6128456128408261329e565b613412565b82525050565b612854816132c2565b82525050565b6000612865826131a0565b61286f81856131b6565b935061287f818560208601613333565b6128888161353f565b840191505092915050565b600061289e826131ab565b6128a881856131c7565b93506128b8818560208601613333565b6128c18161353f565b840191505092915050565b60006128d7826131ab565b6128e181856131d8565b93506128f1818560208601613333565b80840191505092915050565b6000815461290a81613366565b61291481866131d8565b9450600182166000811461292f576001811461294057612973565b60ff19831686528186019350612973565b6129498561318b565b60005b8381101561296b5781548189015260018201915060208101905061294c565b838801955050505b50505092915050565b60006129896032836131c7565b91506129948261355d565b604082019050919050565b60006129ac6026836131c7565b91506129b7826135ac565b604082019050919050565b60006129cf6024836131c7565b91506129da826135fb565b604082019050919050565b60006129f2601c836131c7565b91506129fd8261364a565b602082019050919050565b6000612a15600e836131d8565b9150612a2082613673565b600e82019050919050565b6000612a386028836131c7565b9150612a438261369c565b604082019050919050565b6000612a5b6024836131c7565b9150612a66826136eb565b604082019050919050565b6000612a7e6019836131c7565b9150612a898261373a565b602082019050919050565b6000612aa16018836131c7565b9150612aac82613763565b602082019050919050565b6000612ac4602c836131c7565b9150612acf8261378c565b604082019050919050565b6000612ae76007836131d8565b9150612af2826137db565b600782019050919050565b6000612b0a6038836131c7565b9150612b1582613804565b604082019050919050565b6000612b2d602a836131c7565b9150612b3882613853565b604082019050919050565b6000612b506029836131c7565b9150612b5b826138a2565b604082019050919050565b6000612b736021836131c7565b9150612b7e826138f1565b604082019050919050565b6000612b966020836131c7565b9150612ba182613940565b602082019050919050565b6000612bb9602c836131c7565b9150612bc482613969565b604082019050919050565b6000612bdc6020836131c7565b9150612be7826139b8565b602082019050919050565b6000612bff6029836131c7565b9150612c0a826139e1565b604082019050919050565b6000612c22602f836131c7565b9150612c2d82613a30565b604082019050919050565b6000612c456021836131c7565b9150612c5082613a7f565b604082019050919050565b6000612c686031836131c7565b9150612c7382613ace565b604082019050919050565b6000612c8b6014836131c7565b9150612c9682613b1d565b602082019050919050565b6000612cae6001836131d8565b9150612cb982613b46565b600182019050919050565b612ccd8161331a565b82525050565b612ce4612cdf8261331a565b613448565b82525050565b6000612cf68288612834565b601482019150612d06828761280e565b601482019150612d168286612cd3565b602082019150612d268285612cd3565b602082019150612d368284612cd3565b6020820191508190509695505050505050565b6000612d5582856128cc565b9150612d6082612ca1565b9150612d6c82846128cc565b9150612d7782612a08565b91508190509392505050565b6000612d8e82612ada565b9150612d9a82846128fd565b915081905092915050565b6000602082019050612dba6000830184612825565b92915050565b6000608082019050612dd56000830187612825565b612de26020830186612825565b612def6040830185612cc4565b8181036060830152612e01818461285a565b905095945050505050565b6000602082019050612e21600083018461284b565b92915050565b60006020820190508181036000830152612e418184612893565b905092915050565b60006020820190508181036000830152612e628161297c565b9050919050565b60006020820190508181036000830152612e828161299f565b9050919050565b60006020820190508181036000830152612ea2816129c2565b9050919050565b60006020820190508181036000830152612ec2816129e5565b9050919050565b60006020820190508181036000830152612ee281612a2b565b9050919050565b60006020820190508181036000830152612f0281612a4e565b9050919050565b60006020820190508181036000830152612f2281612a71565b9050919050565b60006020820190508181036000830152612f4281612a94565b9050919050565b60006020820190508181036000830152612f6281612ab7565b9050919050565b60006020820190508181036000830152612f8281612afd565b9050919050565b60006020820190508181036000830152612fa281612b20565b9050919050565b60006020820190508181036000830152612fc281612b43565b9050919050565b60006020820190508181036000830152612fe281612b66565b9050919050565b6000602082019050818103600083015261300281612b89565b9050919050565b6000602082019050818103600083015261302281612bac565b9050919050565b6000602082019050818103600083015261304281612bcf565b9050919050565b6000602082019050818103600083015261306281612bf2565b9050919050565b6000602082019050818103600083015261308281612c15565b9050919050565b600060208201905081810360008301526130a281612c38565b9050919050565b600060208201905081810360008301526130c281612c5b565b9050919050565b600060208201905081810360008301526130e281612c7e565b9050919050565b60006020820190506130fe6000830184612cc4565b92915050565b600061310e61311f565b905061311a8282613398565b919050565b6000604051905090565b600067ffffffffffffffff82111561314457613143613510565b5b61314d8261353f565b9050602081019050919050565b600067ffffffffffffffff82111561317557613174613510565b5b61317e8261353f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131ee8261331a565b91506131f98361331a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561322e5761322d613483565b5b828201905092915050565b60006132448261331a565b915061324f8361331a565b92508261325f5761325e6134b2565b5b828204905092915050565b60006132758261331a565b91506132808361331a565b92508282101561329357613292613483565b5b828203905092915050565b60006132a9826132fa565b9050919050565b60006132bb826132fa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613351578082015181840152602081019050613336565b83811115613360576000848401525b50505050565b6000600282049050600182168061337e57607f821691505b60208210811415613392576133916134e1565b5b50919050565b6133a18261353f565b810181811067ffffffffffffffff821117156133c0576133bf613510565b5b80604052505050565b60006133d48261331a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561340757613406613483565b5b600182019050919050565b600061341d82613436565b9050919050565b600061342f82613436565b9050919050565b600061344182613550565b9050919050565b6000819050919050565b600061345d8261331a565b91506134688361331a565b925082613478576134776134b2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74203220746f6b656e7320617420612060008201527f74696d6500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f2f6d657461646174612e6a736f6e000000000000000000000000000000000000600082015250565b7f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160008201527f7661696c61626c65000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f206d696e74206174206c65617374203120746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613b788161329e565b8114613b8357600080fd5b50565b613b8f816132c2565b8114613b9a57600080fd5b50565b613ba6816132ce565b8114613bb157600080fd5b50565b613bbd8161331a565b8114613bc857600080fd5b5056fea26469706673582212208ced11370bf6d917b15f572d5dc653c2f94bc8d68f450b7366f5f7c1024c242164736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002e516d4e587535456b3739557163687066535a76576f7a64777a764c52624155566664535757384c61616836723768000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c68747470733a2f2f74726f6e6963726163696e672e78797a2f636f6e7472616374732f6d696e692d7261636572732f6d657461646174612e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _cid (string): QmNXu5Ek79UqchpfSZvWozdwzvLRbAUVfdSWW8Laah6r7h
Arg [1] : _contractMetaDataURI (string): https://tronicracing.xyz/contracts/mini-racers/metadata.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [3] : 516d4e587535456b3739557163687066535a76576f7a64777a764c5262415556
Arg [4] : 6664535757384c61616836723768000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [6] : 68747470733a2f2f74726f6e6963726163696e672e78797a2f636f6e74726163
Arg [7] : 74732f6d696e692d7261636572732f6d657461646174612e6a736f6e00000000


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.