ETH Price: $3,132.05 (+1.70%)
Gas: 3 Gwei

Token

Stranger EggZ (SEZ)
 

Overview

Max Total Supply

2,876 SEZ

Holders

527

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SEZ
0x22b0cd01f0c1f9a43557ef5f1d9f5ee1d93646dc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Stranger EggZ is a collection of 10 000 EggZ randomly generated from more than 40 traits per category.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StrangerEggZ

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

/*
  _____ __                                      ______           _____
  / ___// /__________ _____  ____ ____  _____   / ____/___ _____ /__  /
  \__ \/ __/ ___/ __ `/ __ \/ __ `/ _ \/ ___/  / __/ / __ `/ __ `/ / / 
 ___/ / /_/ /  / /_/ / / / / /_/ /  __/ /     / /___/ /_/ / /_/ / / /__
/____/\__/_/   \__,_/_/ /_/\__, /\___/_/     /_____/\__, /\__, / /____/
                          /____/                   /____//____/        
*/

/*
* Hi Mom !
* I dedicate this project to you ! If I've made it until here it's thank to you
* Thank you for all the things that you did for me, I know it has been really hard sometimes.
* Now you will be in the blockchain forever !
* I love you with all my heart <3
* MW
*/

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

contract StrangerEggZ is ERC721Enumerable, Ownable {


    string baseTokenUri;
    bool baseUriDefined = false;
    /*
    *   50 for early supporter
    *   1 for each meowbits owner ~70
    *   100 for CryptoBabyPunks owner
    *   100 for Boring Banana Company owner
    *   100 for Top Dog Beach Club owner
    *   180 for Giveaway, contests, marketing
    */
    uint256 private _reserved = 600;
    
    //EggZ pack unit price
    uint256 private unitPrice1EggPack = 0.06 ether; // 0.06 ether
    uint256 private unitPrice4EggPack = 0.05 ether; // 0.05 ether
    uint256 private unitPrice6EggPack = 0.045 ether; // 0.045 ether
    uint256 private unitPrice12EggPack = 0.035 ether; // 0.035 ether
    
    bool public canMint = false;
    bool public earlySupportersGiveawayDone = false;

    // withdraw addresses
    address artistAdr = 0xb23D2ca9b0CBDDac6DB8A3ACcd13eCb6726d4Ee7;
    address sc_dev = 0xda9d7C1c84c7954Ee7F5281cDCddaD359ee072e6;
    address website_dev = 0xe03c018686E6E46Bb48A2722185d67f0eE6cee6b;
    
    constructor(string memory baseURI) ERC721("Stranger EggZ", "SEZ")  {
        setBaseURI(baseURI);

        // The team want an egg too
        _safeMint( artistAdr, 0);
        _safeMint( sc_dev, 1);
        _safeMint( website_dev, 2);
    }
    
    /*************************************************
     * 
     *      METADATA PART
     * 
     * ***********************************************/
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenUri;
    }

    /*
    *   The setBaseURI is internal and can't be called
    *   It's called once in Contract constructor   
    */
    function setBaseURI(string memory baseURI) internal onlyOwner() {
        require(!baseUriDefined, "Base URI has already been set");
        
        baseTokenUri = baseURI;
        baseUriDefined = true;
    }
    
    /*************************************************
     * 
     *      MINT PART
     * 
     * ***********************************************/
    
    /*
    *   Mint one Egg
    */
    function summon1Egg() public payable {
        summonEggZFromSpace(1,unitPrice1EggPack);
    }
    
    /*
    *   Mint a 4 EggZ Pack
    */
    function summon4PackEggZ() public payable {
        summonEggZFromSpace(4,unitPrice4EggPack);
    }
    
    /*
    *   Mint a 6 EggZ Pack
    */
    function summon6PackEggZ() public payable {
        summonEggZFromSpace(6,unitPrice6EggPack);
    }
    
    /*
    *   Mint a 12 EggZ Pack
    */
    function summon12PackEggZ() public payable {
        summonEggZFromSpace(12,unitPrice12EggPack);
    }
    
    /*
    * The mint function
    */
    function summonEggZFromSpace(uint256 num, uint256 price) internal {
        uint256 supply = totalSupply();
        require( canMint,                              "Sale paused" );
        require( supply + num <= 10000 - _reserved,      "No EggZ left :'(" );
        require( msg.value >= price * num,             "Not enough ether sent" );
        require( earlySupportersGiveawayDone,           "You can't summon EggZ till early supporters and team haven't had their EggZ");

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    function switchMintStatus() public onlyOwner {
        canMint = !canMint;
    }
    
    
    /*************************************************
     * 
     *      GIVEAWAY PART
     * 
     * ***********************************************/
     
     
    /*
    *   Used to airdrop 1 egg to each _addrs
    *   I'm not using airdropToWallet in this function to avoid
    *   calling require _addrs.length amounts of time
    *
    */
    function airdropOneEggToWallets(address[] memory _addrs) external onlyOwner() {
        uint256 supply = totalSupply();
        uint256 amount = _addrs.length;
        require( earlySupportersGiveawayDone, "You can't summon EggZ till early supporters and team haven't had their EggZ");
        require( supply + amount <= _reserved, "Not enough reserved EggZ");


        for(uint256 i; i < amount; i++) {
            _safeMint( _addrs[i], supply + i);
        }

        _reserved -= amount;
    }

    /*
    *   Used to airdrop amount egg to addr
    *
    */
    function airdropToWallet(address addr, uint256 amount) external onlyOwner() {
        uint256 supply = totalSupply();
        require( earlySupportersGiveawayDone, "You can't summon EggZ till early supporters and team haven't had their EggZ");
        require( supply + amount <= _reserved, "Not enough reserved EggZ");

        for(uint256 i; i < amount; i++) {
            _safeMint( addr, supply + i);
        }
        
        _reserved -= amount;
    }
    
    /*
    *   Used to airdrop the 50 EggZ with early supporter custom trait
    *   Can only be called once
    */
    function earlySupportersGiveaway(address[] memory _addrs) external onlyOwner() {
        uint256 supply = totalSupply();
        require( !earlySupportersGiveawayDone, "Early supporters giveaway has already been done !");
        require( _addrs.length == 50,   "There should be 50 adresses to run the early supporters giveaway");
        
        for(uint256 i; i < _addrs.length; i++) {
            _safeMint( _addrs[i], supply + i );
        }
        
        earlySupportersGiveawayDone = true;
        _reserved -= 50;
        
    }
    
    /*************************************************
     * 
     *      UTILITY PART
     * 
     * ***********************************************/
    
    function listEggZOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance / 3;
        require(payable(artistAdr).send(_each));
        require(payable(sc_dev).send(_each));
        require(payable(website_dev).send(_each));
    }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"airdropOneEggToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropToWallet","outputs":[],"stateMutability":"nonpayable","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":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"earlySupportersGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlySupportersGiveawayDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"listEggZOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"summon12PackEggZ","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"summon1Egg","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"summon4PackEggZ","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"summon6PackEggZ","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600c60006101000a81548160ff021916908315150217905550610258600d5566d529ae9e860000600e5566b1a2bc2ec50000600f55669fdf42f6e48000601055667c5850872380006011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff02191690831515021790555073b23d2ca9b0cbddac6db8a3accd13ecb6726d4ee7601260026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073da9d7c1c84c7954ee7f5281cdcddad359ee072e6601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e03c018686e6e46bb48a2722185d67f0ee6cee6b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019357600080fd5b5060405162005d8b38038062005d8b8339818101604052810190620001b99190620010a0565b6040518060400160405280600d81526020017f537472616e676572204567675a000000000000000000000000000000000000008152506040518060400160405280600381526020017f53455a000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200023d92919062000f29565b5080600190805190602001906200025692919062000f29565b505050620002796200026d6200033060201b60201c565b6200033860201b60201c565b6200028a81620003fe60201b60201c565b620002bf601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200051760201b60201c565b620002f4601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200051760201b60201c565b62000329601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660026200051760201b60201c565b50620017fa565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200040e6200033060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004346200053d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200048d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000484906200133c565b60405180910390fd5b600c60009054906101000a900460ff1615620004e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d7906200131a565b60405180910390fd5b80600b9080519060200190620004f892919062000f29565b506001600c60006101000a81548160ff02191690831515021790555050565b620005398282604051806020016040528060008152506200056760201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005798383620005d560201b60201c565b6200058e6000848484620007bb60201b60201c565b620005d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c79062001292565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063f90620012f8565b60405180910390fd5b62000659816200097560201b60201c565b156200069c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200069390620012b4565b60405180910390fd5b620006b060008383620009e160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007029190620013ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007e98473ffffffffffffffffffffffffffffffffffffffff1662000b2860201b62001a031760201c565b1562000968578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200081b6200033060201b60201c565b8786866040518563ffffffff1660e01b81526004016200083f94939291906200123e565b602060405180830381600087803b1580156200085a57600080fd5b505af19250505080156200088e57506040513d601f19601f820116820180604052508101906200088b91906200106e565b60015b62000917573d8060008114620008c1576040519150601f19603f3d011682016040523d82523d6000602084013e620008c6565b606091505b506000815114156200090f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009069062001292565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200096d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009f983838362000b3b60201b62001a161760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a465762000a408162000b4060201b60201c565b62000a8e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a8d5762000a8c838262000b8960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000adb5762000ad58162000d0660201b60201c565b62000b23565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000b225762000b21828262000de260201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000ba38462000e6e60201b62000e3a1760201c565b62000baf919062001447565b905060006007600084815260200190815260200160002054905081811462000c95576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000d1c919062001447565b905060006009600084815260200190815260200160002054905060006008838154811062000d4f5762000d4e6200161b565b5b90600052602060002001549050806008838154811062000d745762000d736200161b565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000dc65762000dc5620015ec565b5b6001900381819060005260206000200160009055905550505050565b600062000dfa8362000e6e60201b62000e3a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ee2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ed990620012d6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f379062001522565b90600052602060002090601f01602090048101928262000f5b576000855562000fa7565b82601f1062000f7657805160ff191683800117855562000fa7565b8280016001018555821562000fa7579182015b8281111562000fa657825182559160200191906001019062000f89565b5b50905062000fb6919062000fba565b5090565b5b8082111562000fd557600081600090555060010162000fbb565b5090565b600062000ff062000fea8462001387565b6200135e565b9050828152602081018484840111156200100f576200100e6200167e565b5b6200101c848285620014ec565b509392505050565b6000815190506200103581620017e0565b92915050565b600082601f83011262001053576200105262001679565b5b81516200106584826020860162000fd9565b91505092915050565b60006020828403121562001087576200108662001688565b5b6000620010978482850162001024565b91505092915050565b600060208284031215620010b957620010b862001688565b5b600082015167ffffffffffffffff811115620010da57620010d962001683565b5b620010e8848285016200103b565b91505092915050565b620010fc8162001482565b82525050565b60006200110f82620013bd565b6200111b8185620013c8565b93506200112d818560208601620014ec565b62001138816200168d565b840191505092915050565b600062001152603283620013d9565b91506200115f826200169e565b604082019050919050565b600062001179601c83620013d9565b91506200118682620016ed565b602082019050919050565b6000620011a0602a83620013d9565b9150620011ad8262001716565b604082019050919050565b6000620011c7602083620013d9565b9150620011d48262001765565b602082019050919050565b6000620011ee601d83620013d9565b9150620011fb826200178e565b602082019050919050565b600062001215602083620013d9565b91506200122282620017b7565b602082019050919050565b6200123881620014e2565b82525050565b6000608082019050620012556000830187620010f1565b620012646020830186620010f1565b6200127360408301856200122d565b818103606083015262001287818462001102565b905095945050505050565b60006020820190508181036000830152620012ad8162001143565b9050919050565b60006020820190508181036000830152620012cf816200116a565b9050919050565b60006020820190508181036000830152620012f18162001191565b9050919050565b600060208201905081810360008301526200131381620011b8565b9050919050565b600060208201905081810360008301526200133581620011df565b9050919050565b60006020820190508181036000830152620013578162001206565b9050919050565b60006200136a6200137d565b905062001378828262001558565b919050565b6000604051905090565b600067ffffffffffffffff821115620013a557620013a46200164a565b5b620013b0826200168d565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013f782620014e2565b91506200140483620014e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200143c576200143b6200158e565b5b828201905092915050565b60006200145482620014e2565b91506200146183620014e2565b9250828210156200147757620014766200158e565b5b828203905092915050565b60006200148f82620014c2565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200150c578082015181840152602081019050620014ef565b838111156200151c576000848401525b50505050565b600060028204905060018216806200153b57607f821691505b60208210811415620015525762001551620015bd565b5b50919050565b62001563826200168d565b810181811067ffffffffffffffff821117156200158557620015846200164a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f42617365205552492068617320616c7265616479206265656e20736574000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620017eb8162001496565b8114620017f757600080fd5b50565b614581806200180a6000396000f3fe6080604052600436106101d85760003560e01c80636dc2978a11610102578063a987c35d11610095578063e985e9c511610064578063e985e9c51461063c578063f1dda89314610679578063f2fde38b14610683578063ff06bf5f146106ac576101d8565b8063a987c35d14610594578063b88d4fde146105ab578063beb9716d146105d4578063c87b56dd146105ff576101d8565b80638da5cb5b116100d15780638da5cb5b146104ec57806395d89b41146105175780639e35826c14610542578063a22cb4651461056b576101d8565b80636dc2978a1461048457806370a082311461048e578063715018a6146104cb578063853828b6146104e2576101d8565b806319e610611161017a5780633f722476116101495780633f722476146103a457806342842e0e146103e15780634f6ccce71461040a5780636352211e14610447576101d8565b806319e61061146102ea57806323b872dd1461031557806323d989171461033e5780632f745c5914610367576101d8565b80630841c405116101b65780630841c40514610282578063095ea7b31461028c57806310098b0a146102b557806318160ddd146102bf576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612fec565b6106d5565b60405161021191906135e0565b60405180910390f35b34801561022657600080fd5b5061022f61074f565b60405161023c91906135fb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613046565b6107e1565b6040516102799190613557565b60405180910390f35b61028a610866565b005b34801561029857600080fd5b506102b360048036038101906102ae9190612f63565b610875565b005b6102bd61098d565b005b3480156102cb57600080fd5b506102d461099c565b6040516102e1919061393d565b60405180910390f35b3480156102f657600080fd5b506102ff6109a9565b60405161030c91906135e0565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612e4d565b6109bc565b005b34801561034a57600080fd5b5061036560048036038101906103609190612f63565b610a1c565b005b34801561037357600080fd5b5061038e60048036038101906103899190612f63565b610b95565b60405161039b919061393d565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612de0565b610c3a565b6040516103d891906135be565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612e4d565b610ce8565b005b34801561041657600080fd5b50610431600480360381019061042c9190613046565b610d08565b60405161043e919061393d565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613046565b610d79565b60405161047b9190613557565b60405180910390f35b61048c610e2b565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612de0565b610e3a565b6040516104c2919061393d565b60405180910390f35b3480156104d757600080fd5b506104e0610ef2565b005b6104ea610f7a565b005b3480156104f857600080fd5b5061050161112a565b60405161050e9190613557565b60405180910390f35b34801561052357600080fd5b5061052c611154565b60405161053991906135fb565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612fa3565b6111e6565b005b34801561057757600080fd5b50610592600480360381019061058d9190612f23565b61138a565b005b3480156105a057600080fd5b506105a961150b565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612ea0565b6115b3565b005b3480156105e057600080fd5b506105e9611615565b6040516105f691906135e0565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613046565b611628565b60405161063391906135fb565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612e0d565b6116cf565b60405161067091906135e0565b60405180910390f35b610681611763565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612de0565b611772565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612fa3565b61186a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610748575061074782611a1b565b5b9050919050565b60606000805461075e90613c21565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90613c21565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec82611afd565b61082b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108229061381d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108736001600e54611b69565b565b600061088082610d79565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e89061389d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610910611cf7565b73ffffffffffffffffffffffffffffffffffffffff16148061093f575061093e81610939611cf7565b6116cf565b5b61097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061377d565b60405180910390fd5b6109888383611cff565b505050565b61099a6006601054611b69565b565b6000600880549050905090565b601260019054906101000a900460ff1681565b6109cd6109c7611cf7565b82611db8565b610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906138bd565b60405180910390fd5b610a17838383611e96565b505050565b610a24611cf7565b73ffffffffffffffffffffffffffffffffffffffff16610a4261112a565b73ffffffffffffffffffffffffffffffffffffffff1614610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f9061383d565b60405180910390fd5b6000610aa261099c565b9050601260019054906101000a900460ff16610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea9061371d565b60405180910390fd5b600d548282610b029190613a56565b1115610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a9061373d565b60405180910390fd5b60005b82811015610b7657610b63848284610b5e9190613a56565b6120f2565b8080610b6e90613c84565b915050610b46565b5081600d6000828254610b899190613b37565b92505081905550505050565b6000610ba083610e3a565b8210610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd89061363d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60606000610c4783610e3a565b905060008167ffffffffffffffff811115610c6557610c64613de9565b5b604051908082528060200260200182016040528015610c935781602001602082028036833780820191505090505b50905060005b82811015610cdd57610cab8582610b95565b828281518110610cbe57610cbd613dba565b5b6020026020010181815250508080610cd590613c84565b915050610c99565b508092505050919050565b610d03838383604051806020016040528060008152506115b3565b505050565b6000610d1261099c565b8210610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906138dd565b60405180910390fd5b60088281548110610d6757610d66613dba565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e19906137dd565b60405180910390fd5b80915050919050565b610e386004600f54611b69565b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906137bd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610efa611cf7565b73ffffffffffffffffffffffffffffffffffffffff16610f1861112a565b73ffffffffffffffffffffffffffffffffffffffff1614610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f659061383d565b60405180910390fd5b610f786000612110565b565b610f82611cf7565b73ffffffffffffffffffffffffffffffffffffffff16610fa061112a565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed9061383d565b60405180910390fd5b60006003476110059190613aac565b9050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061106757600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110c757600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061112757600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461116390613c21565b80601f016020809104026020016040519081016040528092919081815260200182805461118f90613c21565b80156111dc5780601f106111b1576101008083540402835291602001916111dc565b820191906000526020600020905b8154815290600101906020018083116111bf57829003601f168201915b5050505050905090565b6111ee611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661120c61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112599061383d565b60405180910390fd5b600061126c61099c565b9050601260019054906101000a900460ff16156112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b5906136bd565b60405180910390fd5b6032825114611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f99061391d565b60405180910390fd5b60005b82518110156113505761133d83828151811061132457611323613dba565b5b602002602001015182846113389190613a56565b6120f2565b808061134890613c84565b915050611305565b506001601260016101000a81548160ff0219169083151502179055506032600d600082825461137f9190613b37565b925050819055505050565b611392611cf7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f7906136fd565b60405180910390fd5b806005600061140d611cf7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ba611cf7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ff91906135e0565b60405180910390a35050565b611513611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661153161112a565b73ffffffffffffffffffffffffffffffffffffffff1614611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061383d565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6115c46115be611cf7565b83611db8565b611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906138bd565b60405180910390fd5b61160f848484846121d6565b50505050565b601260009054906101000a900460ff1681565b606061163382611afd565b611672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116699061387d565b60405180910390fd5b600061167c612232565b9050600081511161169c57604051806020016040528060008152506116c7565b806116a6846122c4565b6040516020016116b7929190613533565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611770600c601154611b69565b565b61177a611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661179861112a565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e59061383d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061367d565b60405180910390fd5b61186781612110565b50565b611872611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661189061112a565b73ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd9061383d565b60405180910390fd5b60006118f061099c565b9050600082519050601260019054906101000a900460ff16611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061371d565b60405180910390fd5b600d5481836119569190613a56565b1115611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e9061373d565b60405180910390fd5b60005b818110156119e4576119d18482815181106119b8576119b7613dba565b5b602002602001015182856119cc9190613a56565b6120f2565b80806119dc90613c84565b91505061199a565b5080600d60008282546119f79190613b37565b92505081905550505050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ae657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611af65750611af582612425565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611b7361099c565b9050601260009054906101000a900460ff16611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb9061361d565b60405180910390fd5b600d54612710611bd49190613b37565b8382611be09190613a56565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c189061379d565b60405180910390fd5b8282611c2d9190613add565b341015611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c66906138fd565b60405180910390fd5b601260019054906101000a900460ff16611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb59061371d565b60405180910390fd5b60005b83811015611cf157611cde338284611cd99190613a56565b6120f2565b8080611ce990613c84565b915050611cc1565b50505050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7283610d79565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dc382611afd565b611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df99061375d565b60405180910390fd5b6000611e0d83610d79565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7c57508373ffffffffffffffffffffffffffffffffffffffff16611e64846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8d5750611e8c81856116cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb682610d79565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f039061385d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f73906136dd565b60405180910390fd5b611f8783838361248f565b611f92600082611cff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe29190613b37565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120399190613a56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210c8282604051806020016040528060008152506125a3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e1848484611e96565b6121ed848484846125fe565b61222c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122239061365d565b60405180910390fd5b50505050565b6060600b805461224190613c21565b80601f016020809104026020016040519081016040528092919081815260200182805461226d90613c21565b80156122ba5780601f1061228f576101008083540402835291602001916122ba565b820191906000526020600020905b81548152906001019060200180831161229d57829003601f168201915b5050505050905090565b6060600082141561230c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612420565b600082905060005b6000821461233e57808061232790613c84565b915050600a826123379190613aac565b9150612314565b60008167ffffffffffffffff81111561235a57612359613de9565b5b6040519080825280601f01601f19166020018201604052801561238c5781602001600182028036833780820191505090505b5090505b60008514612419576001826123a59190613b37565b9150600a856123b49190613ccd565b60306123c09190613a56565b60f81b8183815181106123d6576123d5613dba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124129190613aac565b9450612390565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61249a838383611a16565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124dd576124d881612795565b61251c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461251b5761251a83826127de565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255f5761255a8161294b565b61259e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461259d5761259c8282612a1c565b5b5b505050565b6125ad8383612a9b565b6125ba60008484846125fe565b6125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f09061365d565b60405180910390fd5b505050565b600061261f8473ffffffffffffffffffffffffffffffffffffffff16611a03565b15612788578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612648611cf7565b8786866040518563ffffffff1660e01b815260040161266a9493929190613572565b602060405180830381600087803b15801561268457600080fd5b505af19250505080156126b557506040513d601f19601f820116820180604052508101906126b29190613019565b60015b612738573d80600081146126e5576040519150601f19603f3d011682016040523d82523d6000602084013e6126ea565b606091505b50600081511415612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127279061365d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061278d565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127eb84610e3a565b6127f59190613b37565b90506000600760008481526020019081526020016000205490508181146128da576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061295f9190613b37565b905060006009600084815260200190815260200160002054905060006008838154811061298f5761298e613dba565b5b9060005260206000200154905080600883815481106129b1576129b0613dba565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a00576129ff613d8b565b5b6001900381819060005260206000200160009055905550505050565b6000612a2783610e3a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b02906137fd565b60405180910390fd5b612b1481611afd565b15612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b9061369d565b60405180910390fd5b612b606000838361248f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb09190613a56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612c7c612c778461397d565b613958565b90508083825260208201905082856020860282011115612c9f57612c9e613e1d565b5b60005b85811015612ccf5781612cb58882612d1b565b845260208401935060208301925050600181019050612ca2565b5050509392505050565b6000612cec612ce7846139a9565b613958565b905082815260208101848484011115612d0857612d07613e22565b5b612d13848285613bdf565b509392505050565b600081359050612d2a816144ef565b92915050565b600082601f830112612d4557612d44613e18565b5b8135612d55848260208601612c69565b91505092915050565b600081359050612d6d81614506565b92915050565b600081359050612d828161451d565b92915050565b600081519050612d978161451d565b92915050565b600082601f830112612db257612db1613e18565b5b8135612dc2848260208601612cd9565b91505092915050565b600081359050612dda81614534565b92915050565b600060208284031215612df657612df5613e2c565b5b6000612e0484828501612d1b565b91505092915050565b60008060408385031215612e2457612e23613e2c565b5b6000612e3285828601612d1b565b9250506020612e4385828601612d1b565b9150509250929050565b600080600060608486031215612e6657612e65613e2c565b5b6000612e7486828701612d1b565b9350506020612e8586828701612d1b565b9250506040612e9686828701612dcb565b9150509250925092565b60008060008060808587031215612eba57612eb9613e2c565b5b6000612ec887828801612d1b565b9450506020612ed987828801612d1b565b9350506040612eea87828801612dcb565b925050606085013567ffffffffffffffff811115612f0b57612f0a613e27565b5b612f1787828801612d9d565b91505092959194509250565b60008060408385031215612f3a57612f39613e2c565b5b6000612f4885828601612d1b565b9250506020612f5985828601612d5e565b9150509250929050565b60008060408385031215612f7a57612f79613e2c565b5b6000612f8885828601612d1b565b9250506020612f9985828601612dcb565b9150509250929050565b600060208284031215612fb957612fb8613e2c565b5b600082013567ffffffffffffffff811115612fd757612fd6613e27565b5b612fe384828501612d30565b91505092915050565b60006020828403121561300257613001613e2c565b5b600061301084828501612d73565b91505092915050565b60006020828403121561302f5761302e613e2c565b5b600061303d84828501612d88565b91505092915050565b60006020828403121561305c5761305b613e2c565b5b600061306a84828501612dcb565b91505092915050565b600061307f8383613515565b60208301905092915050565b61309481613b6b565b82525050565b60006130a5826139ea565b6130af8185613a18565b93506130ba836139da565b8060005b838110156130eb5781516130d28882613073565b97506130dd83613a0b565b9250506001810190506130be565b5085935050505092915050565b61310181613b7d565b82525050565b6000613112826139f5565b61311c8185613a29565b935061312c818560208601613bee565b61313581613e31565b840191505092915050565b600061314b82613a00565b6131558185613a3a565b9350613165818560208601613bee565b61316e81613e31565b840191505092915050565b600061318482613a00565b61318e8185613a4b565b935061319e818560208601613bee565b80840191505092915050565b60006131b7600b83613a3a565b91506131c282613e42565b602082019050919050565b60006131da602b83613a3a565b91506131e582613e6b565b604082019050919050565b60006131fd603283613a3a565b915061320882613eba565b604082019050919050565b6000613220602683613a3a565b915061322b82613f09565b604082019050919050565b6000613243601c83613a3a565b915061324e82613f58565b602082019050919050565b6000613266603183613a3a565b915061327182613f81565b604082019050919050565b6000613289602483613a3a565b915061329482613fd0565b604082019050919050565b60006132ac601983613a3a565b91506132b78261401f565b602082019050919050565b60006132cf604b83613a3a565b91506132da82614048565b606082019050919050565b60006132f2601883613a3a565b91506132fd826140bd565b602082019050919050565b6000613315602c83613a3a565b9150613320826140e6565b604082019050919050565b6000613338603883613a3a565b915061334382614135565b604082019050919050565b600061335b601083613a3a565b915061336682614184565b602082019050919050565b600061337e602a83613a3a565b9150613389826141ad565b604082019050919050565b60006133a1602983613a3a565b91506133ac826141fc565b604082019050919050565b60006133c4602083613a3a565b91506133cf8261424b565b602082019050919050565b60006133e7602c83613a3a565b91506133f282614274565b604082019050919050565b600061340a602083613a3a565b9150613415826142c3565b602082019050919050565b600061342d602983613a3a565b9150613438826142ec565b604082019050919050565b6000613450602f83613a3a565b915061345b8261433b565b604082019050919050565b6000613473602183613a3a565b915061347e8261438a565b604082019050919050565b6000613496603183613a3a565b91506134a1826143d9565b604082019050919050565b60006134b9602c83613a3a565b91506134c482614428565b604082019050919050565b60006134dc601583613a3a565b91506134e782614477565b602082019050919050565b60006134ff604083613a3a565b915061350a826144a0565b604082019050919050565b61351e81613bd5565b82525050565b61352d81613bd5565b82525050565b600061353f8285613179565b915061354b8284613179565b91508190509392505050565b600060208201905061356c600083018461308b565b92915050565b6000608082019050613587600083018761308b565b613594602083018661308b565b6135a16040830185613524565b81810360608301526135b38184613107565b905095945050505050565b600060208201905081810360008301526135d8818461309a565b905092915050565b60006020820190506135f560008301846130f8565b92915050565b600060208201905081810360008301526136158184613140565b905092915050565b60006020820190508181036000830152613636816131aa565b9050919050565b60006020820190508181036000830152613656816131cd565b9050919050565b60006020820190508181036000830152613676816131f0565b9050919050565b6000602082019050818103600083015261369681613213565b9050919050565b600060208201905081810360008301526136b681613236565b9050919050565b600060208201905081810360008301526136d681613259565b9050919050565b600060208201905081810360008301526136f68161327c565b9050919050565b600060208201905081810360008301526137168161329f565b9050919050565b60006020820190508181036000830152613736816132c2565b9050919050565b60006020820190508181036000830152613756816132e5565b9050919050565b6000602082019050818103600083015261377681613308565b9050919050565b600060208201905081810360008301526137968161332b565b9050919050565b600060208201905081810360008301526137b68161334e565b9050919050565b600060208201905081810360008301526137d681613371565b9050919050565b600060208201905081810360008301526137f681613394565b9050919050565b60006020820190508181036000830152613816816133b7565b9050919050565b60006020820190508181036000830152613836816133da565b9050919050565b60006020820190508181036000830152613856816133fd565b9050919050565b6000602082019050818103600083015261387681613420565b9050919050565b6000602082019050818103600083015261389681613443565b9050919050565b600060208201905081810360008301526138b681613466565b9050919050565b600060208201905081810360008301526138d681613489565b9050919050565b600060208201905081810360008301526138f6816134ac565b9050919050565b60006020820190508181036000830152613916816134cf565b9050919050565b60006020820190508181036000830152613936816134f2565b9050919050565b60006020820190506139526000830184613524565b92915050565b6000613962613973565b905061396e8282613c53565b919050565b6000604051905090565b600067ffffffffffffffff82111561399857613997613de9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139c4576139c3613de9565b5b6139cd82613e31565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6182613bd5565b9150613a6c83613bd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa157613aa0613cfe565b5b828201905092915050565b6000613ab782613bd5565b9150613ac283613bd5565b925082613ad257613ad1613d2d565b5b828204905092915050565b6000613ae882613bd5565b9150613af383613bd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2c57613b2b613cfe565b5b828202905092915050565b6000613b4282613bd5565b9150613b4d83613bd5565b925082821015613b6057613b5f613cfe565b5b828203905092915050565b6000613b7682613bb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c0c578082015181840152602081019050613bf1565b83811115613c1b576000848401525b50505050565b60006002820490506001821680613c3957607f821691505b60208210811415613c4d57613c4c613d5c565b5b50919050565b613c5c82613e31565b810181811067ffffffffffffffff82111715613c7b57613c7a613de9565b5b80604052505050565b6000613c8f82613bd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc257613cc1613cfe565b5b600182019050919050565b6000613cd882613bd5565b9150613ce383613bd5565b925082613cf357613cf2613d2d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4561726c7920737570706f72746572732067697665617761792068617320616c60008201527f7265616479206265656e20646f6e652021000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e27742073756d6d6f6e204567675a2074696c6c206561726c7960008201527f20737570706f727465727320616e64207465616d20686176656e27742068616460208201527f207468656972204567675a000000000000000000000000000000000000000000604082015250565b7f4e6f7420656e6f756768207265736572766564204567675a0000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f204567675a206c656674203a272800000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f54686572652073686f756c6420626520353020616472657373657320746f207260008201527f756e20746865206561726c7920737570706f7274657273206769766561776179602082015250565b6144f881613b6b565b811461450357600080fd5b50565b61450f81613b7d565b811461451a57600080fd5b50565b61452681613b89565b811461453157600080fd5b50565b61453d81613bd5565b811461454857600080fd5b5056fea264697066735822122019228154cb6c916460ee1e43fce307ad2e16c6ba988d8b2102e63f94a6db00a264736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6f415137734d415956755759714265794677574534647856557265446e70557443744d516b42794b5066502f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636dc2978a11610102578063a987c35d11610095578063e985e9c511610064578063e985e9c51461063c578063f1dda89314610679578063f2fde38b14610683578063ff06bf5f146106ac576101d8565b8063a987c35d14610594578063b88d4fde146105ab578063beb9716d146105d4578063c87b56dd146105ff576101d8565b80638da5cb5b116100d15780638da5cb5b146104ec57806395d89b41146105175780639e35826c14610542578063a22cb4651461056b576101d8565b80636dc2978a1461048457806370a082311461048e578063715018a6146104cb578063853828b6146104e2576101d8565b806319e610611161017a5780633f722476116101495780633f722476146103a457806342842e0e146103e15780634f6ccce71461040a5780636352211e14610447576101d8565b806319e61061146102ea57806323b872dd1461031557806323d989171461033e5780632f745c5914610367576101d8565b80630841c405116101b65780630841c40514610282578063095ea7b31461028c57806310098b0a146102b557806318160ddd146102bf576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612fec565b6106d5565b60405161021191906135e0565b60405180910390f35b34801561022657600080fd5b5061022f61074f565b60405161023c91906135fb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190613046565b6107e1565b6040516102799190613557565b60405180910390f35b61028a610866565b005b34801561029857600080fd5b506102b360048036038101906102ae9190612f63565b610875565b005b6102bd61098d565b005b3480156102cb57600080fd5b506102d461099c565b6040516102e1919061393d565b60405180910390f35b3480156102f657600080fd5b506102ff6109a9565b60405161030c91906135e0565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612e4d565b6109bc565b005b34801561034a57600080fd5b5061036560048036038101906103609190612f63565b610a1c565b005b34801561037357600080fd5b5061038e60048036038101906103899190612f63565b610b95565b60405161039b919061393d565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c69190612de0565b610c3a565b6040516103d891906135be565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612e4d565b610ce8565b005b34801561041657600080fd5b50610431600480360381019061042c9190613046565b610d08565b60405161043e919061393d565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613046565b610d79565b60405161047b9190613557565b60405180910390f35b61048c610e2b565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612de0565b610e3a565b6040516104c2919061393d565b60405180910390f35b3480156104d757600080fd5b506104e0610ef2565b005b6104ea610f7a565b005b3480156104f857600080fd5b5061050161112a565b60405161050e9190613557565b60405180910390f35b34801561052357600080fd5b5061052c611154565b60405161053991906135fb565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612fa3565b6111e6565b005b34801561057757600080fd5b50610592600480360381019061058d9190612f23565b61138a565b005b3480156105a057600080fd5b506105a961150b565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612ea0565b6115b3565b005b3480156105e057600080fd5b506105e9611615565b6040516105f691906135e0565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613046565b611628565b60405161063391906135fb565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612e0d565b6116cf565b60405161067091906135e0565b60405180910390f35b610681611763565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612de0565b611772565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612fa3565b61186a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610748575061074782611a1b565b5b9050919050565b60606000805461075e90613c21565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90613c21565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec82611afd565b61082b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108229061381d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108736001600e54611b69565b565b600061088082610d79565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e89061389d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610910611cf7565b73ffffffffffffffffffffffffffffffffffffffff16148061093f575061093e81610939611cf7565b6116cf565b5b61097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061377d565b60405180910390fd5b6109888383611cff565b505050565b61099a6006601054611b69565b565b6000600880549050905090565b601260019054906101000a900460ff1681565b6109cd6109c7611cf7565b82611db8565b610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906138bd565b60405180910390fd5b610a17838383611e96565b505050565b610a24611cf7565b73ffffffffffffffffffffffffffffffffffffffff16610a4261112a565b73ffffffffffffffffffffffffffffffffffffffff1614610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f9061383d565b60405180910390fd5b6000610aa261099c565b9050601260019054906101000a900460ff16610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea9061371d565b60405180910390fd5b600d548282610b029190613a56565b1115610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a9061373d565b60405180910390fd5b60005b82811015610b7657610b63848284610b5e9190613a56565b6120f2565b8080610b6e90613c84565b915050610b46565b5081600d6000828254610b899190613b37565b92505081905550505050565b6000610ba083610e3a565b8210610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd89061363d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60606000610c4783610e3a565b905060008167ffffffffffffffff811115610c6557610c64613de9565b5b604051908082528060200260200182016040528015610c935781602001602082028036833780820191505090505b50905060005b82811015610cdd57610cab8582610b95565b828281518110610cbe57610cbd613dba565b5b6020026020010181815250508080610cd590613c84565b915050610c99565b508092505050919050565b610d03838383604051806020016040528060008152506115b3565b505050565b6000610d1261099c565b8210610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906138dd565b60405180910390fd5b60088281548110610d6757610d66613dba565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e19906137dd565b60405180910390fd5b80915050919050565b610e386004600f54611b69565b565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906137bd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610efa611cf7565b73ffffffffffffffffffffffffffffffffffffffff16610f1861112a565b73ffffffffffffffffffffffffffffffffffffffff1614610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f659061383d565b60405180910390fd5b610f786000612110565b565b610f82611cf7565b73ffffffffffffffffffffffffffffffffffffffff16610fa061112a565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed9061383d565b60405180910390fd5b60006003476110059190613aac565b9050601260029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061106757600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110c757600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061112757600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461116390613c21565b80601f016020809104026020016040519081016040528092919081815260200182805461118f90613c21565b80156111dc5780601f106111b1576101008083540402835291602001916111dc565b820191906000526020600020905b8154815290600101906020018083116111bf57829003601f168201915b5050505050905090565b6111ee611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661120c61112a565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112599061383d565b60405180910390fd5b600061126c61099c565b9050601260019054906101000a900460ff16156112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b5906136bd565b60405180910390fd5b6032825114611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f99061391d565b60405180910390fd5b60005b82518110156113505761133d83828151811061132457611323613dba565b5b602002602001015182846113389190613a56565b6120f2565b808061134890613c84565b915050611305565b506001601260016101000a81548160ff0219169083151502179055506032600d600082825461137f9190613b37565b925050819055505050565b611392611cf7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f7906136fd565b60405180910390fd5b806005600061140d611cf7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ba611cf7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ff91906135e0565b60405180910390a35050565b611513611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661153161112a565b73ffffffffffffffffffffffffffffffffffffffff1614611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061383d565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6115c46115be611cf7565b83611db8565b611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906138bd565b60405180910390fd5b61160f848484846121d6565b50505050565b601260009054906101000a900460ff1681565b606061163382611afd565b611672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116699061387d565b60405180910390fd5b600061167c612232565b9050600081511161169c57604051806020016040528060008152506116c7565b806116a6846122c4565b6040516020016116b7929190613533565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611770600c601154611b69565b565b61177a611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661179861112a565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e59061383d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061367d565b60405180910390fd5b61186781612110565b50565b611872611cf7565b73ffffffffffffffffffffffffffffffffffffffff1661189061112a565b73ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd9061383d565b60405180910390fd5b60006118f061099c565b9050600082519050601260019054906101000a900460ff16611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061371d565b60405180910390fd5b600d5481836119569190613a56565b1115611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e9061373d565b60405180910390fd5b60005b818110156119e4576119d18482815181106119b8576119b7613dba565b5b602002602001015182856119cc9190613a56565b6120f2565b80806119dc90613c84565b91505061199a565b5080600d60008282546119f79190613b37565b92505081905550505050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ae657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611af65750611af582612425565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611b7361099c565b9050601260009054906101000a900460ff16611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb9061361d565b60405180910390fd5b600d54612710611bd49190613b37565b8382611be09190613a56565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c189061379d565b60405180910390fd5b8282611c2d9190613add565b341015611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c66906138fd565b60405180910390fd5b601260019054906101000a900460ff16611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb59061371d565b60405180910390fd5b60005b83811015611cf157611cde338284611cd99190613a56565b6120f2565b8080611ce990613c84565b915050611cc1565b50505050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7283610d79565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dc382611afd565b611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df99061375d565b60405180910390fd5b6000611e0d83610d79565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7c57508373ffffffffffffffffffffffffffffffffffffffff16611e64846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8d5750611e8c81856116cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb682610d79565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f039061385d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f73906136dd565b60405180910390fd5b611f8783838361248f565b611f92600082611cff565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe29190613b37565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120399190613a56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210c8282604051806020016040528060008152506125a3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e1848484611e96565b6121ed848484846125fe565b61222c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122239061365d565b60405180910390fd5b50505050565b6060600b805461224190613c21565b80601f016020809104026020016040519081016040528092919081815260200182805461226d90613c21565b80156122ba5780601f1061228f576101008083540402835291602001916122ba565b820191906000526020600020905b81548152906001019060200180831161229d57829003601f168201915b5050505050905090565b6060600082141561230c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612420565b600082905060005b6000821461233e57808061232790613c84565b915050600a826123379190613aac565b9150612314565b60008167ffffffffffffffff81111561235a57612359613de9565b5b6040519080825280601f01601f19166020018201604052801561238c5781602001600182028036833780820191505090505b5090505b60008514612419576001826123a59190613b37565b9150600a856123b49190613ccd565b60306123c09190613a56565b60f81b8183815181106123d6576123d5613dba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124129190613aac565b9450612390565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61249a838383611a16565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124dd576124d881612795565b61251c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461251b5761251a83826127de565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255f5761255a8161294b565b61259e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461259d5761259c8282612a1c565b5b5b505050565b6125ad8383612a9b565b6125ba60008484846125fe565b6125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f09061365d565b60405180910390fd5b505050565b600061261f8473ffffffffffffffffffffffffffffffffffffffff16611a03565b15612788578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612648611cf7565b8786866040518563ffffffff1660e01b815260040161266a9493929190613572565b602060405180830381600087803b15801561268457600080fd5b505af19250505080156126b557506040513d601f19601f820116820180604052508101906126b29190613019565b60015b612738573d80600081146126e5576040519150601f19603f3d011682016040523d82523d6000602084013e6126ea565b606091505b50600081511415612730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127279061365d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061278d565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127eb84610e3a565b6127f59190613b37565b90506000600760008481526020019081526020016000205490508181146128da576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061295f9190613b37565b905060006009600084815260200190815260200160002054905060006008838154811061298f5761298e613dba565b5b9060005260206000200154905080600883815481106129b1576129b0613dba565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a00576129ff613d8b565b5b6001900381819060005260206000200160009055905550505050565b6000612a2783610e3a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b02906137fd565b60405180910390fd5b612b1481611afd565b15612b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4b9061369d565b60405180910390fd5b612b606000838361248f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb09190613a56565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612c7c612c778461397d565b613958565b90508083825260208201905082856020860282011115612c9f57612c9e613e1d565b5b60005b85811015612ccf5781612cb58882612d1b565b845260208401935060208301925050600181019050612ca2565b5050509392505050565b6000612cec612ce7846139a9565b613958565b905082815260208101848484011115612d0857612d07613e22565b5b612d13848285613bdf565b509392505050565b600081359050612d2a816144ef565b92915050565b600082601f830112612d4557612d44613e18565b5b8135612d55848260208601612c69565b91505092915050565b600081359050612d6d81614506565b92915050565b600081359050612d828161451d565b92915050565b600081519050612d978161451d565b92915050565b600082601f830112612db257612db1613e18565b5b8135612dc2848260208601612cd9565b91505092915050565b600081359050612dda81614534565b92915050565b600060208284031215612df657612df5613e2c565b5b6000612e0484828501612d1b565b91505092915050565b60008060408385031215612e2457612e23613e2c565b5b6000612e3285828601612d1b565b9250506020612e4385828601612d1b565b9150509250929050565b600080600060608486031215612e6657612e65613e2c565b5b6000612e7486828701612d1b565b9350506020612e8586828701612d1b565b9250506040612e9686828701612dcb565b9150509250925092565b60008060008060808587031215612eba57612eb9613e2c565b5b6000612ec887828801612d1b565b9450506020612ed987828801612d1b565b9350506040612eea87828801612dcb565b925050606085013567ffffffffffffffff811115612f0b57612f0a613e27565b5b612f1787828801612d9d565b91505092959194509250565b60008060408385031215612f3a57612f39613e2c565b5b6000612f4885828601612d1b565b9250506020612f5985828601612d5e565b9150509250929050565b60008060408385031215612f7a57612f79613e2c565b5b6000612f8885828601612d1b565b9250506020612f9985828601612dcb565b9150509250929050565b600060208284031215612fb957612fb8613e2c565b5b600082013567ffffffffffffffff811115612fd757612fd6613e27565b5b612fe384828501612d30565b91505092915050565b60006020828403121561300257613001613e2c565b5b600061301084828501612d73565b91505092915050565b60006020828403121561302f5761302e613e2c565b5b600061303d84828501612d88565b91505092915050565b60006020828403121561305c5761305b613e2c565b5b600061306a84828501612dcb565b91505092915050565b600061307f8383613515565b60208301905092915050565b61309481613b6b565b82525050565b60006130a5826139ea565b6130af8185613a18565b93506130ba836139da565b8060005b838110156130eb5781516130d28882613073565b97506130dd83613a0b565b9250506001810190506130be565b5085935050505092915050565b61310181613b7d565b82525050565b6000613112826139f5565b61311c8185613a29565b935061312c818560208601613bee565b61313581613e31565b840191505092915050565b600061314b82613a00565b6131558185613a3a565b9350613165818560208601613bee565b61316e81613e31565b840191505092915050565b600061318482613a00565b61318e8185613a4b565b935061319e818560208601613bee565b80840191505092915050565b60006131b7600b83613a3a565b91506131c282613e42565b602082019050919050565b60006131da602b83613a3a565b91506131e582613e6b565b604082019050919050565b60006131fd603283613a3a565b915061320882613eba565b604082019050919050565b6000613220602683613a3a565b915061322b82613f09565b604082019050919050565b6000613243601c83613a3a565b915061324e82613f58565b602082019050919050565b6000613266603183613a3a565b915061327182613f81565b604082019050919050565b6000613289602483613a3a565b915061329482613fd0565b604082019050919050565b60006132ac601983613a3a565b91506132b78261401f565b602082019050919050565b60006132cf604b83613a3a565b91506132da82614048565b606082019050919050565b60006132f2601883613a3a565b91506132fd826140bd565b602082019050919050565b6000613315602c83613a3a565b9150613320826140e6565b604082019050919050565b6000613338603883613a3a565b915061334382614135565b604082019050919050565b600061335b601083613a3a565b915061336682614184565b602082019050919050565b600061337e602a83613a3a565b9150613389826141ad565b604082019050919050565b60006133a1602983613a3a565b91506133ac826141fc565b604082019050919050565b60006133c4602083613a3a565b91506133cf8261424b565b602082019050919050565b60006133e7602c83613a3a565b91506133f282614274565b604082019050919050565b600061340a602083613a3a565b9150613415826142c3565b602082019050919050565b600061342d602983613a3a565b9150613438826142ec565b604082019050919050565b6000613450602f83613a3a565b915061345b8261433b565b604082019050919050565b6000613473602183613a3a565b915061347e8261438a565b604082019050919050565b6000613496603183613a3a565b91506134a1826143d9565b604082019050919050565b60006134b9602c83613a3a565b91506134c482614428565b604082019050919050565b60006134dc601583613a3a565b91506134e782614477565b602082019050919050565b60006134ff604083613a3a565b915061350a826144a0565b604082019050919050565b61351e81613bd5565b82525050565b61352d81613bd5565b82525050565b600061353f8285613179565b915061354b8284613179565b91508190509392505050565b600060208201905061356c600083018461308b565b92915050565b6000608082019050613587600083018761308b565b613594602083018661308b565b6135a16040830185613524565b81810360608301526135b38184613107565b905095945050505050565b600060208201905081810360008301526135d8818461309a565b905092915050565b60006020820190506135f560008301846130f8565b92915050565b600060208201905081810360008301526136158184613140565b905092915050565b60006020820190508181036000830152613636816131aa565b9050919050565b60006020820190508181036000830152613656816131cd565b9050919050565b60006020820190508181036000830152613676816131f0565b9050919050565b6000602082019050818103600083015261369681613213565b9050919050565b600060208201905081810360008301526136b681613236565b9050919050565b600060208201905081810360008301526136d681613259565b9050919050565b600060208201905081810360008301526136f68161327c565b9050919050565b600060208201905081810360008301526137168161329f565b9050919050565b60006020820190508181036000830152613736816132c2565b9050919050565b60006020820190508181036000830152613756816132e5565b9050919050565b6000602082019050818103600083015261377681613308565b9050919050565b600060208201905081810360008301526137968161332b565b9050919050565b600060208201905081810360008301526137b68161334e565b9050919050565b600060208201905081810360008301526137d681613371565b9050919050565b600060208201905081810360008301526137f681613394565b9050919050565b60006020820190508181036000830152613816816133b7565b9050919050565b60006020820190508181036000830152613836816133da565b9050919050565b60006020820190508181036000830152613856816133fd565b9050919050565b6000602082019050818103600083015261387681613420565b9050919050565b6000602082019050818103600083015261389681613443565b9050919050565b600060208201905081810360008301526138b681613466565b9050919050565b600060208201905081810360008301526138d681613489565b9050919050565b600060208201905081810360008301526138f6816134ac565b9050919050565b60006020820190508181036000830152613916816134cf565b9050919050565b60006020820190508181036000830152613936816134f2565b9050919050565b60006020820190506139526000830184613524565b92915050565b6000613962613973565b905061396e8282613c53565b919050565b6000604051905090565b600067ffffffffffffffff82111561399857613997613de9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139c4576139c3613de9565b5b6139cd82613e31565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6182613bd5565b9150613a6c83613bd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa157613aa0613cfe565b5b828201905092915050565b6000613ab782613bd5565b9150613ac283613bd5565b925082613ad257613ad1613d2d565b5b828204905092915050565b6000613ae882613bd5565b9150613af383613bd5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2c57613b2b613cfe565b5b828202905092915050565b6000613b4282613bd5565b9150613b4d83613bd5565b925082821015613b6057613b5f613cfe565b5b828203905092915050565b6000613b7682613bb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c0c578082015181840152602081019050613bf1565b83811115613c1b576000848401525b50505050565b60006002820490506001821680613c3957607f821691505b60208210811415613c4d57613c4c613d5c565b5b50919050565b613c5c82613e31565b810181811067ffffffffffffffff82111715613c7b57613c7a613de9565b5b80604052505050565b6000613c8f82613bd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc257613cc1613cfe565b5b600182019050919050565b6000613cd882613bd5565b9150613ce383613bd5565b925082613cf357613cf2613d2d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4561726c7920737570706f72746572732067697665617761792068617320616c60008201527f7265616479206265656e20646f6e652021000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e27742073756d6d6f6e204567675a2074696c6c206561726c7960008201527f20737570706f727465727320616e64207465616d20686176656e27742068616460208201527f207468656972204567675a000000000000000000000000000000000000000000604082015250565b7f4e6f7420656e6f756768207265736572766564204567675a0000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f204567675a206c656674203a272800000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f54686572652073686f756c6420626520353020616472657373657320746f207260008201527f756e20746865206561726c7920737570706f7274657273206769766561776179602082015250565b6144f881613b6b565b811461450357600080fd5b50565b61450f81613b7d565b811461451a57600080fd5b50565b61452681613b89565b811461453157600080fd5b50565b61453d81613bd5565b811461454857600080fd5b5056fea264697066735822122019228154cb6c916460ee1e43fce307ad2e16c6ba988d8b2102e63f94a6db00a264736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6f415137734d415956755759714265794677574534647856557265446e70557443744d516b42794b5066502f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmZoAQ7sMAYVuWYqBeyFwWE4dxVUreDnpUtCtMQkByKPfP/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a6f415137734d41595675575971426579467757453464
Arg [3] : 7856557265446e70557443744d516b42794b5066502f00000000000000000000


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.