ETH Price: $3,350.73 (-0.91%)

Token

BratPack (BRAT)
 

Overview

Max Total Supply

177 BRAT

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hecsone.eth
Balance
2 BRAT
0x92f158cbdb731d01ff6c02fa607cf10986915f67
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BratPackNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : brat.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
▄▄▄▄· ▄▄▄   ▄▄▄· ▄▄▄▄▄ ▄▄▄· ▄▄▄·  ▄▄· ▄ •▄ 
▐█ ▀█▪▀▄ █·▐█ ▀█ •██  ▐█ ▄█▐█ ▀█ ▐█ ▌▪█▌▄▌▪
▐█▀▀█▄▐▀▀▄ ▄█▀▀█  ▐█.▪ ██▀·▄█▀▀█ ██ ▄▄▐▀▀▄·
██▄▪▐█▐█•█▌▐█ ▪▐▌ ▐█▌·▐█▪·•▐█ ▪▐▌▐███▌▐█.█▌
·▀▀▀▀ .▀  ▀ ▀  ▀  ▀▀▀ .▀    ▀  ▀ ·▀▀▀ ·▀  ▀ 2021.

*/
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';



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

    uint256 public constant bratPackMax = 11111;
    uint256 public constant purchaseLimit = 20;

    uint256 private bratPrice = 0.03 ether;

    uint256 public amountMinted;
    bool public saleLive;
    
    string private _contractURI = '';
    string private _tokenBaseURI = '';
    string private _tokenRevealedBaseURI = '';
    
    address bpc = 0xFCD07e7a9e74c5042c49A1238Bc97550FaEf6F9C;
    address bpdev = 0x91e0540Ff3BFEE048857A4B7CdD5dFc64A765b2D;
    

    constructor() ERC721("BratPack", "BRAT") { 
        
    }
    

    
 function mint(uint256 numberOfTokens) external payable {
    require(!saleLive, 'Contract is not active');
    require(totalSupply() < bratPackMax, 'No Tokens Left');
    require(numberOfTokens <= purchaseLimit, 'You are over the minting max');
    require(amountMinted + numberOfTokens <= bratPackMax, 'No Tokens Left');
    require(bratPrice * numberOfTokens <= msg.value, 'ETH amount is not enough');

    for (uint256 i = 0; i < numberOfTokens; i++) {
      if (amountMinted < bratPackMax) {
        uint256 tokenId = amountMinted + 1;
        amountMinted += 1;
        _safeMint(msg.sender, tokenId);
      }
    }
  }



  function gift(address[] calldata to) external onlyOwner {
    require(totalSupply() < bratPackMax, 'No Tokens Left');
    require(amountMinted + to.length <= bratPackMax, 'No tokens left');

    for(uint256 i = 0; i < to.length; i++) {
      uint256 tokenId = amountMinted + 1;

      amountMinted += 1;
      _safeMint(to[i], tokenId);
    }
  }
   
        function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance / 2;
        require(payable(bpc).send(balance));
        require(payable(bpdev).send(balance));
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    

  function setContractURI(string calldata URI) external onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external onlyOwner {
    _tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }   
    function setPrice(uint256 _newPrice) public onlyOwner() {
        bratPrice = _newPrice;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) :
      _tokenBaseURI;
  }

    
    
 
}

