ETH Price: $2,366.54 (-4.15%)
 

Overview

Max Total Supply

0 EMOJI

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
the-stoics.eth
Balance
1 EMOJI
0x324fb8fe0c9f09c671b337c91c17e7f36cfcabc4
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:
Emojiland

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Emojiland.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
pragma abicoder v2;


import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Emojiland is ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    string[] emojiGrid;
    uint256[] emojiPlacement;
    mapping(uint256 => bool) placementExists;

    uint256 b1 = 14847130;
    uint256 b2 = 14855573;

    uint256 b3 = 4036984964;
    uint256 b4 = 4036995762;

    uint256 b5 = 249042553518223;
    uint256 b6 = 250184427616399;

    uint256 b7 = 10115200151880611;
    uint256 b8 = 67729485498136719;

    uint256 b9 = 17338726241471006632;
    uint256 b10 = 17338726348845189052;

    uint256 b11 = 290895720109770093197502138;
    uint256 b12 = 290896144096653412365477565;

    uint256 b13 = 19064140619185476506089144957071;
    uint256 b14 = 19064169765631408777539437443215;

    
    constructor() ERC721 ("Emojiland", "EMOJI") {  }

    function bytesToUint(bytes memory b) internal pure returns (uint256){
        uint256 number;
        for(uint i=0;i<b.length;i++){
            number = number + uint(uint8(b[i]))*(2**(8*(b.length-(i+1))));
        }
        return number;
    }

    function isSingleEmoji(string memory em) view public returns(bool) {
        uint256 test = bytesToUint(bytes(em));

        return (
            (test >= b1 && test <= b2) || 
            (test >= b3 && test <= b4) || 
            (test >= b5 && test <= b6) || 
            (test >= b7 && test <= b8) || 
            (test >= b9 && test <= b10) ||
            (test >= b11 && test <= b12) ||
            (test >= b13 && test <= b14));
    }

    function setEmoji(uint256 tokenId, string memory em) public {
        bool allowed = _isApprovedOrOwner(msg.sender, tokenId);
        bool isEmoji = isSingleEmoji(em);
        require(isEmoji, "Must be an emoji");
        require(allowed, "Must own spot");
        emojiGrid[tokenId] = em;
    }

    function getEmojiGrid() public view returns(string[] memory) {
        return emojiGrid;
    }

    function getEmojiPlacement() public view returns(uint256[] memory) {
        return emojiPlacement;
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;

            uint256 tokenId;

            for (tokenId = 0; tokenId < _tokenIds.current(); tokenId++) {
                if (ownerOf(tokenId) == _owner) {
                    result[resultIndex] = tokenId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    function uint2str(uint value) internal pure returns (string memory) {
          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);
    }

    function mintSpot(string memory em, uint256 x, uint256 y) public {
        uint256 newItemId = _tokenIds.current();

        bool isEmoji = isSingleEmoji(em);
        require(isEmoji, "Must be an emoji");

        uint256 loc = x*100 + y;
        require(!placementExists[loc]);

        placementExists[loc] = true;
        emojiPlacement.push(loc);
        emojiGrid.push(em);

        string memory xStr = uint2str(x);
        string memory yStr = uint2str(y);


        string memory finalTokenUri = string(
            abi.encodePacked(
                "https://api.injectmagic.com/emojiland_metadata/",
                        yStr,
                        "_",
                        xStr,
                        ".json"
            )
        );

        _safeMint(msg.sender, newItemId);
        
        // Update your URI!!!
        _setTokenURI(newItemId, finalTokenUri);
    
        _tokenIds.increment();
    

   
    }
}

File 2 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @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 override {
        super._burn(tokenId);

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

File 3 of 13 : 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 4 of 13 : 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 13 : 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 6 of 13 : 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 7 of 13 : 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 8 of 13 : 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 9 of 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEmojiGrid","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEmojiPlacement","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"em","type":"string"}],"name":"isSingleEmoji","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"em","type":"string"},{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"}],"name":"mintSpot","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":"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"em","type":"string"}],"name":"setEmoji","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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"}]

