ETH Price: $3,078.47 (-6.81%)
Gas: 8 Gwei

Token

Non-Fungible Breadsticks (NFB)
 

Overview

Max Total Supply

1,544 NFB

Holders

1,009

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
countup.eth
Balance
1 NFB
0x0e248c5f608bb3b9e6d86a594e17b65238d0194e
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:
Breadstick

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Breadstick.sol
/*

███╗   ██╗ ██████╗ ███╗   ██╗      ███████╗██╗   ██╗███╗   ██╗ ██████╗ ██╗██████╗ ██╗     ███████╗
████╗  ██║██╔═══██╗████╗  ██║      ██╔════╝██║   ██║████╗  ██║██╔════╝ ██║██╔══██╗██║     ██╔════╝
██╔██╗ ██║██║   ██║██╔██╗ ██║█████╗█████╗  ██║   ██║██╔██╗ ██║██║  ███╗██║██████╔╝██║     █████╗  
██║╚██╗██║██║   ██║██║╚██╗██║╚════╝██╔══╝  ██║   ██║██║╚██╗██║██║   ██║██║██╔══██╗██║     ██╔══╝  
██║ ╚████║╚██████╔╝██║ ╚████║      ██║     ╚██████╔╝██║ ╚████║╚██████╔╝██║██████╔╝███████╗███████╗
╚═╝  ╚═══╝ ╚═════╝ ╚═╝  ╚═══╝      ╚═╝      ╚═════╝ ╚═╝  ╚═══╝ ╚═════╝ ╚═╝╚═════╝ ╚══════╝╚══════╝
                                                                                                  
██████╗ ██████╗ ███████╗ █████╗ ██████╗ ███████╗████████╗██╗ ██████╗██╗  ██╗███████╗              
██╔══██╗██╔══██╗██╔════╝██╔══██╗██╔══██╗██╔════╝╚══██╔══╝██║██╔════╝██║ ██╔╝██╔════╝              
██████╔╝██████╔╝█████╗  ███████║██║  ██║███████╗   ██║   ██║██║     █████╔╝ ███████╗              
██╔══██╗██╔══██╗██╔══╝  ██╔══██║██║  ██║╚════██║   ██║   ██║██║     ██╔═██╗ ╚════██║              
██████╔╝██║  ██║███████╗██║  ██║██████╔╝███████║   ██║   ██║╚██████╗██║  ██╗███████║              
╚═════╝ ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚══════╝   ╚═╝   ╚═╝ ╚═════╝╚═╝  ╚═╝╚══════╝              

From the regional managers of Non-Fungible Olive Gardens

*/


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import 'base64-sol/base64.sol';