File 2 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 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 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 13 : 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 7 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 8 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 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 : 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 11 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 12 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 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"bratPackMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","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":"to","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","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":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600b5560405180602001604052806000815250600e908051906020019062000036929190620002d3565b5060405180602001604052806000815250600f90805190602001906200005e929190620002d3565b50604051806020016040528060008152506010908051906020019062000086929190620002d3565b5073fcd07e7a9e74c5042c49a1238bc97550faef6f9c601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507391e0540ff3bfee048857a4b7cdd5dfc64a765b2d601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013e57600080fd5b506040518060400160405280600881526020017f427261745061636b0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42524154000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001c3929190620002d3565b508060019080519060200190620001dc929190620002d3565b505050620001ff620001f36200020560201b60201c565b6200020d60201b60201c565b620003e8565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e190620003b2565b90600052602060002090601f01602090048101928262000305576000855562000351565b82601f106200032057805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035057825182559160200191906001019062000333565b5b50905062000360919062000364565b5090565b5b808211156200037f57600081600090555060010162000365565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003cb57607f821691505b60208210811415620003e257620003e162000383565b5b50919050565b6143bb80620003f86000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063e081b78111610064578063e081b781146106bb578063e8a3d485146106e6578063e985e9c514610711578063f2fde38b1461074e576101e3565b8063a0712d6814610610578063a22cb4651461062c578063b88d4fde14610655578063c87b56dd1461067e576101e3565b80638da5cb5b116100d15780638da5cb5b1461056857806391b7f5ed14610593578063938e3d7b146105bc57806395d89b41146105e5576101e3565b806370a08231146104d2578063715018a61461050f5780637af284d514610526578063853828b614610551576101e3565b806323b872dd1161017a5780634f6ccce7116101495780634f6ccce71461040657806355f804b3146104435780636352211e1461046c5780636e83843a146104a9576101e3565b806323b872dd1461034c5780632af8a96d146103755780632f745c59146103a057806342842e0e146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102a4578063163e1e61146102cd57806318160ddd146102f65780631888665714610321576101e3565b806301ffc9a7146101e8578063049c5c491461022557806306fdde031461023c578063081812fc14610267575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d4d565b610777565b60405161021c9190612d95565b60405180910390f35b34801561023157600080fd5b5061023a6107f1565b005b34801561024857600080fd5b50610251610899565b60405161025e9190612e49565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612ea1565b61092b565b60405161029b9190612f0f565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190612f56565b6109b0565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190612ffb565b610ac8565b005b34801561030257600080fd5b5061030b610c69565b6040516103189190613057565b60405180910390f35b34801561032d57600080fd5b50610336610c76565b6040516103439190613057565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613072565b610c7b565b005b34801561038157600080fd5b5061038a610cdb565b6040516103979190613057565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612f56565b610ce1565b6040516103d49190613057565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613072565b610d86565b005b34801561041257600080fd5b5061042d60048036038101906104289190612ea1565b610da6565b60405161043a9190613057565b60405180910390f35b34801561044f57600080fd5b5061046a6004803603810190610465919061311b565b610e17565b005b34801561047857600080fd5b50610493600480360381019061048e9190612ea1565b610ea9565b6040516104a09190612f0f565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061311b565b610f5b565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613168565b610fed565b6040516105069190613057565b60405180910390f35b34801561051b57600080fd5b506105246110a5565b005b34801561053257600080fd5b5061053b61112d565b6040516105489190613057565b60405180910390f35b34801561055d57600080fd5b50610566611133565b005b34801561057457600080fd5b5061057d611283565b60405161058a9190612f0f565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612ea1565b6112ad565b005b3480156105c857600080fd5b506105e360048036038101906105de919061311b565b611333565b005b3480156105f157600080fd5b506105fa6113c5565b6040516106079190612e49565b60405180910390f35b61062a60048036038101906106259190612ea1565b611457565b005b34801561063857600080fd5b50610653600480360381019061064e91906131c1565b61163f565b005b34801561066157600080fd5b5061067c60048036038101906106779190613331565b6117c0565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612ea1565b611822565b6040516106b29190612e49565b60405180910390f35b3480156106c757600080fd5b506106d06119c7565b6040516106dd9190612d95565b60405180910390f35b3480156106f257600080fd5b506106fb6119da565b6040516107089190612e49565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906133b4565b611a6c565b6040516107459190612d95565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613168565b611b00565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57506107e982611bf8565b5b9050919050565b6107f9611cda565b73ffffffffffffffffffffffffffffffffffffffff16610817611283565b73ffffffffffffffffffffffffffffffffffffffff161461086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490613440565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060600080546108a89061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546108d49061348f565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b600061093682611ce2565b610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613533565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bb82610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a23906135c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4b611cda565b73ffffffffffffffffffffffffffffffffffffffff161480610a7a5750610a7981610a74611cda565b611a6c565b5b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090613657565b60405180910390fd5b610ac38383611d4e565b505050565b610ad0611cda565b73ffffffffffffffffffffffffffffffffffffffff16610aee611283565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613440565b60405180910390fd5b612b67610b4f610c69565b10610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906136c3565b60405180910390fd5b612b6782829050600c54610ba39190613712565b1115610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906137b4565b60405180910390fd5b60005b82829050811015610c645760006001600c54610c039190613712565b90506001600c6000828254610c189190613712565b92505081905550610c50848484818110610c3557610c346137d4565b5b9050602002016020810190610c4a9190613168565b82611e07565b508080610c5c90613803565b915050610be7565b505050565b6000600880549050905090565b601481565b610c8c610c86611cda565b82611e25565b610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906138be565b60405180910390fd5b610cd6838383611f03565b505050565b612b6781565b6000610cec83610fed565b8210610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490613950565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610da1838383604051806020016040528060008152506117c0565b505050565b6000610db0610c69565b8210610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906139e2565b60405180910390fd5b60088281548110610e0557610e046137d4565b5b90600052602060002001549050919050565b610e1f611cda565b73ffffffffffffffffffffffffffffffffffffffff16610e3d611283565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613440565b60405180910390fd5b8181600f9190610ea4929190612c3e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613a74565b60405180910390fd5b80915050919050565b610f63611cda565b73ffffffffffffffffffffffffffffffffffffffff16610f81611283565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613440565b60405180910390fd5b818160109190610fe8929190612c3e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613b06565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ad611cda565b73ffffffffffffffffffffffffffffffffffffffff166110cb611283565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613440565b60405180910390fd5b61112b600061215f565b565b600c5481565b61113b611cda565b73ffffffffffffffffffffffffffffffffffffffff16611159611283565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613440565b60405180910390fd5b60006002476111be9190613b55565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061122057600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061128057600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b5611cda565b73ffffffffffffffffffffffffffffffffffffffff166112d3611283565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613440565b60405180910390fd5b80600b8190555050565b61133b611cda565b73ffffffffffffffffffffffffffffffffffffffff16611359611283565b73ffffffffffffffffffffffffffffffffffffffff16146113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613440565b60405180910390fd5b8181600e91906113c0929190612c3e565b505050565b6060600180546113d49061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546114009061348f565b801561144d5780601f106114225761010080835404028352916020019161144d565b820191906000526020600020905b81548152906001019060200180831161143057829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613bd2565b60405180910390fd5b612b676114b2610c69565b106114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e9906136c3565b60405180910390fd5b6014811115611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613c3e565b60405180910390fd5b612b6781600c546115479190613712565b1115611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906136c3565b60405180910390fd5b3481600b546115979190613c5e565b11156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613d04565b60405180910390fd5b60005b8181101561163b57612b67600c5410156116285760006001600c546116009190613712565b90506001600c60008282546116159190613712565b925050819055506116263382611e07565b505b808061163390613803565b9150506115db565b5050565b611647611cda565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613d70565b60405180910390fd5b80600560006116c2611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176f611cda565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b49190612d95565b60405180910390a35050565b6117d16117cb611cda565b83611e25565b611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906138be565b60405180910390fd5b61181c84848484612225565b50505050565b606061182d82611ce2565b61186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613ddc565b60405180910390fd5b60006010805461187b9061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546118a79061348f565b80156118f45780601f106118c9576101008083540402835291602001916118f4565b820191906000526020600020905b8154815290600101906020018083116118d757829003601f168201915b50505050509050600081511161199457600f80546119119061348f565b80601f016020809104026020016040519081016040528092919081815260200182805461193d9061348f565b801561198a5780601f1061195f5761010080835404028352916020019161198a565b820191906000526020600020905b81548152906001019060200180831161196d57829003601f168201915b50505050506119bf565b8061199e84612281565b6040516020016119af929190613e38565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b6060600e80546119e99061348f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a159061348f565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b08611cda565b73ffffffffffffffffffffffffffffffffffffffff16611b26611283565b73ffffffffffffffffffffffffffffffffffffffff1614611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390613440565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be390613ece565b60405180910390fd5b611bf58161215f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cc357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cd35750611cd2826123e2565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc183610ea9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e2182826040518060200160405280600081525061244c565b5050565b6000611e3082611ce2565b611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613f60565b60405180910390fd5b6000611e7a83610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ee957508373ffffffffffffffffffffffffffffffffffffffff16611ed18461092b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611efa5750611ef98185611a6c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2382610ea9565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090613ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090614084565b60405180910390fd5b611ff48383836124a7565b611fff600082611d4e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204f91906140a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a69190613712565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612230848484611f03565b61223c848484846125bb565b61227b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122729061414a565b60405180910390fd5b50505050565b606060008214156122c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123dd565b600082905060005b600082146122fb5780806122e490613803565b915050600a826122f49190613b55565b91506122d1565b60008167ffffffffffffffff81111561231757612316613206565b5b6040519080825280601f01601f1916602001820160405280156123495781602001600182028036833780820191505090505b5090505b600085146123d65760018261236291906140a4565b9150600a85612371919061416a565b603061237d9190613712565b60f81b818381518110612393576123926137d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123cf9190613b55565b945061234d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124568383612752565b61246360008484846125bb565b6124a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124999061414a565b60405180910390fd5b505050565b6124b2838383612920565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f5576124f081612925565b612534565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461253357612532838261296e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125775761257281612adb565b6125b6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125b5576125b48282612bac565b5b5b505050565b60006125dc8473ffffffffffffffffffffffffffffffffffffffff16612c2b565b15612745578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612605611cda565b8786866040518563ffffffff1660e01b815260040161262794939291906141f0565b602060405180830381600087803b15801561264157600080fd5b505af192505050801561267257506040513d601f19601f8201168201806040525081019061266f9190614251565b60015b6126f5573d80600081146126a2576040519150601f19603f3d011682016040523d82523d6000602084013e6126a7565b606091505b506000815114156126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e49061414a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061274a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b9906142ca565b60405180910390fd5b6127cb81611ce2565b1561280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290614336565b60405180910390fd5b612817600083836124a7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128679190613712565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161297b84610fed565b61298591906140a4565b9050600060076000848152602001908152602001600020549050818114612a6a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612aef91906140a4565b9050600060096000848152602001908152602001600020549050600060088381548110612b1f57612b1e6137d4565b5b906000526020600020015490508060088381548110612b4157612b406137d4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b9057612b8f614356565b5b6001900381819060005260206000200160009055905550505050565b6000612bb783610fed565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612c4a9061348f565b90600052602060002090601f016020900481019282612c6c5760008555612cb3565b82601f10612c8557803560ff1916838001178555612cb3565b82800160010185558215612cb3579182015b82811115612cb2578235825591602001919060010190612c97565b5b509050612cc09190612cc4565b5090565b5b80821115612cdd576000816000905550600101612cc5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d2a81612cf5565b8114612d3557600080fd5b50565b600081359050612d4781612d21565b92915050565b600060208284031215612d6357612d62612ceb565b5b6000612d7184828501612d38565b91505092915050565b60008115159050919050565b612d8f81612d7a565b82525050565b6000602082019050612daa6000830184612d86565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dea578082015181840152602081019050612dcf565b83811115612df9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1b82612db0565b612e258185612dbb565b9350612e35818560208601612dcc565b612e3e81612dff565b840191505092915050565b60006020820190508181036000830152612e638184612e10565b905092915050565b6000819050919050565b612e7e81612e6b565b8114612e8957600080fd5b50565b600081359050612e9b81612e75565b92915050565b600060208284031215612eb757612eb6612ceb565b5b6000612ec584828501612e8c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b612f3381612eee565b8114612f3e57600080fd5b50565b600081359050612f5081612f2a565b92915050565b60008060408385031215612f6d57612f6c612ceb565b5b6000612f7b85828601612f41565b9250506020612f8c85828601612e8c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612fbb57612fba612f96565b5b8235905067ffffffffffffffff811115612fd857612fd7612f9b565b5b602083019150836020820283011115612ff457612ff3612fa0565b5b9250929050565b6000806020838503121561301257613011612ceb565b5b600083013567ffffffffffffffff8111156130305761302f612cf0565b5b61303c85828601612fa5565b92509250509250929050565b61305181612e6b565b82525050565b600060208201905061306c6000830184613048565b92915050565b60008060006060848603121561308b5761308a612ceb565b5b600061309986828701612f41565b93505060206130aa86828701612f41565b92505060406130bb86828701612e8c565b9150509250925092565b60008083601f8401126130db576130da612f96565b5b8235905067ffffffffffffffff8111156130f8576130f7612f9b565b5b60208301915083600182028301111561311457613113612fa0565b5b9250929050565b6000806020838503121561313257613131612ceb565b5b600083013567ffffffffffffffff8111156131505761314f612cf0565b5b61315c858286016130c5565b92509250509250929050565b60006020828403121561317e5761317d612ceb565b5b600061318c84828501612f41565b91505092915050565b61319e81612d7a565b81146131a957600080fd5b50565b6000813590506131bb81613195565b92915050565b600080604083850312156131d8576131d7612ceb565b5b60006131e685828601612f41565b92505060206131f7858286016131ac565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61323e82612dff565b810181811067ffffffffffffffff8211171561325d5761325c613206565b5b80604052505050565b6000613270612ce1565b905061327c8282613235565b919050565b600067ffffffffffffffff82111561329c5761329b613206565b5b6132a582612dff565b9050602081019050919050565b82818337600083830152505050565b60006132d46132cf84613281565b613266565b9050828152602081018484840111156132f0576132ef613201565b5b6132fb8482856132b2565b509392505050565b600082601f83011261331857613317612f96565b5b81356133288482602086016132c1565b91505092915050565b6000806000806080858703121561334b5761334a612ceb565b5b600061335987828801612f41565b945050602061336a87828801612f41565b935050604061337b87828801612e8c565b925050606085013567ffffffffffffffff81111561339c5761339b612cf0565b5b6133a887828801613303565b91505092959194509250565b600080604083850312156133cb576133ca612ceb565b5b60006133d985828601612f41565b92505060206133ea85828601612f41565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061342a602083612dbb565b9150613435826133f4565b602082019050919050565b600060208201905081810360008301526134598161341d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134a757607f821691505b602082108114156134bb576134ba613460565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061351d602c83612dbb565b9150613528826134c1565b604082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135af602183612dbb565b91506135ba82613553565b604082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613641603883612dbb565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f4e6f20546f6b656e73204c656674000000000000000000000000000000000000600082015250565b60006136ad600e83612dbb565b91506136b882613677565b602082019050919050565b600060208201905081810360008301526136dc816136a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061371d82612e6b565b915061372883612e6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561375d5761375c6136e3565b5b828201905092915050565b7f4e6f20746f6b656e73206c656674000000000000000000000000000000000000600082015250565b600061379e600e83612dbb565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061380e82612e6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613841576138406136e3565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006138a8603183612dbb565b91506138b38261384c565b604082019050919050565b600060208201905081810360008301526138d78161389b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061393a602b83612dbb565b9150613945826138de565b604082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006139cc602c83612dbb565b91506139d782613970565b604082019050919050565b600060208201905081810360008301526139fb816139bf565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a5e602983612dbb565b9150613a6982613a02565b604082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613af0602a83612dbb565b9150613afb82613a94565b604082019050919050565b60006020820190508181036000830152613b1f81613ae3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b6082612e6b565b9150613b6b83612e6b565b925082613b7b57613b7a613b26565b5b828204905092915050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000613bbc601683612dbb565b9150613bc782613b86565b602082019050919050565b60006020820190508181036000830152613beb81613baf565b9050919050565b7f596f7520617265206f76657220746865206d696e74696e67206d617800000000600082015250565b6000613c28601c83612dbb565b9150613c3382613bf2565b602082019050919050565b60006020820190508181036000830152613c5781613c1b565b9050919050565b6000613c6982612e6b565b9150613c7483612e6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cad57613cac6136e3565b5b828202905092915050565b7f45544820616d6f756e74206973206e6f7420656e6f7567680000000000000000600082015250565b6000613cee601883612dbb565b9150613cf982613cb8565b602082019050919050565b60006020820190508181036000830152613d1d81613ce1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d5a601983612dbb565b9150613d6582613d24565b602082019050919050565b60006020820190508181036000830152613d8981613d4d565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613dc6601483612dbb565b9150613dd182613d90565b602082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b600081905092915050565b6000613e1282612db0565b613e1c8185613dfc565b9350613e2c818560208601612dcc565b80840191505092915050565b6000613e448285613e07565b9150613e508284613e07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eb8602683612dbb565b9150613ec382613e5c565b604082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f4a602c83612dbb565b9150613f5582613eee565b604082019050919050565b60006020820190508181036000830152613f7981613f3d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613fdc602983612dbb565b9150613fe782613f80565b604082019050919050565b6000602082019050818103600083015261400b81613fcf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061406e602483612dbb565b915061407982614012565b604082019050919050565b6000602082019050818103600083015261409d81614061565b9050919050565b60006140af82612e6b565b91506140ba83612e6b565b9250828210156140cd576140cc6136e3565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614134603283612dbb565b915061413f826140d8565b604082019050919050565b6000602082019050818103600083015261416381614127565b9050919050565b600061417582612e6b565b915061418083612e6b565b9250826141905761418f613b26565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006141c28261419b565b6141cc81856141a6565b93506141dc818560208601612dcc565b6141e581612dff565b840191505092915050565b60006080820190506142056000830187612f00565b6142126020830186612f00565b61421f6040830185613048565b818103606083015261423181846141b7565b905095945050505050565b60008151905061424b81612d21565b92915050565b60006020828403121561426757614266612ceb565b5b60006142758482850161423c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006142b4602083612dbb565b91506142bf8261427e565b602082019050919050565b600060208201905081810360008301526142e3816142a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614320601c83612dbb565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212202e19a6147248d3f37eaf7c97ae476441df91a75c9dc3c4c2091b085fb574bde764736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063e081b78111610064578063e081b781146106bb578063e8a3d485146106e6578063e985e9c514610711578063f2fde38b1461074e576101e3565b8063a0712d6814610610578063a22cb4651461062c578063b88d4fde14610655578063c87b56dd1461067e576101e3565b80638da5cb5b116100d15780638da5cb5b1461056857806391b7f5ed14610593578063938e3d7b146105bc57806395d89b41146105e5576101e3565b806370a08231146104d2578063715018a61461050f5780637af284d514610526578063853828b614610551576101e3565b806323b872dd1161017a5780634f6ccce7116101495780634f6ccce71461040657806355f804b3146104435780636352211e1461046c5780636e83843a146104a9576101e3565b806323b872dd1461034c5780632af8a96d146103755780632f745c59146103a057806342842e0e146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102a4578063163e1e61146102cd57806318160ddd146102f65780631888665714610321576101e3565b806301ffc9a7146101e8578063049c5c491461022557806306fdde031461023c578063081812fc14610267575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d4d565b610777565b60405161021c9190612d95565b60405180910390f35b34801561023157600080fd5b5061023a6107f1565b005b34801561024857600080fd5b50610251610899565b60405161025e9190612e49565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612ea1565b61092b565b60405161029b9190612f0f565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190612f56565b6109b0565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190612ffb565b610ac8565b005b34801561030257600080fd5b5061030b610c69565b6040516103189190613057565b60405180910390f35b34801561032d57600080fd5b50610336610c76565b6040516103439190613057565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613072565b610c7b565b005b34801561038157600080fd5b5061038a610cdb565b6040516103979190613057565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612f56565b610ce1565b6040516103d49190613057565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613072565b610d86565b005b34801561041257600080fd5b5061042d60048036038101906104289190612ea1565b610da6565b60405161043a9190613057565b60405180910390f35b34801561044f57600080fd5b5061046a6004803603810190610465919061311b565b610e17565b005b34801561047857600080fd5b50610493600480360381019061048e9190612ea1565b610ea9565b6040516104a09190612f0f565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061311b565b610f5b565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613168565b610fed565b6040516105069190613057565b60405180910390f35b34801561051b57600080fd5b506105246110a5565b005b34801561053257600080fd5b5061053b61112d565b6040516105489190613057565b60405180910390f35b34801561055d57600080fd5b50610566611133565b005b34801561057457600080fd5b5061057d611283565b60405161058a9190612f0f565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612ea1565b6112ad565b005b3480156105c857600080fd5b506105e360048036038101906105de919061311b565b611333565b005b3480156105f157600080fd5b506105fa6113c5565b6040516106079190612e49565b60405180910390f35b61062a60048036038101906106259190612ea1565b611457565b005b34801561063857600080fd5b50610653600480360381019061064e91906131c1565b61163f565b005b34801561066157600080fd5b5061067c60048036038101906106779190613331565b6117c0565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612ea1565b611822565b6040516106b29190612e49565b60405180910390f35b3480156106c757600080fd5b506106d06119c7565b6040516106dd9190612d95565b60405180910390f35b3480156106f257600080fd5b506106fb6119da565b6040516107089190612e49565b60405180910390f35b34801561071d57600080fd5b50610738600480360381019061073391906133b4565b611a6c565b6040516107459190612d95565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613168565b611b00565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57506107e982611bf8565b5b9050919050565b6107f9611cda565b73ffffffffffffffffffffffffffffffffffffffff16610817611283565b73ffffffffffffffffffffffffffffffffffffffff161461086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490613440565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060600080546108a89061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546108d49061348f565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b600061093682611ce2565b610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613533565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109bb82610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a23906135c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a4b611cda565b73ffffffffffffffffffffffffffffffffffffffff161480610a7a5750610a7981610a74611cda565b611a6c565b5b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090613657565b60405180910390fd5b610ac38383611d4e565b505050565b610ad0611cda565b73ffffffffffffffffffffffffffffffffffffffff16610aee611283565b73ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613440565b60405180910390fd5b612b67610b4f610c69565b10610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b86906136c3565b60405180910390fd5b612b6782829050600c54610ba39190613712565b1115610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906137b4565b60405180910390fd5b60005b82829050811015610c645760006001600c54610c039190613712565b90506001600c6000828254610c189190613712565b92505081905550610c50848484818110610c3557610c346137d4565b5b9050602002016020810190610c4a9190613168565b82611e07565b508080610c5c90613803565b915050610be7565b505050565b6000600880549050905090565b601481565b610c8c610c86611cda565b82611e25565b610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906138be565b60405180910390fd5b610cd6838383611f03565b505050565b612b6781565b6000610cec83610fed565b8210610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490613950565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610da1838383604051806020016040528060008152506117c0565b505050565b6000610db0610c69565b8210610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906139e2565b60405180910390fd5b60088281548110610e0557610e046137d4565b5b90600052602060002001549050919050565b610e1f611cda565b73ffffffffffffffffffffffffffffffffffffffff16610e3d611283565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613440565b60405180910390fd5b8181600f9190610ea4929190612c3e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613a74565b60405180910390fd5b80915050919050565b610f63611cda565b73ffffffffffffffffffffffffffffffffffffffff16610f81611283565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613440565b60405180910390fd5b818160109190610fe8929190612c3e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613b06565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ad611cda565b73ffffffffffffffffffffffffffffffffffffffff166110cb611283565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613440565b60405180910390fd5b61112b600061215f565b565b600c5481565b61113b611cda565b73ffffffffffffffffffffffffffffffffffffffff16611159611283565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613440565b60405180910390fd5b60006002476111be9190613b55565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061122057600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061128057600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b5611cda565b73ffffffffffffffffffffffffffffffffffffffff166112d3611283565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613440565b60405180910390fd5b80600b8190555050565b61133b611cda565b73ffffffffffffffffffffffffffffffffffffffff16611359611283565b73ffffffffffffffffffffffffffffffffffffffff16146113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613440565b60405180910390fd5b8181600e91906113c0929190612c3e565b505050565b6060600180546113d49061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546114009061348f565b801561144d5780601f106114225761010080835404028352916020019161144d565b820191906000526020600020905b81548152906001019060200180831161143057829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613bd2565b60405180910390fd5b612b676114b2610c69565b106114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e9906136c3565b60405180910390fd5b6014811115611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613c3e565b60405180910390fd5b612b6781600c546115479190613712565b1115611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906136c3565b60405180910390fd5b3481600b546115979190613c5e565b11156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613d04565b60405180910390fd5b60005b8181101561163b57612b67600c5410156116285760006001600c546116009190613712565b90506001600c60008282546116159190613712565b925050819055506116263382611e07565b505b808061163390613803565b9150506115db565b5050565b611647611cda565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613d70565b60405180910390fd5b80600560006116c2611cda565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176f611cda565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b49190612d95565b60405180910390a35050565b6117d16117cb611cda565b83611e25565b611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906138be565b60405180910390fd5b61181c84848484612225565b50505050565b606061182d82611ce2565b61186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613ddc565b60405180910390fd5b60006010805461187b9061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546118a79061348f565b80156118f45780601f106118c9576101008083540402835291602001916118f4565b820191906000526020600020905b8154815290600101906020018083116118d757829003601f168201915b50505050509050600081511161199457600f80546119119061348f565b80601f016020809104026020016040519081016040528092919081815260200182805461193d9061348f565b801561198a5780601f1061195f5761010080835404028352916020019161198a565b820191906000526020600020905b81548152906001019060200180831161196d57829003601f168201915b50505050506119bf565b8061199e84612281565b6040516020016119af929190613e38565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b6060600e80546119e99061348f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a159061348f565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b08611cda565b73ffffffffffffffffffffffffffffffffffffffff16611b26611283565b73ffffffffffffffffffffffffffffffffffffffff1614611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390613440565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be390613ece565b60405180910390fd5b611bf58161215f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cc357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cd35750611cd2826123e2565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc183610ea9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e2182826040518060200160405280600081525061244c565b5050565b6000611e3082611ce2565b611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613f60565b60405180910390fd5b6000611e7a83610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ee957508373ffffffffffffffffffffffffffffffffffffffff16611ed18461092b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611efa5750611ef98185611a6c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2382610ea9565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090613ff2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090614084565b60405180910390fd5b611ff48383836124a7565b611fff600082611d4e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204f91906140a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a69190613712565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612230848484611f03565b61223c848484846125bb565b61227b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122729061414a565b60405180910390fd5b50505050565b606060008214156122c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123dd565b600082905060005b600082146122fb5780806122e490613803565b915050600a826122f49190613b55565b91506122d1565b60008167ffffffffffffffff81111561231757612316613206565b5b6040519080825280601f01601f1916602001820160405280156123495781602001600182028036833780820191505090505b5090505b600085146123d65760018261236291906140a4565b9150600a85612371919061416a565b603061237d9190613712565b60f81b818381518110612393576123926137d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123cf9190613b55565b945061234d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124568383612752565b61246360008484846125bb565b6124a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124999061414a565b60405180910390fd5b505050565b6124b2838383612920565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f5576124f081612925565b612534565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461253357612532838261296e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125775761257281612adb565b6125b6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125b5576125b48282612bac565b5b5b505050565b60006125dc8473ffffffffffffffffffffffffffffffffffffffff16612c2b565b15612745578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612605611cda565b8786866040518563ffffffff1660e01b815260040161262794939291906141f0565b602060405180830381600087803b15801561264157600080fd5b505af192505050801561267257506040513d601f19601f8201168201806040525081019061266f9190614251565b60015b6126f5573d80600081146126a2576040519150601f19603f3d011682016040523d82523d6000602084013e6126a7565b606091505b506000815114156126ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e49061414a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061274a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b9906142ca565b60405180910390fd5b6127cb81611ce2565b1561280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290614336565b60405180910390fd5b612817600083836124a7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128679190613712565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161297b84610fed565b61298591906140a4565b9050600060076000848152602001908152602001600020549050818114612a6a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612aef91906140a4565b9050600060096000848152602001908152602001600020549050600060088381548110612b1f57612b1e6137d4565b5b906000526020600020015490508060088381548110612b4157612b406137d4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b9057612b8f614356565b5b6001900381819060005260206000200160009055905550505050565b6000612bb783610fed565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612c4a9061348f565b90600052602060002090601f016020900481019282612c6c5760008555612cb3565b82601f10612c8557803560ff1916838001178555612cb3565b82800160010185558215612cb3579182015b82811115612cb2578235825591602001919060010190612c97565b5b509050612cc09190612cc4565b5090565b5b80821115612cdd576000816000905550600101612cc5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d2a81612cf5565b8114612d3557600080fd5b50565b600081359050612d4781612d21565b92915050565b600060208284031215612d6357612d62612ceb565b5b6000612d7184828501612d38565b91505092915050565b60008115159050919050565b612d8f81612d7a565b82525050565b6000602082019050612daa6000830184612d86565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dea578082015181840152602081019050612dcf565b83811115612df9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1b82612db0565b612e258185612dbb565b9350612e35818560208601612dcc565b612e3e81612dff565b840191505092915050565b60006020820190508181036000830152612e638184612e10565b905092915050565b6000819050919050565b612e7e81612e6b565b8114612e8957600080fd5b50565b600081359050612e9b81612e75565b92915050565b600060208284031215612eb757612eb6612ceb565b5b6000612ec584828501612e8c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b612f3381612eee565b8114612f3e57600080fd5b50565b600081359050612f5081612f2a565b92915050565b60008060408385031215612f6d57612f6c612ceb565b5b6000612f7b85828601612f41565b9250506020612f8c85828601612e8c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112612fbb57612fba612f96565b5b8235905067ffffffffffffffff811115612fd857612fd7612f9b565b5b602083019150836020820283011115612ff457612ff3612fa0565b5b9250929050565b6000806020838503121561301257613011612ceb565b5b600083013567ffffffffffffffff8111156130305761302f612cf0565b5b61303c85828601612fa5565b92509250509250929050565b61305181612e6b565b82525050565b600060208201905061306c6000830184613048565b92915050565b60008060006060848603121561308b5761308a612ceb565b5b600061309986828701612f41565b93505060206130aa86828701612f41565b92505060406130bb86828701612e8c565b9150509250925092565b60008083601f8401126130db576130da612f96565b5b8235905067ffffffffffffffff8111156130f8576130f7612f9b565b5b60208301915083600182028301111561311457613113612fa0565b5b9250929050565b6000806020838503121561313257613131612ceb565b5b600083013567ffffffffffffffff8111156131505761314f612cf0565b5b61315c858286016130c5565b92509250509250929050565b60006020828403121561317e5761317d612ceb565b5b600061318c84828501612f41565b91505092915050565b61319e81612d7a565b81146131a957600080fd5b50565b6000813590506131bb81613195565b92915050565b600080604083850312156131d8576131d7612ceb565b5b60006131e685828601612f41565b92505060206131f7858286016131ac565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61323e82612dff565b810181811067ffffffffffffffff8211171561325d5761325c613206565b5b80604052505050565b6000613270612ce1565b905061327c8282613235565b919050565b600067ffffffffffffffff82111561329c5761329b613206565b5b6132a582612dff565b9050602081019050919050565b82818337600083830152505050565b60006132d46132cf84613281565b613266565b9050828152602081018484840111156132f0576132ef613201565b5b6132fb8482856132b2565b509392505050565b600082601f83011261331857613317612f96565b5b81356133288482602086016132c1565b91505092915050565b6000806000806080858703121561334b5761334a612ceb565b5b600061335987828801612f41565b945050602061336a87828801612f41565b935050604061337b87828801612e8c565b925050606085013567ffffffffffffffff81111561339c5761339b612cf0565b5b6133a887828801613303565b91505092959194509250565b600080604083850312156133cb576133ca612ceb565b5b60006133d985828601612f41565b92505060206133ea85828601612f41565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061342a602083612dbb565b9150613435826133f4565b602082019050919050565b600060208201905081810360008301526134598161341d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134a757607f821691505b602082108114156134bb576134ba613460565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061351d602c83612dbb565b9150613528826134c1565b604082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135af602183612dbb565b91506135ba82613553565b604082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613641603883612dbb565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f4e6f20546f6b656e73204c656674000000000000000000000000000000000000600082015250565b60006136ad600e83612dbb565b91506136b882613677565b602082019050919050565b600060208201905081810360008301526136dc816136a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061371d82612e6b565b915061372883612e6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561375d5761375c6136e3565b5b828201905092915050565b7f4e6f20746f6b656e73206c656674000000000000000000000000000000000000600082015250565b600061379e600e83612dbb565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061380e82612e6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613841576138406136e3565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006138a8603183612dbb565b91506138b38261384c565b604082019050919050565b600060208201905081810360008301526138d78161389b565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061393a602b83612dbb565b9150613945826138de565b604082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006139cc602c83612dbb565b91506139d782613970565b604082019050919050565b600060208201905081810360008301526139fb816139bf565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a5e602983612dbb565b9150613a6982613a02565b604082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613af0602a83612dbb565b9150613afb82613a94565b604082019050919050565b60006020820190508181036000830152613b1f81613ae3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b6082612e6b565b9150613b6b83612e6b565b925082613b7b57613b7a613b26565b5b828204905092915050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000613bbc601683612dbb565b9150613bc782613b86565b602082019050919050565b60006020820190508181036000830152613beb81613baf565b9050919050565b7f596f7520617265206f76657220746865206d696e74696e67206d617800000000600082015250565b6000613c28601c83612dbb565b9150613c3382613bf2565b602082019050919050565b60006020820190508181036000830152613c5781613c1b565b9050919050565b6000613c6982612e6b565b9150613c7483612e6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cad57613cac6136e3565b5b828202905092915050565b7f45544820616d6f756e74206973206e6f7420656e6f7567680000000000000000600082015250565b6000613cee601883612dbb565b9150613cf982613cb8565b602082019050919050565b60006020820190508181036000830152613d1d81613ce1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d5a601983612dbb565b9150613d6582613d24565b602082019050919050565b60006020820190508181036000830152613d8981613d4d565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000613dc6601483612dbb565b9150613dd182613d90565b602082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b600081905092915050565b6000613e1282612db0565b613e1c8185613dfc565b9350613e2c818560208601612dcc565b80840191505092915050565b6000613e448285613e07565b9150613e508284613e07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eb8602683612dbb565b9150613ec382613e5c565b604082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f4a602c83612dbb565b9150613f5582613eee565b604082019050919050565b60006020820190508181036000830152613f7981613f3d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613fdc602983612dbb565b9150613fe782613f80565b604082019050919050565b6000602082019050818103600083015261400b81613fcf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061406e602483612dbb565b915061407982614012565b604082019050919050565b6000602082019050818103600083015261409d81614061565b9050919050565b60006140af82612e6b565b91506140ba83612e6b565b9250828210156140cd576140cc6136e3565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614134603283612dbb565b915061413f826140d8565b604082019050919050565b6000602082019050818103600083015261416381614127565b9050919050565b600061417582612e6b565b915061418083612e6b565b9250826141905761418f613b26565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006141c28261419b565b6141cc81856141a6565b93506141dc818560208601612dcc565b6141e581612dff565b840191505092915050565b60006080820190506142056000830187612f00565b6142126020830186612f00565b61421f6040830185613048565b818103606083015261423181846141b7565b905095945050505050565b60008151905061424b81612d21565b92915050565b60006020828403121561426757614266612ceb565b5b60006142758482850161423c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006142b4602083612dbb565b91506142bf8261427e565b602082019050919050565b600060208201905081810360008301526142e3816142a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614320601c83612dbb565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212202e19a6147248d3f37eaf7c97ae476441df91a75c9dc3c4c2091b085fb574bde764736f6c63430008090033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.