ETH Price: $2,526.99 (+2.79%)

Contract

0x8ed0E7404675d5C7F5b4F2a829138afCAF53d2ab
 
Transaction Hash
Method
Block
From
To
Set Approval For...205268912024-08-14 12:32:2314 days ago1723638743IN
X-Consoles: XCONSOLES Token
0 ETH0.000083621.79376216
Set Approval For...205144012024-08-12 18:44:1116 days ago1723488251IN
X-Consoles: XCONSOLES Token
0 ETH0.000320486.87447167
Set Approval For...203819622024-07-25 7:06:1134 days ago1721891171IN
X-Consoles: XCONSOLES Token
0 ETH0.000111262.3865816
Set Approval For...203230102024-07-17 1:38:1142 days ago1721180291IN
X-Consoles: XCONSOLES Token
0 ETH0.000172986.97758796
Set Approval For...200810642024-06-13 6:17:5976 days ago1718259479IN
X-Consoles: XCONSOLES Token
0 ETH0.0004863710.43306486
Set Approval For...199730132024-05-29 4:04:1191 days ago1716955451IN
X-Consoles: XCONSOLES Token
0 ETH0.0005983212.81126959
Safe Transfer Fr...199001262024-05-18 23:31:35101 days ago1716075095IN
X-Consoles: XCONSOLES Token
0 ETH0.000250882.85478327
Set Approval For...198822362024-05-16 11:27:47104 days ago1715858867IN
X-Consoles: XCONSOLES Token
0 ETH0.000232354.97526512
Set Approval For...193727932024-03-06 1:17:11175 days ago1709687831IN
X-Consoles: XCONSOLES Token
0 ETH0.0027095558.0167799
Set Approval For...193103552024-02-26 7:49:35184 days ago1708933775IN
X-Consoles: XCONSOLES Token
0 ETH0.0013839529.68639445
Set Approval For...192235412024-02-14 3:30:35196 days ago1707881435IN
X-Consoles: XCONSOLES Token
0 ETH0.0010350322.20201625
Set Approval For...192092282024-02-12 3:20:35198 days ago1707708035IN
X-Consoles: XCONSOLES Token
0 ETH0.0005126820.6803535
Set Approval For...191552842024-02-04 13:36:23206 days ago1707053783IN
X-Consoles: XCONSOLES Token
0 ETH0.0004675518.85974593
Set Approval For...191371052024-02-02 0:18:11208 days ago1706833091IN
X-Consoles: XCONSOLES Token
0 ETH0.0005574222.48480236
Set Approval For...190603322024-01-22 5:54:47219 days ago1705902887IN
X-Consoles: XCONSOLES Token
0 ETH0.000266669.95343978
Set Approval For...190603322024-01-22 5:54:47219 days ago1705902887IN
X-Consoles: XCONSOLES Token
0 ETH0.000246759.95343978
Set Approval For...189075502023-12-31 19:29:35241 days ago1704050975IN
X-Consoles: XCONSOLES Token
0 ETH0.0005835112.497276
Set Approval For...189061412023-12-31 14:45:35241 days ago1704033935IN
X-Consoles: XCONSOLES Token
0 ETH0.0008697218.65592596
Set Approval For...188868182023-12-28 21:36:11244 days ago1703799371IN
X-Consoles: XCONSOLES Token
0 ETH0.0005512522.31158674
Set Approval For...188013982023-12-16 21:49:11256 days ago1702763351IN
X-Consoles: XCONSOLES Token
0 ETH0.0017215436.86148605
Set Approval For...186649322023-11-27 19:02:35275 days ago1701111755IN
X-Consoles: XCONSOLES Token
0 ETH0.0033952472.82962212
Set Approval For...184827212023-11-02 6:49:11300 days ago1698907751IN
X-Consoles: XCONSOLES Token
0 ETH0.0006875714.74890226
Set Approval For...184021782023-10-22 0:11:35311 days ago1697933495IN
X-Consoles: XCONSOLES Token
0 ETH0.000207778.38103886
Set Approval For...183839342023-10-19 10:59:11314 days ago1697713151IN
X-Consoles: XCONSOLES Token
0 ETH0.000190727.69333583
Set Approval For...183829642023-10-19 7:42:23314 days ago1697701343IN
X-Consoles: XCONSOLES Token
0 ETH0.000261135.60147786
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
137223762021-12-01 17:32:401001 days ago1638379960
X-Consoles: XCONSOLES Token
500 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
XcNFT

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.3;

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