contract Breadstick is ERC721, Pausable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 public breadsticksToReserve = 30;
    string public imageURI = 'ipfs://QmVBnkLci5Ty3ds5LakYbvVXYWd36oZFTqZAdYyqJHJgjZ';
    string public imageURI2 = 'ipfs://QmVBnkLci5Ty3ds5LakYbvVXYWd36oZFTqZAdYyqJHJgjZ';

    constructor() ERC721("Non-Fungible Breadsticks", "NFB") {
        // Order some breadsticks for the regional managers
        for(uint i=1; i <= breadsticksToReserve; i++){
            _safeMint(msg.sender, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
    }
   
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mintBreadstick() whenNotPaused public {
        _safeMint(msg.sender, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }

    function totalSupply() public view returns(uint256){
        return _tokenIdCounter.current();
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory uri;
        string memory color;
        // Our ovens occasionally experience technical difficulties
        if(tokenId % 1000 == 0 && tokenId > 0){
            uri = imageURI2;
            color = 'Burned';
        }else{
            uri = imageURI;
            color = 'Golden Brown';
        }

        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Breadstick #', uint2str(tokenId) ,'", "description": "A hot and delicious breadstick from your local Non-Fungible Olive Garden.", "image": "', uri ,'", "attributes": [{"trait_type": "Color","value": "', color , '"}]}'))));
        return string(abi.encodePacked('data:application/json;base64,', json));
    }

    function setImageURI(string memory uri) public onlyOwner{
        imageURI = uri;
    }

    function setImageURI2(string memory uri) public onlyOwner{
        imageURI2 = uri;
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

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 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breadsticksToReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageURI2","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"mintBreadstick","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setImageURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setImageURI2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601e600855604051806060016040528060358152602001620045f460359139600990805190602001906200003a9291906200076d565b50604051806060016040528060358152602001620045f460359139600a90805190602001906200006c9291906200076d565b503480156200007a57600080fd5b506040518060400160405280601881526020017f4e6f6e2d46756e6769626c65204272656164737469636b7300000000000000008152506040518060400160405280600381526020017f4e464200000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ff9291906200076d565b508060019080519060200190620001189291906200076d565b5050506000600660006101000a81548160ff021916908315150217905550620001566200014a620001c360201b60201c565b620001cb60201b60201c565b6000600190505b6008548111620001bc576200018f336200018360076200029160201b620014a31760201c565b6200029f60201b60201c565b620001a66007620002c560201b620014b11760201c565b8080620001b39062000bc9565b9150506200015d565b5062000ca0565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b620002c1828260405180602001604052806000815250620002db60201b60201c565b5050565b6001816000016000828254019250508190555050565b620002ed83836200034960201b60201c565b6200030260008484846200052f60201b60201c565b62000344576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033b9062000a03565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b39062000a47565b60405180910390fd5b620003cd81620006e960201b60201c565b1562000410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004079062000a25565b60405180910390fd5b62000424600083836200075560201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000476919062000a96565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200055d8473ffffffffffffffffffffffffffffffffffffffff166200075a60201b620014c71760201c565b15620006dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200058f620001c360201b60201c565b8786866040518563ffffffff1660e01b8152600401620005b39493929190620009af565b602060405180830381600087803b158015620005ce57600080fd5b505af19250505080156200060257506040513d601f19601f82011682018060405250810190620005ff919062000834565b60015b6200068b573d806000811462000635576040519150601f19603f3d011682016040523d82523d6000602084013e6200063a565b606091505b5060008151141562000683576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067a9062000a03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006e1565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b8280546200077b9062000b93565b90600052602060002090601f0160209004810192826200079f5760008555620007eb565b82601f10620007ba57805160ff1916838001178555620007eb565b82800160010185558215620007eb579182015b82811115620007ea578251825591602001919060010190620007cd565b5b509050620007fa9190620007fe565b5090565b5b8082111562000819576000816000905550600101620007ff565b5090565b6000815190506200082e8162000c86565b92915050565b6000602082840312156200084757600080fd5b600062000857848285016200081d565b91505092915050565b6200086b8162000af3565b82525050565b60006200087e8262000a69565b6200088a818562000a74565b93506200089c81856020860162000b5d565b620008a78162000c75565b840191505092915050565b6000620008c160328362000a85565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062000929601c8362000a85565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006200096b60208362000a85565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b620009a98162000b53565b82525050565b6000608082019050620009c6600083018762000860565b620009d5602083018662000860565b620009e460408301856200099e565b8181036060830152620009f8818462000871565b905095945050505050565b6000602082019050818103600083015262000a1e81620008b2565b9050919050565b6000602082019050818103600083015262000a40816200091a565b9050919050565b6000602082019050818103600083015262000a62816200095c565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000aa38262000b53565b915062000ab08362000b53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ae85762000ae762000c17565b5b828201905092915050565b600062000b008262000b33565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b7d57808201518184015260208101905062000b60565b8381111562000b8d576000848401525b50505050565b6000600282049050600182168062000bac57607f821691505b6020821081141562000bc35762000bc262000c46565b5b50919050565b600062000bd68262000b53565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c0c5762000c0b62000c17565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b62000c918162000b07565b811462000c9d57600080fd5b50565b6139448062000cb06000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610411578063e8183ecf14610441578063e985e9c51461045f578063f2fde38b1461048f5761018e565b8063a22cb465146103bd578063b88d4fde146103d9578063bb27dee6146103f55761018e565b806370a0823114610333578063715018a6146103635780638456cb591461036d57806384653dcb146103775780638da5cb5b1461038157806395d89b411461039f5761018e565b806318160ddd1161014b5780633f4ba83a116101255780633f4ba83a146102bf57806342842e0e146102c95780635c975abb146102e55780636352211e146103035761018e565b806318160ddd1461026757806323b872dd146102855780632f5ac4f1146102a15761018e565b806301ffc9a71461019357806304787ca2146101c357806306fdde03146101df578063081812fc146101fd578063095ea7b31461022d578063135d088d14610249575b600080fd5b6101ad60048036038101906101a891906126ec565b6104ab565b6040516101ba919061317e565b60405180910390f35b6101dd60048036038101906101d8919061273e565b61058d565b005b6101e7610623565b6040516101f49190613199565b60405180910390f35b6102176004803603810190610212919061277f565b6106b5565b6040516102249190613117565b60405180910390f35b610247600480360381019061024291906126b0565b61073a565b005b610251610852565b60405161025e9190613199565b60405180910390f35b61026f6108e0565b60405161027c91906133fb565b60405180910390f35b61029f600480360381019061029a91906125aa565b6108f1565b005b6102a9610951565b6040516102b69190613199565b60405180910390f35b6102c76109df565b005b6102e360048036038101906102de91906125aa565b610a65565b005b6102ed610a85565b6040516102fa919061317e565b60405180910390f35b61031d6004803603810190610318919061277f565b610a9c565b60405161032a9190613117565b60405180910390f35b61034d60048036038101906103489190612545565b610b4e565b60405161035a91906133fb565b60405180910390f35b61036b610c06565b005b610375610c8e565b005b61037f610d14565b005b610389610d7b565b6040516103969190613117565b60405180910390f35b6103a7610da5565b6040516103b49190613199565b60405180910390f35b6103d760048036038101906103d29190612674565b610e37565b005b6103f360048036038101906103ee91906125f9565b610fb8565b005b61040f600480360381019061040a919061273e565b61101a565b005b61042b6004803603810190610426919061277f565b6110b0565b6040516104389190613199565b60405180910390f35b610449611311565b60405161045691906133fb565b60405180910390f35b6104796004803603810190610474919061256e565b611317565b604051610486919061317e565b60405180910390f35b6104a960048036038101906104a49190612545565b6113ab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105865750610585826114da565b5b9050919050565b610595611544565b73ffffffffffffffffffffffffffffffffffffffff166105b3610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610609576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106009061335b565b60405180910390fd5b806009908051906020019061061f929190612369565b5050565b606060008054610632906136f9565b80601f016020809104026020016040519081016040528092919081815260200182805461065e906136f9565b80156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b5050505050905090565b60006106c08261154c565b6106ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f69061333b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074582610a9c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad906133bb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d5611544565b73ffffffffffffffffffffffffffffffffffffffff1614806108045750610803816107fe611544565b611317565b5b610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a906132bb565b60405180910390fd5b61084d83836115b8565b505050565b6009805461085f906136f9565b80601f016020809104026020016040519081016040528092919081815260200182805461088b906136f9565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b505050505081565b60006108ec60076114a3565b905090565b6109026108fc611544565b82611671565b610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906133db565b60405180910390fd5b61094c83838361174f565b505050565b600a805461095e906136f9565b80601f016020809104026020016040519081016040528092919081815260200182805461098a906136f9565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b505050505081565b6109e7611544565b73ffffffffffffffffffffffffffffffffffffffff16610a05610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a529061335b565b60405180910390fd5b610a636119ab565b565b610a8083838360405180602001604052806000815250610fb8565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906132fb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb6906132db565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c0e611544565b73ffffffffffffffffffffffffffffffffffffffff16610c2c610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061335b565b60405180910390fd5b610c8c6000611a4d565b565b610c96611544565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d019061335b565b60405180910390fd5b610d12611b13565b565b610d1c610a85565b15610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d539061329b565b60405180910390fd5b610d6f33610d6a60076114a3565b611bb6565b610d7960076114b1565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610db4906136f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610de0906136f9565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b5050505050905090565b610e3f611544565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea49061325b565b60405180910390fd5b8060056000610eba611544565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f67611544565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fac919061317e565b60405180910390a35050565b610fc9610fc3611544565b83611671565b611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff906133db565b60405180910390fd5b61101484848484611bd4565b50505050565b611022611544565b73ffffffffffffffffffffffffffffffffffffffff16611040610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d9061335b565b60405180910390fd5b80600a90805190602001906110ac929190612369565b5050565b60606110bb8261154c565b6110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f19061339b565b60405180910390fd5b60608060006103e88561110d9190613774565b14801561111a5750600084115b156111e957600a805461112c906136f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611158906136f9565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505091506040518060400160405280600681526020017f4275726e6564000000000000000000000000000000000000000000000000000081525090506112af565b600980546111f6906136f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611222906136f9565b801561126f5780601f106112445761010080835404028352916020019161126f565b820191906000526020600020905b81548152906001019060200180831161125257829003601f168201915b505050505091506040518060400160405280600c81526020017f476f6c64656e2042726f776e000000000000000000000000000000000000000081525090505b60006112e56112bd86611c30565b84846040516020016112d1939291906130ba565b604051602081830303815290604052611e05565b9050806040516020016112f89190613098565b6040516020818303038152906040529350505050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113b3611544565b73ffffffffffffffffffffffffffffffffffffffff166113d1610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061335b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906131fb565b60405180910390fd5b6114a081611a4d565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661162b83610a9c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061167c8261154c565b6116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061327b565b60405180910390fd5b60006116c683610a9c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061173557508373ffffffffffffffffffffffffffffffffffffffff1661171d846106b5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061174657506117458185611317565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661176f82610a9c565b73ffffffffffffffffffffffffffffffffffffffff16146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc9061337b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c9061323b565b60405180910390fd5b611840838383611fa4565b61184b6000826115b8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189b9190613602565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f291906134ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119b3610a85565b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906131bb565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a36611544565b604051611a439190613117565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b1b610a85565b15611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b529061329b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b9f611544565b604051611bac9190613117565b60405180910390a1565b611bd0828260405180602001604052806000815250611fa9565b5050565b611bdf84848461174f565b611beb84848484612004565b611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906131db565b60405180910390fd5b50505050565b60606000821415611c78576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e00565b600082905060005b60008214611caa578080611c939061372b565b915050600a82611ca39190613577565b9150611c80565b60008167ffffffffffffffff811115611cec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d1e5781602001600182028036833780820191505090505b50905060008290505b60008614611df857600181611d3c9190613602565b90506000600a8088611d4e9190613577565b611d5891906135a8565b87611d639190613602565b6030611d6f9190613540565b905060008160f81b905080848481518110611db3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611def9190613577565b97505050611d27565b819450505050505b919050565b6060600082511415611e2857604051806020016040528060008152509050611f9f565b60006040518060600160405280604081526020016138cf6040913990506000600360028551611e5791906134ea565b611e619190613577565b6004611e6d91906135a8565b90506000602082611e7e91906134ea565b67ffffffffffffffff811115611ebd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eef5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611f5e576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611f03565b600389510660018114611f785760028114611f8857611f93565b613d3d60f01b6002830352611f93565b603d60f81b60018303525b50505050508093505050505b919050565b505050565b611fb3838361219b565b611fc06000848484612004565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff6906131db565b60405180910390fd5b505050565b60006120258473ffffffffffffffffffffffffffffffffffffffff166114c7565b1561218e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204e611544565b8786866040518563ffffffff1660e01b81526004016120709493929190613132565b602060405180830381600087803b15801561208a57600080fd5b505af19250505080156120bb57506040513d601f19601f820116820180604052508101906120b89190612715565b60015b61213e573d80600081146120eb576040519150601f19603f3d011682016040523d82523d6000602084013e6120f0565b606091505b50600081511415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d906131db565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612193565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122029061331b565b60405180910390fd5b6122148161154c565b15612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b9061321b565b60405180910390fd5b61226060008383611fa4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b091906134ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612375906136f9565b90600052602060002090601f01602090048101928261239757600085556123de565b82601f106123b057805160ff19168380011785556123de565b828001600101855582156123de579182015b828111156123dd5782518255916020019190600101906123c2565b5b5090506123eb91906123ef565b5090565b5b808211156124085760008160009055506001016123f0565b5090565b600061241f61241a84613447565b613416565b90508281526020810184848401111561243757600080fd5b6124428482856136b7565b509392505050565b600061245d61245884613477565b613416565b90508281526020810184848401111561247557600080fd5b6124808482856136b7565b509392505050565b60008135905061249781613872565b92915050565b6000813590506124ac81613889565b92915050565b6000813590506124c1816138a0565b92915050565b6000815190506124d6816138a0565b92915050565b600082601f8301126124ed57600080fd5b81356124fd84826020860161240c565b91505092915050565b600082601f83011261251757600080fd5b813561252784826020860161244a565b91505092915050565b60008135905061253f816138b7565b92915050565b60006020828403121561255757600080fd5b600061256584828501612488565b91505092915050565b6000806040838503121561258157600080fd5b600061258f85828601612488565b92505060206125a085828601612488565b9150509250929050565b6000806000606084860312156125bf57600080fd5b60006125cd86828701612488565b93505060206125de86828701612488565b92505060406125ef86828701612530565b9150509250925092565b6000806000806080858703121561260f57600080fd5b600061261d87828801612488565b945050602061262e87828801612488565b935050604061263f87828801612530565b925050606085013567ffffffffffffffff81111561265c57600080fd5b612668878288016124dc565b91505092959194509250565b6000806040838503121561268757600080fd5b600061269585828601612488565b92505060206126a68582860161249d565b9150509250929050565b600080604083850312156126c357600080fd5b60006126d185828601612488565b92505060206126e285828601612530565b9150509250929050565b6000602082840312156126fe57600080fd5b600061270c848285016124b2565b91505092915050565b60006020828403121561272757600080fd5b6000612735848285016124c7565b91505092915050565b60006020828403121561275057600080fd5b600082013567ffffffffffffffff81111561276a57600080fd5b61277684828501612506565b91505092915050565b60006020828403121561279157600080fd5b600061279f84828501612530565b91505092915050565b6127b181613636565b82525050565b6127c081613648565b82525050565b60006127d1826134a7565b6127db81856134bd565b93506127eb8185602086016136c6565b6127f481613861565b840191505092915050565b600061280a826134b2565b61281481856134ce565b93506128248185602086016136c6565b61282d81613861565b840191505092915050565b6000612843826134b2565b61284d81856134df565b935061285d8185602086016136c6565b80840191505092915050565b60006128766014836134ce565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006128b66033836134df565b91507f222c202261747472696275746573223a205b7b2274726169745f74797065223a60008301527f2022436f6c6f72222c2276616c7565223a2022000000000000000000000000006020830152603382019050919050565b600061291c6032836134ce565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129826026836134ce565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129e86069836134df565b91507f222c20226465736372697074696f6e223a20224120686f7420616e642064656c60008301527f6963696f7573206272656164737469636b2066726f6d20796f7572206c6f636160208301527f6c204e6f6e2d46756e6769626c65204f6c6976652047617264656e2e222c202260408301527f696d616765223a202200000000000000000000000000000000000000000000006060830152606982019050919050565b6000612a9a601c836134ce565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612ada6024836134ce565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b406019836134ce565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612b80602c836134ce565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612be66010836134ce565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612c266038836134ce565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612c8c602a836134ce565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612cf26029836134ce565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d586020836134ce565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612d98602c836134ce565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612dfe6020836134ce565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612e3e6029836134ce565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ea4602f836134ce565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612f0a6021836134ce565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f70601d836134df565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000612fb06031836134ce565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006130166004836134df565b91507f227d5d7d000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b60006130566016836134df565b91507f7b226e616d65223a20224272656164737469636b2023000000000000000000006000830152601682019050919050565b613092816136a0565b82525050565b60006130a382612f63565b91506130af8284612838565b915081905092915050565b60006130c582613049565b91506130d18286612838565b91506130dc826129db565b91506130e88285612838565b91506130f3826128a9565b91506130ff8284612838565b915061310a82613009565b9150819050949350505050565b600060208201905061312c60008301846127a8565b92915050565b600060808201905061314760008301876127a8565b61315460208301866127a8565b6131616040830185613089565b818103606083015261317381846127c6565b905095945050505050565b600060208201905061319360008301846127b7565b92915050565b600060208201905081810360008301526131b381846127ff565b905092915050565b600060208201905081810360008301526131d481612869565b9050919050565b600060208201905081810360008301526131f48161290f565b9050919050565b6000602082019050818103600083015261321481612975565b9050919050565b6000602082019050818103600083015261323481612a8d565b9050919050565b6000602082019050818103600083015261325481612acd565b9050919050565b6000602082019050818103600083015261327481612b33565b9050919050565b6000602082019050818103600083015261329481612b73565b9050919050565b600060208201905081810360008301526132b481612bd9565b9050919050565b600060208201905081810360008301526132d481612c19565b9050919050565b600060208201905081810360008301526132f481612c7f565b9050919050565b6000602082019050818103600083015261331481612ce5565b9050919050565b6000602082019050818103600083015261333481612d4b565b9050919050565b6000602082019050818103600083015261335481612d8b565b9050919050565b6000602082019050818103600083015261337481612df1565b9050919050565b6000602082019050818103600083015261339481612e31565b9050919050565b600060208201905081810360008301526133b481612e97565b9050919050565b600060208201905081810360008301526133d481612efd565b9050919050565b600060208201905081810360008301526133f481612fa3565b9050919050565b60006020820190506134106000830184613089565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561343d5761343c613832565b5b8060405250919050565b600067ffffffffffffffff82111561346257613461613832565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561349257613491613832565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134f5826136a0565b9150613500836136a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613535576135346137a5565b5b828201905092915050565b600061354b826136aa565b9150613556836136aa565b92508260ff0382111561356c5761356b6137a5565b5b828201905092915050565b6000613582826136a0565b915061358d836136a0565b92508261359d5761359c6137d4565b5b828204905092915050565b60006135b3826136a0565b91506135be836136a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135f7576135f66137a5565b5b828202905092915050565b600061360d826136a0565b9150613618836136a0565b92508282101561362b5761362a6137a5565b5b828203905092915050565b600061364182613680565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156136e45780820151818401526020810190506136c9565b838111156136f3576000848401525b50505050565b6000600282049050600182168061371157607f821691505b6020821081141561372557613724613803565b5b50919050565b6000613736826136a0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613769576137686137a5565b5b600182019050919050565b600061377f826136a0565b915061378a836136a0565b92508261379a576137996137d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61387b81613636565b811461388657600080fd5b50565b61389281613648565b811461389d57600080fd5b50565b6138a981613654565b81146138b457600080fd5b50565b6138c0816136a0565b81146138cb57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220cde3d01f532e4feba257123fc249fb78114549905993609f882d0c09bd11aa3164736f6c63430008000033697066733a2f2f516d56426e6b4c6369355479336473354c616b596276565859576433366f5a4654715a41645979714a484a676a5a

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610411578063e8183ecf14610441578063e985e9c51461045f578063f2fde38b1461048f5761018e565b8063a22cb465146103bd578063b88d4fde146103d9578063bb27dee6146103f55761018e565b806370a0823114610333578063715018a6146103635780638456cb591461036d57806384653dcb146103775780638da5cb5b1461038157806395d89b411461039f5761018e565b806318160ddd1161014b5780633f4ba83a116101255780633f4ba83a146102bf57806342842e0e146102c95780635c975abb146102e55780636352211e146103035761018e565b806318160ddd1461026757806323b872dd146102855780632f5ac4f1146102a15761018e565b806301ffc9a71461019357806304787ca2146101c357806306fdde03146101df578063081812fc146101fd578063095ea7b31461022d578063135d088d14610249575b600080fd5b6101ad60048036038101906101a891906126ec565b6104ab565b6040516101ba919061317e565b60405180910390f35b6101dd60048036038101906101d8919061273e565b61058d565b005b6101e7610623565b6040516101f49190613199565b60405180910390f35b6102176004803603810190610212919061277f565b6106b5565b6040516102249190613117565b60405180910390f35b610247600480360381019061024291906126b0565b61073a565b005b610251610852565b60405161025e9190613199565b60405180910390f35b61026f6108e0565b60405161027c91906133fb565b60405180910390f35b61029f600480360381019061029a91906125aa565b6108f1565b005b6102a9610951565b6040516102b69190613199565b60405180910390f35b6102c76109df565b005b6102e360048036038101906102de91906125aa565b610a65565b005b6102ed610a85565b6040516102fa919061317e565b60405180910390f35b61031d6004803603810190610318919061277f565b610a9c565b60405161032a9190613117565b60405180910390f35b61034d60048036038101906103489190612545565b610b4e565b60405161035a91906133fb565b60405180910390f35b61036b610c06565b005b610375610c8e565b005b61037f610d14565b005b610389610d7b565b6040516103969190613117565b60405180910390f35b6103a7610da5565b6040516103b49190613199565b60405180910390f35b6103d760048036038101906103d29190612674565b610e37565b005b6103f360048036038101906103ee91906125f9565b610fb8565b005b61040f600480360381019061040a919061273e565b61101a565b005b61042b6004803603810190610426919061277f565b6110b0565b6040516104389190613199565b60405180910390f35b610449611311565b60405161045691906133fb565b60405180910390f35b6104796004803603810190610474919061256e565b611317565b604051610486919061317e565b60405180910390f35b6104a960048036038101906104a49190612545565b6113ab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105865750610585826114da565b5b9050919050565b610595611544565b73ffffffffffffffffffffffffffffffffffffffff166105b3610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610609576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106009061335b565b60405180910390fd5b806009908051906020019061061f929190612369565b5050565b606060008054610632906136f9565b80601f016020809104026020016040519081016040528092919081815260200182805461065e906136f9565b80156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b5050505050905090565b60006106c08261154c565b6106ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f69061333b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074582610a9c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad906133bb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d5611544565b73ffffffffffffffffffffffffffffffffffffffff1614806108045750610803816107fe611544565b611317565b5b610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a906132bb565b60405180910390fd5b61084d83836115b8565b505050565b6009805461085f906136f9565b80601f016020809104026020016040519081016040528092919081815260200182805461088b906136f9565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b505050505081565b60006108ec60076114a3565b905090565b6109026108fc611544565b82611671565b610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906133db565b60405180910390fd5b61094c83838361174f565b505050565b600a805461095e906136f9565b80601f016020809104026020016040519081016040528092919081815260200182805461098a906136f9565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b505050505081565b6109e7611544565b73ffffffffffffffffffffffffffffffffffffffff16610a05610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a529061335b565b60405180910390fd5b610a636119ab565b565b610a8083838360405180602001604052806000815250610fb8565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906132fb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb6906132db565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c0e611544565b73ffffffffffffffffffffffffffffffffffffffff16610c2c610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061335b565b60405180910390fd5b610c8c6000611a4d565b565b610c96611544565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d019061335b565b60405180910390fd5b610d12611b13565b565b610d1c610a85565b15610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d539061329b565b60405180910390fd5b610d6f33610d6a60076114a3565b611bb6565b610d7960076114b1565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610db4906136f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610de0906136f9565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b5050505050905090565b610e3f611544565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea49061325b565b60405180910390fd5b8060056000610eba611544565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f67611544565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fac919061317e565b60405180910390a35050565b610fc9610fc3611544565b83611671565b611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff906133db565b60405180910390fd5b61101484848484611bd4565b50505050565b611022611544565b73ffffffffffffffffffffffffffffffffffffffff16611040610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d9061335b565b60405180910390fd5b80600a90805190602001906110ac929190612369565b5050565b60606110bb8261154c565b6110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f19061339b565b60405180910390fd5b60608060006103e88561110d9190613774565b14801561111a5750600084115b156111e957600a805461112c906136f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611158906136f9565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505091506040518060400160405280600681526020017f4275726e6564000000000000000000000000000000000000000000000000000081525090506112af565b600980546111f6906136f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611222906136f9565b801561126f5780601f106112445761010080835404028352916020019161126f565b820191906000526020600020905b81548152906001019060200180831161125257829003601f168201915b505050505091506040518060400160405280600c81526020017f476f6c64656e2042726f776e000000000000000000000000000000000000000081525090505b60006112e56112bd86611c30565b84846040516020016112d1939291906130ba565b604051602081830303815290604052611e05565b9050806040516020016112f89190613098565b6040516020818303038152906040529350505050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113b3611544565b73ffffffffffffffffffffffffffffffffffffffff166113d1610d7b565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061335b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e906131fb565b60405180910390fd5b6114a081611a4d565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661162b83610a9c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061167c8261154c565b6116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061327b565b60405180910390fd5b60006116c683610a9c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061173557508373ffffffffffffffffffffffffffffffffffffffff1661171d846106b5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061174657506117458185611317565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661176f82610a9c565b73ffffffffffffffffffffffffffffffffffffffff16146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc9061337b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c9061323b565b60405180910390fd5b611840838383611fa4565b61184b6000826115b8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189b9190613602565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f291906134ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119b3610a85565b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906131bb565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a36611544565b604051611a439190613117565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b1b610a85565b15611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b529061329b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b9f611544565b604051611bac9190613117565b60405180910390a1565b611bd0828260405180602001604052806000815250611fa9565b5050565b611bdf84848461174f565b611beb84848484612004565b611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906131db565b60405180910390fd5b50505050565b60606000821415611c78576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e00565b600082905060005b60008214611caa578080611c939061372b565b915050600a82611ca39190613577565b9150611c80565b60008167ffffffffffffffff811115611cec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d1e5781602001600182028036833780820191505090505b50905060008290505b60008614611df857600181611d3c9190613602565b90506000600a8088611d4e9190613577565b611d5891906135a8565b87611d639190613602565b6030611d6f9190613540565b905060008160f81b905080848481518110611db3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611def9190613577565b97505050611d27565b819450505050505b919050565b6060600082511415611e2857604051806020016040528060008152509050611f9f565b60006040518060600160405280604081526020016138cf6040913990506000600360028551611e5791906134ea565b611e619190613577565b6004611e6d91906135a8565b90506000602082611e7e91906134ea565b67ffffffffffffffff811115611ebd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eef5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611f5e576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611f03565b600389510660018114611f785760028114611f8857611f93565b613d3d60f01b6002830352611f93565b603d60f81b60018303525b50505050508093505050505b919050565b505050565b611fb3838361219b565b611fc06000848484612004565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff6906131db565b60405180910390fd5b505050565b60006120258473ffffffffffffffffffffffffffffffffffffffff166114c7565b1561218e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204e611544565b8786866040518563ffffffff1660e01b81526004016120709493929190613132565b602060405180830381600087803b15801561208a57600080fd5b505af19250505080156120bb57506040513d601f19601f820116820180604052508101906120b89190612715565b60015b61213e573d80600081146120eb576040519150601f19603f3d011682016040523d82523d6000602084013e6120f0565b606091505b50600081511415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d906131db565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612193565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122029061331b565b60405180910390fd5b6122148161154c565b15612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b9061321b565b60405180910390fd5b61226060008383611fa4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b091906134ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612375906136f9565b90600052602060002090601f01602090048101928261239757600085556123de565b82601f106123b057805160ff19168380011785556123de565b828001600101855582156123de579182015b828111156123dd5782518255916020019190600101906123c2565b5b5090506123eb91906123ef565b5090565b5b808211156124085760008160009055506001016123f0565b5090565b600061241f61241a84613447565b613416565b90508281526020810184848401111561243757600080fd5b6124428482856136b7565b509392505050565b600061245d61245884613477565b613416565b90508281526020810184848401111561247557600080fd5b6124808482856136b7565b509392505050565b60008135905061249781613872565b92915050565b6000813590506124ac81613889565b92915050565b6000813590506124c1816138a0565b92915050565b6000815190506124d6816138a0565b92915050565b600082601f8301126124ed57600080fd5b81356124fd84826020860161240c565b91505092915050565b600082601f83011261251757600080fd5b813561252784826020860161244a565b91505092915050565b60008135905061253f816138b7565b92915050565b60006020828403121561255757600080fd5b600061256584828501612488565b91505092915050565b6000806040838503121561258157600080fd5b600061258f85828601612488565b92505060206125a085828601612488565b9150509250929050565b6000806000606084860312156125bf57600080fd5b60006125cd86828701612488565b93505060206125de86828701612488565b92505060406125ef86828701612530565b9150509250925092565b6000806000806080858703121561260f57600080fd5b600061261d87828801612488565b945050602061262e87828801612488565b935050604061263f87828801612530565b925050606085013567ffffffffffffffff81111561265c57600080fd5b612668878288016124dc565b91505092959194509250565b6000806040838503121561268757600080fd5b600061269585828601612488565b92505060206126a68582860161249d565b9150509250929050565b600080604083850312156126c357600080fd5b60006126d185828601612488565b92505060206126e285828601612530565b9150509250929050565b6000602082840312156126fe57600080fd5b600061270c848285016124b2565b91505092915050565b60006020828403121561272757600080fd5b6000612735848285016124c7565b91505092915050565b60006020828403121561275057600080fd5b600082013567ffffffffffffffff81111561276a57600080fd5b61277684828501612506565b91505092915050565b60006020828403121561279157600080fd5b600061279f84828501612530565b91505092915050565b6127b181613636565b82525050565b6127c081613648565b82525050565b60006127d1826134a7565b6127db81856134bd565b93506127eb8185602086016136c6565b6127f481613861565b840191505092915050565b600061280a826134b2565b61281481856134ce565b93506128248185602086016136c6565b61282d81613861565b840191505092915050565b6000612843826134b2565b61284d81856134df565b935061285d8185602086016136c6565b80840191505092915050565b60006128766014836134ce565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006128b66033836134df565b91507f222c202261747472696275746573223a205b7b2274726169745f74797065223a60008301527f2022436f6c6f72222c2276616c7565223a2022000000000000000000000000006020830152603382019050919050565b600061291c6032836134ce565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129826026836134ce565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129e86069836134df565b91507f222c20226465736372697074696f6e223a20224120686f7420616e642064656c60008301527f6963696f7573206272656164737469636b2066726f6d20796f7572206c6f636160208301527f6c204e6f6e2d46756e6769626c65204f6c6976652047617264656e2e222c202260408301527f696d616765223a202200000000000000000000000000000000000000000000006060830152606982019050919050565b6000612a9a601c836134ce565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612ada6024836134ce565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b406019836134ce565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612b80602c836134ce565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612be66010836134ce565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612c266038836134ce565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612c8c602a836134ce565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612cf26029836134ce565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d586020836134ce565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612d98602c836134ce565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612dfe6020836134ce565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612e3e6029836134ce565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ea4602f836134ce565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612f0a6021836134ce565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f70601d836134df565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000612fb06031836134ce565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006130166004836134df565b91507f227d5d7d000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b60006130566016836134df565b91507f7b226e616d65223a20224272656164737469636b2023000000000000000000006000830152601682019050919050565b613092816136a0565b82525050565b60006130a382612f63565b91506130af8284612838565b915081905092915050565b60006130c582613049565b91506130d18286612838565b91506130dc826129db565b91506130e88285612838565b91506130f3826128a9565b91506130ff8284612838565b915061310a82613009565b9150819050949350505050565b600060208201905061312c60008301846127a8565b92915050565b600060808201905061314760008301876127a8565b61315460208301866127a8565b6131616040830185613089565b818103606083015261317381846127c6565b905095945050505050565b600060208201905061319360008301846127b7565b92915050565b600060208201905081810360008301526131b381846127ff565b905092915050565b600060208201905081810360008301526131d481612869565b9050919050565b600060208201905081810360008301526131f48161290f565b9050919050565b6000602082019050818103600083015261321481612975565b9050919050565b6000602082019050818103600083015261323481612a8d565b9050919050565b6000602082019050818103600083015261325481612acd565b9050919050565b6000602082019050818103600083015261327481612b33565b9050919050565b6000602082019050818103600083015261329481612b73565b9050919050565b600060208201905081810360008301526132b481612bd9565b9050919050565b600060208201905081810360008301526132d481612c19565b9050919050565b600060208201905081810360008301526132f481612c7f565b9050919050565b6000602082019050818103600083015261331481612ce5565b9050919050565b6000602082019050818103600083015261333481612d4b565b9050919050565b6000602082019050818103600083015261335481612d8b565b9050919050565b6000602082019050818103600083015261337481612df1565b9050919050565b6000602082019050818103600083015261339481612e31565b9050919050565b600060208201905081810360008301526133b481612e97565b9050919050565b600060208201905081810360008301526133d481612efd565b9050919050565b600060208201905081810360008301526133f481612fa3565b9050919050565b60006020820190506134106000830184613089565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561343d5761343c613832565b5b8060405250919050565b600067ffffffffffffffff82111561346257613461613832565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561349257613491613832565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134f5826136a0565b9150613500836136a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613535576135346137a5565b5b828201905092915050565b600061354b826136aa565b9150613556836136aa565b92508260ff0382111561356c5761356b6137a5565b5b828201905092915050565b6000613582826136a0565b915061358d836136a0565b92508261359d5761359c6137d4565b5b828204905092915050565b60006135b3826136a0565b91506135be836136a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135f7576135f66137a5565b5b828202905092915050565b600061360d826136a0565b9150613618836136a0565b92508282101561362b5761362a6137a5565b5b828203905092915050565b600061364182613680565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156136e45780820151818401526020810190506136c9565b838111156136f3576000848401525b50505050565b6000600282049050600182168061371157607f821691505b6020821081141561372557613724613803565b5b50919050565b6000613736826136a0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613769576137686137a5565b5b600182019050919050565b600061377f826136a0565b915061378a836136a0565b92508261379a576137996137d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61387b81613636565b811461388657600080fd5b50565b61389281613648565b811461389d57600080fd5b50565b6138a981613654565b81146138b457600080fd5b50565b6138c0816136a0565b81146138cb57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220cde3d01f532e4feba257123fc249fb78114549905993609f882d0c09bd11aa3164736f6c63430008000033

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.