ETH Price: $2,987.54 (+3.63%)
Gas: 2 Gwei

Kitsune (KITSUNE)
 

Overview

TokenID

771

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
Kitsune

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Kitsune.sol
//SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

contract Kitsune is ERC721, Ownable{
    IERC721Enumerable ronin;

    string __uriBase;
    string __uriSuffix;

    bool public started = false;
    uint supply = 0;
    mapping(uint => bool) claimed;

    event ClaimKitsune(uint indexed roninId, uint indexed kitsuneId, address claimer);
    event Start(bool _started);

    constructor(address _ronin, string memory _uriBase, string memory _uriSuffix) ERC721("Kitsune","KITSUNE"){
        ronin = IERC721Enumerable(_ronin);
        __uriBase   = _uriBase;
        __uriSuffix = _uriSuffix;
    }

    function toggleStart() public onlyOwner{
        started = !started;
        emit Start(started);
    }

    function claimKitsune(uint _tokenId) public{
        require(started,"claim process not started");
        _claim(_tokenId);
    }
    function _claim(uint _tokenId) internal{

        require(ronin.ownerOf(_tokenId) == msg.sender,"owner");

        uint newTokenId = _tokenId%10000;

        require(!claimed[newTokenId],"kitsune already claimed");

        _safeMint(msg.sender,++supply);

        claimed[newTokenId] = true;

        emit ClaimKitsune(newTokenId,supply,msg.sender);

    }



    function claimMultiple(uint[] calldata _tokenIds) public{
        require(started,"claim process not started");
        for(uint i = 0; i < _tokenIds.length; i++){
            _claim(_tokenIds[i]);
        }
    }

    function claimable(uint _tokenId) public view returns(bool){
        uint newTokenId = _tokenId%10000;
        return !claimed[newTokenId];
    }


    function tokenURI(uint256 _tokenId) public view virtual override  returns (string memory){
        require(_exists(_tokenId),"exists");

        if(_tokenId == 0){
            return string(abi.encodePacked(__uriBase,bytes("0"),__uriSuffix));
        }


        uint _i = _tokenId;
        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(abi.encodePacked(__uriBase,bstr,__uriSuffix));
    }
    function setUriComponents(string calldata _newBase, string calldata _newSuffix) public onlyOwner{
        __uriBase   = _newBase;
        __uriSuffix = _newSuffix;
    }

    function totalSupply() public view returns(uint){
        return supply;
    }

}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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);

    /**
     * @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 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 7 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_ronin","type":"address"},{"internalType":"string","name":"_uriBase","type":"string"},{"internalType":"string","name":"_uriSuffix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"roninId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"kitsuneId","type":"uint256"},{"indexed":false,"internalType":"address","name":"claimer","type":"address"}],"name":"ClaimKitsune","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_started","type":"bool"}],"name":"Start","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":"claimKitsune","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claimMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBase","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setUriComponents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600b553480156200003157600080fd5b50604051620038b6380380620038b683398181016040528101906200005791906200039a565b6040518060400160405280600781526020017f4b697473756e65000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4b495453554e45000000000000000000000000000000000000000000000000008152508160009080519060200190620000db92919062000261565b508060019080519060200190620000f492919062000261565b505050620001176200010b6200019360201b60201c565b6200019b60201b60201c565b82600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600890805190602001906200017092919062000261565b5080600990805190602001906200018992919062000261565b50505050620005e0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026f90620004eb565b90600052602060002090601f016020900481019282620002935760008555620002df565b82601f10620002ae57805160ff1916838001178555620002df565b82800160010185558215620002df579182015b82811115620002de578251825591602001919060010190620002c1565b5b509050620002ee9190620002f2565b5090565b5b808211156200030d576000816000905550600101620002f3565b5090565b60006200032862000322846200044b565b62000422565b9050828152602081018484840111156200034157600080fd5b6200034e848285620004b5565b509392505050565b6000815190506200036781620005c6565b92915050565b600082601f8301126200037f57600080fd5b81516200039184826020860162000311565b91505092915050565b600080600060608486031215620003b057600080fd5b6000620003c08682870162000356565b935050602084015167ffffffffffffffff811115620003de57600080fd5b620003ec868287016200036d565b925050604084015167ffffffffffffffff8111156200040a57600080fd5b62000418868287016200036d565b9150509250925092565b60006200042e62000441565b90506200043c828262000521565b919050565b6000604051905090565b600067ffffffffffffffff82111562000469576200046862000586565b5b6200047482620005b5565b9050602081019050919050565b60006200048e8262000495565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004d5578082015181840152602081019050620004b8565b83811115620004e5576000848401525b50505050565b600060028204905060018216806200050457607f821691505b602082108114156200051b576200051a62000557565b5b50919050565b6200052c82620005b5565b810181811067ffffffffffffffff821117156200054e576200054d62000586565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005d18162000481565b8114620005dd57600080fd5b50565b6132c680620005f06000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610364578063c60a71bf14610380578063c87b56dd1461039c578063d1d58b25146103cc578063e985e9c5146103fc578063f2fde38b1461042c5761014d565b806370a08231146102b6578063715018a6146102e65780638da5cb5b146102f05780639051cce91461030e57806395d89b411461032a578063a22cb465146103485761014d565b806318160ddd1161011557806318160ddd146101f6578063181d0850146102145780631f2698ab1461023057806323b872dd1461024e57806342842e0e1461026a5780636352211e146102865761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806311cbef3d146101ec575b600080fd5b61016c60048036038101906101679190612237565b610448565b6040516101799190612761565b60405180910390f35b61018a61052a565b604051610197919061277c565b60405180910390f35b6101ba60048036038101906101b591906122fe565b6105bc565b6040516101c791906126fa565b60405180910390f35b6101ea60048036038101906101e591906121b6565b610602565b005b6101f461071a565b005b6101fe610794565b60405161020b91906129be565b60405180910390f35b61022e600480360381019061022991906122fe565b61079e565b005b6102386107f9565b6040516102459190612761565b60405180910390f35b610268600480360381019061026391906120b0565b61080c565b005b610284600480360381019061027f91906120b0565b61086c565b005b6102a0600480360381019061029b91906122fe565b61088c565b6040516102ad91906126fa565b60405180910390f35b6102d060048036038101906102cb9190612022565b61093e565b6040516102dd91906129be565b60405180910390f35b6102ee6109f6565b005b6102f8610a0a565b60405161030591906126fa565b60405180910390f35b610328600480360381019061032391906121f2565b610a34565b005b610332610af1565b60405161033f919061277c565b60405180910390f35b610362600480360381019061035d919061217a565b610b83565b005b61037e600480360381019061037991906120ff565b610b99565b005b61039a60048036038101906103959190612289565b610bfb565b005b6103b660048036038101906103b191906122fe565b610c2d565b6040516103c3919061277c565b60405180910390f35b6103e660048036038101906103e191906122fe565b610e9a565b6040516103f39190612761565b60405180910390f35b61041660048036038101906104119190612074565b610ed7565b6040516104239190612761565b60405180910390f35b61044660048036038101906104419190612022565b610f6b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610523575061052282610fef565b5b9050919050565b60606000805461053990612ca1565b80601f016020809104026020016040519081016040528092919081815260200182805461056590612ca1565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b60006105c782611059565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061060d8261088c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561067e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106759061295e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661069d6110a4565b73ffffffffffffffffffffffffffffffffffffffff1614806106cc57506106cb816106c66110a4565b610ed7565b5b61070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610702906128de565b60405180910390fd5b61071583836110ac565b505050565b610722611165565b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055507ff5b1413647be79c0d76218eab8d20462a0611abaa76a9754d07288ac7c152a1e600a60009054906101000a900460ff1660405161078a9190612761565b60405180910390a1565b6000600b54905090565b600a60009054906101000a900460ff166107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e49061297e565b60405180910390fd5b6107f6816111e3565b50565b600a60009054906101000a900460ff1681565b61081d6108176110a4565b826113f7565b61085c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108539061299e565b60405180910390fd5b61086783838361148c565b505050565b61088783838360405180602001604052806000815250610b99565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061293e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a69061289e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109fe611165565b610a0860006116f3565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900460ff16610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a9061297e565b60405180910390fd5b60005b82829050811015610aec57610ad9838383818110610acd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356111e3565b8080610ae490612d04565b915050610a86565b505050565b606060018054610b0090612ca1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2c90612ca1565b8015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b610b95610b8e6110a4565b83836117b9565b5050565b610baa610ba46110a4565b836113f7565b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061299e565b60405180910390fd5b610bf584848484611926565b50505050565b610c03611165565b838360089190610c14929190611e05565b50818160099190610c26929190611e05565b5050505050565b6060610c3882611982565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061279e565b60405180910390fd5b6000821415610ce25760086040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152506009604051602001610ccc939291906126c9565b6040516020818303038152906040529050610e95565b6000829050600081905060005b60008214610d19578080610d0290612d04565b915050600a82610d129190612b1f565b9150610cef565b60008167ffffffffffffffff811115610d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d8d5781602001600182028036833780820191505090505b50905060008290505b60008514610e6757600181610dab9190612baa565b90506000600a8087610dbd9190612b1f565b610dc79190612b50565b86610dd29190612baa565b6030610dde9190612ae8565b905060008160f81b905080848481518110610e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a87610e5e9190612b1f565b96505050610d96565b6008826009604051602001610e7e939291906126c9565b604051602081830303815290604052955050505050505b919050565b60008061271083610eab9190612d4d565b9050600c600082815260200190815260200160002060009054906101000a900460ff1615915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f73611165565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906127fe565b60405180910390fd5b610fec816116f3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61106281611982565b6110a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110989061293e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661111f8361088c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61116d6110a4565b73ffffffffffffffffffffffffffffffffffffffff1661118b610a0a565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061291e565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161125591906129be565b60206040518083038186803b15801561126d57600080fd5b505afa158015611281573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a5919061204b565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906127be565b60405180910390fd5b60006127108261130b9190612d4d565b9050600c600082815260200190815260200160002060009054906101000a900460ff161561136e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611365906128be565b60405180910390fd5b61138c33600b6000815461138190612d04565b9190508190556119ee565b6001600c600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600b54817fdb814e19883c8d2cd4ad44452550dbc86ef7908b8c5c2387558a093d77aec86b336040516113eb91906126fa565b60405180910390a35050565b6000806114038361088c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061144557506114448185610ed7565b5b8061148357508373ffffffffffffffffffffffffffffffffffffffff1661146b846105bc565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114ac8261088c565b73ffffffffffffffffffffffffffffffffffffffff1614611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f99061281e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115699061285e565b60405180910390fd5b61157d838383611a0c565b6115886000826110ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d89190612baa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162f9190612a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ee838383611a11565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f9061287e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119199190612761565b60405180910390a3505050565b61193184848461148c565b61193d84848484611a16565b61197c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611973906127de565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611a08828260405180602001604052806000815250611bad565b5050565b505050565b505050565b6000611a378473ffffffffffffffffffffffffffffffffffffffff16611c08565b15611ba0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a606110a4565b8786866040518563ffffffff1660e01b8152600401611a829493929190612715565b602060405180830381600087803b158015611a9c57600080fd5b505af1925050508015611acd57506040513d601f19601f82011682018060405250810190611aca9190612260565b60015b611b50573d8060008114611afd576040519150601f19603f3d011682016040523d82523d6000602084013e611b02565b606091505b50600081511415611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f906127de565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ba5565b600190505b949350505050565b611bb78383611c2b565b611bc46000848484611a16565b611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906127de565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906128fe565b60405180910390fd5b611ca481611982565b15611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb9061283e565b60405180910390fd5b611cf060008383611a0c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d409190612a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0160008383611a11565b5050565b828054611e1190612ca1565b90600052602060002090601f016020900481019282611e335760008555611e7a565b82601f10611e4c57803560ff1916838001178555611e7a565b82800160010185558215611e7a579182015b82811115611e79578235825591602001919060010190611e5e565b5b509050611e879190611e8b565b5090565b5b80821115611ea4576000816000905550600101611e8c565b5090565b6000611ebb611eb6846129fe565b6129d9565b905082815260208101848484011115611ed357600080fd5b611ede848285612c5f565b509392505050565b600081359050611ef581613234565b92915050565b600081519050611f0a81613234565b92915050565b60008083601f840112611f2257600080fd5b8235905067ffffffffffffffff811115611f3b57600080fd5b602083019150836020820283011115611f5357600080fd5b9250929050565b600081359050611f698161324b565b92915050565b600081359050611f7e81613262565b92915050565b600081519050611f9381613262565b92915050565b600082601f830112611faa57600080fd5b8135611fba848260208601611ea8565b91505092915050565b60008083601f840112611fd557600080fd5b8235905067ffffffffffffffff811115611fee57600080fd5b60208301915083600182028301111561200657600080fd5b9250929050565b60008135905061201c81613279565b92915050565b60006020828403121561203457600080fd5b600061204284828501611ee6565b91505092915050565b60006020828403121561205d57600080fd5b600061206b84828501611efb565b91505092915050565b6000806040838503121561208757600080fd5b600061209585828601611ee6565b92505060206120a685828601611ee6565b9150509250929050565b6000806000606084860312156120c557600080fd5b60006120d386828701611ee6565b93505060206120e486828701611ee6565b92505060406120f58682870161200d565b9150509250925092565b6000806000806080858703121561211557600080fd5b600061212387828801611ee6565b945050602061213487828801611ee6565b93505060406121458782880161200d565b925050606085013567ffffffffffffffff81111561216257600080fd5b61216e87828801611f99565b91505092959194509250565b6000806040838503121561218d57600080fd5b600061219b85828601611ee6565b92505060206121ac85828601611f5a565b9150509250929050565b600080604083850312156121c957600080fd5b60006121d785828601611ee6565b92505060206121e88582860161200d565b9150509250929050565b6000806020838503121561220557600080fd5b600083013567ffffffffffffffff81111561221f57600080fd5b61222b85828601611f10565b92509250509250929050565b60006020828403121561224957600080fd5b600061225784828501611f6f565b91505092915050565b60006020828403121561227257600080fd5b600061228084828501611f84565b91505092915050565b6000806000806040858703121561229f57600080fd5b600085013567ffffffffffffffff8111156122b957600080fd5b6122c587828801611fc3565b9450945050602085013567ffffffffffffffff8111156122e457600080fd5b6122f087828801611fc3565b925092505092959194509250565b60006020828403121561231057600080fd5b600061231e8482850161200d565b91505092915050565b61233081612bde565b82525050565b61233f81612bf0565b82525050565b600061235082612a44565b61235a8185612a5a565b935061236a818560208601612c6e565b61237381612e3a565b840191505092915050565b600061238982612a44565b6123938185612a6b565b93506123a3818560208601612c6e565b80840191505092915050565b60006123ba82612a4f565b6123c48185612a76565b93506123d4818560208601612c6e565b6123dd81612e3a565b840191505092915050565b600081546123f581612ca1565b6123ff8186612a87565b9450600182166000811461241a576001811461242b5761245e565b60ff1983168652818601935061245e565b61243485612a2f565b60005b8381101561245657815481890152600182019150602081019050612437565b838801955050505b50505092915050565b6000612474600683612a76565b915061247f82612e4b565b602082019050919050565b6000612497600583612a76565b91506124a282612e74565b602082019050919050565b60006124ba603283612a76565b91506124c582612e9d565b604082019050919050565b60006124dd602683612a76565b91506124e882612eec565b604082019050919050565b6000612500602583612a76565b915061250b82612f3b565b604082019050919050565b6000612523601c83612a76565b915061252e82612f8a565b602082019050919050565b6000612546602483612a76565b915061255182612fb3565b604082019050919050565b6000612569601983612a76565b915061257482613002565b602082019050919050565b600061258c602983612a76565b91506125978261302b565b604082019050919050565b60006125af601783612a76565b91506125ba8261307a565b602082019050919050565b60006125d2603e83612a76565b91506125dd826130a3565b604082019050919050565b60006125f5602083612a76565b9150612600826130f2565b602082019050919050565b6000612618602083612a76565b91506126238261311b565b602082019050919050565b600061263b601883612a76565b915061264682613144565b602082019050919050565b600061265e602183612a76565b91506126698261316d565b604082019050919050565b6000612681601983612a76565b915061268c826131bc565b602082019050919050565b60006126a4602e83612a76565b91506126af826131e5565b604082019050919050565b6126c381612c48565b82525050565b60006126d582866123e8565b91506126e1828561237e565b91506126ed82846123e8565b9150819050949350505050565b600060208201905061270f6000830184612327565b92915050565b600060808201905061272a6000830187612327565b6127376020830186612327565b61274460408301856126ba565b81810360608301526127568184612345565b905095945050505050565b60006020820190506127766000830184612336565b92915050565b6000602082019050818103600083015261279681846123af565b905092915050565b600060208201905081810360008301526127b781612467565b9050919050565b600060208201905081810360008301526127d78161248a565b9050919050565b600060208201905081810360008301526127f7816124ad565b9050919050565b60006020820190508181036000830152612817816124d0565b9050919050565b60006020820190508181036000830152612837816124f3565b9050919050565b6000602082019050818103600083015261285781612516565b9050919050565b6000602082019050818103600083015261287781612539565b9050919050565b600060208201905081810360008301526128978161255c565b9050919050565b600060208201905081810360008301526128b78161257f565b9050919050565b600060208201905081810360008301526128d7816125a2565b9050919050565b600060208201905081810360008301526128f7816125c5565b9050919050565b60006020820190508181036000830152612917816125e8565b9050919050565b600060208201905081810360008301526129378161260b565b9050919050565b600060208201905081810360008301526129578161262e565b9050919050565b6000602082019050818103600083015261297781612651565b9050919050565b6000602082019050818103600083015261299781612674565b9050919050565b600060208201905081810360008301526129b781612697565b9050919050565b60006020820190506129d360008301846126ba565b92915050565b60006129e36129f4565b90506129ef8282612cd3565b919050565b6000604051905090565b600067ffffffffffffffff821115612a1957612a18612e0b565b5b612a2282612e3a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9d82612c48565b9150612aa883612c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612add57612adc612d7e565b5b828201905092915050565b6000612af382612c52565b9150612afe83612c52565b92508260ff03821115612b1457612b13612d7e565b5b828201905092915050565b6000612b2a82612c48565b9150612b3583612c48565b925082612b4557612b44612dad565b5b828204905092915050565b6000612b5b82612c48565b9150612b6683612c48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b9f57612b9e612d7e565b5b828202905092915050565b6000612bb582612c48565b9150612bc083612c48565b925082821015612bd357612bd2612d7e565b5b828203905092915050565b6000612be982612c28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c8c578082015181840152602081019050612c71565b83811115612c9b576000848401525b50505050565b60006002820490506001821680612cb957607f821691505b60208210811415612ccd57612ccc612ddc565b5b50919050565b612cdc82612e3a565b810181811067ffffffffffffffff82111715612cfb57612cfa612e0b565b5b80604052505050565b6000612d0f82612c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d4257612d41612d7e565b5b600182019050919050565b6000612d5882612c48565b9150612d6383612c48565b925082612d7357612d72612dad565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6578697374730000000000000000000000000000000000000000000000000000600082015250565b7f6f776e6572000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6b697473756e6520616c726561647920636c61696d6564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f636c61696d2070726f63657373206e6f74207374617274656400000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61323d81612bde565b811461324857600080fd5b50565b61325481612bf0565b811461325f57600080fd5b50565b61326b81612bfc565b811461327657600080fd5b50565b61328281612c48565b811461328d57600080fd5b5056fea2646970667358221220823aace593a0f02d3c98f5295ac797256f62ce0a05680d40a625b64a85325d6664736f6c634300080400330000000000000000000000002127fe7ffce4380459cced92f2d4793f3af094a400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f373272337672773872342e657865637574652d6170692e75732d656173742d322e616d617a6f6e6177732e636f6d2f64656661756c742f6b697473756e652d6d657461646174612d6d6963726f736572766963653f746f6b656e3d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610364578063c60a71bf14610380578063c87b56dd1461039c578063d1d58b25146103cc578063e985e9c5146103fc578063f2fde38b1461042c5761014d565b806370a08231146102b6578063715018a6146102e65780638da5cb5b146102f05780639051cce91461030e57806395d89b411461032a578063a22cb465146103485761014d565b806318160ddd1161011557806318160ddd146101f6578063181d0850146102145780631f2698ab1461023057806323b872dd1461024e57806342842e0e1461026a5780636352211e146102865761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806311cbef3d146101ec575b600080fd5b61016c60048036038101906101679190612237565b610448565b6040516101799190612761565b60405180910390f35b61018a61052a565b604051610197919061277c565b60405180910390f35b6101ba60048036038101906101b591906122fe565b6105bc565b6040516101c791906126fa565b60405180910390f35b6101ea60048036038101906101e591906121b6565b610602565b005b6101f461071a565b005b6101fe610794565b60405161020b91906129be565b60405180910390f35b61022e600480360381019061022991906122fe565b61079e565b005b6102386107f9565b6040516102459190612761565b60405180910390f35b610268600480360381019061026391906120b0565b61080c565b005b610284600480360381019061027f91906120b0565b61086c565b005b6102a0600480360381019061029b91906122fe565b61088c565b6040516102ad91906126fa565b60405180910390f35b6102d060048036038101906102cb9190612022565b61093e565b6040516102dd91906129be565b60405180910390f35b6102ee6109f6565b005b6102f8610a0a565b60405161030591906126fa565b60405180910390f35b610328600480360381019061032391906121f2565b610a34565b005b610332610af1565b60405161033f919061277c565b60405180910390f35b610362600480360381019061035d919061217a565b610b83565b005b61037e600480360381019061037991906120ff565b610b99565b005b61039a60048036038101906103959190612289565b610bfb565b005b6103b660048036038101906103b191906122fe565b610c2d565b6040516103c3919061277c565b60405180910390f35b6103e660048036038101906103e191906122fe565b610e9a565b6040516103f39190612761565b60405180910390f35b61041660048036038101906104119190612074565b610ed7565b6040516104239190612761565b60405180910390f35b61044660048036038101906104419190612022565b610f6b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610523575061052282610fef565b5b9050919050565b60606000805461053990612ca1565b80601f016020809104026020016040519081016040528092919081815260200182805461056590612ca1565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b60006105c782611059565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061060d8261088c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561067e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106759061295e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661069d6110a4565b73ffffffffffffffffffffffffffffffffffffffff1614806106cc57506106cb816106c66110a4565b610ed7565b5b61070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610702906128de565b60405180910390fd5b61071583836110ac565b505050565b610722611165565b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055507ff5b1413647be79c0d76218eab8d20462a0611abaa76a9754d07288ac7c152a1e600a60009054906101000a900460ff1660405161078a9190612761565b60405180910390a1565b6000600b54905090565b600a60009054906101000a900460ff166107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e49061297e565b60405180910390fd5b6107f6816111e3565b50565b600a60009054906101000a900460ff1681565b61081d6108176110a4565b826113f7565b61085c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108539061299e565b60405180910390fd5b61086783838361148c565b505050565b61088783838360405180602001604052806000815250610b99565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c9061293e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a69061289e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109fe611165565b610a0860006116f3565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900460ff16610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a9061297e565b60405180910390fd5b60005b82829050811015610aec57610ad9838383818110610acd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356111e3565b8080610ae490612d04565b915050610a86565b505050565b606060018054610b0090612ca1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2c90612ca1565b8015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b610b95610b8e6110a4565b83836117b9565b5050565b610baa610ba46110a4565b836113f7565b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061299e565b60405180910390fd5b610bf584848484611926565b50505050565b610c03611165565b838360089190610c14929190611e05565b50818160099190610c26929190611e05565b5050505050565b6060610c3882611982565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061279e565b60405180910390fd5b6000821415610ce25760086040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152506009604051602001610ccc939291906126c9565b6040516020818303038152906040529050610e95565b6000829050600081905060005b60008214610d19578080610d0290612d04565b915050600a82610d129190612b1f565b9150610cef565b60008167ffffffffffffffff811115610d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d8d5781602001600182028036833780820191505090505b50905060008290505b60008514610e6757600181610dab9190612baa565b90506000600a8087610dbd9190612b1f565b610dc79190612b50565b86610dd29190612baa565b6030610dde9190612ae8565b905060008160f81b905080848481518110610e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a87610e5e9190612b1f565b96505050610d96565b6008826009604051602001610e7e939291906126c9565b604051602081830303815290604052955050505050505b919050565b60008061271083610eab9190612d4d565b9050600c600082815260200190815260200160002060009054906101000a900460ff1615915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f73611165565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906127fe565b60405180910390fd5b610fec816116f3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61106281611982565b6110a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110989061293e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661111f8361088c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61116d6110a4565b73ffffffffffffffffffffffffffffffffffffffff1661118b610a0a565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061291e565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161125591906129be565b60206040518083038186803b15801561126d57600080fd5b505afa158015611281573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a5919061204b565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906127be565b60405180910390fd5b60006127108261130b9190612d4d565b9050600c600082815260200190815260200160002060009054906101000a900460ff161561136e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611365906128be565b60405180910390fd5b61138c33600b6000815461138190612d04565b9190508190556119ee565b6001600c600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600b54817fdb814e19883c8d2cd4ad44452550dbc86ef7908b8c5c2387558a093d77aec86b336040516113eb91906126fa565b60405180910390a35050565b6000806114038361088c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061144557506114448185610ed7565b5b8061148357508373ffffffffffffffffffffffffffffffffffffffff1661146b846105bc565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114ac8261088c565b73ffffffffffffffffffffffffffffffffffffffff1614611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f99061281e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115699061285e565b60405180910390fd5b61157d838383611a0c565b6115886000826110ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d89190612baa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162f9190612a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ee838383611a11565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f9061287e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119199190612761565b60405180910390a3505050565b61193184848461148c565b61193d84848484611a16565b61197c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611973906127de565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611a08828260405180602001604052806000815250611bad565b5050565b505050565b505050565b6000611a378473ffffffffffffffffffffffffffffffffffffffff16611c08565b15611ba0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a606110a4565b8786866040518563ffffffff1660e01b8152600401611a829493929190612715565b602060405180830381600087803b158015611a9c57600080fd5b505af1925050508015611acd57506040513d601f19601f82011682018060405250810190611aca9190612260565b60015b611b50573d8060008114611afd576040519150601f19603f3d011682016040523d82523d6000602084013e611b02565b606091505b50600081511415611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f906127de565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ba5565b600190505b949350505050565b611bb78383611c2b565b611bc46000848484611a16565b611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906127de565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906128fe565b60405180910390fd5b611ca481611982565b15611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb9061283e565b60405180910390fd5b611cf060008383611a0c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d409190612a92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0160008383611a11565b5050565b828054611e1190612ca1565b90600052602060002090601f016020900481019282611e335760008555611e7a565b82601f10611e4c57803560ff1916838001178555611e7a565b82800160010185558215611e7a579182015b82811115611e79578235825591602001919060010190611e5e565b5b509050611e879190611e8b565b5090565b5b80821115611ea4576000816000905550600101611e8c565b5090565b6000611ebb611eb6846129fe565b6129d9565b905082815260208101848484011115611ed357600080fd5b611ede848285612c5f565b509392505050565b600081359050611ef581613234565b92915050565b600081519050611f0a81613234565b92915050565b60008083601f840112611f2257600080fd5b8235905067ffffffffffffffff811115611f3b57600080fd5b602083019150836020820283011115611f5357600080fd5b9250929050565b600081359050611f698161324b565b92915050565b600081359050611f7e81613262565b92915050565b600081519050611f9381613262565b92915050565b600082601f830112611faa57600080fd5b8135611fba848260208601611ea8565b91505092915050565b60008083601f840112611fd557600080fd5b8235905067ffffffffffffffff811115611fee57600080fd5b60208301915083600182028301111561200657600080fd5b9250929050565b60008135905061201c81613279565b92915050565b60006020828403121561203457600080fd5b600061204284828501611ee6565b91505092915050565b60006020828403121561205d57600080fd5b600061206b84828501611efb565b91505092915050565b6000806040838503121561208757600080fd5b600061209585828601611ee6565b92505060206120a685828601611ee6565b9150509250929050565b6000806000606084860312156120c557600080fd5b60006120d386828701611ee6565b93505060206120e486828701611ee6565b92505060406120f58682870161200d565b9150509250925092565b6000806000806080858703121561211557600080fd5b600061212387828801611ee6565b945050602061213487828801611ee6565b93505060406121458782880161200d565b925050606085013567ffffffffffffffff81111561216257600080fd5b61216e87828801611f99565b91505092959194509250565b6000806040838503121561218d57600080fd5b600061219b85828601611ee6565b92505060206121ac85828601611f5a565b9150509250929050565b600080604083850312156121c957600080fd5b60006121d785828601611ee6565b92505060206121e88582860161200d565b9150509250929050565b6000806020838503121561220557600080fd5b600083013567ffffffffffffffff81111561221f57600080fd5b61222b85828601611f10565b92509250509250929050565b60006020828403121561224957600080fd5b600061225784828501611f6f565b91505092915050565b60006020828403121561227257600080fd5b600061228084828501611f84565b91505092915050565b6000806000806040858703121561229f57600080fd5b600085013567ffffffffffffffff8111156122b957600080fd5b6122c587828801611fc3565b9450945050602085013567ffffffffffffffff8111156122e457600080fd5b6122f087828801611fc3565b925092505092959194509250565b60006020828403121561231057600080fd5b600061231e8482850161200d565b91505092915050565b61233081612bde565b82525050565b61233f81612bf0565b82525050565b600061235082612a44565b61235a8185612a5a565b935061236a818560208601612c6e565b61237381612e3a565b840191505092915050565b600061238982612a44565b6123938185612a6b565b93506123a3818560208601612c6e565b80840191505092915050565b60006123ba82612a4f565b6123c48185612a76565b93506123d4818560208601612c6e565b6123dd81612e3a565b840191505092915050565b600081546123f581612ca1565b6123ff8186612a87565b9450600182166000811461241a576001811461242b5761245e565b60ff1983168652818601935061245e565b61243485612a2f565b60005b8381101561245657815481890152600182019150602081019050612437565b838801955050505b50505092915050565b6000612474600683612a76565b915061247f82612e4b565b602082019050919050565b6000612497600583612a76565b91506124a282612e74565b602082019050919050565b60006124ba603283612a76565b91506124c582612e9d565b604082019050919050565b60006124dd602683612a76565b91506124e882612eec565b604082019050919050565b6000612500602583612a76565b915061250b82612f3b565b604082019050919050565b6000612523601c83612a76565b915061252e82612f8a565b602082019050919050565b6000612546602483612a76565b915061255182612fb3565b604082019050919050565b6000612569601983612a76565b915061257482613002565b602082019050919050565b600061258c602983612a76565b91506125978261302b565b604082019050919050565b60006125af601783612a76565b91506125ba8261307a565b602082019050919050565b60006125d2603e83612a76565b91506125dd826130a3565b604082019050919050565b60006125f5602083612a76565b9150612600826130f2565b602082019050919050565b6000612618602083612a76565b91506126238261311b565b602082019050919050565b600061263b601883612a76565b915061264682613144565b602082019050919050565b600061265e602183612a76565b91506126698261316d565b604082019050919050565b6000612681601983612a76565b915061268c826131bc565b602082019050919050565b60006126a4602e83612a76565b91506126af826131e5565b604082019050919050565b6126c381612c48565b82525050565b60006126d582866123e8565b91506126e1828561237e565b91506126ed82846123e8565b9150819050949350505050565b600060208201905061270f6000830184612327565b92915050565b600060808201905061272a6000830187612327565b6127376020830186612327565b61274460408301856126ba565b81810360608301526127568184612345565b905095945050505050565b60006020820190506127766000830184612336565b92915050565b6000602082019050818103600083015261279681846123af565b905092915050565b600060208201905081810360008301526127b781612467565b9050919050565b600060208201905081810360008301526127d78161248a565b9050919050565b600060208201905081810360008301526127f7816124ad565b9050919050565b60006020820190508181036000830152612817816124d0565b9050919050565b60006020820190508181036000830152612837816124f3565b9050919050565b6000602082019050818103600083015261285781612516565b9050919050565b6000602082019050818103600083015261287781612539565b9050919050565b600060208201905081810360008301526128978161255c565b9050919050565b600060208201905081810360008301526128b78161257f565b9050919050565b600060208201905081810360008301526128d7816125a2565b9050919050565b600060208201905081810360008301526128f7816125c5565b9050919050565b60006020820190508181036000830152612917816125e8565b9050919050565b600060208201905081810360008301526129378161260b565b9050919050565b600060208201905081810360008301526129578161262e565b9050919050565b6000602082019050818103600083015261297781612651565b9050919050565b6000602082019050818103600083015261299781612674565b9050919050565b600060208201905081810360008301526129b781612697565b9050919050565b60006020820190506129d360008301846126ba565b92915050565b60006129e36129f4565b90506129ef8282612cd3565b919050565b6000604051905090565b600067ffffffffffffffff821115612a1957612a18612e0b565b5b612a2282612e3a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9d82612c48565b9150612aa883612c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612add57612adc612d7e565b5b828201905092915050565b6000612af382612c52565b9150612afe83612c52565b92508260ff03821115612b1457612b13612d7e565b5b828201905092915050565b6000612b2a82612c48565b9150612b3583612c48565b925082612b4557612b44612dad565b5b828204905092915050565b6000612b5b82612c48565b9150612b6683612c48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b9f57612b9e612d7e565b5b828202905092915050565b6000612bb582612c48565b9150612bc083612c48565b925082821015612bd357612bd2612d7e565b5b828203905092915050565b6000612be982612c28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c8c578082015181840152602081019050612c71565b83811115612c9b576000848401525b50505050565b60006002820490506001821680612cb957607f821691505b60208210811415612ccd57612ccc612ddc565b5b50919050565b612cdc82612e3a565b810181811067ffffffffffffffff82111715612cfb57612cfa612e0b565b5b80604052505050565b6000612d0f82612c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d4257612d41612d7e565b5b600182019050919050565b6000612d5882612c48565b9150612d6383612c48565b925082612d7357612d72612dad565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6578697374730000000000000000000000000000000000000000000000000000600082015250565b7f6f776e6572000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6b697473756e6520616c726561647920636c61696d6564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f636c61696d2070726f63657373206e6f74207374617274656400000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61323d81612bde565b811461324857600080fd5b50565b61325481612bf0565b811461325f57600080fd5b50565b61326b81612bfc565b811461327657600080fd5b50565b61328281612c48565b811461328d57600080fd5b5056fea2646970667358221220823aace593a0f02d3c98f5295ac797256f62ce0a05680d40a625b64a85325d6664736f6c63430008040033

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

0000000000000000000000002127fe7ffce4380459cced92f2d4793f3af094a400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f373272337672773872342e657865637574652d6170692e75732d656173742d322e616d617a6f6e6177732e636f6d2f64656661756c742f6b697473756e652d6d657461646174612d6d6963726f736572766963653f746f6b656e3d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _ronin (address): 0x2127FE7FfcE4380459CCEd92f2D4793F3AF094A4
Arg [1] : _uriBase (string): https://72r3vrw8r4.execute-api.us-east-2.amazonaws.com/default/kitsune-metadata-microservice?token=
Arg [2] : _uriSuffix (string):

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000002127fe7ffce4380459cced92f2d4793f3af094a4
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [4] : 68747470733a2f2f373272337672773872342e657865637574652d6170692e75
Arg [5] : 732d656173742d322e616d617a6f6e6177732e636f6d2f64656661756c742f6b
Arg [6] : 697473756e652d6d657461646174612d6d6963726f736572766963653f746f6b
Arg [7] : 656e3d0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.