contract XcNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 1000;
  uint256 public maxMintAmount = 3;
  bool public paused = false;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner
  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
   function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002be565b506103e8600d556003600e556000600f60006101000a81548160ff0219169083151502179055503480156200008557600080fd5b5060405162004642380380620046428339818101604052810190620000ab9190620003e0565b82828160009080519060200190620000c5929190620002be565b508060019080519060200190620000de929190620002be565b50505062000101620000f56200011b60201b60201c565b6200012360201b60201c565b6200011281620001e960201b60201c565b50505062000674565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001f96200011b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200021f6200029460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f90620004a8565b60405180910390fd5b80600b908051906020019062000290929190620002be565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002cc9062000570565b90600052602060002090601f016020900481019282620002f057600085556200033c565b82601f106200030b57805160ff19168380011785556200033c565b828001600101855582156200033c579182015b828111156200033b5782518255916020019190600101906200031e565b5b5090506200034b91906200034f565b5090565b5b808211156200036a57600081600090555060010162000350565b5090565b6000620003856200037f84620004f3565b620004ca565b9050828152602081018484840111156200039e57600080fd5b620003ab8482856200053a565b509392505050565b600082601f830112620003c557600080fd5b8151620003d78482602086016200036e565b91505092915050565b600080600060608486031215620003f657600080fd5b600084015167ffffffffffffffff8111156200041157600080fd5b6200041f86828701620003b3565b935050602084015167ffffffffffffffff8111156200043d57600080fd5b6200044b86828701620003b3565b925050604084015167ffffffffffffffff8111156200046957600080fd5b6200047786828701620003b3565b9150509250925092565b60006200049060208362000529565b91506200049d826200064b565b602082019050919050565b60006020820190508181036000830152620004c38162000481565b9050919050565b6000620004d6620004e9565b9050620004e48282620005a6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200051157620005106200060b565b5b6200051c826200063a565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200055a5780820151818401526020810190506200053d565b838111156200056a576000848401525b50505050565b600060028204905060018216806200058957607f821691505b60208210811415620005a0576200059f620005dc565b5b50919050565b620005b1826200063a565b810181811067ffffffffffffffff82111715620005d357620005d26200060b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613fbe80620006846000396000f3fe6080604052600436106101d85760003560e01c80635c975abb11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106a2578063da3ef23f146106cd578063e985e9c5146106f6578063f2fde38b14610733576101d8565b8063a22cb465146105e8578063b88d4fde14610611578063c66828621461063a578063c87b56dd14610665576101d8565b8063715018a6116100d1578063715018a6146105525780637f00c7a6146105695780638da5cb5b1461059257806395d89b41146105bd576101d8565b80635c975abb146104825780636352211e146104ad5780636c0360eb146104ea57806370a0823114610515576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103b6578063438b6300146103df5780634f6ccce71461041c57806355f804b314610459576101d8565b806323b872dd1461032a5780632f745c59146103535780633ccfd60b1461039057806340c10f191461039a576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806318160ddd146102d4578063239c70ae146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612dab565b61075c565b604051610211919061336b565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612d82565b6107d6565b005b34801561024f57600080fd5b5061025861086f565b6040516102659190613386565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612e3e565b610901565b6040516102a291906132e2565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612d46565b610986565b005b3480156102e057600080fd5b506102e9610a9e565b6040516102f691906135e8565b60405180910390f35b34801561030b57600080fd5b50610314610aab565b60405161032191906135e8565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612c40565b610ab1565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612d46565b610b11565b60405161038791906135e8565b60405180910390f35b610398610bb6565b005b6103b460048036038101906103af9190612d46565b610c72565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612c40565b610d0a565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612bdb565b610d2a565b6040516104139190613349565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612e3e565b610e24565b60405161045091906135e8565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612dfd565b610ebb565b005b34801561048e57600080fd5b50610497610f51565b6040516104a4919061336b565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612e3e565b610f64565b6040516104e191906132e2565b60405180910390f35b3480156104f657600080fd5b506104ff611016565b60405161050c9190613386565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612bdb565b6110a4565b60405161054991906135e8565b60405180910390f35b34801561055e57600080fd5b5061056761115c565b005b34801561057557600080fd5b50610590600480360381019061058b9190612e3e565b6111e4565b005b34801561059e57600080fd5b506105a761126a565b6040516105b491906132e2565b60405180910390f35b3480156105c957600080fd5b506105d2611294565b6040516105df9190613386565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612d0a565b611326565b005b34801561061d57600080fd5b5061063860048036038101906106339190612c8f565b6114a7565b005b34801561064657600080fd5b5061064f611509565b60405161065c9190613386565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190612e3e565b611597565b6040516106999190613386565b60405180910390f35b3480156106ae57600080fd5b506106b7611641565b6040516106c491906135e8565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612dfd565b611647565b005b34801561070257600080fd5b5061071d60048036038101906107189190612c04565b6116dd565b60405161072a919061336b565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612bdb565b611771565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57506107ce82611869565b5b9050919050565b6107de61194b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084990613528565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60606000805461087e9061388c565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa9061388c565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c82611953565b61094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290613508565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182610f64565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613588565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2161194b565b73ffffffffffffffffffffffffffffffffffffffff161480610a505750610a4f81610a4a61194b565b6116dd565b5b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613488565b60405180910390fd5b610a9983836119bf565b505050565b6000600880549050905090565b600e5481565b610ac2610abc61194b565b82611a78565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906135a8565b60405180910390fd5b610b0c838383611b56565b505050565b6000610b1c836110a4565b8210610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906133a8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bbe61194b565b73ffffffffffffffffffffffffffffffffffffffff16610bdc61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613528565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c7057600080fd5b565b6000610c7c610a9e565b9050600f60009054906101000a900460ff1615610c9857600080fd5b60008211610ca557600080fd5b600e54821115610cb457600080fd5b600d548282610cc3919061371b565b1115610cce57600080fd5b6000600190505b828111610d0457610cf1848284610cec919061371b565b611db2565b8080610cfc906138ef565b915050610cd5565b50505050565b610d25838383604051806020016040528060008152506114a7565b505050565b60606000610d37836110a4565b905060008167ffffffffffffffff811115610d7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610da95781602001602082028036833780820191505090505b50905060005b82811015610e1957610dc18582610b11565b828281518110610dfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e11906138ef565b915050610daf565b508092505050919050565b6000610e2e610a9e565b8210610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906135c8565b60405180910390fd5b60088281548110610ea9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ec361194b565b73ffffffffffffffffffffffffffffffffffffffff16610ee161126a565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613528565b60405180910390fd5b80600b9080519060200190610f4d9291906129ff565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906134c8565b60405180910390fd5b80915050919050565b600b80546110239061388c565b80601f016020809104026020016040519081016040528092919081815260200182805461104f9061388c565b801561109c5780601f106110715761010080835404028352916020019161109c565b820191906000526020600020905b81548152906001019060200180831161107f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c906134a8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116461194b565b73ffffffffffffffffffffffffffffffffffffffff1661118261126a565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613528565b60405180910390fd5b6111e26000611dd0565b565b6111ec61194b565b73ffffffffffffffffffffffffffffffffffffffff1661120a61126a565b73ffffffffffffffffffffffffffffffffffffffff1614611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790613528565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112a39061388c565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf9061388c565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b5050505050905090565b61132e61194b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613448565b60405180910390fd5b80600560006113a961194b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145661194b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149b919061336b565b60405180910390a35050565b6114b86114b261194b565b83611a78565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee906135a8565b60405180910390fd5b61150384848484611e96565b50505050565b600c80546115169061388c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061388c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b505050505081565b60606115a282611953565b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613568565b60405180910390fd5b60006115eb611ef2565b9050600081511161160b5760405180602001604052806000815250611639565b8061161584611f84565b600c604051602001611629939291906132b1565b6040516020818303038152906040525b915050919050565b600d5481565b61164f61194b565b73ffffffffffffffffffffffffffffffffffffffff1661166d61126a565b73ffffffffffffffffffffffffffffffffffffffff16146116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613528565b60405180910390fd5b80600c90805190602001906116d99291906129ff565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177961194b565b73ffffffffffffffffffffffffffffffffffffffff1661179761126a565b73ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490613528565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611854906133e8565b60405180910390fd5b61186681611dd0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061193457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611944575061194382612131565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3283610f64565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a8382611953565b611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613468565b60405180910390fd5b6000611acd83610f64565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b3c57508373ffffffffffffffffffffffffffffffffffffffff16611b2484610901565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b4d5750611b4c81856116dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b7682610f64565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613548565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613428565b60405180910390fd5b611c4783838361219b565b611c526000826119bf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca291906137a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf9919061371b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611dcc8282604051806020016040528060008152506122af565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ea1848484611b56565b611ead8484848461230a565b611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906133c8565b60405180910390fd5b50505050565b6060600b8054611f019061388c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d9061388c565b8015611f7a5780601f10611f4f57610100808354040283529160200191611f7a565b820191906000526020600020905b815481529060010190602001808311611f5d57829003601f168201915b5050505050905090565b60606000821415611fcc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061212c565b600082905060005b60008214611ffe578080611fe7906138ef565b915050600a82611ff79190613771565b9150611fd4565b60008167ffffffffffffffff811115612040577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120725781602001600182028036833780820191505090505b5090505b600085146121255760018261208b91906137a2565b9150600a8561209a9190613938565b60306120a6919061371b565b60f81b8183815181106120e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561211e9190613771565b9450612076565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121a68383836124a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e9576121e4816124a6565b612228565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122275761222683826124ef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226b576122668161265c565b6122aa565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122a9576122a8828261279f565b5b5b505050565b6122b9838361281e565b6122c6600084848461230a565b612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906133c8565b60405180910390fd5b505050565b600061232b8473ffffffffffffffffffffffffffffffffffffffff166129ec565b15612494578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235461194b565b8786866040518563ffffffff1660e01b815260040161237694939291906132fd565b602060405180830381600087803b15801561239057600080fd5b505af19250505080156123c157506040513d601f19601f820116820180604052508101906123be9190612dd4565b60015b612444573d80600081146123f1576040519150601f19603f3d011682016040523d82523d6000602084013e6123f6565b606091505b5060008151141561243c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612433906133c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612499565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124fc846110a4565b61250691906137a2565b90506000600760008481526020019081526020016000205490508181146125eb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061267091906137a2565b90506000600960008481526020019081526020016000205490506000600883815481106126c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061270e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612783577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127aa836110a4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612885906134e8565b60405180910390fd5b61289781611953565b156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613408565b60405180910390fd5b6128e36000838361219b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612933919061371b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a0b9061388c565b90600052602060002090601f016020900481019282612a2d5760008555612a74565b82601f10612a4657805160ff1916838001178555612a74565b82800160010185558215612a74579182015b82811115612a73578251825591602001919060010190612a58565b5b509050612a819190612a85565b5090565b5b80821115612a9e576000816000905550600101612a86565b5090565b6000612ab5612ab084613628565b613603565b905082815260208101848484011115612acd57600080fd5b612ad884828561384a565b509392505050565b6000612af3612aee84613659565b613603565b905082815260208101848484011115612b0b57600080fd5b612b1684828561384a565b509392505050565b600081359050612b2d81613f2c565b92915050565b600081359050612b4281613f43565b92915050565b600081359050612b5781613f5a565b92915050565b600081519050612b6c81613f5a565b92915050565b600082601f830112612b8357600080fd5b8135612b93848260208601612aa2565b91505092915050565b600082601f830112612bad57600080fd5b8135612bbd848260208601612ae0565b91505092915050565b600081359050612bd581613f71565b92915050565b600060208284031215612bed57600080fd5b6000612bfb84828501612b1e565b91505092915050565b60008060408385031215612c1757600080fd5b6000612c2585828601612b1e565b9250506020612c3685828601612b1e565b9150509250929050565b600080600060608486031215612c5557600080fd5b6000612c6386828701612b1e565b9350506020612c7486828701612b1e565b9250506040612c8586828701612bc6565b9150509250925092565b60008060008060808587031215612ca557600080fd5b6000612cb387828801612b1e565b9450506020612cc487828801612b1e565b9350506040612cd587828801612bc6565b925050606085013567ffffffffffffffff811115612cf257600080fd5b612cfe87828801612b72565b91505092959194509250565b60008060408385031215612d1d57600080fd5b6000612d2b85828601612b1e565b9250506020612d3c85828601612b33565b9150509250929050565b60008060408385031215612d5957600080fd5b6000612d6785828601612b1e565b9250506020612d7885828601612bc6565b9150509250929050565b600060208284031215612d9457600080fd5b6000612da284828501612b33565b91505092915050565b600060208284031215612dbd57600080fd5b6000612dcb84828501612b48565b91505092915050565b600060208284031215612de657600080fd5b6000612df484828501612b5d565b91505092915050565b600060208284031215612e0f57600080fd5b600082013567ffffffffffffffff811115612e2957600080fd5b612e3584828501612b9c565b91505092915050565b600060208284031215612e5057600080fd5b6000612e5e84828501612bc6565b91505092915050565b6000612e738383613293565b60208301905092915050565b612e88816137d6565b82525050565b6000612e99826136af565b612ea381856136dd565b9350612eae8361368a565b8060005b83811015612edf578151612ec68882612e67565b9750612ed1836136d0565b925050600181019050612eb2565b5085935050505092915050565b612ef5816137e8565b82525050565b6000612f06826136ba565b612f1081856136ee565b9350612f20818560208601613859565b612f2981613a25565b840191505092915050565b6000612f3f826136c5565b612f4981856136ff565b9350612f59818560208601613859565b612f6281613a25565b840191505092915050565b6000612f78826136c5565b612f828185613710565b9350612f92818560208601613859565b80840191505092915050565b60008154612fab8161388c565b612fb58186613710565b94506001821660008114612fd05760018114612fe157613014565b60ff19831686528186019350613014565b612fea8561369a565b60005b8381101561300c57815481890152600182019150602081019050612fed565b838801955050505b50505092915050565b600061302a602b836136ff565b915061303582613a36565b604082019050919050565b600061304d6032836136ff565b915061305882613a85565b604082019050919050565b60006130706026836136ff565b915061307b82613ad4565b604082019050919050565b6000613093601c836136ff565b915061309e82613b23565b602082019050919050565b60006130b66024836136ff565b91506130c182613b4c565b604082019050919050565b60006130d96019836136ff565b91506130e482613b9b565b602082019050919050565b60006130fc602c836136ff565b915061310782613bc4565b604082019050919050565b600061311f6038836136ff565b915061312a82613c13565b604082019050919050565b6000613142602a836136ff565b915061314d82613c62565b604082019050919050565b60006131656029836136ff565b915061317082613cb1565b604082019050919050565b60006131886020836136ff565b915061319382613d00565b602082019050919050565b60006131ab602c836136ff565b91506131b682613d29565b604082019050919050565b60006131ce6020836136ff565b91506131d982613d78565b602082019050919050565b60006131f16029836136ff565b91506131fc82613da1565b604082019050919050565b6000613214602f836136ff565b915061321f82613df0565b604082019050919050565b60006132376021836136ff565b915061324282613e3f565b604082019050919050565b600061325a6031836136ff565b915061326582613e8e565b604082019050919050565b600061327d602c836136ff565b915061328882613edd565b604082019050919050565b61329c81613840565b82525050565b6132ab81613840565b82525050565b60006132bd8286612f6d565b91506132c98285612f6d565b91506132d58284612f9e565b9150819050949350505050565b60006020820190506132f76000830184612e7f565b92915050565b60006080820190506133126000830187612e7f565b61331f6020830186612e7f565b61332c60408301856132a2565b818103606083015261333e8184612efb565b905095945050505050565b600060208201905081810360008301526133638184612e8e565b905092915050565b60006020820190506133806000830184612eec565b92915050565b600060208201905081810360008301526133a08184612f34565b905092915050565b600060208201905081810360008301526133c18161301d565b9050919050565b600060208201905081810360008301526133e181613040565b9050919050565b6000602082019050818103600083015261340181613063565b9050919050565b6000602082019050818103600083015261342181613086565b9050919050565b60006020820190508181036000830152613441816130a9565b9050919050565b60006020820190508181036000830152613461816130cc565b9050919050565b60006020820190508181036000830152613481816130ef565b9050919050565b600060208201905081810360008301526134a181613112565b9050919050565b600060208201905081810360008301526134c181613135565b9050919050565b600060208201905081810360008301526134e181613158565b9050919050565b600060208201905081810360008301526135018161317b565b9050919050565b600060208201905081810360008301526135218161319e565b9050919050565b60006020820190508181036000830152613541816131c1565b9050919050565b60006020820190508181036000830152613561816131e4565b9050919050565b6000602082019050818103600083015261358181613207565b9050919050565b600060208201905081810360008301526135a18161322a565b9050919050565b600060208201905081810360008301526135c18161324d565b9050919050565b600060208201905081810360008301526135e181613270565b9050919050565b60006020820190506135fd60008301846132a2565b92915050565b600061360d61361e565b905061361982826138be565b919050565b6000604051905090565b600067ffffffffffffffff821115613643576136426139f6565b5b61364c82613a25565b9050602081019050919050565b600067ffffffffffffffff821115613674576136736139f6565b5b61367d82613a25565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061372682613840565b915061373183613840565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376657613765613969565b5b828201905092915050565b600061377c82613840565b915061378783613840565b92508261379757613796613998565b5b828204905092915050565b60006137ad82613840565b91506137b883613840565b9250828210156137cb576137ca613969565b5b828203905092915050565b60006137e182613820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561387757808201518184015260208101905061385c565b83811115613886576000848401525b50505050565b600060028204905060018216806138a457607f821691505b602082108114156138b8576138b76139c7565b5b50919050565b6138c782613a25565b810181811067ffffffffffffffff821117156138e6576138e56139f6565b5b80604052505050565b60006138fa82613840565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561392d5761392c613969565b5b600182019050919050565b600061394382613840565b915061394e83613840565b92508261395e5761395d613998565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613f35816137d6565b8114613f4057600080fd5b50565b613f4c816137e8565b8114613f5757600080fd5b50565b613f63816137f4565b8114613f6e57600080fd5b50565b613f7a81613840565b8114613f8557600080fd5b5056fea26469706673582212208ef2bbbaf73b90ef336b1eea47249f55b9e721cf44d89696188fb2b53128d7db64736f6c63430008030033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a582d436f6e736f6c657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000958434f4e534f4c455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6544356377727841677a61446d796d776e7667326f3339365a39487a3834726e7276513643786d55566647672f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80635c975abb11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106a2578063da3ef23f146106cd578063e985e9c5146106f6578063f2fde38b14610733576101d8565b8063a22cb465146105e8578063b88d4fde14610611578063c66828621461063a578063c87b56dd14610665576101d8565b8063715018a6116100d1578063715018a6146105525780637f00c7a6146105695780638da5cb5b1461059257806395d89b41146105bd576101d8565b80635c975abb146104825780636352211e146104ad5780636c0360eb146104ea57806370a0823114610515576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103b6578063438b6300146103df5780634f6ccce71461041c57806355f804b314610459576101d8565b806323b872dd1461032a5780632f745c59146103535780633ccfd60b1461039057806340c10f191461039a576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806318160ddd146102d4578063239c70ae146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612dab565b61075c565b604051610211919061336b565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612d82565b6107d6565b005b34801561024f57600080fd5b5061025861086f565b6040516102659190613386565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612e3e565b610901565b6040516102a291906132e2565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612d46565b610986565b005b3480156102e057600080fd5b506102e9610a9e565b6040516102f691906135e8565b60405180910390f35b34801561030b57600080fd5b50610314610aab565b60405161032191906135e8565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612c40565b610ab1565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612d46565b610b11565b60405161038791906135e8565b60405180910390f35b610398610bb6565b005b6103b460048036038101906103af9190612d46565b610c72565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612c40565b610d0a565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612bdb565b610d2a565b6040516104139190613349565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612e3e565b610e24565b60405161045091906135e8565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612dfd565b610ebb565b005b34801561048e57600080fd5b50610497610f51565b6040516104a4919061336b565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612e3e565b610f64565b6040516104e191906132e2565b60405180910390f35b3480156104f657600080fd5b506104ff611016565b60405161050c9190613386565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612bdb565b6110a4565b60405161054991906135e8565b60405180910390f35b34801561055e57600080fd5b5061056761115c565b005b34801561057557600080fd5b50610590600480360381019061058b9190612e3e565b6111e4565b005b34801561059e57600080fd5b506105a761126a565b6040516105b491906132e2565b60405180910390f35b3480156105c957600080fd5b506105d2611294565b6040516105df9190613386565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612d0a565b611326565b005b34801561061d57600080fd5b5061063860048036038101906106339190612c8f565b6114a7565b005b34801561064657600080fd5b5061064f611509565b60405161065c9190613386565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190612e3e565b611597565b6040516106999190613386565b60405180910390f35b3480156106ae57600080fd5b506106b7611641565b6040516106c491906135e8565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612dfd565b611647565b005b34801561070257600080fd5b5061071d60048036038101906107189190612c04565b6116dd565b60405161072a919061336b565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612bdb565b611771565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57506107ce82611869565b5b9050919050565b6107de61194b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084990613528565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60606000805461087e9061388c565b80601f01602080910402602001604051908101604052809291908181526020018280546108aa9061388c565b80156108f75780601f106108cc576101008083540402835291602001916108f7565b820191906000526020600020905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b600061090c82611953565b61094b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094290613508565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182610f64565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613588565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2161194b565b73ffffffffffffffffffffffffffffffffffffffff161480610a505750610a4f81610a4a61194b565b6116dd565b5b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613488565b60405180910390fd5b610a9983836119bf565b505050565b6000600880549050905090565b600e5481565b610ac2610abc61194b565b82611a78565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906135a8565b60405180910390fd5b610b0c838383611b56565b505050565b6000610b1c836110a4565b8210610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906133a8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bbe61194b565b73ffffffffffffffffffffffffffffffffffffffff16610bdc61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990613528565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c7057600080fd5b565b6000610c7c610a9e565b9050600f60009054906101000a900460ff1615610c9857600080fd5b60008211610ca557600080fd5b600e54821115610cb457600080fd5b600d548282610cc3919061371b565b1115610cce57600080fd5b6000600190505b828111610d0457610cf1848284610cec919061371b565b611db2565b8080610cfc906138ef565b915050610cd5565b50505050565b610d25838383604051806020016040528060008152506114a7565b505050565b60606000610d37836110a4565b905060008167ffffffffffffffff811115610d7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610da95781602001602082028036833780820191505090505b50905060005b82811015610e1957610dc18582610b11565b828281518110610dfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610e11906138ef565b915050610daf565b508092505050919050565b6000610e2e610a9e565b8210610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906135c8565b60405180910390fd5b60088281548110610ea9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ec361194b565b73ffffffffffffffffffffffffffffffffffffffff16610ee161126a565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613528565b60405180910390fd5b80600b9080519060200190610f4d9291906129ff565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906134c8565b60405180910390fd5b80915050919050565b600b80546110239061388c565b80601f016020809104026020016040519081016040528092919081815260200182805461104f9061388c565b801561109c5780601f106110715761010080835404028352916020019161109c565b820191906000526020600020905b81548152906001019060200180831161107f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c906134a8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116461194b565b73ffffffffffffffffffffffffffffffffffffffff1661118261126a565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613528565b60405180910390fd5b6111e26000611dd0565b565b6111ec61194b565b73ffffffffffffffffffffffffffffffffffffffff1661120a61126a565b73ffffffffffffffffffffffffffffffffffffffff1614611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790613528565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112a39061388c565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf9061388c565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b5050505050905090565b61132e61194b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613448565b60405180910390fd5b80600560006113a961194b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145661194b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149b919061336b565b60405180910390a35050565b6114b86114b261194b565b83611a78565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee906135a8565b60405180910390fd5b61150384848484611e96565b50505050565b600c80546115169061388c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061388c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b505050505081565b60606115a282611953565b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613568565b60405180910390fd5b60006115eb611ef2565b9050600081511161160b5760405180602001604052806000815250611639565b8061161584611f84565b600c604051602001611629939291906132b1565b6040516020818303038152906040525b915050919050565b600d5481565b61164f61194b565b73ffffffffffffffffffffffffffffffffffffffff1661166d61126a565b73ffffffffffffffffffffffffffffffffffffffff16146116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613528565b60405180910390fd5b80600c90805190602001906116d99291906129ff565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177961194b565b73ffffffffffffffffffffffffffffffffffffffff1661179761126a565b73ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490613528565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611854906133e8565b60405180910390fd5b61186681611dd0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061193457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611944575061194382612131565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3283610f64565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a8382611953565b611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613468565b60405180910390fd5b6000611acd83610f64565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b3c57508373ffffffffffffffffffffffffffffffffffffffff16611b2484610901565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b4d5750611b4c81856116dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b7682610f64565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613548565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613428565b60405180910390fd5b611c4783838361219b565b611c526000826119bf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ca291906137a2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf9919061371b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611dcc8282604051806020016040528060008152506122af565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ea1848484611b56565b611ead8484848461230a565b611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906133c8565b60405180910390fd5b50505050565b6060600b8054611f019061388c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d9061388c565b8015611f7a5780601f10611f4f57610100808354040283529160200191611f7a565b820191906000526020600020905b815481529060010190602001808311611f5d57829003601f168201915b5050505050905090565b60606000821415611fcc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061212c565b600082905060005b60008214611ffe578080611fe7906138ef565b915050600a82611ff79190613771565b9150611fd4565b60008167ffffffffffffffff811115612040577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120725781602001600182028036833780820191505090505b5090505b600085146121255760018261208b91906137a2565b9150600a8561209a9190613938565b60306120a6919061371b565b60f81b8183815181106120e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561211e9190613771565b9450612076565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121a68383836124a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e9576121e4816124a6565b612228565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122275761222683826124ef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226b576122668161265c565b6122aa565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122a9576122a8828261279f565b5b5b505050565b6122b9838361281e565b6122c6600084848461230a565b612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906133c8565b60405180910390fd5b505050565b600061232b8473ffffffffffffffffffffffffffffffffffffffff166129ec565b15612494578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235461194b565b8786866040518563ffffffff1660e01b815260040161237694939291906132fd565b602060405180830381600087803b15801561239057600080fd5b505af19250505080156123c157506040513d601f19601f820116820180604052508101906123be9190612dd4565b60015b612444573d80600081146123f1576040519150601f19603f3d011682016040523d82523d6000602084013e6123f6565b606091505b5060008151141561243c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612433906133c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612499565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124fc846110a4565b61250691906137a2565b90506000600760008481526020019081526020016000205490508181146125eb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061267091906137a2565b90506000600960008481526020019081526020016000205490506000600883815481106126c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061270e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612783577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127aa836110a4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612885906134e8565b60405180910390fd5b61289781611953565b156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613408565b60405180910390fd5b6128e36000838361219b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612933919061371b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a0b9061388c565b90600052602060002090601f016020900481019282612a2d5760008555612a74565b82601f10612a4657805160ff1916838001178555612a74565b82800160010185558215612a74579182015b82811115612a73578251825591602001919060010190612a58565b5b509050612a819190612a85565b5090565b5b80821115612a9e576000816000905550600101612a86565b5090565b6000612ab5612ab084613628565b613603565b905082815260208101848484011115612acd57600080fd5b612ad884828561384a565b509392505050565b6000612af3612aee84613659565b613603565b905082815260208101848484011115612b0b57600080fd5b612b1684828561384a565b509392505050565b600081359050612b2d81613f2c565b92915050565b600081359050612b4281613f43565b92915050565b600081359050612b5781613f5a565b92915050565b600081519050612b6c81613f5a565b92915050565b600082601f830112612b8357600080fd5b8135612b93848260208601612aa2565b91505092915050565b600082601f830112612bad57600080fd5b8135612bbd848260208601612ae0565b91505092915050565b600081359050612bd581613f71565b92915050565b600060208284031215612bed57600080fd5b6000612bfb84828501612b1e565b91505092915050565b60008060408385031215612c1757600080fd5b6000612c2585828601612b1e565b9250506020612c3685828601612b1e565b9150509250929050565b600080600060608486031215612c5557600080fd5b6000612c6386828701612b1e565b9350506020612c7486828701612b1e565b9250506040612c8586828701612bc6565b9150509250925092565b60008060008060808587031215612ca557600080fd5b6000612cb387828801612b1e565b9450506020612cc487828801612b1e565b9350506040612cd587828801612bc6565b925050606085013567ffffffffffffffff811115612cf257600080fd5b612cfe87828801612b72565b91505092959194509250565b60008060408385031215612d1d57600080fd5b6000612d2b85828601612b1e565b9250506020612d3c85828601612b33565b9150509250929050565b60008060408385031215612d5957600080fd5b6000612d6785828601612b1e565b9250506020612d7885828601612bc6565b9150509250929050565b600060208284031215612d9457600080fd5b6000612da284828501612b33565b91505092915050565b600060208284031215612dbd57600080fd5b6000612dcb84828501612b48565b91505092915050565b600060208284031215612de657600080fd5b6000612df484828501612b5d565b91505092915050565b600060208284031215612e0f57600080fd5b600082013567ffffffffffffffff811115612e2957600080fd5b612e3584828501612b9c565b91505092915050565b600060208284031215612e5057600080fd5b6000612e5e84828501612bc6565b91505092915050565b6000612e738383613293565b60208301905092915050565b612e88816137d6565b82525050565b6000612e99826136af565b612ea381856136dd565b9350612eae8361368a565b8060005b83811015612edf578151612ec68882612e67565b9750612ed1836136d0565b925050600181019050612eb2565b5085935050505092915050565b612ef5816137e8565b82525050565b6000612f06826136ba565b612f1081856136ee565b9350612f20818560208601613859565b612f2981613a25565b840191505092915050565b6000612f3f826136c5565b612f4981856136ff565b9350612f59818560208601613859565b612f6281613a25565b840191505092915050565b6000612f78826136c5565b612f828185613710565b9350612f92818560208601613859565b80840191505092915050565b60008154612fab8161388c565b612fb58186613710565b94506001821660008114612fd05760018114612fe157613014565b60ff19831686528186019350613014565b612fea8561369a565b60005b8381101561300c57815481890152600182019150602081019050612fed565b838801955050505b50505092915050565b600061302a602b836136ff565b915061303582613a36565b604082019050919050565b600061304d6032836136ff565b915061305882613a85565b604082019050919050565b60006130706026836136ff565b915061307b82613ad4565b604082019050919050565b6000613093601c836136ff565b915061309e82613b23565b602082019050919050565b60006130b66024836136ff565b91506130c182613b4c565b604082019050919050565b60006130d96019836136ff565b91506130e482613b9b565b602082019050919050565b60006130fc602c836136ff565b915061310782613bc4565b604082019050919050565b600061311f6038836136ff565b915061312a82613c13565b604082019050919050565b6000613142602a836136ff565b915061314d82613c62565b604082019050919050565b60006131656029836136ff565b915061317082613cb1565b604082019050919050565b60006131886020836136ff565b915061319382613d00565b602082019050919050565b60006131ab602c836136ff565b91506131b682613d29565b604082019050919050565b60006131ce6020836136ff565b91506131d982613d78565b602082019050919050565b60006131f16029836136ff565b91506131fc82613da1565b604082019050919050565b6000613214602f836136ff565b915061321f82613df0565b604082019050919050565b60006132376021836136ff565b915061324282613e3f565b604082019050919050565b600061325a6031836136ff565b915061326582613e8e565b604082019050919050565b600061327d602c836136ff565b915061328882613edd565b604082019050919050565b61329c81613840565b82525050565b6132ab81613840565b82525050565b60006132bd8286612f6d565b91506132c98285612f6d565b91506132d58284612f9e565b9150819050949350505050565b60006020820190506132f76000830184612e7f565b92915050565b60006080820190506133126000830187612e7f565b61331f6020830186612e7f565b61332c60408301856132a2565b818103606083015261333e8184612efb565b905095945050505050565b600060208201905081810360008301526133638184612e8e565b905092915050565b60006020820190506133806000830184612eec565b92915050565b600060208201905081810360008301526133a08184612f34565b905092915050565b600060208201905081810360008301526133c18161301d565b9050919050565b600060208201905081810360008301526133e181613040565b9050919050565b6000602082019050818103600083015261340181613063565b9050919050565b6000602082019050818103600083015261342181613086565b9050919050565b60006020820190508181036000830152613441816130a9565b9050919050565b60006020820190508181036000830152613461816130cc565b9050919050565b60006020820190508181036000830152613481816130ef565b9050919050565b600060208201905081810360008301526134a181613112565b9050919050565b600060208201905081810360008301526134c181613135565b9050919050565b600060208201905081810360008301526134e181613158565b9050919050565b600060208201905081810360008301526135018161317b565b9050919050565b600060208201905081810360008301526135218161319e565b9050919050565b60006020820190508181036000830152613541816131c1565b9050919050565b60006020820190508181036000830152613561816131e4565b9050919050565b6000602082019050818103600083015261358181613207565b9050919050565b600060208201905081810360008301526135a18161322a565b9050919050565b600060208201905081810360008301526135c18161324d565b9050919050565b600060208201905081810360008301526135e181613270565b9050919050565b60006020820190506135fd60008301846132a2565b92915050565b600061360d61361e565b905061361982826138be565b919050565b6000604051905090565b600067ffffffffffffffff821115613643576136426139f6565b5b61364c82613a25565b9050602081019050919050565b600067ffffffffffffffff821115613674576136736139f6565b5b61367d82613a25565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061372682613840565b915061373183613840565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376657613765613969565b5b828201905092915050565b600061377c82613840565b915061378783613840565b92508261379757613796613998565b5b828204905092915050565b60006137ad82613840565b91506137b883613840565b9250828210156137cb576137ca613969565b5b828203905092915050565b60006137e182613820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561387757808201518184015260208101905061385c565b83811115613886576000848401525b50505050565b600060028204905060018216806138a457607f821691505b602082108114156138b8576138b76139c7565b5b50919050565b6138c782613a25565b810181811067ffffffffffffffff821117156138e6576138e56139f6565b5b80604052505050565b60006138fa82613840565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561392d5761392c613969565b5b600182019050919050565b600061394382613840565b915061394e83613840565b92508261395e5761395d613998565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613f35816137d6565b8114613f4057600080fd5b50565b613f4c816137e8565b8114613f5757600080fd5b50565b613f63816137f4565b8114613f6e57600080fd5b50565b613f7a81613840565b8114613f8557600080fd5b5056fea26469706673582212208ef2bbbaf73b90ef336b1eea47249f55b9e721cf44d89696188fb2b53128d7db64736f6c63430008030033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a582d436f6e736f6c657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000958434f4e534f4c455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6544356377727841677a61446d796d776e7667326f3339365a39487a3834726e7276513643786d55566647672f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): X-Consoles
Arg [1] : _symbol (string): XCONSOLES
Arg [2] : _initBaseURI (string): ipfs://QmeD5cwrxAgzaDmymwnvg2o396Z9Hz84rnrvQ6CxmUVfGg/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 582d436f6e736f6c657300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 58434f4e534f4c45530000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d6544356377727841677a61446d796d776e7667326f3339
Arg [9] : 365a39487a3834726e7276513643786d55566647672f00000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

X-Consoles (a game of games)

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.