608060405262e28c9a600c5562e2ad95600d5563f09f8084600e5563f09faab2600f5565e280bcefb88f60105565e38a99efb88f6011556623efb88fe283a360125566f09f9bb3efb88f60135567f09f87a6f09f87a860145567f09f87bff09f87bc6015556af09f9095e2808df09fa6ba6016556af09fa791e2808df09fa6bd6017556cf09f8f83e2808de29980efb88f6018556cf09fa79fe2808de29982efb88f601955348015620000b157600080fd5b506040518060400160405280600981526020017f456d6f6a696c616e6400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f454d4f4a4900000000000000000000000000000000000000000000000000000081525081600090805190602001906200013692919062000246565b5080600190805190602001906200014f92919062000246565b50505062000172620001666200017860201b60201c565b6200018060201b60201c565b6200035b565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025490620002f6565b90600052602060002090601f016020900481019282620002785760008555620002c4565b82601f106200029357805160ff1916838001178555620002c4565b82800160010185558215620002c4579182015b82811115620002c3578251825591602001919060010190620002a6565b5b509050620002d39190620002d7565b5090565b5b80821115620002f2576000816000905550600101620002d8565b5090565b600060028204905060018216806200030f57607f821691505b602082108114156200032657620003256200032c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613fd7806200036b6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638462151c116100b8578063b88d4fde1161007c578063b88d4fde14610373578063c87b56dd1461038f578063e985e9c5146103bf578063edb069bf146103ef578063f2fde38b1461040d578063fd20d2501461042957610142565b80638462151c146102bb5780638da5cb5b146102eb57806395d89b4114610309578063a22cb46514610327578063a668b11b1461034357610142565b80633634d2651161010a5780633634d265146101fd57806342842e0e146102195780636352211e1461023557806370a0823114610265578063715018a61461029557806372180fb61461029f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c919061287d565b610447565b60405161016e9190613044565b60405180910390f35b61017f610529565b60405161018c919061305f565b60405180910390f35b6101af60048036038101906101aa9190612977565b6105bb565b6040516101bc9190612f99565b60405180910390f35b6101df60048036038101906101da9190612841565b610640565b005b6101fb60048036038101906101f6919061273b565b610758565b005b61021760048036038101906102129190612910565b6107b8565b005b610233600480360381019061022e919061273b565b610954565b005b61024f600480360381019061024a9190612977565b610974565b60405161025c9190612f99565b60405180910390f35b61027f600480360381019061027a91906126d6565b610a26565b60405161028c9190613301565b60405180910390f35b61029d610ade565b005b6102b960048036038101906102b491906129a0565b610b66565b005b6102d560048036038101906102d091906126d6565b610c60565b6040516102e29190613022565b60405180910390f35b6102f3610e29565b6040516103009190612f99565b60405180910390f35b610311610e53565b60405161031e919061305f565b60405180910390f35b610341600480360381019061033c9190612805565b610ee5565b005b61035d600480360381019061035891906128cf565b611066565b60405161036a9190613044565b60405180910390f35b61038d6004803603810190610388919061278a565b611132565b005b6103a960048036038101906103a49190612977565b611194565b6040516103b6919061305f565b60405180910390f35b6103d960048036038101906103d491906126ff565b6112e6565b6040516103e69190613044565b60405180910390f35b6103f761137a565b6040516104049190613022565b60405180910390f35b610427600480360381019061042291906126d6565b6113d2565b005b6104316114ca565b60405161043e9190613000565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105225750610521826115a3565b5b9050919050565b606060008054610538906137a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610564906137a5565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b5050505050905090565b60006105c68261160d565b610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90613221565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064b82610974565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b3906132a1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106db611679565b73ffffffffffffffffffffffffffffffffffffffff16148061070a575061070981610704611679565b6112e6565b5b610749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074090613161565b60405180910390fd5b6107538383611681565b505050565b610769610763611679565b8261173a565b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f906132c1565b60405180910390fd5b6107b3838383611818565b505050565b60006107c46008611a74565b905060006107d185611066565b905080610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906132e1565b60405180910390fd5b6000836064866108239190613661565b61082d9190613469565b9050600b600082815260200190815260200160002060009054906101000a900460ff161561085a57600080fd5b6001600b600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600a8190806001815401808255809150506001900390600052602060002001600090919091909150556009869080600181540180825580915050600190039060005260206000200160009091909190915090805190602001906108ea9291906124fa565b5060006108f686611a82565b9050600061090386611a82565b90506000818360405160200161091a929190612f54565b60405160208183030381529060405290506109353387611c2f565b61093f8682611c4d565b6109496008611cc1565b505050505050505050565b61096f83838360405180602001604052806000815250611132565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906131a1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613181565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae6611679565b73ffffffffffffffffffffffffffffffffffffffff16610b04610e29565b73ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613241565b60405180910390fd5b610b646000611cd7565b565b6000610b72338461173a565b90506000610b7f83611066565b905080610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906132e1565b60405180910390fd5b81610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613141565b60405180910390fd5b8260098581548110610c3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020019080519060200190610c599291906124fa565b5050505050565b60606000610c6d83610a26565b90506000811415610cf057600067ffffffffffffffff811115610cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ce75781602001602082028036833780820191505090505b50915050610e24565b60008167ffffffffffffffff811115610d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d605781602001602082028036833780820191505090505b5090506000805b610d716008611a74565b811015610e1c578573ffffffffffffffffffffffffffffffffffffffff16610d9882610974565b73ffffffffffffffffffffffffffffffffffffffff161415610e095780838381518110610dee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610e0590613808565b9250505b8080610e1490613808565b915050610d67565b829450505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e62906137a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e906137a5565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b5050505050905090565b610eed611679565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613101565b60405180910390fd5b8060056000610f68611679565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611015611679565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105a9190613044565b60405180910390a35050565b60008061107283611d9d565b9050600c5481101580156110885750600d548111155b806110a35750600e5481101580156110a25750600f548111155b5b806110be575060105481101580156110bd57506011548111155b5b806110d9575060125481101580156110d857506013548111155b5b806110f4575060145481101580156110f357506015548111155b5b8061110f5750601654811015801561110e57506017548111155b5b8061112a5750601854811015801561112957506019548111155b5b915050919050565b61114361113d611679565b8361173a565b611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906132c1565b60405180910390fd5b61118e84848484611e5b565b50505050565b606061119f8261160d565b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590613201565b60405180910390fd5b60006006600084815260200190815260200160002080546111fe906137a5565b80601f016020809104026020016040519081016040528092919081815260200182805461122a906137a5565b80156112775780601f1061124c57610100808354040283529160200191611277565b820191906000526020600020905b81548152906001019060200180831161125a57829003601f168201915b505050505090506000611288611eb7565b905060008151141561129e5781925050506112e1565b6000825111156112d35780826040516020016112bb929190612f30565b604051602081830303815290604052925050506112e1565b6112dc84611ece565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600a8054806020026020016040519081016040528092919081815260200182805480156113c857602002820191906000526020600020905b8154815260200190600101908083116113b4575b5050505050905090565b6113da611679565b73ffffffffffffffffffffffffffffffffffffffff166113f8610e29565b73ffffffffffffffffffffffffffffffffffffffff161461144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613241565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b5906130a1565b60405180910390fd5b6114c781611cd7565b50565b60606009805480602002602001604051908101604052809291908181526020016000905b8282101561159a57838290600052602060002001805461150d906137a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611539906137a5565b80156115865780601f1061155b57610100808354040283529160200191611586565b820191906000526020600020905b81548152906001019060200180831161156957829003601f168201915b5050505050815260200190600101906114ee565b50505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f483610974565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117458261160d565b611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613121565b60405180910390fd5b600061178f83610974565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117fe57508373ffffffffffffffffffffffffffffffffffffffff166117e6846105bb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061180f575061180e81856112e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661183882610974565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613261565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f5906130e1565b60405180910390fd5b611909838383611f75565b611914600082611681565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196491906136bb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119bb9190613469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60606000821415611aca576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c2a565b600082905060005b60008214611afc578080611ae590613808565b915050600a82611af591906134bf565b9150611ad2565b60008167ffffffffffffffff811115611b3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b705781602001600182028036833780820191505090505b5090505b60008514611c2357600182611b8991906136bb565b9150600a85611b989190613851565b6030611ba49190613469565b60f81b818381518110611be0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c1c91906134bf565b9450611b74565b8093505050505b919050565b611c49828260405180602001604052806000815250611f7a565b5050565b611c568261160d565b611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c906131c1565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cbc9291906124fa565b505050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060005b8351811015611e5157600181611db99190613469565b8451611dc591906136bb565b6008611dd19190613661565b6002611ddd9190613543565b848281518110611e16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16611e319190613661565b82611e3c9190613469565b91508080611e4990613808565b915050611da3565b5080915050919050565b611e66848484611818565b611e7284848484611fd5565b611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613081565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611ed98261160d565b611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613281565b60405180910390fd5b6000611f22611eb7565b90506000815111611f425760405180602001604052806000815250611f6d565b80611f4c8461216c565b604051602001611f5d929190612f30565b6040516020818303038152906040525b915050919050565b505050565b611f848383612319565b611f916000848484611fd5565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613081565b60405180910390fd5b505050565b6000611ff68473ffffffffffffffffffffffffffffffffffffffff166124e7565b1561215f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261201f611679565b8786866040518563ffffffff1660e01b81526004016120419493929190612fb4565b602060405180830381600087803b15801561205b57600080fd5b505af192505050801561208c57506040513d601f19601f8201168201806040525081019061208991906128a6565b60015b61210f573d80600081146120bc576040519150601f19603f3d011682016040523d82523d6000602084013e6120c1565b606091505b50600081511415612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90613081565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612164565b600190505b949350505050565b606060008214156121b4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612314565b600082905060005b600082146121e65780806121cf90613808565b915050600a826121df91906134bf565b91506121bc565b60008167ffffffffffffffff811115612228577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561225a5781602001600182028036833780820191505090505b5090505b6000851461230d5760018261227391906136bb565b9150600a856122829190613851565b603061228e9190613469565b60f81b8183815181106122ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561230691906134bf565b945061225e565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612380906131e1565b60405180910390fd5b6123928161160d565b156123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c9906130c1565b60405180910390fd5b6123de60008383611f75565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242e9190613469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612506906137a5565b90600052602060002090601f016020900481019282612528576000855561256f565b82601f1061254157805160ff191683800117855561256f565b8280016001018555821561256f579182015b8281111561256e578251825591602001919060010190612553565b5b50905061257c9190612580565b5090565b5b80821115612599576000816000905550600101612581565b5090565b60006125b06125ab84613341565b61331c565b9050828152602081018484840111156125c857600080fd5b6125d3848285613763565b509392505050565b60006125ee6125e984613372565b61331c565b90508281526020810184848401111561260657600080fd5b612611848285613763565b509392505050565b60008135905061262881613f45565b92915050565b60008135905061263d81613f5c565b92915050565b60008135905061265281613f73565b92915050565b60008151905061266781613f73565b92915050565b600082601f83011261267e57600080fd5b813561268e84826020860161259d565b91505092915050565b600082601f8301126126a857600080fd5b81356126b88482602086016125db565b91505092915050565b6000813590506126d081613f8a565b92915050565b6000602082840312156126e857600080fd5b60006126f684828501612619565b91505092915050565b6000806040838503121561271257600080fd5b600061272085828601612619565b925050602061273185828601612619565b9150509250929050565b60008060006060848603121561275057600080fd5b600061275e86828701612619565b935050602061276f86828701612619565b9250506040612780868287016126c1565b9150509250925092565b600080600080608085870312156127a057600080fd5b60006127ae87828801612619565b94505060206127bf87828801612619565b93505060406127d0878288016126c1565b925050606085013567ffffffffffffffff8111156127ed57600080fd5b6127f98782880161266d565b91505092959194509250565b6000806040838503121561281857600080fd5b600061282685828601612619565b92505060206128378582860161262e565b9150509250929050565b6000806040838503121561285457600080fd5b600061286285828601612619565b9250506020612873858286016126c1565b9150509250929050565b60006020828403121561288f57600080fd5b600061289d84828501612643565b91505092915050565b6000602082840312156128b857600080fd5b60006128c684828501612658565b91505092915050565b6000602082840312156128e157600080fd5b600082013567ffffffffffffffff8111156128fb57600080fd5b61290784828501612697565b91505092915050565b60008060006060848603121561292557600080fd5b600084013567ffffffffffffffff81111561293f57600080fd5b61294b86828701612697565b935050602061295c868287016126c1565b925050604061296d868287016126c1565b9150509250925092565b60006020828403121561298957600080fd5b6000612997848285016126c1565b91505092915050565b600080604083850312156129b357600080fd5b60006129c1858286016126c1565b925050602083013567ffffffffffffffff8111156129de57600080fd5b6129ea85828601612697565b9150509250929050565b6000612a008383612b4a565b905092915050565b6000612a148383612f12565b60208301905092915050565b612a29816136ef565b82525050565b6000612a3a826133c3565b612a448185613409565b935083602082028501612a56856133a3565b8060005b85811015612a925784840389528151612a7385826129f4565b9450612a7e836133ef565b925060208a01995050600181019050612a5a565b50829750879550505050505092915050565b6000612aaf826133ce565b612ab9818561341a565b9350612ac4836133b3565b8060005b83811015612af5578151612adc8882612a08565b9750612ae7836133fc565b925050600181019050612ac8565b5085935050505092915050565b612b0b81613701565b82525050565b6000612b1c826133d9565b612b26818561342b565b9350612b36818560208601613772565b612b3f8161393e565b840191505092915050565b6000612b55826133e4565b612b5f818561343c565b9350612b6f818560208601613772565b612b788161393e565b840191505092915050565b6000612b8e826133e4565b612b98818561344d565b9350612ba8818560208601613772565b612bb18161393e565b840191505092915050565b6000612bc7826133e4565b612bd1818561345e565b9350612be1818560208601613772565b80840191505092915050565b6000612bfa60328361344d565b9150612c058261395c565b604082019050919050565b6000612c1d60268361344d565b9150612c28826139ab565b604082019050919050565b6000612c40601c8361344d565b9150612c4b826139fa565b602082019050919050565b6000612c6360248361344d565b9150612c6e82613a23565b604082019050919050565b6000612c8660198361344d565b9150612c9182613a72565b602082019050919050565b6000612ca9602c8361344d565b9150612cb482613a9b565b604082019050919050565b6000612ccc600d8361344d565b9150612cd782613aea565b602082019050919050565b6000612cef60388361344d565b9150612cfa82613b13565b604082019050919050565b6000612d12602a8361344d565b9150612d1d82613b62565b604082019050919050565b6000612d3560298361344d565b9150612d4082613bb1565b604082019050919050565b6000612d58602e8361344d565b9150612d6382613c00565b604082019050919050565b6000612d7b60208361344d565b9150612d8682613c4f565b602082019050919050565b6000612d9e60318361344d565b9150612da982613c78565b604082019050919050565b6000612dc1602c8361344d565b9150612dcc82613cc7565b604082019050919050565b6000612de460058361345e565b9150612def82613d16565b600582019050919050565b6000612e0760208361344d565b9150612e1282613d3f565b602082019050919050565b6000612e2a60298361344d565b9150612e3582613d68565b604082019050919050565b6000612e4d602f8361344d565b9150612e5882613db7565b604082019050919050565b6000612e7060218361344d565b9150612e7b82613e06565b604082019050919050565b6000612e9360318361344d565b9150612e9e82613e55565b604082019050919050565b6000612eb660018361345e565b9150612ec182613ea4565b600182019050919050565b6000612ed9602f8361345e565b9150612ee482613ecd565b602f82019050919050565b6000612efc60108361344d565b9150612f0782613f1c565b602082019050919050565b612f1b81613759565b82525050565b612f2a81613759565b82525050565b6000612f3c8285612bbc565b9150612f488284612bbc565b91508190509392505050565b6000612f5f82612ecc565b9150612f6b8285612bbc565b9150612f7682612ea9565b9150612f828284612bbc565b9150612f8d82612dd7565b91508190509392505050565b6000602082019050612fae6000830184612a20565b92915050565b6000608082019050612fc96000830187612a20565b612fd66020830186612a20565b612fe36040830185612f21565b8181036060830152612ff58184612b11565b905095945050505050565b6000602082019050818103600083015261301a8184612a2f565b905092915050565b6000602082019050818103600083015261303c8184612aa4565b905092915050565b60006020820190506130596000830184612b02565b92915050565b600060208201905081810360008301526130798184612b83565b905092915050565b6000602082019050818103600083015261309a81612bed565b9050919050565b600060208201905081810360008301526130ba81612c10565b9050919050565b600060208201905081810360008301526130da81612c33565b9050919050565b600060208201905081810360008301526130fa81612c56565b9050919050565b6000602082019050818103600083015261311a81612c79565b9050919050565b6000602082019050818103600083015261313a81612c9c565b9050919050565b6000602082019050818103600083015261315a81612cbf565b9050919050565b6000602082019050818103600083015261317a81612ce2565b9050919050565b6000602082019050818103600083015261319a81612d05565b9050919050565b600060208201905081810360008301526131ba81612d28565b9050919050565b600060208201905081810360008301526131da81612d4b565b9050919050565b600060208201905081810360008301526131fa81612d6e565b9050919050565b6000602082019050818103600083015261321a81612d91565b9050919050565b6000602082019050818103600083015261323a81612db4565b9050919050565b6000602082019050818103600083015261325a81612dfa565b9050919050565b6000602082019050818103600083015261327a81612e1d565b9050919050565b6000602082019050818103600083015261329a81612e40565b9050919050565b600060208201905081810360008301526132ba81612e63565b9050919050565b600060208201905081810360008301526132da81612e86565b9050919050565b600060208201905081810360008301526132fa81612eef565b9050919050565b60006020820190506133166000830184612f21565b92915050565b6000613326613337565b905061333282826137d7565b919050565b6000604051905090565b600067ffffffffffffffff82111561335c5761335b61390f565b5b6133658261393e565b9050602081019050919050565b600067ffffffffffffffff82111561338d5761338c61390f565b5b6133968261393e565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061347482613759565b915061347f83613759565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b4576134b3613882565b5b828201905092915050565b60006134ca82613759565b91506134d583613759565b9250826134e5576134e46138b1565b5b828204905092915050565b6000808291508390505b600185111561353a5780860481111561351657613515613882565b5b60018516156135255780820291505b80810290506135338561394f565b94506134fa565b94509492505050565b600061354e82613759565b915061355983613759565b92506135867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461358e565b905092915050565b60008261359e576001905061365a565b816135ac576000905061365a565b81600181146135c257600281146135cc576135fb565b600191505061365a565b60ff8411156135de576135dd613882565b5b8360020a9150848211156135f5576135f4613882565b5b5061365a565b5060208310610133831016604e8410600b84101617156136305782820a90508381111561362b5761362a613882565b5b61365a565b61363d84848460016134f0565b9250905081840481111561365457613653613882565b5b81810290505b9392505050565b600061366c82613759565b915061367783613759565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b0576136af613882565b5b828202905092915050565b60006136c682613759565b91506136d183613759565b9250828210156136e4576136e3613882565b5b828203905092915050565b60006136fa82613739565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613790578082015181840152602081019050613775565b8381111561379f576000848401525b50505050565b600060028204905060018216806137bd57607f821691505b602082108114156137d1576137d06138e0565b5b50919050565b6137e08261393e565b810181811067ffffffffffffffff821117156137ff576137fe61390f565b5b80604052505050565b600061381382613759565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561384657613845613882565b5b600182019050919050565b600061385c82613759565b915061386783613759565b925082613877576138766138b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374206f776e2073706f7400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f68747470733a2f2f6170692e696e6a6563746d616769632e636f6d2f656d6f6a60008201527f696c616e645f6d657461646174612f0000000000000000000000000000000000602082015250565b7f4d75737420626520616e20656d6f6a6900000000000000000000000000000000600082015250565b613f4e816136ef565b8114613f5957600080fd5b50565b613f6581613701565b8114613f7057600080fd5b50565b613f7c8161370d565b8114613f8757600080fd5b50565b613f9381613759565b8114613f9e57600080fd5b5056fea2646970667358221220bc38fc570bcf103fe897754dab80ac297202153406ee9b7ca4eb676c1c9a206b64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638462151c116100b8578063b88d4fde1161007c578063b88d4fde14610373578063c87b56dd1461038f578063e985e9c5146103bf578063edb069bf146103ef578063f2fde38b1461040d578063fd20d2501461042957610142565b80638462151c146102bb5780638da5cb5b146102eb57806395d89b4114610309578063a22cb46514610327578063a668b11b1461034357610142565b80633634d2651161010a5780633634d265146101fd57806342842e0e146102195780636352211e1461023557806370a0823114610265578063715018a61461029557806372180fb61461029f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c919061287d565b610447565b60405161016e9190613044565b60405180910390f35b61017f610529565b60405161018c919061305f565b60405180910390f35b6101af60048036038101906101aa9190612977565b6105bb565b6040516101bc9190612f99565b60405180910390f35b6101df60048036038101906101da9190612841565b610640565b005b6101fb60048036038101906101f6919061273b565b610758565b005b61021760048036038101906102129190612910565b6107b8565b005b610233600480360381019061022e919061273b565b610954565b005b61024f600480360381019061024a9190612977565b610974565b60405161025c9190612f99565b60405180910390f35b61027f600480360381019061027a91906126d6565b610a26565b60405161028c9190613301565b60405180910390f35b61029d610ade565b005b6102b960048036038101906102b491906129a0565b610b66565b005b6102d560048036038101906102d091906126d6565b610c60565b6040516102e29190613022565b60405180910390f35b6102f3610e29565b6040516103009190612f99565b60405180910390f35b610311610e53565b60405161031e919061305f565b60405180910390f35b610341600480360381019061033c9190612805565b610ee5565b005b61035d600480360381019061035891906128cf565b611066565b60405161036a9190613044565b60405180910390f35b61038d6004803603810190610388919061278a565b611132565b005b6103a960048036038101906103a49190612977565b611194565b6040516103b6919061305f565b60405180910390f35b6103d960048036038101906103d491906126ff565b6112e6565b6040516103e69190613044565b60405180910390f35b6103f761137a565b6040516104049190613022565b60405180910390f35b610427600480360381019061042291906126d6565b6113d2565b005b6104316114ca565b60405161043e9190613000565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105225750610521826115a3565b5b9050919050565b606060008054610538906137a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610564906137a5565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b5050505050905090565b60006105c68261160d565b610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc90613221565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064b82610974565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b3906132a1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106db611679565b73ffffffffffffffffffffffffffffffffffffffff16148061070a575061070981610704611679565b6112e6565b5b610749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074090613161565b60405180910390fd5b6107538383611681565b505050565b610769610763611679565b8261173a565b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f906132c1565b60405180910390fd5b6107b3838383611818565b505050565b60006107c46008611a74565b905060006107d185611066565b905080610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906132e1565b60405180910390fd5b6000836064866108239190613661565b61082d9190613469565b9050600b600082815260200190815260200160002060009054906101000a900460ff161561085a57600080fd5b6001600b600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600a8190806001815401808255809150506001900390600052602060002001600090919091909150556009869080600181540180825580915050600190039060005260206000200160009091909190915090805190602001906108ea9291906124fa565b5060006108f686611a82565b9050600061090386611a82565b90506000818360405160200161091a929190612f54565b60405160208183030381529060405290506109353387611c2f565b61093f8682611c4d565b6109496008611cc1565b505050505050505050565b61096f83838360405180602001604052806000815250611132565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906131a1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613181565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae6611679565b73ffffffffffffffffffffffffffffffffffffffff16610b04610e29565b73ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613241565b60405180910390fd5b610b646000611cd7565b565b6000610b72338461173a565b90506000610b7f83611066565b905080610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906132e1565b60405180910390fd5b81610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613141565b60405180910390fd5b8260098581548110610c3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020019080519060200190610c599291906124fa565b5050505050565b60606000610c6d83610a26565b90506000811415610cf057600067ffffffffffffffff811115610cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ce75781602001602082028036833780820191505090505b50915050610e24565b60008167ffffffffffffffff811115610d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d605781602001602082028036833780820191505090505b5090506000805b610d716008611a74565b811015610e1c578573ffffffffffffffffffffffffffffffffffffffff16610d9882610974565b73ffffffffffffffffffffffffffffffffffffffff161415610e095780838381518110610dee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610e0590613808565b9250505b8080610e1490613808565b915050610d67565b829450505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e62906137a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e906137a5565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b5050505050905090565b610eed611679565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613101565b60405180910390fd5b8060056000610f68611679565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611015611679565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105a9190613044565b60405180910390a35050565b60008061107283611d9d565b9050600c5481101580156110885750600d548111155b806110a35750600e5481101580156110a25750600f548111155b5b806110be575060105481101580156110bd57506011548111155b5b806110d9575060125481101580156110d857506013548111155b5b806110f4575060145481101580156110f357506015548111155b5b8061110f5750601654811015801561110e57506017548111155b5b8061112a5750601854811015801561112957506019548111155b5b915050919050565b61114361113d611679565b8361173a565b611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906132c1565b60405180910390fd5b61118e84848484611e5b565b50505050565b606061119f8261160d565b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590613201565b60405180910390fd5b60006006600084815260200190815260200160002080546111fe906137a5565b80601f016020809104026020016040519081016040528092919081815260200182805461122a906137a5565b80156112775780601f1061124c57610100808354040283529160200191611277565b820191906000526020600020905b81548152906001019060200180831161125a57829003601f168201915b505050505090506000611288611eb7565b905060008151141561129e5781925050506112e1565b6000825111156112d35780826040516020016112bb929190612f30565b604051602081830303815290604052925050506112e1565b6112dc84611ece565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600a8054806020026020016040519081016040528092919081815260200182805480156113c857602002820191906000526020600020905b8154815260200190600101908083116113b4575b5050505050905090565b6113da611679565b73ffffffffffffffffffffffffffffffffffffffff166113f8610e29565b73ffffffffffffffffffffffffffffffffffffffff161461144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613241565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b5906130a1565b60405180910390fd5b6114c781611cd7565b50565b60606009805480602002602001604051908101604052809291908181526020016000905b8282101561159a57838290600052602060002001805461150d906137a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611539906137a5565b80156115865780601f1061155b57610100808354040283529160200191611586565b820191906000526020600020905b81548152906001019060200180831161156957829003601f168201915b5050505050815260200190600101906114ee565b50505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116f483610974565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117458261160d565b611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613121565b60405180910390fd5b600061178f83610974565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117fe57508373ffffffffffffffffffffffffffffffffffffffff166117e6846105bb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061180f575061180e81856112e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661183882610974565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613261565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f5906130e1565b60405180910390fd5b611909838383611f75565b611914600082611681565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196491906136bb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119bb9190613469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60606000821415611aca576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c2a565b600082905060005b60008214611afc578080611ae590613808565b915050600a82611af591906134bf565b9150611ad2565b60008167ffffffffffffffff811115611b3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b705781602001600182028036833780820191505090505b5090505b60008514611c2357600182611b8991906136bb565b9150600a85611b989190613851565b6030611ba49190613469565b60f81b818381518110611be0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c1c91906134bf565b9450611b74565b8093505050505b919050565b611c49828260405180602001604052806000815250611f7a565b5050565b611c568261160d565b611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c906131c1565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611cbc9291906124fa565b505050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060005b8351811015611e5157600181611db99190613469565b8451611dc591906136bb565b6008611dd19190613661565b6002611ddd9190613543565b848281518110611e16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16611e319190613661565b82611e3c9190613469565b91508080611e4990613808565b915050611da3565b5080915050919050565b611e66848484611818565b611e7284848484611fd5565b611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613081565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611ed98261160d565b611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613281565b60405180910390fd5b6000611f22611eb7565b90506000815111611f425760405180602001604052806000815250611f6d565b80611f4c8461216c565b604051602001611f5d929190612f30565b6040516020818303038152906040525b915050919050565b505050565b611f848383612319565b611f916000848484611fd5565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613081565b60405180910390fd5b505050565b6000611ff68473ffffffffffffffffffffffffffffffffffffffff166124e7565b1561215f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261201f611679565b8786866040518563ffffffff1660e01b81526004016120419493929190612fb4565b602060405180830381600087803b15801561205b57600080fd5b505af192505050801561208c57506040513d601f19601f8201168201806040525081019061208991906128a6565b60015b61210f573d80600081146120bc576040519150601f19603f3d011682016040523d82523d6000602084013e6120c1565b606091505b50600081511415612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90613081565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612164565b600190505b949350505050565b606060008214156121b4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612314565b600082905060005b600082146121e65780806121cf90613808565b915050600a826121df91906134bf565b91506121bc565b60008167ffffffffffffffff811115612228577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561225a5781602001600182028036833780820191505090505b5090505b6000851461230d5760018261227391906136bb565b9150600a856122829190613851565b603061228e9190613469565b60f81b8183815181106122ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561230691906134bf565b945061225e565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612380906131e1565b60405180910390fd5b6123928161160d565b156123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c9906130c1565b60405180910390fd5b6123de60008383611f75565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242e9190613469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612506906137a5565b90600052602060002090601f016020900481019282612528576000855561256f565b82601f1061254157805160ff191683800117855561256f565b8280016001018555821561256f579182015b8281111561256e578251825591602001919060010190612553565b5b50905061257c9190612580565b5090565b5b80821115612599576000816000905550600101612581565b5090565b60006125b06125ab84613341565b61331c565b9050828152602081018484840111156125c857600080fd5b6125d3848285613763565b509392505050565b60006125ee6125e984613372565b61331c565b90508281526020810184848401111561260657600080fd5b612611848285613763565b509392505050565b60008135905061262881613f45565b92915050565b60008135905061263d81613f5c565b92915050565b60008135905061265281613f73565b92915050565b60008151905061266781613f73565b92915050565b600082601f83011261267e57600080fd5b813561268e84826020860161259d565b91505092915050565b600082601f8301126126a857600080fd5b81356126b88482602086016125db565b91505092915050565b6000813590506126d081613f8a565b92915050565b6000602082840312156126e857600080fd5b60006126f684828501612619565b91505092915050565b6000806040838503121561271257600080fd5b600061272085828601612619565b925050602061273185828601612619565b9150509250929050565b60008060006060848603121561275057600080fd5b600061275e86828701612619565b935050602061276f86828701612619565b9250506040612780868287016126c1565b9150509250925092565b600080600080608085870312156127a057600080fd5b60006127ae87828801612619565b94505060206127bf87828801612619565b93505060406127d0878288016126c1565b925050606085013567ffffffffffffffff8111156127ed57600080fd5b6127f98782880161266d565b91505092959194509250565b6000806040838503121561281857600080fd5b600061282685828601612619565b92505060206128378582860161262e565b9150509250929050565b6000806040838503121561285457600080fd5b600061286285828601612619565b9250506020612873858286016126c1565b9150509250929050565b60006020828403121561288f57600080fd5b600061289d84828501612643565b91505092915050565b6000602082840312156128b857600080fd5b60006128c684828501612658565b91505092915050565b6000602082840312156128e157600080fd5b600082013567ffffffffffffffff8111156128fb57600080fd5b61290784828501612697565b91505092915050565b60008060006060848603121561292557600080fd5b600084013567ffffffffffffffff81111561293f57600080fd5b61294b86828701612697565b935050602061295c868287016126c1565b925050604061296d868287016126c1565b9150509250925092565b60006020828403121561298957600080fd5b6000612997848285016126c1565b91505092915050565b600080604083850312156129b357600080fd5b60006129c1858286016126c1565b925050602083013567ffffffffffffffff8111156129de57600080fd5b6129ea85828601612697565b9150509250929050565b6000612a008383612b4a565b905092915050565b6000612a148383612f12565b60208301905092915050565b612a29816136ef565b82525050565b6000612a3a826133c3565b612a448185613409565b935083602082028501612a56856133a3565b8060005b85811015612a925784840389528151612a7385826129f4565b9450612a7e836133ef565b925060208a01995050600181019050612a5a565b50829750879550505050505092915050565b6000612aaf826133ce565b612ab9818561341a565b9350612ac4836133b3565b8060005b83811015612af5578151612adc8882612a08565b9750612ae7836133fc565b925050600181019050612ac8565b5085935050505092915050565b612b0b81613701565b82525050565b6000612b1c826133d9565b612b26818561342b565b9350612b36818560208601613772565b612b3f8161393e565b840191505092915050565b6000612b55826133e4565b612b5f818561343c565b9350612b6f818560208601613772565b612b788161393e565b840191505092915050565b6000612b8e826133e4565b612b98818561344d565b9350612ba8818560208601613772565b612bb18161393e565b840191505092915050565b6000612bc7826133e4565b612bd1818561345e565b9350612be1818560208601613772565b80840191505092915050565b6000612bfa60328361344d565b9150612c058261395c565b604082019050919050565b6000612c1d60268361344d565b9150612c28826139ab565b604082019050919050565b6000612c40601c8361344d565b9150612c4b826139fa565b602082019050919050565b6000612c6360248361344d565b9150612c6e82613a23565b604082019050919050565b6000612c8660198361344d565b9150612c9182613a72565b602082019050919050565b6000612ca9602c8361344d565b9150612cb482613a9b565b604082019050919050565b6000612ccc600d8361344d565b9150612cd782613aea565b602082019050919050565b6000612cef60388361344d565b9150612cfa82613b13565b604082019050919050565b6000612d12602a8361344d565b9150612d1d82613b62565b604082019050919050565b6000612d3560298361344d565b9150612d4082613bb1565b604082019050919050565b6000612d58602e8361344d565b9150612d6382613c00565b604082019050919050565b6000612d7b60208361344d565b9150612d8682613c4f565b602082019050919050565b6000612d9e60318361344d565b9150612da982613c78565b604082019050919050565b6000612dc1602c8361344d565b9150612dcc82613cc7565b604082019050919050565b6000612de460058361345e565b9150612def82613d16565b600582019050919050565b6000612e0760208361344d565b9150612e1282613d3f565b602082019050919050565b6000612e2a60298361344d565b9150612e3582613d68565b604082019050919050565b6000612e4d602f8361344d565b9150612e5882613db7565b604082019050919050565b6000612e7060218361344d565b9150612e7b82613e06565b604082019050919050565b6000612e9360318361344d565b9150612e9e82613e55565b604082019050919050565b6000612eb660018361345e565b9150612ec182613ea4565b600182019050919050565b6000612ed9602f8361345e565b9150612ee482613ecd565b602f82019050919050565b6000612efc60108361344d565b9150612f0782613f1c565b602082019050919050565b612f1b81613759565b82525050565b612f2a81613759565b82525050565b6000612f3c8285612bbc565b9150612f488284612bbc565b91508190509392505050565b6000612f5f82612ecc565b9150612f6b8285612bbc565b9150612f7682612ea9565b9150612f828284612bbc565b9150612f8d82612dd7565b91508190509392505050565b6000602082019050612fae6000830184612a20565b92915050565b6000608082019050612fc96000830187612a20565b612fd66020830186612a20565b612fe36040830185612f21565b8181036060830152612ff58184612b11565b905095945050505050565b6000602082019050818103600083015261301a8184612a2f565b905092915050565b6000602082019050818103600083015261303c8184612aa4565b905092915050565b60006020820190506130596000830184612b02565b92915050565b600060208201905081810360008301526130798184612b83565b905092915050565b6000602082019050818103600083015261309a81612bed565b9050919050565b600060208201905081810360008301526130ba81612c10565b9050919050565b600060208201905081810360008301526130da81612c33565b9050919050565b600060208201905081810360008301526130fa81612c56565b9050919050565b6000602082019050818103600083015261311a81612c79565b9050919050565b6000602082019050818103600083015261313a81612c9c565b9050919050565b6000602082019050818103600083015261315a81612cbf565b9050919050565b6000602082019050818103600083015261317a81612ce2565b9050919050565b6000602082019050818103600083015261319a81612d05565b9050919050565b600060208201905081810360008301526131ba81612d28565b9050919050565b600060208201905081810360008301526131da81612d4b565b9050919050565b600060208201905081810360008301526131fa81612d6e565b9050919050565b6000602082019050818103600083015261321a81612d91565b9050919050565b6000602082019050818103600083015261323a81612db4565b9050919050565b6000602082019050818103600083015261325a81612dfa565b9050919050565b6000602082019050818103600083015261327a81612e1d565b9050919050565b6000602082019050818103600083015261329a81612e40565b9050919050565b600060208201905081810360008301526132ba81612e63565b9050919050565b600060208201905081810360008301526132da81612e86565b9050919050565b600060208201905081810360008301526132fa81612eef565b9050919050565b60006020820190506133166000830184612f21565b92915050565b6000613326613337565b905061333282826137d7565b919050565b6000604051905090565b600067ffffffffffffffff82111561335c5761335b61390f565b5b6133658261393e565b9050602081019050919050565b600067ffffffffffffffff82111561338d5761338c61390f565b5b6133968261393e565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061347482613759565b915061347f83613759565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134b4576134b3613882565b5b828201905092915050565b60006134ca82613759565b91506134d583613759565b9250826134e5576134e46138b1565b5b828204905092915050565b6000808291508390505b600185111561353a5780860481111561351657613515613882565b5b60018516156135255780820291505b80810290506135338561394f565b94506134fa565b94509492505050565b600061354e82613759565b915061355983613759565b92506135867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461358e565b905092915050565b60008261359e576001905061365a565b816135ac576000905061365a565b81600181146135c257600281146135cc576135fb565b600191505061365a565b60ff8411156135de576135dd613882565b5b8360020a9150848211156135f5576135f4613882565b5b5061365a565b5060208310610133831016604e8410600b84101617156136305782820a90508381111561362b5761362a613882565b5b61365a565b61363d84848460016134f0565b9250905081840481111561365457613653613882565b5b81810290505b9392505050565b600061366c82613759565b915061367783613759565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b0576136af613882565b5b828202905092915050565b60006136c682613759565b91506136d183613759565b9250828210156136e4576136e3613882565b5b828203905092915050565b60006136fa82613739565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613790578082015181840152602081019050613775565b8381111561379f576000848401525b50505050565b600060028204905060018216806137bd57607f821691505b602082108114156137d1576137d06138e0565b5b50919050565b6137e08261393e565b810181811067ffffffffffffffff821117156137ff576137fe61390f565b5b80604052505050565b600061381382613759565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561384657613845613882565b5b600182019050919050565b600061385c82613759565b915061386783613759565b925082613877576138766138b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374206f776e2073706f7400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f68747470733a2f2f6170692e696e6a6563746d616769632e636f6d2f656d6f6a60008201527f696c616e645f6d657461646174612f0000000000000000000000000000000000602082015250565b7f4d75737420626520616e20656d6f6a6900000000000000000000000000000000600082015250565b613f4e816136ef565b8114613f5957600080fd5b50565b613f6581613701565b8114613f7057600080fd5b50565b613f7c8161370d565b8114613f8757600080fd5b50565b613f9381613759565b8114613f9e57600080fd5b5056fea2646970667358221220bc38fc570bcf103fe897754dab80ac297202153406ee9b7ca4eb676c1c9a206b64736f6c63430008040033

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.