ETH Price: $3,176.64 (+1.38%)
Gas: 5 Gwei

Token

Charcuterie (BOARD)
 

Overview

Max Total Supply

0 BOARD

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sempiternal.eth
Balance
2 BOARD
0x0c9d1a86bb304518d6718895dfcd006186e936bf
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Charcuterie

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Charcuterie.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Charcuterie is ERC721, Ownable, AccessControl {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    bytes32 public constant WHITE_LIST_ROLE = keccak256("WHITE_LIST_ROLE");

    uint256 public constant unit_cost = 0.059 ether; // cost of one charcuterie
    uint256 public constant max_supply = 6200; // amount of tokens to public

    uint256 public transaction_limit = 25; // mint limit per transaction

    uint256 public reserved = 200; // reserved for team/marketing

    bool public paused_sale = true;
    bool public paused_pre_sale = true;
    string private _baseTokenURI =
        "ipfs://QmXWD3zUoUCVK1c4xL862XHz6Gnqz5hsdhgg4T5MQgfqcY/";
    address public poe_address = 0x5945bAF9272e0808165aDea61b932eC1604FB161;

    address private constant deposit =
        0xaD2Dca2E9Ff750d51b3f31Ca13343763C67C3BCe;

    modifier saleNotPaused() {
        require(!paused_sale, "Charcuterie: mint is paused");
        _;
    }

    modifier preSaleNotPaused() {
        require(!paused_pre_sale, "Charcuterie: pre sale is paused");
        _;
    }

    modifier preSaleAllowedAccount() {
        require(
            hasRole(WHITE_LIST_ROLE, msg.sender) ||
                IERC20(poe_address).balanceOf(msg.sender) == 1,
            "Charcuterie: account is not allowed to pre mint"
        );
        _;
    }

    constructor(string memory _name, string memory _symbol)
        ERC721(_name, _symbol)
    {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    fallback() external payable {}

    receive() external payable {}

    function toggleSale() public onlyRole(DEFAULT_ADMIN_ROLE) {
        paused_sale = !paused_sale;
    }

    function togglePreSale() public onlyRole(DEFAULT_ADMIN_ROLE) {
        paused_pre_sale = !paused_pre_sale;
    }

    function mint(uint256 num) public payable saleNotPaused {
        require(
            _tokenSupply.current() + num <= max_supply - reserved,
            "Charcuterie: Exceeds max supply"
        );
        require(
            msg.value >= unit_cost * num,
            "Charcuterie: Ether sent is less than unit_cost * num"
        );
        for (uint256 i = 0; i < num; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, _tokenSupply.current());
        }
    }

    function preMint(uint256 num)
        public
        payable
        preSaleNotPaused
        preSaleAllowedAccount
    {
        require(
            _tokenSupply.current() + num <= max_supply - reserved,
            "Charcuterie: Exceeds max supply"
        );
        require(
            num <= transaction_limit,
            "Charcuterie: Exceeds transaction limit"
        );
        require(
            msg.value >= unit_cost * num,
            "Charcuterie: Ether sent is less than unit_cost * num"
        );
        for (uint256 i = 0; i < num; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, _tokenSupply.current());
        }
    }

    function adminMint(uint256 num) public onlyRole(DEFAULT_ADMIN_ROLE) {
        require(num <= reserved, "Charcuterie: Exceeds reserved supply");
        for (uint256 i = 0; i < num; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, _tokenSupply.current());
        }
        reserved = reserved - num;
    }

    function batchWhitelist(address[] calldata _addresses)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            grantRole(WHITE_LIST_ROLE, _addresses[i]);
        }
    }

    function setBaseURI(string memory baseURI)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        _baseTokenURI = baseURI;
    }

    function setPOEAddress(address _poe_address)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        poe_address = _poe_address;
    }

    function withdraw() public onlyOwner {
        payable(deposit).transfer(address(this).balance);
    }

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

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

    function tokensMinted() public view returns (uint256) {
        return _tokenSupply.current();
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function getBaseURI() public view returns (string memory) {
        return _baseTokenURI;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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 5 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 16 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITE_LIST_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","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":"paused_pre_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poe_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_poe_address","type":"address"}],"name":"setPOEAddress","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":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transaction_limit","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":"unit_cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

601960095560c8600a55600b805461ffff191661010117905560e0604052603660808181529062002b9260a03980516200004291600c9160209091019062000204565b50600d80546001600160a01b031916735945baf9272e0808165adea61b932ec1604fb1611790553480156200007657600080fd5b5060405162002bc838038062002bc8833981016040819052620000999162000361565b815182908290620000b290600090602085019062000204565b508051620000c890600190602084019062000204565b505050620000e5620000df620000fa60201b60201c565b620000fe565b620000f260003362000150565b50506200041e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015c828262000160565b5050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff166200015c5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001c03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200021290620003cb565b90600052602060002090601f01602090048101928262000236576000855562000281565b82601f106200025157805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028157825182559160200191906001019062000264565b506200028f92915062000293565b5090565b5b808211156200028f576000815560010162000294565b600082601f830112620002bc57600080fd5b81516001600160401b0380821115620002d957620002d962000408565b604051601f8301601f19908116603f0116810190828211818310171562000304576200030462000408565b816040528381526020925086838588010111156200032157600080fd5b600091505b8382101562000345578582018301518183018401529082019062000326565b83821115620003575760008385830101525b9695505050505050565b600080604083850312156200037557600080fd5b82516001600160401b03808211156200038d57600080fd5b6200039b86838701620002aa565b93506020850151915080821115620003b257600080fd5b50620003c185828601620002aa565b9150509250929050565b600181811c90821680620003e057607f821691505b602082108114156200040257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612764806200042e6000396000f3fe6080604052600436106102315760003560e01c80637d8966e41161012d578063a22cb465116100b0578063ca3cb52211610077578063ca3cb52214610678578063d547741f1461068d578063e3f8b476146106ad578063e985e9c5146106c7578063f2fde38b14610710578063fe60d12c1461073057005b8063a22cb465146105c4578063b88d4fde146105e4578063c1f2612314610604578063c50a557c14610624578063c87b56dd1461065857005b8063938eef51116100f4578063938eef511461055657806395d89b411461056c5780639d186abb14610581578063a0712d681461059c578063a217fddf146105af57005b80637d8966e4146104da5780638a333b50146104ef5780638ad433ac146105055780638da5cb5b1461051857806391d148541461053657005b806339ee0661116101b55780636352211e1161017c5780636352211e1461045b5780636de9f32b1461047b57806370a0823114610490578063714c5398146104b0578063715018a6146104c557005b806339ee0661146103c65780633ccfd60b146103e657806342842e0e146103fb57806355f804b31461041b578063616110cf1461043b57005b806323b872dd116101f957806323b872dd14610309578063248a9ca3146103295780632f2ff15d14610367578063338efde11461038757806336568abe146103a657005b80628768ce1461023a57806301ffc9a71461025a57806306fdde031461028f578063081812fc146102b1578063095ea7b3146102e957005b3661023857005b005b34801561024657600080fd5b50610238610255366004612098565b610746565b34801561026657600080fd5b5061027a6102753660046122b5565b610775565b60405190151581526020015b60405180910390f35b34801561029b57600080fd5b506102a4610786565b6040516102869190612472565b3480156102bd57600080fd5b506102d16102cc366004612279565b610818565b6040516001600160a01b039091168152602001610286565b3480156102f557600080fd5b506102386103043660046121da565b6108b2565b34801561031557600080fd5b506102386103243660046120e6565b6109c8565b34801561033557600080fd5b50610359610344366004612279565b60009081526007602052604090206001015490565b604051908152602001610286565b34801561037357600080fd5b50610238610382366004612292565b6109f9565b34801561039357600080fd5b50600b5461027a90610100900460ff1681565b3480156103b257600080fd5b506102386103c1366004612292565b610a1f565b3480156103d257600080fd5b506102386103e1366004612204565b610a9d565b3480156103f257600080fd5b50610238610b17565b34801561040757600080fd5b506102386104163660046120e6565b610b84565b34801561042757600080fd5b506102386104363660046122ef565b610b9f565b34801561044757600080fd5b50600d546102d1906001600160a01b031681565b34801561046757600080fd5b506102d1610476366004612279565b610bbe565b34801561048757600080fd5b50610359610c35565b34801561049c57600080fd5b506103596104ab366004612098565b610c45565b3480156104bc57600080fd5b506102a4610ccc565b3480156104d157600080fd5b50610238610cdb565b3480156104e657600080fd5b50610238610d11565b3480156104fb57600080fd5b5061035961183881565b610238610513366004612279565b610d32565b34801561052457600080fd5b506006546001600160a01b03166102d1565b34801561054257600080fd5b5061027a610551366004612292565b610fdc565b34801561056257600080fd5b5061035960095481565b34801561057857600080fd5b506102a4611007565b34801561058d57600080fd5b5061035966d19c2ff9bf800081565b6102386105aa366004612279565b611016565b3480156105bb57600080fd5b50610359600081565b3480156105d057600080fd5b506102386105df36600461219e565b611142565b3480156105f057600080fd5b506102386105ff366004612122565b61114d565b34801561061057600080fd5b5061023861061f366004612279565b61117f565b34801561063057600080fd5b506103597f86024e89529ee90561d266fe70772355cdf7be9c9e97e3ac6b5d90ddbc85336581565b34801561066457600080fd5b506102a4610673366004612279565b611237565b34801561068457600080fd5b5061023861132d565b34801561069957600080fd5b506102386106a8366004612292565b611357565b3480156106b957600080fd5b50600b5461027a9060ff1681565b3480156106d357600080fd5b5061027a6106e23660046120b3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071c57600080fd5b5061023861072b366004612098565b61137d565b34801561073c57600080fd5b50610359600a5481565b60006107528133611415565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600061078082611479565b92915050565b60606000805461079590612656565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190612656565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108bd82610bbe565b9050806001600160a01b0316836001600160a01b0316141561092b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088d565b336001600160a01b0382161480610947575061094781336106e2565b6109b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088d565b6109c3838361149e565b505050565b6109d2338261150c565b6109ee5760405162461bcd60e51b815260040161088d90612560565b6109c38383836115ff565b600082815260076020526040902060010154610a158133611415565b6109c3838361179f565b6001600160a01b0381163314610a8f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161088d565b610a998282611825565b5050565b6000610aa98133611415565b60005b82811015610b1157610aff7f86024e89529ee90561d266fe70772355cdf7be9c9e97e3ac6b5d90ddbc853365858584818110610aea57610aea6126ec565b90506020020160208101906103829190612098565b80610b0981612691565b915050610aac565b50505050565b6006546001600160a01b03163314610b415760405162461bcd60e51b815260040161088d9061252b565b60405173ad2dca2e9ff750d51b3f31ca13343763c67c3bce904780156108fc02916000818181858888f19350505050158015610b81573d6000803e3d6000fd5b50565b6109c38383836040518060200160405280600081525061114d565b6000610bab8133611415565b81516109c390600c906020850190611f6d565b6000818152600260205260408120546001600160a01b0316806107805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088d565b6000610c4060085490565b905090565b60006001600160a01b038216610cb05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088d565b506001600160a01b031660009081526003602052604090205490565b6060600c805461079590612656565b6006546001600160a01b03163314610d055760405162461bcd60e51b815260040161088d9061252b565b610d0f600061188c565b565b6000610d1d8133611415565b50600b805460ff19811660ff90911615179055565b600b54610100900460ff1615610d8a5760405162461bcd60e51b815260206004820152601f60248201527f43686172637574657269653a207072652073616c652069732070617573656400604482015260640161088d565b610db47f86024e89529ee90561d266fe70772355cdf7be9c9e97e3ac6b5d90ddbc85336533610fdc565b80610e395750600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610dfd57600080fd5b505afa158015610e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e359190612338565b6001145b610e9d5760405162461bcd60e51b815260206004820152602f60248201527f43686172637574657269653a206163636f756e74206973206e6f7420616c6c6f60448201526e1dd959081d1bc81c1c99481b5a5b9d608a1b606482015260840161088d565b600a54610eac906118386125fc565b81610eb660085490565b610ec091906125b1565b1115610f0e5760405162461bcd60e51b815260206004820152601f60248201527f43686172637574657269653a2045786365656473206d617820737570706c7900604482015260640161088d565b600954811115610f6f5760405162461bcd60e51b815260206004820152602660248201527f43686172637574657269653a2045786365656473207472616e73616374696f6e604482015265081b1a5b5a5d60d21b606482015260840161088d565b610f808166d19c2ff9bf80006125dd565b341015610f9f5760405162461bcd60e51b815260040161088d906124d7565b60005b81811015610a9957610fb8600880546001019055565b610fca33610fc560085490565b6118de565b80610fd481612691565b915050610fa2565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461079590612656565b600b5460ff16156110695760405162461bcd60e51b815260206004820152601b60248201527f43686172637574657269653a206d696e74206973207061757365640000000000604482015260640161088d565b600a54611078906118386125fc565b8161108260085490565b61108c91906125b1565b11156110da5760405162461bcd60e51b815260206004820152601f60248201527f43686172637574657269653a2045786365656473206d617820737570706c7900604482015260640161088d565b6110eb8166d19c2ff9bf80006125dd565b34101561110a5760405162461bcd60e51b815260040161088d906124d7565b60005b81811015610a9957611123600880546001019055565b61113033610fc560085490565b8061113a81612691565b91505061110d565b610a993383836118f8565b611157338361150c565b6111735760405162461bcd60e51b815260040161088d90612560565b610b11848484846119c7565b600061118b8133611415565b600a548211156111e95760405162461bcd60e51b8152602060048201526024808201527f43686172637574657269653a204578636565647320726573657276656420737560448201526370706c7960e01b606482015260840161088d565b60005b8281101561122157611202600880546001019055565b61120f33610fc560085490565b8061121981612691565b9150506111ec565b5081600a5461123091906125fc565b600a555050565b6000818152600260205260409020546060906001600160a01b03166112b35760405162461bcd60e51b815260206004820152602c60248201527f43686172637574657269653a2055524920717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088d565b60006112bd610ccc565b604080518082019091526005815264173539b7b760d91b60208201528151919250906112f85760405180602001604052806000815250611325565b81611302856119fa565b826040516020016113159392919061237d565b6040516020818303038152906040525b949350505050565b60006113398133611415565b50600b805461ff001981166101009182900460ff1615909102179055565b6000828152600760205260409020600101546113738133611415565b6109c38383611825565b6006546001600160a01b031633146113a75760405162461bcd60e51b815260040161088d9061252b565b6001600160a01b03811661140c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088d565b610b818161188c565b61141f8282610fdc565b610a9957611437816001600160a01b03166014611af8565b611442836020611af8565b6040516020016114539291906123c0565b60408051601f198184030181529082905262461bcd60e51b825261088d91600401612472565b60006001600160e01b03198216637965db0b60e01b1480610780575061078082611c9b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d382610bbe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088d565b600061159083610bbe565b9050806001600160a01b0316846001600160a01b031614806115cb5750836001600160a01b03166115c084610818565b6001600160a01b0316145b8061132557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611325565b826001600160a01b031661161282610bbe565b6001600160a01b03161461167a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161088d565b6001600160a01b0382166116dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088d565b6116e760008261149e565b6001600160a01b03831660009081526003602052604081208054600192906117109084906125fc565b90915550506001600160a01b038216600090815260036020526040812080546001929061173e9084906125b1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117a98282610fdc565b610a995760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556117e13390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61182f8282610fdc565b15610a995760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a99828260405180602001604052806000815250611ceb565b816001600160a01b0316836001600160a01b0316141561195a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119d28484846115ff565b6119de84848484611d1e565b610b115760405162461bcd60e51b815260040161088d90612485565b606081611a1e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a485780611a3281612691565b9150611a419050600a836125c9565b9150611a22565b60008167ffffffffffffffff811115611a6357611a63612702565b6040519080825280601f01601f191660200182016040528015611a8d576020820181803683370190505b5090505b841561132557611aa26001836125fc565b9150611aaf600a866126ac565b611aba9060306125b1565b60f81b818381518110611acf57611acf6126ec565b60200101906001600160f81b031916908160001a905350611af1600a866125c9565b9450611a91565b60606000611b078360026125dd565b611b129060026125b1565b67ffffffffffffffff811115611b2a57611b2a612702565b6040519080825280601f01601f191660200182016040528015611b54576020820181803683370190505b509050600360fc1b81600081518110611b6f57611b6f6126ec565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611b9e57611b9e6126ec565b60200101906001600160f81b031916908160001a9053506000611bc28460026125dd565b611bcd9060016125b1565b90505b6001811115611c45576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611c0157611c016126ec565b1a60f81b828281518110611c1757611c176126ec565b60200101906001600160f81b031916908160001a90535060049490941c93611c3e8161263f565b9050611bd0565b508315611c945760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161088d565b9392505050565b60006001600160e01b031982166380ac58cd60e01b1480611ccc57506001600160e01b03198216635b5e139f60e01b145b8061078057506301ffc9a760e01b6001600160e01b0319831614610780565b611cf58383611e2b565b611d026000848484611d1e565b6109c35760405162461bcd60e51b815260040161088d90612485565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d62903390899088908890600401612435565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da9918101906122d2565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b815260040161088d90612485565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611325565b506001949350505050565b6001600160a01b038216611e815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088d565b6000818152600260205260409020546001600160a01b031615611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088d565b6001600160a01b0382166000908152600360205260408120805460019290611f0f9084906125b1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f7990612656565b90600052602060002090601f016020900481019282611f9b5760008555611fe1565b82601f10611fb457805160ff1916838001178555611fe1565b82800160010185558215611fe1579182015b82811115611fe1578251825591602001919060010190611fc6565b50611fed929150611ff1565b5090565b5b80821115611fed5760008155600101611ff2565b600067ffffffffffffffff8084111561202157612021612702565b604051601f8501601f19908116603f0116810190828211818310171561204957612049612702565b8160405280935085815286868601111561206257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461209357600080fd5b919050565b6000602082840312156120aa57600080fd5b611c948261207c565b600080604083850312156120c657600080fd5b6120cf8361207c565b91506120dd6020840161207c565b90509250929050565b6000806000606084860312156120fb57600080fd5b6121048461207c565b92506121126020850161207c565b9150604084013590509250925092565b6000806000806080858703121561213857600080fd5b6121418561207c565b935061214f6020860161207c565b925060408501359150606085013567ffffffffffffffff81111561217257600080fd5b8501601f8101871361218357600080fd5b61219287823560208401612006565b91505092959194509250565b600080604083850312156121b157600080fd5b6121ba8361207c565b9150602083013580151581146121cf57600080fd5b809150509250929050565b600080604083850312156121ed57600080fd5b6121f68361207c565b946020939093013593505050565b6000806020838503121561221757600080fd5b823567ffffffffffffffff8082111561222f57600080fd5b818501915085601f83011261224357600080fd5b81358181111561225257600080fd5b8660208260051b850101111561226757600080fd5b60209290920196919550909350505050565b60006020828403121561228b57600080fd5b5035919050565b600080604083850312156122a557600080fd5b823591506120dd6020840161207c565b6000602082840312156122c757600080fd5b8135611c9481612718565b6000602082840312156122e457600080fd5b8151611c9481612718565b60006020828403121561230157600080fd5b813567ffffffffffffffff81111561231857600080fd5b8201601f8101841361232957600080fd5b61132584823560208401612006565b60006020828403121561234a57600080fd5b5051919050565b60008151808452612369816020860160208601612613565b601f01601f19169290920160200192915050565b6000845161238f818460208901612613565b8451908301906123a3818360208901612613565b84519101906123b6818360208801612613565b0195945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516123f8816017850160208801612613565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612429816028840160208801612613565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246890830184612351565b9695505050505050565b602081526000611c946020830184612351565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526034908201527f43686172637574657269653a2045746865722073656e74206973206c657373206040820152737468616e20756e69745f636f7374202a206e756d60601b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125c4576125c46126c0565b500190565b6000826125d8576125d86126d6565b500490565b60008160001904831182151516156125f7576125f76126c0565b500290565b60008282101561260e5761260e6126c0565b500390565b60005b8381101561262e578181015183820152602001612616565b83811115610b115750506000910152565b60008161264e5761264e6126c0565b506000190190565b600181811c9082168061266a57607f821691505b6020821081141561268b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a5576126a56126c0565b5060010190565b6000826126bb576126bb6126d6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8157600080fdfea2646970667358221220cb0fc21222560cecba2d14d3e50f90151453a93ec44d4df5cb75b1dc546eabe164736f6c63430008070033697066733a2f2f516d585744337a556f5543564b316334784c38363258487a36476e717a356873646867673454354d5167667163592f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b43686172637574657269650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424f415244000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102315760003560e01c80637d8966e41161012d578063a22cb465116100b0578063ca3cb52211610077578063ca3cb52214610678578063d547741f1461068d578063e3f8b476146106ad578063e985e9c5146106c7578063f2fde38b14610710578063fe60d12c1461073057005b8063a22cb465146105c4578063b88d4fde146105e4578063c1f2612314610604578063c50a557c14610624578063c87b56dd1461065857005b8063938eef51116100f4578063938eef511461055657806395d89b411461056c5780639d186abb14610581578063a0712d681461059c578063a217fddf146105af57005b80637d8966e4146104da5780638a333b50146104ef5780638ad433ac146105055780638da5cb5b1461051857806391d148541461053657005b806339ee0661116101b55780636352211e1161017c5780636352211e1461045b5780636de9f32b1461047b57806370a0823114610490578063714c5398146104b0578063715018a6146104c557005b806339ee0661146103c65780633ccfd60b146103e657806342842e0e146103fb57806355f804b31461041b578063616110cf1461043b57005b806323b872dd116101f957806323b872dd14610309578063248a9ca3146103295780632f2ff15d14610367578063338efde11461038757806336568abe146103a657005b80628768ce1461023a57806301ffc9a71461025a57806306fdde031461028f578063081812fc146102b1578063095ea7b3146102e957005b3661023857005b005b34801561024657600080fd5b50610238610255366004612098565b610746565b34801561026657600080fd5b5061027a6102753660046122b5565b610775565b60405190151581526020015b60405180910390f35b34801561029b57600080fd5b506102a4610786565b6040516102869190612472565b3480156102bd57600080fd5b506102d16102cc366004612279565b610818565b6040516001600160a01b039091168152602001610286565b3480156102f557600080fd5b506102386103043660046121da565b6108b2565b34801561031557600080fd5b506102386103243660046120e6565b6109c8565b34801561033557600080fd5b50610359610344366004612279565b60009081526007602052604090206001015490565b604051908152602001610286565b34801561037357600080fd5b50610238610382366004612292565b6109f9565b34801561039357600080fd5b50600b5461027a90610100900460ff1681565b3480156103b257600080fd5b506102386103c1366004612292565b610a1f565b3480156103d257600080fd5b506102386103e1366004612204565b610a9d565b3480156103f257600080fd5b50610238610b17565b34801561040757600080fd5b506102386104163660046120e6565b610b84565b34801561042757600080fd5b506102386104363660046122ef565b610b9f565b34801561044757600080fd5b50600d546102d1906001600160a01b031681565b34801561046757600080fd5b506102d1610476366004612279565b610bbe565b34801561048757600080fd5b50610359610c35565b34801561049c57600080fd5b506103596104ab366004612098565b610c45565b3480156104bc57600080fd5b506102a4610ccc565b3480156104d157600080fd5b50610238610cdb565b3480156104e657600080fd5b50610238610d11565b3480156104fb57600080fd5b5061035961183881565b610238610513366004612279565b610d32565b34801561052457600080fd5b506006546001600160a01b03166102d1565b34801561054257600080fd5b5061027a610551366004612292565b610fdc565b34801561056257600080fd5b5061035960095481565b34801561057857600080fd5b506102a4611007565b34801561058d57600080fd5b5061035966d19c2ff9bf800081565b6102386105aa366004612279565b611016565b3480156105bb57600080fd5b50610359600081565b3480156105d057600080fd5b506102386105df36600461219e565b611142565b3480156105f057600080fd5b506102386105ff366004612122565b61114d565b34801561061057600080fd5b5061023861061f366004612279565b61117f565b34801561063057600080fd5b506103597f86024e89529ee90561d266fe70772355cdf7be9c9e97e3ac6b5d90ddbc85336581565b34801561066457600080fd5b506102a4610673366004612279565b611237565b34801561068457600080fd5b5061023861132d565b34801561069957600080fd5b506102386106a8366004612292565b611357565b3480156106b957600080fd5b50600b5461027a9060ff1681565b3480156106d357600080fd5b5061027a6106e23660046120b3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071c57600080fd5b5061023861072b366004612098565b61137d565b34801561073c57600080fd5b50610359600a5481565b60006107528133611415565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600061078082611479565b92915050565b60606000805461079590612656565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190612656565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108bd82610bbe565b9050806001600160a01b0316836001600160a01b0316141561092b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088d565b336001600160a01b0382161480610947575061094781336106e2565b6109b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088d565b6109c3838361149e565b505050565b6109d2338261150c565b6109ee5760405162461bcd60e51b815260040161088d90612560565b6109c38383836115ff565b600082815260076020526040902060010154610a158133611415565b6109c3838361179f565b6001600160a01b0381163314610a8f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161088d565b610a998282611825565b5050565b6000610aa98133611415565b60005b82811015610b1157610aff7f86024e89529ee90561d266fe70772355cdf7be9c9e97e3ac6b5d90ddbc853365858584818110610aea57610aea6126ec565b90506020020160208101906103829190612098565b80610b0981612691565b915050610aac565b50505050565b6006546001600160a01b03163314610b415760405162461bcd60e51b815260040161088d9061252b565b60405173ad2dca2e9ff750d51b3f31ca13343763c67c3bce904780156108fc02916000818181858888f19350505050158015610b81573d6000803e3d6000fd5b50565b6109c38383836040518060200160405280600081525061114d565b6000610bab8133611415565b81516109c390600c906020850190611f6d565b6000818152600260205260408120546001600160a01b0316806107805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088d565b6000610c4060085490565b905090565b60006001600160a01b038216610cb05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088d565b506001600160a01b031660009081526003602052604090205490565b6060600c805461079590612656565b6006546001600160a01b03163314610d055760405162461bcd60e51b815260040161088d9061252b565b610d0f600061188c565b565b6000610d1d8133611415565b50600b805460ff19811660ff90911615179055565b600b54610100900460ff1615610d8a5760405162461bcd60e51b815260206004820152601f60248201527f43686172637574657269653a207072652073616c652069732070617573656400604482015260640161088d565b610db47f86024e89529ee90561d266fe70772355cdf7be9c9e97e3ac6b5d90ddbc85336533610fdc565b80610e395750600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610dfd57600080fd5b505afa158015610e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e359190612338565b6001145b610e9d5760405162461bcd60e51b815260206004820152602f60248201527f43686172637574657269653a206163636f756e74206973206e6f7420616c6c6f60448201526e1dd959081d1bc81c1c99481b5a5b9d608a1b606482015260840161088d565b600a54610eac906118386125fc565b81610eb660085490565b610ec091906125b1565b1115610f0e5760405162461bcd60e51b815260206004820152601f60248201527f43686172637574657269653a2045786365656473206d617820737570706c7900604482015260640161088d565b600954811115610f6f5760405162461bcd60e51b815260206004820152602660248201527f43686172637574657269653a2045786365656473207472616e73616374696f6e604482015265081b1a5b5a5d60d21b606482015260840161088d565b610f808166d19c2ff9bf80006125dd565b341015610f9f5760405162461bcd60e51b815260040161088d906124d7565b60005b81811015610a9957610fb8600880546001019055565b610fca33610fc560085490565b6118de565b80610fd481612691565b915050610fa2565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461079590612656565b600b5460ff16156110695760405162461bcd60e51b815260206004820152601b60248201527f43686172637574657269653a206d696e74206973207061757365640000000000604482015260640161088d565b600a54611078906118386125fc565b8161108260085490565b61108c91906125b1565b11156110da5760405162461bcd60e51b815260206004820152601f60248201527f43686172637574657269653a2045786365656473206d617820737570706c7900604482015260640161088d565b6110eb8166d19c2ff9bf80006125dd565b34101561110a5760405162461bcd60e51b815260040161088d906124d7565b60005b81811015610a9957611123600880546001019055565b61113033610fc560085490565b8061113a81612691565b91505061110d565b610a993383836118f8565b611157338361150c565b6111735760405162461bcd60e51b815260040161088d90612560565b610b11848484846119c7565b600061118b8133611415565b600a548211156111e95760405162461bcd60e51b8152602060048201526024808201527f43686172637574657269653a204578636565647320726573657276656420737560448201526370706c7960e01b606482015260840161088d565b60005b8281101561122157611202600880546001019055565b61120f33610fc560085490565b8061121981612691565b9150506111ec565b5081600a5461123091906125fc565b600a555050565b6000818152600260205260409020546060906001600160a01b03166112b35760405162461bcd60e51b815260206004820152602c60248201527f43686172637574657269653a2055524920717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088d565b60006112bd610ccc565b604080518082019091526005815264173539b7b760d91b60208201528151919250906112f85760405180602001604052806000815250611325565b81611302856119fa565b826040516020016113159392919061237d565b6040516020818303038152906040525b949350505050565b60006113398133611415565b50600b805461ff001981166101009182900460ff1615909102179055565b6000828152600760205260409020600101546113738133611415565b6109c38383611825565b6006546001600160a01b031633146113a75760405162461bcd60e51b815260040161088d9061252b565b6001600160a01b03811661140c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088d565b610b818161188c565b61141f8282610fdc565b610a9957611437816001600160a01b03166014611af8565b611442836020611af8565b6040516020016114539291906123c0565b60408051601f198184030181529082905262461bcd60e51b825261088d91600401612472565b60006001600160e01b03198216637965db0b60e01b1480610780575061078082611c9b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d382610bbe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088d565b600061159083610bbe565b9050806001600160a01b0316846001600160a01b031614806115cb5750836001600160a01b03166115c084610818565b6001600160a01b0316145b8061132557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611325565b826001600160a01b031661161282610bbe565b6001600160a01b03161461167a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161088d565b6001600160a01b0382166116dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088d565b6116e760008261149e565b6001600160a01b03831660009081526003602052604081208054600192906117109084906125fc565b90915550506001600160a01b038216600090815260036020526040812080546001929061173e9084906125b1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117a98282610fdc565b610a995760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556117e13390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61182f8282610fdc565b15610a995760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a99828260405180602001604052806000815250611ceb565b816001600160a01b0316836001600160a01b0316141561195a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119d28484846115ff565b6119de84848484611d1e565b610b115760405162461bcd60e51b815260040161088d90612485565b606081611a1e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a485780611a3281612691565b9150611a419050600a836125c9565b9150611a22565b60008167ffffffffffffffff811115611a6357611a63612702565b6040519080825280601f01601f191660200182016040528015611a8d576020820181803683370190505b5090505b841561132557611aa26001836125fc565b9150611aaf600a866126ac565b611aba9060306125b1565b60f81b818381518110611acf57611acf6126ec565b60200101906001600160f81b031916908160001a905350611af1600a866125c9565b9450611a91565b60606000611b078360026125dd565b611b129060026125b1565b67ffffffffffffffff811115611b2a57611b2a612702565b6040519080825280601f01601f191660200182016040528015611b54576020820181803683370190505b509050600360fc1b81600081518110611b6f57611b6f6126ec565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611b9e57611b9e6126ec565b60200101906001600160f81b031916908160001a9053506000611bc28460026125dd565b611bcd9060016125b1565b90505b6001811115611c45576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611c0157611c016126ec565b1a60f81b828281518110611c1757611c176126ec565b60200101906001600160f81b031916908160001a90535060049490941c93611c3e8161263f565b9050611bd0565b508315611c945760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161088d565b9392505050565b60006001600160e01b031982166380ac58cd60e01b1480611ccc57506001600160e01b03198216635b5e139f60e01b145b8061078057506301ffc9a760e01b6001600160e01b0319831614610780565b611cf58383611e2b565b611d026000848484611d1e565b6109c35760405162461bcd60e51b815260040161088d90612485565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d62903390899088908890600401612435565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da9918101906122d2565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b815260040161088d90612485565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611325565b506001949350505050565b6001600160a01b038216611e815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088d565b6000818152600260205260409020546001600160a01b031615611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088d565b6001600160a01b0382166000908152600360205260408120805460019290611f0f9084906125b1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f7990612656565b90600052602060002090601f016020900481019282611f9b5760008555611fe1565b82601f10611fb457805160ff1916838001178555611fe1565b82800160010185558215611fe1579182015b82811115611fe1578251825591602001919060010190611fc6565b50611fed929150611ff1565b5090565b5b80821115611fed5760008155600101611ff2565b600067ffffffffffffffff8084111561202157612021612702565b604051601f8501601f19908116603f0116810190828211818310171561204957612049612702565b8160405280935085815286868601111561206257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461209357600080fd5b919050565b6000602082840312156120aa57600080fd5b611c948261207c565b600080604083850312156120c657600080fd5b6120cf8361207c565b91506120dd6020840161207c565b90509250929050565b6000806000606084860312156120fb57600080fd5b6121048461207c565b92506121126020850161207c565b9150604084013590509250925092565b6000806000806080858703121561213857600080fd5b6121418561207c565b935061214f6020860161207c565b925060408501359150606085013567ffffffffffffffff81111561217257600080fd5b8501601f8101871361218357600080fd5b61219287823560208401612006565b91505092959194509250565b600080604083850312156121b157600080fd5b6121ba8361207c565b9150602083013580151581146121cf57600080fd5b809150509250929050565b600080604083850312156121ed57600080fd5b6121f68361207c565b946020939093013593505050565b6000806020838503121561221757600080fd5b823567ffffffffffffffff8082111561222f57600080fd5b818501915085601f83011261224357600080fd5b81358181111561225257600080fd5b8660208260051b850101111561226757600080fd5b60209290920196919550909350505050565b60006020828403121561228b57600080fd5b5035919050565b600080604083850312156122a557600080fd5b823591506120dd6020840161207c565b6000602082840312156122c757600080fd5b8135611c9481612718565b6000602082840312156122e457600080fd5b8151611c9481612718565b60006020828403121561230157600080fd5b813567ffffffffffffffff81111561231857600080fd5b8201601f8101841361232957600080fd5b61132584823560208401612006565b60006020828403121561234a57600080fd5b5051919050565b60008151808452612369816020860160208601612613565b601f01601f19169290920160200192915050565b6000845161238f818460208901612613565b8451908301906123a3818360208901612613565b84519101906123b6818360208801612613565b0195945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516123f8816017850160208801612613565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612429816028840160208801612613565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246890830184612351565b9695505050505050565b602081526000611c946020830184612351565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526034908201527f43686172637574657269653a2045746865722073656e74206973206c657373206040820152737468616e20756e69745f636f7374202a206e756d60601b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125c4576125c46126c0565b500190565b6000826125d8576125d86126d6565b500490565b60008160001904831182151516156125f7576125f76126c0565b500290565b60008282101561260e5761260e6126c0565b500390565b60005b8381101561262e578181015183820152602001612616565b83811115610b115750506000910152565b60008161264e5761264e6126c0565b506000190190565b600181811c9082168061266a57607f821691505b6020821081141561268b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a5576126a56126c0565b5060010190565b6000826126bb576126bb6126d6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b8157600080fdfea2646970667358221220cb0fc21222560cecba2d14d3e50f90151453a93ec44d4df5cb75b1dc546eabe164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b43686172637574657269650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424f415244000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Charcuterie
Arg [1] : _symbol (string): BOARD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4368617263757465726965000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 424f415244000000000000000000000000000000000000000000000000000000


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.