ETH Price: $3,132.84 (-0.12%)

Token

Dice (DICE)
 

Overview

Max Total Supply

17 DICE

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DICE
0xc55ea01bff091198cda9d91100500b70c532b1a5
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:
Dice

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Dice.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Dice is ERC721Enumerable, ReentrancyGuard, Ownable {

    constructor() ERC721("Dice", "DICE") Ownable() {}

    string[] private dice = [    
        "D4",
        "D6",
        "D8",
        "D10",
        "D12",
        "D20",
        "D50",
        "D100"
    ];

    uint[] private diceMod = [
        4,
        6,
        8,
        10,
        12,
        20,
        50,
        100
    ];
    
    string[] private suffixes = [
        "of Power",
        "of Giants",
        "of Titans",
        "of Skill",
        "of Perfection",
        "of Brilliance",
        "of Enlightenment",
        "of Protection",
        "of Anger",
        "of Rage",
        "of Fury",
        "of Vitriol",
        "of the Fox",
        "of Detection",
        "of Reflection",
        "of the Frog",
        "of the Twins"
    ];
    
    string[] private namePrefixes = [
        "Agony", "Apocalypse", "Armageddon", "Beast", "Behemoth", "Blight", "Blood", "Bramble", 
        "Brimstone", "Brood", "Carrion", "Cataclysm", "Chimeric", "Corpse", "Corruption", "Damnation", 
        "Death", "Demon", "Dire", "Dragon", "Dread", "Doom", "Dusk", "Eagle", "Empyrean", "Fate", "Foe", "Fuzzy",
        "Gambler's", "Gale", "Ghoul", "Gloom", "Glyph", "Golem", "Grim", "Hate", "Havoc", "Honour", "Horror", "Hypnotic", 
        "Kraken", "Loath", "Lucky", "Maelstrom", "Magical", "Mind", "Miracle", "Morbid", "Oblivion", "Onslaught", "Pain", 
        "Pandemonium", "Phoenix", "Plague", "Rage", "Rapture", "Rune", "Skull", "Sol", "Soul", "Sorrow", 
        "Spirit", "Storm", "Tempest", "Torment", "Vengeance", "Victory", "Viper", "Vortex", "Woe", "Weighted", "Wrath",
        "Light's", "Shimmering"  
    ];
    
    string[] private nameSuffixes = [
        "Bane",
        "Root",
        "Bite",
        "Song",
        "Soul",
        "Roar",
        "Grasp",
        "Instrument",
        "Glow",
        "Bender",
        "Shadow",
        "Whisper",
        "Shout",
        "Growl",
        "Tear",
        "Peak",
        "Form",
        "Sun",
        "Moon"
    ];
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function randomRoll(uint256 _tokenId, uint256 mod) private view returns (uint256 rndPt) {
        uint256 randomNum = uint256(keccak256(abi.encodePacked(address(msg.sender), block.timestamp, _tokenId)));
        return ((randomNum % mod) + 1);
    }
    
    function getDie(uint256 tokenId) public view returns (string memory) {
        return grabFromBag(tokenId, "DIE", dice);
    }
    
    function getDieMod(uint256 tokenId,  string memory keyPrefix, uint256[] memory sourceArray) internal pure returns (uint256) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, uint2str(tokenId))));
        uint256 output = sourceArray[rand % sourceArray.length];
        return output;
    }
       
    function rollDie(uint256 tokenId) public view returns (string memory) {
        uint256 dieMod = getDieMod(tokenId,  "DIE", diceMod);
        return uint2str(randomRoll(tokenId, dieMod));
    }

    function grabFromBag(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, uint2str(tokenId))));
        string memory output = sourceArray[rand % sourceArray.length];
        uint256 greatness = rand % 21;
        if (greatness > 12) {
            output = string(abi.encodePacked(output, " ", suffixes[rand % suffixes.length]));
        }
        if (greatness >= 15) {
            string[2] memory name;
            name[0] = namePrefixes[rand % namePrefixes.length];
            name[1] = nameSuffixes[rand % nameSuffixes.length];
            if (greatness != 20) {
                output = string(abi.encodePacked(name[0], ' ', name[1], " ",  output));
            } else {
                output = string(abi.encodePacked(name[0], ' ', name[1], output, " +1"));
            }
        }
        return output;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[17] memory parts;
        parts[0] = "<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 350 350'><style>.base { fill: white; font-family: serif; font-size: 24px; }   .roll { fill: yellow; font-family: serif; font-size: 48px; text-decoration: underline} .block { fill: red; font-family: serif; font-size: 24px;}</style><rect width='100%' height='100%' fill='black' /><text x='10' y='40' class='base'>";

        parts[1] = getDie(tokenId);

        parts[2] = "</text><text x='10' y='175' class='base'>You rolled a:";
        
        parts[3] = "</text><text x='150' y='175' class='roll'>";

        parts[4] = rollDie(tokenId);
        
        parts[5] = "</text><text x='10' y='325' class='block'>Block: #";
         
        parts[6]= uint2str(block.number);
        
        parts[7] = "</text></svg>";

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7]));

        string memory json = string(abi.encodePacked('{"name": "Die #', uint2str(tokenId), '", "description": "Dice (for Adventurers) are randomized dice for your adventuring stories. Everytime you refresh the metadata, you will get a new rolled number based on your die. Feel free to use Dice in any way you want.", "image_data": "', output, '", "attributes": [ {"trait_type": "Type", "value": "' ,  getDie(tokenId), '"}, {"trait_type": "Roll", "value": "', parts[4], '"}]}'));
        output = string(abi.encodePacked('data:application/json;utf8,', json));

        return output;
    }

    function claim(uint256 tokenId) public nonReentrant {
        require(tokenId > 0 && tokenId < 7778, "Token ID invalid");
        _safeMint(_msgSender(), tokenId);
    }
    
    function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
        require(tokenId > 7777 && tokenId < 8001, "Token ID invalid");
        _safeMint(owner(), tokenId);
    }

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getDie","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"ownerClaim","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"}],"name":"rollDie","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518061010001604052806040518060400160405280600281526020017f443400000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f443600000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f443800000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f443130000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f443132000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f443230000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f443530000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4431303000000000000000000000000000000000000000000000000000000000815250815250600c906008620001f892919062001dc1565b50604051806101000160405280600460ff168152602001600660ff168152602001600860ff168152602001600a60ff168152602001600c60ff168152602001601460ff168152602001603260ff168152602001606460ff16815250600d9060086200026592919062001e28565b506040518061022001604052806040518060400160405280600881526020017f6f6620506f77657200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f6f66204769616e7473000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f6f6620546974616e73000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f6f6620536b696c6c00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f6f662050657266656374696f6e0000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f6f66204272696c6c69616e63650000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f6f6620456e6c69676874656e6d656e740000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f6f662050726f74656374696f6e0000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f6f6620416e67657200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f6f6620526167650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f6f6620467572790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f6f662056697472696f6c0000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f6f662074686520466f780000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f6f6620446574656374696f6e000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f6f66205265666c656374696f6e0000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f6f66207468652046726f6700000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f6f6620746865205477696e730000000000000000000000000000000000000000815250815250600e9060116200066d92919062001e7f565b506040518061094001604052806040518060400160405280600581526020017f41676f6e7900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f41706f63616c797073650000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f41726d61676564646f6e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426561737400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f426568656d6f746800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f426c69676874000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426c6f6f6400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4272616d626c650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4272696d73746f6e65000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f42726f6f6400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f43617272696f6e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f43617461636c79736d000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4368696d6572696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f436f72707365000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f436f7272757074696f6e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f44616d6e6174696f6e000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f446561746800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44656d6f6e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f446972650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f447261676f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f447265616400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f446f6f6d0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4475736b0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4561676c6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f456d70797265616e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f466174650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f466f65000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f46757a7a7900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f47616d626c65722773000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f47616c650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f47686f756c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f476c6f6f6d00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f476c79706800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f476f6c656d00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4772696d0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f486174650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4861766f6300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f486f6e6f7572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f486f72726f72000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4879706e6f74696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4b72616b656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c6f61746800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c75636b7900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4d61656c7374726f6d000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4d61676963616c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4d696e640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4d697261636c650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d6f72626964000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4f626c6976696f6e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4f6e736c6175676874000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f5061696e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f50616e64656d6f6e69756d00000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f50686f656e69780000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f506c61677565000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f526167650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f526170747572650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f52756e650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536b756c6c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f536f6c000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f536f756c0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f536f72726f77000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f537069726974000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f53746f726d00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f54656d706573740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f546f726d656e740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f56656e6765616e6365000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f566963746f72790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f566970657200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f566f72746578000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f576f65000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f576569676874656400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f577261746800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4c6967687427730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5368696d6d6572696e6700000000000000000000000000000000000000000000815250815250600f90604a6200179892919062001ee6565b506040518061026001604052806040518060400160405280600481526020017f42616e650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f526f6f740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426974650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f536f6e670000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f536f756c0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f526f61720000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477261737000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f496e737472756d656e740000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f476c6f770000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f42656e646572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f536861646f77000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f576869737065720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f53686f757400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f47726f776c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f546561720000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f5065616b0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f466f726d0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f53756e000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4d6f6f6e00000000000000000000000000000000000000000000000000000000815250815250601090601362001c1692919062001f4d565b5034801562001c2457600080fd5b506040518060400160405280600481526020017f44696365000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4449434500000000000000000000000000000000000000000000000000000000815250816000908051906020019062001ca992919062001fb4565b50806001908051906020019062001cc292919062001fb4565b5050506001600a8190555062001ced62001ce162001cf360201b60201c565b62001cfb60201b60201c565b62002137565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562001e15579160200282015b8281111562001e1457825182908051906020019062001e0392919062001fb4565b509160200191906001019062001de2565b5b50905062001e24919062002045565b5090565b82805482825590600052602060002090810192821562001e6c579160200282015b8281111562001e6b578251829060ff1690559160200191906001019062001e49565b5b50905062001e7b91906200206d565b5090565b82805482825590600052602060002090810192821562001ed3579160200282015b8281111562001ed257825182908051906020019062001ec192919062001fb4565b509160200191906001019062001ea0565b5b50905062001ee2919062002045565b5090565b82805482825590600052602060002090810192821562001f3a579160200282015b8281111562001f3957825182908051906020019062001f2892919062001fb4565b509160200191906001019062001f07565b5b50905062001f49919062002045565b5090565b82805482825590600052602060002090810192821562001fa1579160200282015b8281111562001fa057825182908051906020019062001f8f92919062001fb4565b509160200191906001019062001f6e565b5b50905062001fb0919062002045565b5090565b82805462001fc290620020d2565b90600052602060002090601f01602090048101928262001fe6576000855562002032565b82601f106200200157805160ff191683800117855562002032565b8280016001018555821562002032579182015b828111156200203157825182559160200191906001019062002014565b5b5090506200204191906200206d565b5090565b5b808211156200206957600081816200205f91906200208c565b5060010162002046565b5090565b5b80821115620020885760008160009055506001016200206e565b5090565b5080546200209a90620020d2565b6000825580601f10620020ae5750620020cf565b601f016020900490600052602060002090810190620020ce91906200206d565b5b50565b60006002820490506001821680620020eb57607f821691505b6020821081141562002102576200210162002108565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147d580620021476000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80634f6ccce7116100c357806395d89b411161007c57806395d89b41146103c2578063a22cb465146103e0578063b88d4fde146103fc578063c87b56dd14610418578063e985e9c514610448578063f2fde38b146104785761014d565b80634f6ccce7146102da5780636352211e1461030a57806370a082311461033a578063715018a61461036a578063879e11d9146103745780638da5cb5b146103a45761014d565b806323b872dd1161011557806323b872dd1461020a5780632f745c5914610226578063320dafd914610256578063379607f51461028657806342842e0e146102a2578063434f48c4146102be5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612d64565b610494565b60405161017991906135be565b60405180910390f35b61018a61050e565b60405161019791906135d9565b60405180910390f35b6101ba60048036038101906101b59190612dbe565b6105a0565b6040516101c79190613557565b60405180910390f35b6101ea60048036038101906101e59190612d24565b610625565b005b6101f461073d565b604051610201919061385b565b60405180910390f35b610224600480360381019061021f9190612c0e565b61074a565b005b610240600480360381019061023b9190612d24565b6107aa565b60405161024d919061385b565b60405180910390f35b610270600480360381019061026b9190612dbe565b61084f565b60405161027d91906135d9565b60405180910390f35b6102a0600480360381019061029b9190612dbe565b610969565b005b6102bc60048036038101906102b79190612c0e565b610a23565b005b6102d860048036038101906102d39190612dbe565b610a43565b005b6102f460048036038101906102ef9190612dbe565b610b7a565b604051610301919061385b565b60405180910390f35b610324600480360381019061031f9190612dbe565b610beb565b6040516103319190613557565b60405180910390f35b610354600480360381019061034f9190612ba1565b610c9d565b604051610361919061385b565b60405180910390f35b610372610d55565b005b61038e60048036038101906103899190612dbe565b610ddd565b60405161039b91906135d9565b60405180910390f35b6103ac610e8d565b6040516103b99190613557565b60405180910390f35b6103ca610eb7565b6040516103d791906135d9565b60405180910390f35b6103fa60048036038101906103f59190612ce4565b610f49565b005b61041660048036038101906104119190612c61565b6110ca565b005b610432600480360381019061042d9190612dbe565b61112c565b60405161043f91906135d9565b60405180910390f35b610462600480360381019061045d9190612bce565b61143f565b60405161046f91906135be565b60405180910390f35b610492600480360381019061048d9190612ba1565b6114d3565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105075750610506826115cb565b5b9050919050565b60606000805461051d90613b33565b80601f016020809104026020016040519081016040528092919081815260200182805461054990613b33565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ab826116ad565b6105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e19061375b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063082610beb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906137db565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c0611719565b73ffffffffffffffffffffffffffffffffffffffff1614806106ef57506106ee816106e9611719565b61143f565b5b61072e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610725906136db565b60405180910390fd5b6107388383611721565b505050565b6000600880549050905090565b61075b610755611719565b826117da565b61079a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610791906137fb565b60405180910390fd5b6107a58383836118b8565b505050565b60006107b583610c9d565b82106107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed906135fb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610962826040518060400160405280600381526020017f4449450000000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156109595783829060005260206000200180546108cc90613b33565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890613b33565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050815260200190600101906108ad565b50505050611b14565b9050919050565b6002600a5414156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a69061383b565b60405180910390fd5b6002600a819055506000811180156109c85750611e6281105b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe9061379b565b60405180910390fd5b610a18610a12611719565b82611e5f565b6001600a8190555050565b610a3e838383604051806020016040528060008152506110ca565b505050565b6002600a541415610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061383b565b60405180910390fd5b6002600a81905550610a99611719565b73ffffffffffffffffffffffffffffffffffffffff16610ab7610e8d565b73ffffffffffffffffffffffffffffffffffffffff1614610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061377b565b60405180910390fd5b611e6181118015610b1f5750611f4181105b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b559061379b565b60405180910390fd5b610b6f610b69610e8d565b82611e5f565b6001600a8190555050565b6000610b8461073d565b8210610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc9061381b565b60405180910390fd5b60088281548110610bd957610bd8613cfa565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061371b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906136fb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d5d611719565b73ffffffffffffffffffffffffffffffffffffffff16610d7b610e8d565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc89061377b565b60405180910390fd5b610ddb6000611e7d565b565b60606000610e71836040518060400160405280600381526020017f4449450000000000000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020018280548015610e6757602002820191906000526020600020905b815481526020019060010190808311610e53575b5050505050611f43565b9050610e85610e808483611fb1565b612005565b915050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ec690613b33565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef290613b33565b8015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b5050505050905090565b610f51611719565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061369b565b60405180910390fd5b8060056000610fcc611719565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611079611719565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110be91906135be565b60405180910390a35050565b6110db6110d5611719565b836117da565b61111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906137fb565b60405180910390fd5b6111268484848461218e565b50505050565b6060611136612a79565b604051806101c0016040528061019081526020016145da61019091398160006011811061116657611165613cfa565b5b60200201819052506111778361084f565b8160016011811061118b5761118a613cfa565b5b602002018190525060405180606001604052806036815260200161476a60369139816002601181106111c0576111bf613cfa565b5b60200201819052506040518060600160405280602a81526020016145b0602a9139816003601181106111f5576111f4613cfa565b5b602002018190525061120683610ddd565b8160046011811061121a57611219613cfa565b5b602002018190525060405180606001604052806032815260200161457e603291398160056011811061124f5761124e613cfa565b5b602002018190525061126043612005565b8160066011811061127457611273613cfa565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816007601181106112c6576112c5613cfa565b5b60200201819052506000816000601181106112e4576112e3613cfa565b5b6020020151826001601181106112fd576112fc613cfa565b5b60200201518360026011811061131657611315613cfa565b5b60200201518460036011811061132f5761132e613cfa565b5b60200201518560046011811061134857611347613cfa565b5b60200201518660056011811061136157611360613cfa565b5b60200201518760066011811061137a57611379613cfa565b5b60200201518860076011811061139357611392613cfa565b5b60200201516040516020016113af989796959493929190613391565b604051602081830303815290604052905060006113cb85612005565b826113d58761084f565b856004601181106113e9576113e8613cfa565b5b602002015160405160200161140194939291906134c0565b6040516020818303038152906040529050806040516020016114239190613535565b6040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114db611719565b73ffffffffffffffffffffffffffffffffffffffff166114f9610e8d565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115469061377b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061363b565b60405180910390fd5b6115c881611e7d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061169657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116a657506116a5826121ea565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661179483610beb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e5826116ad565b611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906136bb565b60405180910390fd5b600061182f83610beb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189e57508373ffffffffffffffffffffffffffffffffffffffff16611886846105a0565b73ffffffffffffffffffffffffffffffffffffffff16145b806118af57506118ae818561143f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118d882610beb565b73ffffffffffffffffffffffffffffffffffffffff161461192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906137bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119959061367b565b60405180910390fd5b6119a9838383612254565b6119b4600082611721565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a049190613a3c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5b9190613924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000611b4a84611b2587612005565b604051602001611b3692919061336d565b604051602081830303815290604052612368565b9050600083845183611b5c9190613c0d565b81518110611b6d57611b6c613cfa565b5b602002602001015190506000601583611b869190613c0d565b9050600c811115611be25781600e808054905085611ba49190613c0d565b81548110611bb557611bb4613cfa565b5b90600052602060002001604051602001611bd0929190613491565b60405160208183030381529060405291505b600f8110611e5257611bf2612aa1565b600f808054905085611c049190613c0d565b81548110611c1557611c14613cfa565b5b906000526020600020018054611c2a90613b33565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5690613b33565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b505050505081600060028110611cbc57611cbb613cfa565b5b60200201819052506010808054905085611cd69190613c0d565b81548110611ce757611ce6613cfa565b5b906000526020600020018054611cfc90613b33565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2890613b33565b8015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b505050505081600160028110611d8e57611d8d613cfa565b5b602002018190525060148214611df95780600060028110611db257611db1613cfa565b5b602002015181600160028110611dcb57611dca613cfa565b5b602002015184604051602001611de39392919061344a565b6040516020818303038152906040529250611e50565b80600060028110611e0d57611e0c613cfa565b5b602002015181600160028110611e2657611e25613cfa565b5b602002015184604051602001611e3e93929190613403565b60405160208183030381529060405292505b505b8193505050509392505050565b611e7982826040518060200160405280600081525061239b565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611f7884611f5387612005565b604051602001611f6492919061336d565b604051602081830303815290604052612368565b9050600083845183611f8a9190613c0d565b81518110611f9b57611f9a613cfa565b5b6020026020010151905080925050509392505050565b600080334285604051602001611fc993929190613319565b6040516020818303038152906040528051906020012060001c905060018382611ff29190613c0d565b611ffc9190613924565b91505092915050565b6060600082141561204d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612189565b600082905060005b6000821461207f57808061206890613b96565b915050600a8261207891906139b1565b9150612055565b60008167ffffffffffffffff81111561209b5761209a613d29565b5b6040519080825280601f01601f1916602001820160405280156120cd5781602001600182028036833780820191505090505b50905060008290505b60008614612181576001816120eb9190613a3c565b90506000600a80886120fd91906139b1565b61210791906139e2565b876121129190613a3c565b603061211e919061397a565b905060008160f81b90508084848151811061213c5761213b613cfa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861217891906139b1565b975050506120d6565b819450505050505b919050565b6121998484846118b8565b6121a5848484846123f6565b6121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db9061361b565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61225f83838361258d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a25761229d81612592565b6122e1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122e0576122df83826125db565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123245761231f81612748565b612363565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612362576123618282612819565b5b5b505050565b60008160405160200161237b9190613356565b6040516020818303038152906040528051906020012060001c9050919050565b6123a58383612898565b6123b260008484846123f6565b6123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e89061361b565b60405180910390fd5b505050565b60006124178473ffffffffffffffffffffffffffffffffffffffff16612a66565b15612580578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612440611719565b8786866040518563ffffffff1660e01b81526004016124629493929190613572565b602060405180830381600087803b15801561247c57600080fd5b505af19250505080156124ad57506040513d601f19601f820116820180604052508101906124aa9190612d91565b60015b612530573d80600081146124dd576040519150601f19603f3d011682016040523d82523d6000602084013e6124e2565b606091505b50600081511415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f9061361b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612585565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125e884610c9d565b6125f29190613a3c565b90506000600760008481526020019081526020016000205490508181146126d7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061275c9190613a3c565b905060006009600084815260200190815260200160002054905060006008838154811061278c5761278b613cfa565b5b9060005260206000200154905080600883815481106127ae576127ad613cfa565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127fd576127fc613ccb565b5b6001900381819060005260206000200160009055905550505050565b600061282483610c9d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ff9061373b565b60405180910390fd5b612911816116ad565b15612951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129489061365b565b60405180910390fd5b61295d60008383612254565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ad9190613924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081612a895790505090565b60405180604001604052806002905b6060815260200190600190039081612ab05790505090565b6000612adb612ad68461389b565b613876565b905082815260208101848484011115612af757612af6613d5d565b5b612b02848285613af1565b509392505050565b600081359050612b1981614521565b92915050565b600081359050612b2e81614538565b92915050565b600081359050612b438161454f565b92915050565b600081519050612b588161454f565b92915050565b600082601f830112612b7357612b72613d58565b5b8135612b83848260208601612ac8565b91505092915050565b600081359050612b9b81614566565b92915050565b600060208284031215612bb757612bb6613d67565b5b6000612bc584828501612b0a565b91505092915050565b60008060408385031215612be557612be4613d67565b5b6000612bf385828601612b0a565b9250506020612c0485828601612b0a565b9150509250929050565b600080600060608486031215612c2757612c26613d67565b5b6000612c3586828701612b0a565b9350506020612c4686828701612b0a565b9250506040612c5786828701612b8c565b9150509250925092565b60008060008060808587031215612c7b57612c7a613d67565b5b6000612c8987828801612b0a565b9450506020612c9a87828801612b0a565b9350506040612cab87828801612b8c565b925050606085013567ffffffffffffffff811115612ccc57612ccb613d62565b5b612cd887828801612b5e565b91505092959194509250565b60008060408385031215612cfb57612cfa613d67565b5b6000612d0985828601612b0a565b9250506020612d1a85828601612b1f565b9150509250929050565b60008060408385031215612d3b57612d3a613d67565b5b6000612d4985828601612b0a565b9250506020612d5a85828601612b8c565b9150509250929050565b600060208284031215612d7a57612d79613d67565b5b6000612d8884828501612b34565b91505092915050565b600060208284031215612da757612da6613d67565b5b6000612db584828501612b49565b91505092915050565b600060208284031215612dd457612dd3613d67565b5b6000612de284828501612b8c565b91505092915050565b612df481613a70565b82525050565b612e0b612e0682613a70565b613bdf565b82525050565b612e1a81613a82565b82525050565b6000612e2b826138e1565b612e3581856138f7565b9350612e45818560208601613b00565b612e4e81613d6c565b840191505092915050565b6000612e64826138ec565b612e6e8185613908565b9350612e7e818560208601613b00565b612e8781613d6c565b840191505092915050565b6000612e9d826138ec565b612ea78185613919565b9350612eb7818560208601613b00565b80840191505092915050565b60008154612ed081613b33565b612eda8186613919565b94506001821660008114612ef55760018114612f0657612f39565b60ff19831686528186019350612f39565b612f0f856138cc565b60005b83811015612f3157815481890152600182019150602081019050612f12565b838801955050505b50505092915050565b6000612f4f600f83613919565b9150612f5a82613d8a565b600f82019050919050565b6000612f72602b83613908565b9150612f7d82613db3565b604082019050919050565b6000612f95603283613908565b9150612fa082613e02565b604082019050919050565b6000612fb8602683613908565b9150612fc382613e51565b604082019050919050565b6000612fdb601c83613908565b9150612fe682613ea0565b602082019050919050565b6000612ffe603483613919565b915061300982613ec9565b603482019050919050565b6000613021602483613908565b915061302c82613f18565b604082019050919050565b6000613044601983613908565b915061304f82613f67565b602082019050919050565b6000613067602583613919565b915061307282613f90565b602582019050919050565b600061308a602c83613908565b915061309582613fdf565b604082019050919050565b60006130ad600183613919565b91506130b88261402e565b600182019050919050565b60006130d0603883613908565b91506130db82614057565b604082019050919050565b60006130f3602a83613908565b91506130fe826140a6565b604082019050919050565b6000613116602983613908565b9150613121826140f5565b604082019050919050565b6000613139602083613908565b915061314482614144565b602082019050919050565b600061315c602c83613908565b91506131678261416d565b604082019050919050565b600061317f601b83613919565b915061318a826141bc565b601b82019050919050565b60006131a2602083613908565b91506131ad826141e5565b602082019050919050565b60006131c5601083613908565b91506131d08261420e565b602082019050919050565b60006131e8602983613908565b91506131f382614237565b604082019050919050565b600061320b602183613908565b915061321682614286565b604082019050919050565b600061322e600383613919565b9150613239826142d5565b600382019050919050565b6000613251603183613908565b915061325c826142fe565b604082019050919050565b6000613274602c83613908565b915061327f8261434d565b604082019050919050565b600061329760f083613919565b91506132a28261439c565b60f082019050919050565b60006132ba601f83613908565b91506132c5826144cf565b602082019050919050565b60006132dd600483613919565b91506132e8826144f8565b600482019050919050565b6132fc81613ada565b82525050565b61331361330e82613ada565b613c03565b82525050565b60006133258286612dfa565b6014820191506133358285613302565b6020820191506133458284613302565b602082019150819050949350505050565b60006133628284612e92565b915081905092915050565b60006133798285612e92565b91506133858284612e92565b91508190509392505050565b600061339d828b612e92565b91506133a9828a612e92565b91506133b58289612e92565b91506133c18288612e92565b91506133cd8287612e92565b91506133d98286612e92565b91506133e58285612e92565b91506133f18284612e92565b91508190509998505050505050505050565b600061340f8286612e92565b915061341a826130a0565b91506134268285612e92565b91506134328284612e92565b915061343d82613221565b9150819050949350505050565b60006134568286612e92565b9150613461826130a0565b915061346d8285612e92565b9150613478826130a0565b91506134848284612e92565b9150819050949350505050565b600061349d8285612e92565b91506134a8826130a0565b91506134b48284612ec3565b91508190509392505050565b60006134cb82612f42565b91506134d78287612e92565b91506134e28261328a565b91506134ee8286612e92565b91506134f982612ff1565b91506135058285612e92565b91506135108261305a565b915061351c8284612e92565b9150613527826132d0565b915081905095945050505050565b600061354082613172565b915061354c8284612e92565b915081905092915050565b600060208201905061356c6000830184612deb565b92915050565b60006080820190506135876000830187612deb565b6135946020830186612deb565b6135a160408301856132f3565b81810360608301526135b38184612e20565b905095945050505050565b60006020820190506135d36000830184612e11565b92915050565b600060208201905081810360008301526135f38184612e59565b905092915050565b6000602082019050818103600083015261361481612f65565b9050919050565b6000602082019050818103600083015261363481612f88565b9050919050565b6000602082019050818103600083015261365481612fab565b9050919050565b6000602082019050818103600083015261367481612fce565b9050919050565b6000602082019050818103600083015261369481613014565b9050919050565b600060208201905081810360008301526136b481613037565b9050919050565b600060208201905081810360008301526136d48161307d565b9050919050565b600060208201905081810360008301526136f4816130c3565b9050919050565b60006020820190508181036000830152613714816130e6565b9050919050565b6000602082019050818103600083015261373481613109565b9050919050565b600060208201905081810360008301526137548161312c565b9050919050565b600060208201905081810360008301526137748161314f565b9050919050565b6000602082019050818103600083015261379481613195565b9050919050565b600060208201905081810360008301526137b4816131b8565b9050919050565b600060208201905081810360008301526137d4816131db565b9050919050565b600060208201905081810360008301526137f4816131fe565b9050919050565b6000602082019050818103600083015261381481613244565b9050919050565b6000602082019050818103600083015261383481613267565b9050919050565b60006020820190508181036000830152613854816132ad565b9050919050565b600060208201905061387060008301846132f3565b92915050565b6000613880613891565b905061388c8282613b65565b919050565b6000604051905090565b600067ffffffffffffffff8211156138b6576138b5613d29565b5b6138bf82613d6c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061392f82613ada565b915061393a83613ada565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396f5761396e613c3e565b5b828201905092915050565b600061398582613ae4565b915061399083613ae4565b92508260ff038211156139a6576139a5613c3e565b5b828201905092915050565b60006139bc82613ada565b91506139c783613ada565b9250826139d7576139d6613c6d565b5b828204905092915050565b60006139ed82613ada565b91506139f883613ada565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3157613a30613c3e565b5b828202905092915050565b6000613a4782613ada565b9150613a5283613ada565b925082821015613a6557613a64613c3e565b5b828203905092915050565b6000613a7b82613aba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b1e578082015181840152602081019050613b03565b83811115613b2d576000848401525b50505050565b60006002820490506001821680613b4b57607f821691505b60208210811415613b5f57613b5e613c9c565b5b50919050565b613b6e82613d6c565b810181811067ffffffffffffffff82111715613b8d57613b8c613d29565b5b80604052505050565b6000613ba182613ada565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bd457613bd3613c3e565b5b600182019050919050565b6000613bea82613bf1565b9050919050565b6000613bfc82613d7d565b9050919050565b6000819050919050565b6000613c1882613ada565b9150613c2383613ada565b925082613c3357613c32613c6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f7b226e616d65223a202244696520230000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c202261747472696275746573223a205b207b2274726169745f747970652260008201527f3a202254797065222c202276616c7565223a2022000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f227d2c207b2274726169745f74797065223a2022526f6c6c222c202276616c7560008201527f65223a2022000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f202b310000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a2022446963652028666f722041647660008201527f656e74757265727329206172652072616e646f6d697a6564206469636520666f60208201527f7220796f757220616476656e747572696e672073746f726965732e204576657260408201527f7974696d6520796f75207265667265736820746865206d657461646174612c2060608201527f796f752077696c6c206765742061206e657720726f6c6c6564206e756d62657260808201527f206261736564206f6e20796f7572206469652e204665656c206672656520746f60a08201527f20757365204469636520696e20616e792077617920796f752077616e742e222c60c08201527f2022696d6167655f64617461223a20220000000000000000000000000000000060e082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b61452a81613a70565b811461453557600080fd5b50565b61454181613a82565b811461454c57600080fd5b50565b61455881613a8e565b811461456357600080fd5b50565b61456f81613ada565b811461457a57600080fd5b5056fe3c2f746578743e3c7465787420783d2731302720793d273332352720636c6173733d27626c6f636b273e426c6f636b3a20233c2f746578743e3c7465787420783d273135302720793d273137352720636c6173733d27726f6c6c273e3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f73766727207072657365727665417370656374526174696f3d27784d696e594d696e206d656574272076696577426f783d273020302033353020333530273e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b207d2020202e726f6c6c207b2066696c6c3a2079656c6c6f773b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20343870783b20746578742d6465636f726174696f6e3a20756e6465726c696e657d202e626c6f636b207b2066696c6c3a207265643b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b7d3c2f7374796c653e3c726563742077696474683d273130302527206865696768743d2731303025272066696c6c3d27626c61636b27202f3e3c7465787420783d2731302720793d2734302720636c6173733d2762617365273e3c2f746578743e3c7465787420783d2731302720793d273137352720636c6173733d2762617365273e596f7520726f6c6c656420613aa26469706673582212206bea64edf796f28633e29996020c01e4eee870d0639343a2f8033072b8ad4c4964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80634f6ccce7116100c357806395d89b411161007c57806395d89b41146103c2578063a22cb465146103e0578063b88d4fde146103fc578063c87b56dd14610418578063e985e9c514610448578063f2fde38b146104785761014d565b80634f6ccce7146102da5780636352211e1461030a57806370a082311461033a578063715018a61461036a578063879e11d9146103745780638da5cb5b146103a45761014d565b806323b872dd1161011557806323b872dd1461020a5780632f745c5914610226578063320dafd914610256578063379607f51461028657806342842e0e146102a2578063434f48c4146102be5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612d64565b610494565b60405161017991906135be565b60405180910390f35b61018a61050e565b60405161019791906135d9565b60405180910390f35b6101ba60048036038101906101b59190612dbe565b6105a0565b6040516101c79190613557565b60405180910390f35b6101ea60048036038101906101e59190612d24565b610625565b005b6101f461073d565b604051610201919061385b565b60405180910390f35b610224600480360381019061021f9190612c0e565b61074a565b005b610240600480360381019061023b9190612d24565b6107aa565b60405161024d919061385b565b60405180910390f35b610270600480360381019061026b9190612dbe565b61084f565b60405161027d91906135d9565b60405180910390f35b6102a0600480360381019061029b9190612dbe565b610969565b005b6102bc60048036038101906102b79190612c0e565b610a23565b005b6102d860048036038101906102d39190612dbe565b610a43565b005b6102f460048036038101906102ef9190612dbe565b610b7a565b604051610301919061385b565b60405180910390f35b610324600480360381019061031f9190612dbe565b610beb565b6040516103319190613557565b60405180910390f35b610354600480360381019061034f9190612ba1565b610c9d565b604051610361919061385b565b60405180910390f35b610372610d55565b005b61038e60048036038101906103899190612dbe565b610ddd565b60405161039b91906135d9565b60405180910390f35b6103ac610e8d565b6040516103b99190613557565b60405180910390f35b6103ca610eb7565b6040516103d791906135d9565b60405180910390f35b6103fa60048036038101906103f59190612ce4565b610f49565b005b61041660048036038101906104119190612c61565b6110ca565b005b610432600480360381019061042d9190612dbe565b61112c565b60405161043f91906135d9565b60405180910390f35b610462600480360381019061045d9190612bce565b61143f565b60405161046f91906135be565b60405180910390f35b610492600480360381019061048d9190612ba1565b6114d3565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105075750610506826115cb565b5b9050919050565b60606000805461051d90613b33565b80601f016020809104026020016040519081016040528092919081815260200182805461054990613b33565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ab826116ad565b6105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e19061375b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063082610beb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906137db565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106c0611719565b73ffffffffffffffffffffffffffffffffffffffff1614806106ef57506106ee816106e9611719565b61143f565b5b61072e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610725906136db565b60405180910390fd5b6107388383611721565b505050565b6000600880549050905090565b61075b610755611719565b826117da565b61079a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610791906137fb565b60405180910390fd5b6107a58383836118b8565b505050565b60006107b583610c9d565b82106107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed906135fb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610962826040518060400160405280600381526020017f4449450000000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156109595783829060005260206000200180546108cc90613b33565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890613b33565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050815260200190600101906108ad565b50505050611b14565b9050919050565b6002600a5414156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a69061383b565b60405180910390fd5b6002600a819055506000811180156109c85750611e6281105b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe9061379b565b60405180910390fd5b610a18610a12611719565b82611e5f565b6001600a8190555050565b610a3e838383604051806020016040528060008152506110ca565b505050565b6002600a541415610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061383b565b60405180910390fd5b6002600a81905550610a99611719565b73ffffffffffffffffffffffffffffffffffffffff16610ab7610e8d565b73ffffffffffffffffffffffffffffffffffffffff1614610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061377b565b60405180910390fd5b611e6181118015610b1f5750611f4181105b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b559061379b565b60405180910390fd5b610b6f610b69610e8d565b82611e5f565b6001600a8190555050565b6000610b8461073d565b8210610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc9061381b565b60405180910390fd5b60088281548110610bd957610bd8613cfa565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061371b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906136fb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d5d611719565b73ffffffffffffffffffffffffffffffffffffffff16610d7b610e8d565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc89061377b565b60405180910390fd5b610ddb6000611e7d565b565b60606000610e71836040518060400160405280600381526020017f4449450000000000000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020018280548015610e6757602002820191906000526020600020905b815481526020019060010190808311610e53575b5050505050611f43565b9050610e85610e808483611fb1565b612005565b915050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ec690613b33565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef290613b33565b8015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b5050505050905090565b610f51611719565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061369b565b60405180910390fd5b8060056000610fcc611719565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611079611719565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110be91906135be565b60405180910390a35050565b6110db6110d5611719565b836117da565b61111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906137fb565b60405180910390fd5b6111268484848461218e565b50505050565b6060611136612a79565b604051806101c0016040528061019081526020016145da61019091398160006011811061116657611165613cfa565b5b60200201819052506111778361084f565b8160016011811061118b5761118a613cfa565b5b602002018190525060405180606001604052806036815260200161476a60369139816002601181106111c0576111bf613cfa565b5b60200201819052506040518060600160405280602a81526020016145b0602a9139816003601181106111f5576111f4613cfa565b5b602002018190525061120683610ddd565b8160046011811061121a57611219613cfa565b5b602002018190525060405180606001604052806032815260200161457e603291398160056011811061124f5761124e613cfa565b5b602002018190525061126043612005565b8160066011811061127457611273613cfa565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816007601181106112c6576112c5613cfa565b5b60200201819052506000816000601181106112e4576112e3613cfa565b5b6020020151826001601181106112fd576112fc613cfa565b5b60200201518360026011811061131657611315613cfa565b5b60200201518460036011811061132f5761132e613cfa565b5b60200201518560046011811061134857611347613cfa565b5b60200201518660056011811061136157611360613cfa565b5b60200201518760066011811061137a57611379613cfa565b5b60200201518860076011811061139357611392613cfa565b5b60200201516040516020016113af989796959493929190613391565b604051602081830303815290604052905060006113cb85612005565b826113d58761084f565b856004601181106113e9576113e8613cfa565b5b602002015160405160200161140194939291906134c0565b6040516020818303038152906040529050806040516020016114239190613535565b6040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114db611719565b73ffffffffffffffffffffffffffffffffffffffff166114f9610e8d565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115469061377b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061363b565b60405180910390fd5b6115c881611e7d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061169657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116a657506116a5826121ea565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661179483610beb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e5826116ad565b611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906136bb565b60405180910390fd5b600061182f83610beb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189e57508373ffffffffffffffffffffffffffffffffffffffff16611886846105a0565b73ffffffffffffffffffffffffffffffffffffffff16145b806118af57506118ae818561143f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118d882610beb565b73ffffffffffffffffffffffffffffffffffffffff161461192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906137bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119959061367b565b60405180910390fd5b6119a9838383612254565b6119b4600082611721565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a049190613a3c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5b9190613924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000611b4a84611b2587612005565b604051602001611b3692919061336d565b604051602081830303815290604052612368565b9050600083845183611b5c9190613c0d565b81518110611b6d57611b6c613cfa565b5b602002602001015190506000601583611b869190613c0d565b9050600c811115611be25781600e808054905085611ba49190613c0d565b81548110611bb557611bb4613cfa565b5b90600052602060002001604051602001611bd0929190613491565b60405160208183030381529060405291505b600f8110611e5257611bf2612aa1565b600f808054905085611c049190613c0d565b81548110611c1557611c14613cfa565b5b906000526020600020018054611c2a90613b33565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5690613b33565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b505050505081600060028110611cbc57611cbb613cfa565b5b60200201819052506010808054905085611cd69190613c0d565b81548110611ce757611ce6613cfa565b5b906000526020600020018054611cfc90613b33565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2890613b33565b8015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b505050505081600160028110611d8e57611d8d613cfa565b5b602002018190525060148214611df95780600060028110611db257611db1613cfa565b5b602002015181600160028110611dcb57611dca613cfa565b5b602002015184604051602001611de39392919061344a565b6040516020818303038152906040529250611e50565b80600060028110611e0d57611e0c613cfa565b5b602002015181600160028110611e2657611e25613cfa565b5b602002015184604051602001611e3e93929190613403565b60405160208183030381529060405292505b505b8193505050509392505050565b611e7982826040518060200160405280600081525061239b565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611f7884611f5387612005565b604051602001611f6492919061336d565b604051602081830303815290604052612368565b9050600083845183611f8a9190613c0d565b81518110611f9b57611f9a613cfa565b5b6020026020010151905080925050509392505050565b600080334285604051602001611fc993929190613319565b6040516020818303038152906040528051906020012060001c905060018382611ff29190613c0d565b611ffc9190613924565b91505092915050565b6060600082141561204d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612189565b600082905060005b6000821461207f57808061206890613b96565b915050600a8261207891906139b1565b9150612055565b60008167ffffffffffffffff81111561209b5761209a613d29565b5b6040519080825280601f01601f1916602001820160405280156120cd5781602001600182028036833780820191505090505b50905060008290505b60008614612181576001816120eb9190613a3c565b90506000600a80886120fd91906139b1565b61210791906139e2565b876121129190613a3c565b603061211e919061397a565b905060008160f81b90508084848151811061213c5761213b613cfa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861217891906139b1565b975050506120d6565b819450505050505b919050565b6121998484846118b8565b6121a5848484846123f6565b6121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db9061361b565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61225f83838361258d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122a25761229d81612592565b6122e1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122e0576122df83826125db565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123245761231f81612748565b612363565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612362576123618282612819565b5b5b505050565b60008160405160200161237b9190613356565b6040516020818303038152906040528051906020012060001c9050919050565b6123a58383612898565b6123b260008484846123f6565b6123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e89061361b565b60405180910390fd5b505050565b60006124178473ffffffffffffffffffffffffffffffffffffffff16612a66565b15612580578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612440611719565b8786866040518563ffffffff1660e01b81526004016124629493929190613572565b602060405180830381600087803b15801561247c57600080fd5b505af19250505080156124ad57506040513d601f19601f820116820180604052508101906124aa9190612d91565b60015b612530573d80600081146124dd576040519150601f19603f3d011682016040523d82523d6000602084013e6124e2565b606091505b50600081511415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f9061361b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612585565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125e884610c9d565b6125f29190613a3c565b90506000600760008481526020019081526020016000205490508181146126d7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061275c9190613a3c565b905060006009600084815260200190815260200160002054905060006008838154811061278c5761278b613cfa565b5b9060005260206000200154905080600883815481106127ae576127ad613cfa565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127fd576127fc613ccb565b5b6001900381819060005260206000200160009055905550505050565b600061282483610c9d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ff9061373b565b60405180910390fd5b612911816116ad565b15612951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129489061365b565b60405180910390fd5b61295d60008383612254565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ad9190613924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081612a895790505090565b60405180604001604052806002905b6060815260200190600190039081612ab05790505090565b6000612adb612ad68461389b565b613876565b905082815260208101848484011115612af757612af6613d5d565b5b612b02848285613af1565b509392505050565b600081359050612b1981614521565b92915050565b600081359050612b2e81614538565b92915050565b600081359050612b438161454f565b92915050565b600081519050612b588161454f565b92915050565b600082601f830112612b7357612b72613d58565b5b8135612b83848260208601612ac8565b91505092915050565b600081359050612b9b81614566565b92915050565b600060208284031215612bb757612bb6613d67565b5b6000612bc584828501612b0a565b91505092915050565b60008060408385031215612be557612be4613d67565b5b6000612bf385828601612b0a565b9250506020612c0485828601612b0a565b9150509250929050565b600080600060608486031215612c2757612c26613d67565b5b6000612c3586828701612b0a565b9350506020612c4686828701612b0a565b9250506040612c5786828701612b8c565b9150509250925092565b60008060008060808587031215612c7b57612c7a613d67565b5b6000612c8987828801612b0a565b9450506020612c9a87828801612b0a565b9350506040612cab87828801612b8c565b925050606085013567ffffffffffffffff811115612ccc57612ccb613d62565b5b612cd887828801612b5e565b91505092959194509250565b60008060408385031215612cfb57612cfa613d67565b5b6000612d0985828601612b0a565b9250506020612d1a85828601612b1f565b9150509250929050565b60008060408385031215612d3b57612d3a613d67565b5b6000612d4985828601612b0a565b9250506020612d5a85828601612b8c565b9150509250929050565b600060208284031215612d7a57612d79613d67565b5b6000612d8884828501612b34565b91505092915050565b600060208284031215612da757612da6613d67565b5b6000612db584828501612b49565b91505092915050565b600060208284031215612dd457612dd3613d67565b5b6000612de284828501612b8c565b91505092915050565b612df481613a70565b82525050565b612e0b612e0682613a70565b613bdf565b82525050565b612e1a81613a82565b82525050565b6000612e2b826138e1565b612e3581856138f7565b9350612e45818560208601613b00565b612e4e81613d6c565b840191505092915050565b6000612e64826138ec565b612e6e8185613908565b9350612e7e818560208601613b00565b612e8781613d6c565b840191505092915050565b6000612e9d826138ec565b612ea78185613919565b9350612eb7818560208601613b00565b80840191505092915050565b60008154612ed081613b33565b612eda8186613919565b94506001821660008114612ef55760018114612f0657612f39565b60ff19831686528186019350612f39565b612f0f856138cc565b60005b83811015612f3157815481890152600182019150602081019050612f12565b838801955050505b50505092915050565b6000612f4f600f83613919565b9150612f5a82613d8a565b600f82019050919050565b6000612f72602b83613908565b9150612f7d82613db3565b604082019050919050565b6000612f95603283613908565b9150612fa082613e02565b604082019050919050565b6000612fb8602683613908565b9150612fc382613e51565b604082019050919050565b6000612fdb601c83613908565b9150612fe682613ea0565b602082019050919050565b6000612ffe603483613919565b915061300982613ec9565b603482019050919050565b6000613021602483613908565b915061302c82613f18565b604082019050919050565b6000613044601983613908565b915061304f82613f67565b602082019050919050565b6000613067602583613919565b915061307282613f90565b602582019050919050565b600061308a602c83613908565b915061309582613fdf565b604082019050919050565b60006130ad600183613919565b91506130b88261402e565b600182019050919050565b60006130d0603883613908565b91506130db82614057565b604082019050919050565b60006130f3602a83613908565b91506130fe826140a6565b604082019050919050565b6000613116602983613908565b9150613121826140f5565b604082019050919050565b6000613139602083613908565b915061314482614144565b602082019050919050565b600061315c602c83613908565b91506131678261416d565b604082019050919050565b600061317f601b83613919565b915061318a826141bc565b601b82019050919050565b60006131a2602083613908565b91506131ad826141e5565b602082019050919050565b60006131c5601083613908565b91506131d08261420e565b602082019050919050565b60006131e8602983613908565b91506131f382614237565b604082019050919050565b600061320b602183613908565b915061321682614286565b604082019050919050565b600061322e600383613919565b9150613239826142d5565b600382019050919050565b6000613251603183613908565b915061325c826142fe565b604082019050919050565b6000613274602c83613908565b915061327f8261434d565b604082019050919050565b600061329760f083613919565b91506132a28261439c565b60f082019050919050565b60006132ba601f83613908565b91506132c5826144cf565b602082019050919050565b60006132dd600483613919565b91506132e8826144f8565b600482019050919050565b6132fc81613ada565b82525050565b61331361330e82613ada565b613c03565b82525050565b60006133258286612dfa565b6014820191506133358285613302565b6020820191506133458284613302565b602082019150819050949350505050565b60006133628284612e92565b915081905092915050565b60006133798285612e92565b91506133858284612e92565b91508190509392505050565b600061339d828b612e92565b91506133a9828a612e92565b91506133b58289612e92565b91506133c18288612e92565b91506133cd8287612e92565b91506133d98286612e92565b91506133e58285612e92565b91506133f18284612e92565b91508190509998505050505050505050565b600061340f8286612e92565b915061341a826130a0565b91506134268285612e92565b91506134328284612e92565b915061343d82613221565b9150819050949350505050565b60006134568286612e92565b9150613461826130a0565b915061346d8285612e92565b9150613478826130a0565b91506134848284612e92565b9150819050949350505050565b600061349d8285612e92565b91506134a8826130a0565b91506134b48284612ec3565b91508190509392505050565b60006134cb82612f42565b91506134d78287612e92565b91506134e28261328a565b91506134ee8286612e92565b91506134f982612ff1565b91506135058285612e92565b91506135108261305a565b915061351c8284612e92565b9150613527826132d0565b915081905095945050505050565b600061354082613172565b915061354c8284612e92565b915081905092915050565b600060208201905061356c6000830184612deb565b92915050565b60006080820190506135876000830187612deb565b6135946020830186612deb565b6135a160408301856132f3565b81810360608301526135b38184612e20565b905095945050505050565b60006020820190506135d36000830184612e11565b92915050565b600060208201905081810360008301526135f38184612e59565b905092915050565b6000602082019050818103600083015261361481612f65565b9050919050565b6000602082019050818103600083015261363481612f88565b9050919050565b6000602082019050818103600083015261365481612fab565b9050919050565b6000602082019050818103600083015261367481612fce565b9050919050565b6000602082019050818103600083015261369481613014565b9050919050565b600060208201905081810360008301526136b481613037565b9050919050565b600060208201905081810360008301526136d48161307d565b9050919050565b600060208201905081810360008301526136f4816130c3565b9050919050565b60006020820190508181036000830152613714816130e6565b9050919050565b6000602082019050818103600083015261373481613109565b9050919050565b600060208201905081810360008301526137548161312c565b9050919050565b600060208201905081810360008301526137748161314f565b9050919050565b6000602082019050818103600083015261379481613195565b9050919050565b600060208201905081810360008301526137b4816131b8565b9050919050565b600060208201905081810360008301526137d4816131db565b9050919050565b600060208201905081810360008301526137f4816131fe565b9050919050565b6000602082019050818103600083015261381481613244565b9050919050565b6000602082019050818103600083015261383481613267565b9050919050565b60006020820190508181036000830152613854816132ad565b9050919050565b600060208201905061387060008301846132f3565b92915050565b6000613880613891565b905061388c8282613b65565b919050565b6000604051905090565b600067ffffffffffffffff8211156138b6576138b5613d29565b5b6138bf82613d6c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061392f82613ada565b915061393a83613ada565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561396f5761396e613c3e565b5b828201905092915050565b600061398582613ae4565b915061399083613ae4565b92508260ff038211156139a6576139a5613c3e565b5b828201905092915050565b60006139bc82613ada565b91506139c783613ada565b9250826139d7576139d6613c6d565b5b828204905092915050565b60006139ed82613ada565b91506139f883613ada565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3157613a30613c3e565b5b828202905092915050565b6000613a4782613ada565b9150613a5283613ada565b925082821015613a6557613a64613c3e565b5b828203905092915050565b6000613a7b82613aba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b1e578082015181840152602081019050613b03565b83811115613b2d576000848401525b50505050565b60006002820490506001821680613b4b57607f821691505b60208210811415613b5f57613b5e613c9c565b5b50919050565b613b6e82613d6c565b810181811067ffffffffffffffff82111715613b8d57613b8c613d29565b5b80604052505050565b6000613ba182613ada565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bd457613bd3613c3e565b5b600182019050919050565b6000613bea82613bf1565b9050919050565b6000613bfc82613d7d565b9050919050565b6000819050919050565b6000613c1882613ada565b9150613c2383613ada565b925082613c3357613c32613c6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f7b226e616d65223a202244696520230000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c202261747472696275746573223a205b207b2274726169745f747970652260008201527f3a202254797065222c202276616c7565223a2022000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f227d2c207b2274726169745f74797065223a2022526f6c6c222c202276616c7560008201527f65223a2022000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f202b310000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a2022446963652028666f722041647660008201527f656e74757265727329206172652072616e646f6d697a6564206469636520666f60208201527f7220796f757220616476656e747572696e672073746f726965732e204576657260408201527f7974696d6520796f75207265667265736820746865206d657461646174612c2060608201527f796f752077696c6c206765742061206e657720726f6c6c6564206e756d62657260808201527f206261736564206f6e20796f7572206469652e204665656c206672656520746f60a08201527f20757365204469636520696e20616e792077617920796f752077616e742e222c60c08201527f2022696d6167655f64617461223a20220000000000000000000000000000000060e082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b61452a81613a70565b811461453557600080fd5b50565b61454181613a82565b811461454c57600080fd5b50565b61455881613a8e565b811461456357600080fd5b50565b61456f81613ada565b811461457a57600080fd5b5056fe3c2f746578743e3c7465787420783d2731302720793d273332352720636c6173733d27626c6f636b273e426c6f636b3a20233c2f746578743e3c7465787420783d273135302720793d273137352720636c6173733d27726f6c6c273e3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f73766727207072657365727665417370656374526174696f3d27784d696e594d696e206d656574272076696577426f783d273020302033353020333530273e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b207d2020202e726f6c6c207b2066696c6c3a2079656c6c6f773b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20343870783b20746578742d6465636f726174696f6e3a20756e6465726c696e657d202e626c6f636b207b2066696c6c3a207265643b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20323470783b7d3c2f7374796c653e3c726563742077696474683d273130302527206865696768743d2731303025272066696c6c3d27626c61636b27202f3e3c7465787420783d2731302720793d2734302720636c6173733d2762617365273e3c2f746578743e3c7465787420783d2731302720793d273137352720636c6173733d2762617365273e596f7520726f6c6c656420613aa26469706673582212206bea64edf796f28633e29996020c01e4eee870d0639343a2f8033072b8ad4c4964736f6c63430008070033

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.