ETH Price: $3,669.97 (+1.04%)
 

Overview

Max Total Supply

0 nfthemes

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 nfthemes
0x66c69c342ade1ab665074e5307837db74ef4fbe9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NFThemes

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NFThemes.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract NFThemes is ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    // Constants
    address WITHDRAW_WALLET = 0x88832EA5997BD53fB6a134a7F4CfD959cc42Aded;
    address[] GIVEAWAY_ADDRESSES = [
        0x88832EA5997BD53fB6a134a7F4CfD959cc42Aded,
        0x4BDb31EbBE2eFe4213fbD327cc4ece52B65377FE,
        0x4481E4880A78B738b4fb49B4C1DBb9055DE20945,
        0x710975f0485D4E54F0Ad00085D8754e232525db5,
        0x8BA01A96A1b096D721f97E3a144f7DBB6f839Aa3,
        0x8BA01A96A1b096D721f97E3a144f7DBB6f839Aa3,
        0xD6B972013Fe0c61A0d118601BF02276f16a0a32f,
        0x44d95694319836c62CD025aB4456d95c56598D00,
        0x44d95694319836c62CD025aB4456d95c56598D00,
        0x96645F4417F901b26e206B977fBab45ed08BBcE8,
        0x96645F4417F901b26e206B977fBab45ed08BBcE8,
        0x1E75754896e6947Ecf0b94a524F889826b7E77aA,
        0x34fcafeEDb28a6EEF980f70842D0C32d85a82B8F,
        0xFD9F05ccFA4BF52EF2Fb8C6bb2Ce41e81b19b8F5,
        0x66c69C342ade1ab665074E5307837dB74Ef4fbE9,
        0xA5ece55aC3c92709c996855B7aD9ecaEFd8aDaB0,
        0x37Ac57fb4b4356784C33dDa8dd0f8b039A3f732D
    ];
    
    // Config
    mapping(address => bool) presaleAddresses;
    uint256 maxSupply = 4999;
    bool isfullMintActive = false;
    uint256 priceWei = 100000000000000000; // 0.1 ETH
    string
        private _nfthemeBaseURI = "https://gateway.pinata.cloud/ipfs/QmQdyy34Ps5YSspC2ZdqoA2PCF4aQfPxxMRi4jJ79DTku2/";

    constructor() ERC721("NFThemes", "nfthemes") {
        // Initialize presale
        presaleAddresses[0x88832EA5997BD53fB6a134a7F4CfD959cc42Aded] = true;
        presaleAddresses[0x92e3aBaF9351aa3D5D9FBC8264774e11Ab32405f] = true;
        presaleAddresses[0xff97E35d3745667e677A5e2443E7259D3c90f2b4] = true;
        presaleAddresses[0x410b1d0c8796ABD01D0E5CE8f4ed3C7D3107E835] = true;
        presaleAddresses[0x6E3aFdd4758C98eb2A5C43cb0bC4dfE81d5F11FC] = true;
        presaleAddresses[0xCba9Aa49C32e8B85a486e305c4E23DD37e76B046] = true;
        presaleAddresses[0x6E3aFdd4758C98eb2A5C43cb0bC4dfE81d5F11FC] = true;
        presaleAddresses[0xFD9F05ccFA4BF52EF2Fb8C6bb2Ce41e81b19b8F5] = true;
        presaleAddresses[0x5d6C87cAFB94CF9Efb3d23FcEb978749dd0ae87a] = true;
        presaleAddresses[0xFFE524a3715595A4586c5406586Fb9f35A926798] = true;
        presaleAddresses[0x58013a0030Bb030C4f109e38e0493A7D3D4a141c] = true;
        presaleAddresses[0xD6B972013Fe0c61A0d118601BF02276f16a0a32f] = true;
        presaleAddresses[0x8BA01A96A1b096D721f97E3a144f7DBB6f839Aa3] = true;
        presaleAddresses[0x44d95694319836c62CD025aB4456d95c56598D00] = true;
        presaleAddresses[0x96645F4417F901b26e206B977fBab45ed08BBcE8] = true;
        presaleAddresses[0x1E75754896e6947Ecf0b94a524F889826b7E77aA] = true;
        presaleAddresses[0x34fcafeEDb28a6EEF980f70842D0C32d85a82B8F] = true;
        presaleAddresses[0x66c69C342ade1ab665074E5307837dB74Ef4fbE9] = true;
        presaleAddresses[0x4BDb31EbBE2eFe4213fbD327cc4ece52B65377FE] = true;
        presaleAddresses[0x4481E4880A78B738b4fb49B4C1DBb9055DE20945] = true;
        presaleAddresses[0x710975f0485D4E54F0Ad00085D8754e232525db5] = true;
        presaleAddresses[0xD8A0Ef31cfe154871c08c1ad5AA3c732a65D863C] = true;
        presaleAddresses[0x07c6C1345283Ee03D1960ec82250aD554470D0ED] = true;
        presaleAddresses[0x8d1Fa00f78a1058d6b810FC0Aed4B7b5f6138899] = true;
        presaleAddresses[0xc09beAB678A58B3739665fe84163c44dBb63579b] = true;
        presaleAddresses[0x7b8FA8d82B5Ed1ead174D25Ed26cC49744177fF3] = true;
        presaleAddresses[0x002043f4E5a8E95d5602CC74abb23312Ed67d696] = true;
        presaleAddresses[0x3245A3D259e575bDFDb775615995D497B249B6CE] = true;
        presaleAddresses[0x37Ac57fb4b4356784C33dDa8dd0f8b039A3f732D] = true;
        presaleAddresses[0x4010a28C7e5e70EF8C399c5597995aa4adFfcFd5] = true;
        presaleAddresses[0xDb440692BB26B194e82Cb3b710Fb271A877e7409] = true;
        presaleAddresses[0x43e1f5B962F9205Bbc22c8A8E9984BD324782437] = true;
        presaleAddresses[0x6E3aFdd4758C98eb2A5C43cb0bC4dfE81d5F11FC] = true;
        presaleAddresses[0xF1889F20420C99E79cB54b63BB24b9d0d8dFc24B] = true;
        presaleAddresses[0x3B6fb4B4765B8bF8F8BE60f032fb974a7b23Bcdf] = true;
        presaleAddresses[0x27c298483b00CDdE4147ab4961A1E5e359014487] = true;
        presaleAddresses[0x95f13aFb12867BC8C84b2Ca25A10aC6Cf8805b35] = true;
        presaleAddresses[0x6E071fE733ea84710FCa3E78194a1E8Ecbf3b1e6] = true;
        presaleAddresses[0xB8331601F59bC8734efe302d7754C530C8d81df1] = true;
        presaleAddresses[0xBdA120754741620f6EEe6c0FF4021199Fc946eF9] = true;
        presaleAddresses[0xA5ece55aC3c92709c996855B7aD9ecaEFd8aDaB0] = true;
        presaleAddresses[0x6866b9b6Ee721F37B161501C56F457DE38796D0c] = true;
        presaleAddresses[0x6Efbb6AD655D8da3CBadB595A0bb3D28CCf9Ad7C] = true;
        presaleAddresses[0x8B4C4181E102BA9c6F8aBd88046ef380F01Ce093] = true;
        presaleAddresses[0x954Cfc3B0cD64C88Ea075F676262e5f93E071b9E] = true;
        presaleAddresses[0xC2287A3184E1920cd3417eCC37b3a2d7739B00AC] = true;
        presaleAddresses[0xE0f30486128c4dF8d7bBCe85358d0d86B9257C3f] = true;
        presaleAddresses[0xE31D69dCeA42B49Ae9ECb19A47d39042f3F96A7b] = true;
        presaleAddresses[0x6fb417bdB22201b31e1149a435c1D8e63fDBdc15] = true;

        // Giveaway
        for (uint i=0; i<GIVEAWAY_ADDRESSES.length; i++) {
            _mintNFTheme(GIVEAWAY_ADDRESSES[i]);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) private 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);
    }

    function _mintNFTheme(address recipient) private returns (uint256) {
        _tokenIds.increment();

        uint256 newItemId = _tokenIds.current();
        _mint(recipient, newItemId);

        string memory tokenURI = string(
            abi.encodePacked(_nfthemeBaseURI, toString(newItemId), ".json")
        );
        _setTokenURI(newItemId, tokenURI);

        return newItemId;
    }

    function mint(address recipient) public payable returns (uint256) {
        require(isfullMintActive, "Minting is not active");
        require(msg.value >= priceWei, "Not enough ETH sent; check price!");
        require(
            _tokenIds.current() < maxSupply,
            "Minting would exceed maximum supply"
        );

        return _mintNFTheme(recipient);
    }

    function presaleMint(address recipient) public payable returns (uint256) {
        require(msg.value >= priceWei, "Not enough ETH sent; check price!");
        require(
            _tokenIds.current() < maxSupply,
            "Minting would exceed maximum supply"
        );
        require(presaleAddresses[recipient], "Minter address not in presale");

        return _mintNFTheme(recipient);
    }

    function setFullMintActive(bool active) public onlyOwner {
        isfullMintActive = active;
    }

    function setPriceWei(uint256 _price) public onlyOwner {
        priceWei = _price;
    }

    // Withdraw ETH from the contract
    function withdraw(uint256 _value) public onlyOwner {
        // Call returns a boolean value indicating success or failure.
        // This is the current recommended method to use.
        (bool sent, bytes memory data) = WITHDRAW_WALLET.call{value: _value}(
            ""
        );
        require(sent, "Failed to send Ether");
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _nfthemeBaseURI = newBaseURI;
        uint256 tokenId;
        for (uint256 i=0; i<_tokenIds.current(); i++) {
            tokenId = i + 1;
            string memory tokenURI = string(
                abi.encodePacked(newBaseURI, toString(tokenId), ".json")
            );
            _setTokenURI(tokenId, tokenURI);
        }
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function addPresaleAddress(address _newPresaleAddress) public onlyOwner {
        presaleAddresses[_newPresaleAddress] = true;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 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 5 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"_newPresaleAddress","type":"address"}],"name":"addPresaleAddress","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":[{"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":"recipient","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"presaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setFullMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527388832ea5997bd53fb6a134a7f4cfd959cc42aded600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518061022001604052807388832ea5997bd53fb6a134a7f4cfd959cc42aded73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001734bdb31ebbe2efe4213fbd327cc4ece52b65377fe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001734481e4880a78b738b4fb49b4c1dbb9055de2094573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173710975f0485d4e54f0ad00085d8754e232525db573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001738ba01a96a1b096d721f97e3a144f7dbb6f839aa373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001738ba01a96a1b096d721f97e3a144f7dbb6f839aa373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d6b972013fe0c61a0d118601bf02276f16a0a32f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017344d95694319836c62cd025ab4456d95c56598d0073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017344d95694319836c62cd025ab4456d95c56598d0073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017396645f4417f901b26e206b977fbab45ed08bbce873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017396645f4417f901b26e206b977fbab45ed08bbce873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001731e75754896e6947ecf0b94a524f889826b7e77aa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017334fcafeedb28a6eef980f70842d0c32d85a82b8f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173fd9f05ccfa4bf52ef2fb8c6bb2ce41e81b19b8f573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017366c69c342ade1ab665074e5307837db74ef4fbe973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173a5ece55ac3c92709c996855b7ad9ecaefd8adab073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017337ac57fb4b4356784c33dda8dd0f8b039a3f732d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600a9060116200051b929190620021c0565b50611387600c556000600d60006101000a81548160ff02191690831515021790555067016345785d8a0000600e556040518060800160405280605181526020016200652b60519139600f90805190602001906200057a9291906200224f565b503480156200058857600080fd5b506040518060400160405280600881526020017f4e465468656d65730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f6e667468656d657300000000000000000000000000000000000000000000000081525081600090805190602001906200060d9291906200224f565b508060019080519060200190620006269291906200224f565b505050620006496200063d62001b9960201b60201c565b62001ba160201b60201c565b6001600b60007388832ea5997bd53fb6a134a7f4cfd959cc42aded73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007392e3abaf9351aa3d5d9fbc8264774e11ab32405f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073ff97e35d3745667e677a5e2443e7259d3c90f2b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073410b1d0c8796abd01d0e5ce8f4ed3c7d3107e83573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736e3afdd4758c98eb2a5c43cb0bc4dfe81d5f11fc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073cba9aa49c32e8b85a486e305c4e23dd37e76b04673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736e3afdd4758c98eb2a5c43cb0bc4dfe81d5f11fc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073fd9f05ccfa4bf52ef2fb8c6bb2ce41e81b19b8f573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000735d6c87cafb94cf9efb3d23fceb978749dd0ae87a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073ffe524a3715595a4586c5406586fb9f35a92679873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007358013a0030bb030c4f109e38e0493a7d3d4a141c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073d6b972013fe0c61a0d118601bf02276f16a0a32f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000738ba01a96a1b096d721f97e3a144f7dbb6f839aa373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007344d95694319836c62cd025ab4456d95c56598d0073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007396645f4417f901b26e206b977fbab45ed08bbce873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000731e75754896e6947ecf0b94a524f889826b7e77aa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007334fcafeedb28a6eef980f70842d0c32d85a82b8f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007366c69c342ade1ab665074e5307837db74ef4fbe973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000734bdb31ebbe2efe4213fbd327cc4ece52b65377fe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000734481e4880a78b738b4fb49b4c1dbb9055de2094573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073710975f0485d4e54f0ad00085d8754e232525db573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073d8a0ef31cfe154871c08c1ad5aa3c732a65d863c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007307c6c1345283ee03d1960ec82250ad554470d0ed73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000738d1fa00f78a1058d6b810fc0aed4b7b5f613889973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073c09beab678a58b3739665fe84163c44dbb63579b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000737b8fa8d82b5ed1ead174d25ed26cc49744177ff373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000722043f4e5a8e95d5602cc74abb23312ed67d69673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000733245a3d259e575bdfdb775615995d497b249b6ce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007337ac57fb4b4356784c33dda8dd0f8b039a3f732d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000734010a28c7e5e70ef8c399c5597995aa4adffcfd573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073db440692bb26b194e82cb3b710fb271a877e740973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007343e1f5b962f9205bbc22c8a8e9984bd32478243773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736e3afdd4758c98eb2a5c43cb0bc4dfe81d5f11fc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073f1889f20420c99e79cb54b63bb24b9d0d8dfc24b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000733b6fb4b4765b8bf8f8be60f032fb974a7b23bcdf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007327c298483b00cdde4147ab4961a1e5e35901448773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007395f13afb12867bc8c84b2ca25a10ac6cf8805b3573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736e071fe733ea84710fca3e78194a1e8ecbf3b1e673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073b8331601f59bc8734efe302d7754c530c8d81df173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073bda120754741620f6eee6c0ff4021199fc946ef973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073a5ece55ac3c92709c996855b7ad9ecaefd8adab073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736866b9b6ee721f37b161501c56f457de38796d0c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736efbb6ad655d8da3cbadb595a0bb3d28ccf9ad7c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000738b4c4181e102ba9c6f8abd88046ef380f01ce09373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073954cfc3b0cd64c88ea075f676262e5f93e071b9e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073c2287a3184e1920cd3417ecc37b3a2d7739b00ac73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073e0f30486128c4df8d7bbce85358d0d86b9257c3f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073e31d69dcea42b49ae9ecb19a47d39042f3f96a7b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000736fb417bdb22201b31e1149a435c1d8e63fdbdc1573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b600a8054905081101562001b925762001b7b600a828154811062001b44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662001c6760201b60201c565b50808062001b89906200270c565b91505062001af7565b506200281f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600062001c80600862001d0260201b6200179e1760201c565b600062001c99600862001d1860201b620017b41760201c565b905062001cad838262001d2660201b60201c565b6000600f62001cc28362001f0c60201b60201c565b60405160200162001cd5929190620024ef565b604051602081830303815290604052905062001cf88282620020ce60201b60201c565b8192505050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001d909062002568565b60405180910390fd5b62001daa816200214f60201b60201c565b1562001ded576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001de49062002524565b60405180910390fd5b62001e0160008383620021bb60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462001e539190620025c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060600082141562001f56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050620020c9565b600082905060005b6000821462001f8e57808062001f74906200270c565b915050600a8262001f86919062002623565b915062001f5e565b60008167ffffffffffffffff81111562001fd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015620020045781602001600182028036833780820191505090505b5090505b60008514620020c2576001826200202091906200265b565b9150600a856200203191906200275a565b60306200203f9190620025c6565b60f81b8183815181106200207c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85620020ba919062002623565b945062002008565b8093505050505b919050565b620020df826200214f60201b60201c565b62002121576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021189062002546565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906200214a9291906200224f565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b8280548282559060005260206000209081019282156200223c579160200282015b828111156200223b5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620021e1565b5b5090506200224b9190620022e0565b5090565b8280546200225d90620026d6565b90600052602060002090601f016020900481019282620022815760008555620022cd565b82601f106200229c57805160ff1916838001178555620022cd565b82800160010185558215620022cd579182015b82811115620022cc578251825591602001919060010190620022af565b5b509050620022dc9190620022e0565b5090565b5b80821115620022fb576000816000905550600101620022e1565b5090565b60006200230c826200259f565b620023188185620025bb565b93506200232a818560208601620026a0565b80840191505092915050565b600081546200234581620026d6565b620023518186620025bb565b945060018216600081146200236f57600181146200238157620023b8565b60ff19831686528186019350620023b8565b6200238c856200258a565b60005b83811015620023b0578154818901526001820191506020810190506200238f565b838801955050505b50505092915050565b6000620023d0601c83620025aa565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600062002412602e83620025aa565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b60006200247a602083620025aa565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000620024bc600583620025bb565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000620024fd828562002336565b91506200250b8284620022ff565b91506200251882620024ad565b91508190509392505050565b600060208201905081810360008301526200253f81620023c1565b9050919050565b60006020820190508181036000830152620025618162002403565b9050919050565b6000602082019050818103600083015262002583816200246b565b9050919050565b60008190508160005260206000209050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000620025d38262002696565b9150620025e08362002696565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562002618576200261762002792565b5b828201905092915050565b6000620026308262002696565b91506200263d8362002696565b92508262002650576200264f620027c1565b5b828204905092915050565b6000620026688262002696565b9150620026758362002696565b9250828210156200268b576200268a62002792565b5b828203905092915050565b6000819050919050565b60005b83811015620026c0578082015181840152602081019050620026a3565b83811115620026d0576000848401525b50505050565b60006002820490506001821680620026ef57607f821691505b60208210811415620027065762002705620027f0565b5b50919050565b6000620027198262002696565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200274f576200274e62002792565b5b600182019050919050565b6000620027678262002696565b9150620027748362002696565b925082620027875762002786620027c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613cfc806200282f6000396000f3fe60806040526004361061014b5760003560e01c80636f8b44b0116100b6578063b88d4fde1161006f578063b88d4fde14610484578063c1e4dfda146104ad578063c87b56dd146104d6578063e135ca7114610513578063e985e9c51461053c578063f2fde38b146105795761014b565b80636f8b44b01461038857806370a08231146103b1578063715018a6146103ee5780638da5cb5b1461040557806395d89b4114610430578063a22cb4651461045b5761014b565b80632e1a7d4d116101085780632e1a7d4d146102775780633cd221a2146102a057806342842e0e146102c957806355f804b3146102f25780636352211e1461031b5780636a627842146103585761014b565b806301ffc9a71461015057806306fdde031461018d5780630779834a146101b8578063081812fc146101e8578063095ea7b31461022557806323b872dd1461024e575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906129d1565b6105a2565b6040516101849190613554565b60405180910390f35b34801561019957600080fd5b506101a2610684565b6040516101af919061356f565b60405180910390f35b6101d260048036038101906101cd9190612801565b610716565b6040516101df9190613871565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190612a64565b610846565b60405161021c91906134ed565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061296c565b6108cb565b005b34801561025a57600080fd5b5061027560048036038101906102709190612866565b6109e3565b005b34801561028357600080fd5b5061029e60048036038101906102999190612a64565b610a43565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612801565b610b94565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190612866565b610c6b565b005b3480156102fe57600080fd5b5061031960048036038101906103149190612a23565b610c8b565b005b34801561032757600080fd5b50610342600480360381019061033d9190612a64565b610d97565b60405161034f91906134ed565b60405180910390f35b610372600480360381019061036d9190612801565b610e49565b60405161037f9190613871565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190612a64565b610f3c565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612801565b610fc2565b6040516103e59190613871565b60405180910390f35b3480156103fa57600080fd5b5061040361107a565b005b34801561041157600080fd5b5061041a611102565b60405161042791906134ed565b60405180910390f35b34801561043c57600080fd5b5061044561112c565b604051610452919061356f565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612930565b6111be565b005b34801561049057600080fd5b506104ab60048036038101906104a691906128b5565b61133f565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612a64565b6113a1565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190612a64565b611427565b60405161050a919061356f565b60405180910390f35b34801561051f57600080fd5b5061053a600480360381019061053591906129a8565b611579565b005b34801561054857600080fd5b50610563600480360381019061055e919061282a565b611612565b6040516105709190613554565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190612801565b6116a6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067d575061067c826117c2565b5b9050919050565b60606000805461069390613af1565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf90613af1565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000600e5434101561075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075490613851565b60405180910390fd5b600c5461076a60086117b4565b106107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906135b1565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90613711565b60405180910390fd5b61083f8261182c565b9050919050565b600061085182611893565b610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790613771565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d682610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90613811565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109666118ff565b73ffffffffffffffffffffffffffffffffffffffff16148061099557506109948161098f6118ff565b611612565b5b6109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb90613691565b60405180910390fd5b6109de8383611907565b505050565b6109f46109ee6118ff565b826119c0565b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a90613831565b60405180910390fd5b610a3e838383611a9e565b505050565b610a4b6118ff565b73ffffffffffffffffffffffffffffffffffffffff16610a69611102565b73ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690613791565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610b08906134d8565b60006040518083038185875af1925050503d8060008114610b45576040519150601f19603f3d011682016040523d82523d6000602084013e610b4a565b606091505b509150915081610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690613611565b60405180910390fd5b505050565b610b9c6118ff565b73ffffffffffffffffffffffffffffffffffffffff16610bba611102565b73ffffffffffffffffffffffffffffffffffffffff1614610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0790613791565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c868383836040518060200160405280600081525061133f565b505050565b610c936118ff565b73ffffffffffffffffffffffffffffffffffffffff16610cb1611102565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613791565b60405180910390fd5b80600f9080519060200190610d1d929190612625565b50600080600090505b610d3060086117b4565b811015610d9257600181610d449190613980565b9150600083610d5284611cfa565b604051602001610d6392919061347a565b6040516020818303038152906040529050610d7e8382611ea7565b508080610d8a90613b23565b915050610d26565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906136d1565b60405180910390fd5b80915050919050565b6000600d60009054906101000a900460ff16610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906137b1565b60405180910390fd5b600e54341015610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613851565b60405180910390fd5b600c54610eec60086117b4565b10610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906135b1565b60405180910390fd5b610f358261182c565b9050919050565b610f446118ff565b73ffffffffffffffffffffffffffffffffffffffff16610f62611102565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613791565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906136b1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110826118ff565b73ffffffffffffffffffffffffffffffffffffffff166110a0611102565b73ffffffffffffffffffffffffffffffffffffffff16146110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613791565b60405180910390fd5b6111006000611f1b565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461113b90613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461116790613af1565b80156111b45780601f10611189576101008083540402835291602001916111b4565b820191906000526020600020905b81548152906001019060200180831161119757829003601f168201915b5050505050905090565b6111c66118ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613651565b60405180910390fd5b80600560006112416118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112ee6118ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113339190613554565b60405180910390a35050565b61135061134a6118ff565b836119c0565b61138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613831565b60405180910390fd5b61139b84848484611fe1565b50505050565b6113a96118ff565b73ffffffffffffffffffffffffffffffffffffffff166113c7611102565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490613791565b60405180910390fd5b80600e8190555050565b606061143282611893565b611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613751565b60405180910390fd5b600060066000848152602001908152602001600020805461149190613af1565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd90613af1565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b50505050509050600061151b61203d565b9050600081511415611531578192505050611574565b60008251111561156657808260405160200161154e929190613456565b60405160208183030381529060405292505050611574565b61156f84612054565b925050505b919050565b6115816118ff565b73ffffffffffffffffffffffffffffffffffffffff1661159f611102565b73ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613791565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ae6118ff565b73ffffffffffffffffffffffffffffffffffffffff166116cc611102565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613791565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611792576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611789906135d1565b60405180910390fd5b61179b81611f1b565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000611838600861179e565b600061184460086117b4565b905061185083826120fb565b6000600f61185d83611cfa565b60405160200161186e9291906134a9565b60405160208183030381529060405290506118898282611ea7565b8192505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197a83610d97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119cb82611893565b611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190613671565b60405180910390fd5b6000611a1583610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a8457508373ffffffffffffffffffffffffffffffffffffffff16611a6c84610846565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a955750611a948185611612565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611abe82610d97565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906137d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613631565b60405180910390fd5b611b8f8383836122c9565b611b9a600082611907565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bea9190613a07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c419190613980565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415611d42576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ea2565b600082905060005b60008214611d74578080611d5d90613b23565b915050600a82611d6d91906139d6565b9150611d4a565b60008167ffffffffffffffff811115611db6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611de85781602001600182028036833780820191505090505b5090505b60008514611e9b57600182611e019190613a07565b9150600a85611e109190613b6c565b6030611e1c9190613980565b60f81b818381518110611e58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e9491906139d6565b9450611dec565b8093505050505b919050565b611eb082611893565b611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906136f1565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611f16929190612625565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fec848484611a9e565b611ff8848484846122ce565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613591565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061205f82611893565b61209e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612095906137f1565b60405180910390fd5b60006120a861203d565b905060008151116120c857604051806020016040528060008152506120f3565b806120d284612465565b6040516020016120e3929190613456565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290613731565b60405180910390fd5b61217481611893565b156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906135f1565b60405180910390fd5b6121c0600083836122c9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122109190613980565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006122ef8473ffffffffffffffffffffffffffffffffffffffff16612612565b15612458578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123186118ff565b8786866040518563ffffffff1660e01b815260040161233a9493929190613508565b602060405180830381600087803b15801561235457600080fd5b505af192505050801561238557506040513d601f19601f8201168201806040525081019061238291906129fa565b60015b612408573d80600081146123b5576040519150601f19603f3d011682016040523d82523d6000602084013e6123ba565b606091505b50600081511415612400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f790613591565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061245d565b600190505b949350505050565b606060008214156124ad576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260d565b600082905060005b600082146124df5780806124c890613b23565b915050600a826124d891906139d6565b91506124b5565b60008167ffffffffffffffff811115612521577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125535781602001600182028036833780820191505090505b5090505b600085146126065760018261256c9190613a07565b9150600a8561257b9190613b6c565b60306125879190613980565b60f81b8183815181106125c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ff91906139d6565b9450612557565b8093505050505b919050565b600080823b905060008111915050919050565b82805461263190613af1565b90600052602060002090601f016020900481019282612653576000855561269a565b82601f1061266c57805160ff191683800117855561269a565b8280016001018555821561269a579182015b8281111561269957825182559160200191906001019061267e565b5b5090506126a791906126ab565b5090565b5b808211156126c45760008160009055506001016126ac565b5090565b60006126db6126d6846138bd565b61388c565b9050828152602081018484840111156126f357600080fd5b6126fe848285613aaf565b509392505050565b6000612719612714846138ed565b61388c565b90508281526020810184848401111561273157600080fd5b61273c848285613aaf565b509392505050565b60008135905061275381613c6a565b92915050565b60008135905061276881613c81565b92915050565b60008135905061277d81613c98565b92915050565b60008151905061279281613c98565b92915050565b600082601f8301126127a957600080fd5b81356127b98482602086016126c8565b91505092915050565b600082601f8301126127d357600080fd5b81356127e3848260208601612706565b91505092915050565b6000813590506127fb81613caf565b92915050565b60006020828403121561281357600080fd5b600061282184828501612744565b91505092915050565b6000806040838503121561283d57600080fd5b600061284b85828601612744565b925050602061285c85828601612744565b9150509250929050565b60008060006060848603121561287b57600080fd5b600061288986828701612744565b935050602061289a86828701612744565b92505060406128ab868287016127ec565b9150509250925092565b600080600080608085870312156128cb57600080fd5b60006128d987828801612744565b94505060206128ea87828801612744565b93505060406128fb878288016127ec565b925050606085013567ffffffffffffffff81111561291857600080fd5b61292487828801612798565b91505092959194509250565b6000806040838503121561294357600080fd5b600061295185828601612744565b925050602061296285828601612759565b9150509250929050565b6000806040838503121561297f57600080fd5b600061298d85828601612744565b925050602061299e858286016127ec565b9150509250929050565b6000602082840312156129ba57600080fd5b60006129c884828501612759565b91505092915050565b6000602082840312156129e357600080fd5b60006129f18482850161276e565b91505092915050565b600060208284031215612a0c57600080fd5b6000612a1a84828501612783565b91505092915050565b600060208284031215612a3557600080fd5b600082013567ffffffffffffffff811115612a4f57600080fd5b612a5b848285016127c2565b91505092915050565b600060208284031215612a7657600080fd5b6000612a84848285016127ec565b91505092915050565b612a9681613a3b565b82525050565b612aa581613a4d565b82525050565b6000612ab682613932565b612ac08185613948565b9350612ad0818560208601613abe565b612ad981613c59565b840191505092915050565b6000612aef8261393d565b612af98185613964565b9350612b09818560208601613abe565b612b1281613c59565b840191505092915050565b6000612b288261393d565b612b328185613975565b9350612b42818560208601613abe565b80840191505092915050565b60008154612b5b81613af1565b612b658186613975565b94506001821660008114612b805760018114612b9157612bc4565b60ff19831686528186019350612bc4565b612b9a8561391d565b60005b83811015612bbc57815481890152600182019150602081019050612b9d565b838801955050505b50505092915050565b6000612bda603283613964565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612c40602383613964565b91507f4d696e74696e6720776f756c6420657863656564206d6178696d756d2073757060008301527f706c7900000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ca6602683613964565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d0c601c83613964565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612d4c601483613964565b91507f4661696c656420746f2073656e642045746865720000000000000000000000006000830152602082019050919050565b6000612d8c602483613964565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612df2601983613964565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612e32602c83613964565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612e98603883613964565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612efe602a83613964565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f64602983613964565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fca602e83613964565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613030601d83613964565b91507f4d696e7465722061646472657373206e6f7420696e2070726573616c650000006000830152602082019050919050565b6000613070602083613964565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006130b0603183613964565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613116602c83613964565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061317c600583613975565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006131bc602083613964565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006131fc601583613964565b91507f4d696e74696e67206973206e6f742061637469766500000000000000000000006000830152602082019050919050565b600061323c602983613964565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132a2602f83613964565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613308602183613964565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061336e600083613959565b9150600082019050919050565b6000613388603183613964565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006133ee602183613964565b91507f4e6f7420656e6f756768204554482073656e743b20636865636b20707269636560008301527f21000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61345081613aa5565b82525050565b60006134628285612b1d565b915061346e8284612b1d565b91508190509392505050565b60006134868285612b1d565b91506134928284612b1d565b915061349d8261316f565b91508190509392505050565b60006134b58285612b4e565b91506134c18284612b1d565b91506134cc8261316f565b91508190509392505050565b60006134e382613361565b9150819050919050565b60006020820190506135026000830184612a8d565b92915050565b600060808201905061351d6000830187612a8d565b61352a6020830186612a8d565b6135376040830185613447565b81810360608301526135498184612aab565b905095945050505050565b60006020820190506135696000830184612a9c565b92915050565b600060208201905081810360008301526135898184612ae4565b905092915050565b600060208201905081810360008301526135aa81612bcd565b9050919050565b600060208201905081810360008301526135ca81612c33565b9050919050565b600060208201905081810360008301526135ea81612c99565b9050919050565b6000602082019050818103600083015261360a81612cff565b9050919050565b6000602082019050818103600083015261362a81612d3f565b9050919050565b6000602082019050818103600083015261364a81612d7f565b9050919050565b6000602082019050818103600083015261366a81612de5565b9050919050565b6000602082019050818103600083015261368a81612e25565b9050919050565b600060208201905081810360008301526136aa81612e8b565b9050919050565b600060208201905081810360008301526136ca81612ef1565b9050919050565b600060208201905081810360008301526136ea81612f57565b9050919050565b6000602082019050818103600083015261370a81612fbd565b9050919050565b6000602082019050818103600083015261372a81613023565b9050919050565b6000602082019050818103600083015261374a81613063565b9050919050565b6000602082019050818103600083015261376a816130a3565b9050919050565b6000602082019050818103600083015261378a81613109565b9050919050565b600060208201905081810360008301526137aa816131af565b9050919050565b600060208201905081810360008301526137ca816131ef565b9050919050565b600060208201905081810360008301526137ea8161322f565b9050919050565b6000602082019050818103600083015261380a81613295565b9050919050565b6000602082019050818103600083015261382a816132fb565b9050919050565b6000602082019050818103600083015261384a8161337b565b9050919050565b6000602082019050818103600083015261386a816133e1565b9050919050565b60006020820190506138866000830184613447565b92915050565b6000604051905081810181811067ffffffffffffffff821117156138b3576138b2613c2a565b5b8060405250919050565b600067ffffffffffffffff8211156138d8576138d7613c2a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561390857613907613c2a565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061398b82613aa5565b915061399683613aa5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139cb576139ca613b9d565b5b828201905092915050565b60006139e182613aa5565b91506139ec83613aa5565b9250826139fc576139fb613bcc565b5b828204905092915050565b6000613a1282613aa5565b9150613a1d83613aa5565b925082821015613a3057613a2f613b9d565b5b828203905092915050565b6000613a4682613a85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613adc578082015181840152602081019050613ac1565b83811115613aeb576000848401525b50505050565b60006002820490506001821680613b0957607f821691505b60208210811415613b1d57613b1c613bfb565b5b50919050565b6000613b2e82613aa5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b6157613b60613b9d565b5b600182019050919050565b6000613b7782613aa5565b9150613b8283613aa5565b925082613b9257613b91613bcc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613c7381613a3b565b8114613c7e57600080fd5b50565b613c8a81613a4d565b8114613c9557600080fd5b50565b613ca181613a59565b8114613cac57600080fd5b50565b613cb881613aa5565b8114613cc357600080fd5b5056fea264697066735822122088930334c35fdbda1c5591313949e5334e5bbb48fc13d6fc6325f3d809092e8364736f6c6343000800003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5164797933345073355953737043325a64716f4132504346346151665078784d5269346a4a373944546b75322f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636f8b44b0116100b6578063b88d4fde1161006f578063b88d4fde14610484578063c1e4dfda146104ad578063c87b56dd146104d6578063e135ca7114610513578063e985e9c51461053c578063f2fde38b146105795761014b565b80636f8b44b01461038857806370a08231146103b1578063715018a6146103ee5780638da5cb5b1461040557806395d89b4114610430578063a22cb4651461045b5761014b565b80632e1a7d4d116101085780632e1a7d4d146102775780633cd221a2146102a057806342842e0e146102c957806355f804b3146102f25780636352211e1461031b5780636a627842146103585761014b565b806301ffc9a71461015057806306fdde031461018d5780630779834a146101b8578063081812fc146101e8578063095ea7b31461022557806323b872dd1461024e575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906129d1565b6105a2565b6040516101849190613554565b60405180910390f35b34801561019957600080fd5b506101a2610684565b6040516101af919061356f565b60405180910390f35b6101d260048036038101906101cd9190612801565b610716565b6040516101df9190613871565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190612a64565b610846565b60405161021c91906134ed565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061296c565b6108cb565b005b34801561025a57600080fd5b5061027560048036038101906102709190612866565b6109e3565b005b34801561028357600080fd5b5061029e60048036038101906102999190612a64565b610a43565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612801565b610b94565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190612866565b610c6b565b005b3480156102fe57600080fd5b5061031960048036038101906103149190612a23565b610c8b565b005b34801561032757600080fd5b50610342600480360381019061033d9190612a64565b610d97565b60405161034f91906134ed565b60405180910390f35b610372600480360381019061036d9190612801565b610e49565b60405161037f9190613871565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190612a64565b610f3c565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612801565b610fc2565b6040516103e59190613871565b60405180910390f35b3480156103fa57600080fd5b5061040361107a565b005b34801561041157600080fd5b5061041a611102565b60405161042791906134ed565b60405180910390f35b34801561043c57600080fd5b5061044561112c565b604051610452919061356f565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612930565b6111be565b005b34801561049057600080fd5b506104ab60048036038101906104a691906128b5565b61133f565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612a64565b6113a1565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190612a64565b611427565b60405161050a919061356f565b60405180910390f35b34801561051f57600080fd5b5061053a600480360381019061053591906129a8565b611579565b005b34801561054857600080fd5b50610563600480360381019061055e919061282a565b611612565b6040516105709190613554565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190612801565b6116a6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061067d575061067c826117c2565b5b9050919050565b60606000805461069390613af1565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf90613af1565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000600e5434101561075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075490613851565b60405180910390fd5b600c5461076a60086117b4565b106107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906135b1565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90613711565b60405180910390fd5b61083f8261182c565b9050919050565b600061085182611893565b610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790613771565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d682610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90613811565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109666118ff565b73ffffffffffffffffffffffffffffffffffffffff16148061099557506109948161098f6118ff565b611612565b5b6109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb90613691565b60405180910390fd5b6109de8383611907565b505050565b6109f46109ee6118ff565b826119c0565b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a90613831565b60405180910390fd5b610a3e838383611a9e565b505050565b610a4b6118ff565b73ffffffffffffffffffffffffffffffffffffffff16610a69611102565b73ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690613791565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610b08906134d8565b60006040518083038185875af1925050503d8060008114610b45576040519150601f19603f3d011682016040523d82523d6000602084013e610b4a565b606091505b509150915081610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690613611565b60405180910390fd5b505050565b610b9c6118ff565b73ffffffffffffffffffffffffffffffffffffffff16610bba611102565b73ffffffffffffffffffffffffffffffffffffffff1614610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0790613791565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c868383836040518060200160405280600081525061133f565b505050565b610c936118ff565b73ffffffffffffffffffffffffffffffffffffffff16610cb1611102565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe90613791565b60405180910390fd5b80600f9080519060200190610d1d929190612625565b50600080600090505b610d3060086117b4565b811015610d9257600181610d449190613980565b9150600083610d5284611cfa565b604051602001610d6392919061347a565b6040516020818303038152906040529050610d7e8382611ea7565b508080610d8a90613b23565b915050610d26565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906136d1565b60405180910390fd5b80915050919050565b6000600d60009054906101000a900460ff16610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906137b1565b60405180910390fd5b600e54341015610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613851565b60405180910390fd5b600c54610eec60086117b4565b10610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f23906135b1565b60405180910390fd5b610f358261182c565b9050919050565b610f446118ff565b73ffffffffffffffffffffffffffffffffffffffff16610f62611102565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613791565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906136b1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110826118ff565b73ffffffffffffffffffffffffffffffffffffffff166110a0611102565b73ffffffffffffffffffffffffffffffffffffffff16146110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613791565b60405180910390fd5b6111006000611f1b565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461113b90613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461116790613af1565b80156111b45780601f10611189576101008083540402835291602001916111b4565b820191906000526020600020905b81548152906001019060200180831161119757829003601f168201915b5050505050905090565b6111c66118ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613651565b60405180910390fd5b80600560006112416118ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112ee6118ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113339190613554565b60405180910390a35050565b61135061134a6118ff565b836119c0565b61138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613831565b60405180910390fd5b61139b84848484611fe1565b50505050565b6113a96118ff565b73ffffffffffffffffffffffffffffffffffffffff166113c7611102565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490613791565b60405180910390fd5b80600e8190555050565b606061143282611893565b611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613751565b60405180910390fd5b600060066000848152602001908152602001600020805461149190613af1565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd90613af1565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b50505050509050600061151b61203d565b9050600081511415611531578192505050611574565b60008251111561156657808260405160200161154e929190613456565b60405160208183030381529060405292505050611574565b61156f84612054565b925050505b919050565b6115816118ff565b73ffffffffffffffffffffffffffffffffffffffff1661159f611102565b73ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613791565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116ae6118ff565b73ffffffffffffffffffffffffffffffffffffffff166116cc611102565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613791565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611792576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611789906135d1565b60405180910390fd5b61179b81611f1b565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000611838600861179e565b600061184460086117b4565b905061185083826120fb565b6000600f61185d83611cfa565b60405160200161186e9291906134a9565b60405160208183030381529060405290506118898282611ea7565b8192505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197a83610d97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119cb82611893565b611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190613671565b60405180910390fd5b6000611a1583610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a8457508373ffffffffffffffffffffffffffffffffffffffff16611a6c84610846565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a955750611a948185611612565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611abe82610d97565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906137d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613631565b60405180910390fd5b611b8f8383836122c9565b611b9a600082611907565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bea9190613a07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c419190613980565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415611d42576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ea2565b600082905060005b60008214611d74578080611d5d90613b23565b915050600a82611d6d91906139d6565b9150611d4a565b60008167ffffffffffffffff811115611db6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611de85781602001600182028036833780820191505090505b5090505b60008514611e9b57600182611e019190613a07565b9150600a85611e109190613b6c565b6030611e1c9190613980565b60f81b818381518110611e58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e9491906139d6565b9450611dec565b8093505050505b919050565b611eb082611893565b611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906136f1565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611f16929190612625565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fec848484611a9e565b611ff8848484846122ce565b612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613591565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061205f82611893565b61209e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612095906137f1565b60405180910390fd5b60006120a861203d565b905060008151116120c857604051806020016040528060008152506120f3565b806120d284612465565b6040516020016120e3929190613456565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290613731565b60405180910390fd5b61217481611893565b156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906135f1565b60405180910390fd5b6121c0600083836122c9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122109190613980565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006122ef8473ffffffffffffffffffffffffffffffffffffffff16612612565b15612458578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123186118ff565b8786866040518563ffffffff1660e01b815260040161233a9493929190613508565b602060405180830381600087803b15801561235457600080fd5b505af192505050801561238557506040513d601f19601f8201168201806040525081019061238291906129fa565b60015b612408573d80600081146123b5576040519150601f19603f3d011682016040523d82523d6000602084013e6123ba565b606091505b50600081511415612400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f790613591565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061245d565b600190505b949350505050565b606060008214156124ad576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260d565b600082905060005b600082146124df5780806124c890613b23565b915050600a826124d891906139d6565b91506124b5565b60008167ffffffffffffffff811115612521577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125535781602001600182028036833780820191505090505b5090505b600085146126065760018261256c9190613a07565b9150600a8561257b9190613b6c565b60306125879190613980565b60f81b8183815181106125c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ff91906139d6565b9450612557565b8093505050505b919050565b600080823b905060008111915050919050565b82805461263190613af1565b90600052602060002090601f016020900481019282612653576000855561269a565b82601f1061266c57805160ff191683800117855561269a565b8280016001018555821561269a579182015b8281111561269957825182559160200191906001019061267e565b5b5090506126a791906126ab565b5090565b5b808211156126c45760008160009055506001016126ac565b5090565b60006126db6126d6846138bd565b61388c565b9050828152602081018484840111156126f357600080fd5b6126fe848285613aaf565b509392505050565b6000612719612714846138ed565b61388c565b90508281526020810184848401111561273157600080fd5b61273c848285613aaf565b509392505050565b60008135905061275381613c6a565b92915050565b60008135905061276881613c81565b92915050565b60008135905061277d81613c98565b92915050565b60008151905061279281613c98565b92915050565b600082601f8301126127a957600080fd5b81356127b98482602086016126c8565b91505092915050565b600082601f8301126127d357600080fd5b81356127e3848260208601612706565b91505092915050565b6000813590506127fb81613caf565b92915050565b60006020828403121561281357600080fd5b600061282184828501612744565b91505092915050565b6000806040838503121561283d57600080fd5b600061284b85828601612744565b925050602061285c85828601612744565b9150509250929050565b60008060006060848603121561287b57600080fd5b600061288986828701612744565b935050602061289a86828701612744565b92505060406128ab868287016127ec565b9150509250925092565b600080600080608085870312156128cb57600080fd5b60006128d987828801612744565b94505060206128ea87828801612744565b93505060406128fb878288016127ec565b925050606085013567ffffffffffffffff81111561291857600080fd5b61292487828801612798565b91505092959194509250565b6000806040838503121561294357600080fd5b600061295185828601612744565b925050602061296285828601612759565b9150509250929050565b6000806040838503121561297f57600080fd5b600061298d85828601612744565b925050602061299e858286016127ec565b9150509250929050565b6000602082840312156129ba57600080fd5b60006129c884828501612759565b91505092915050565b6000602082840312156129e357600080fd5b60006129f18482850161276e565b91505092915050565b600060208284031215612a0c57600080fd5b6000612a1a84828501612783565b91505092915050565b600060208284031215612a3557600080fd5b600082013567ffffffffffffffff811115612a4f57600080fd5b612a5b848285016127c2565b91505092915050565b600060208284031215612a7657600080fd5b6000612a84848285016127ec565b91505092915050565b612a9681613a3b565b82525050565b612aa581613a4d565b82525050565b6000612ab682613932565b612ac08185613948565b9350612ad0818560208601613abe565b612ad981613c59565b840191505092915050565b6000612aef8261393d565b612af98185613964565b9350612b09818560208601613abe565b612b1281613c59565b840191505092915050565b6000612b288261393d565b612b328185613975565b9350612b42818560208601613abe565b80840191505092915050565b60008154612b5b81613af1565b612b658186613975565b94506001821660008114612b805760018114612b9157612bc4565b60ff19831686528186019350612bc4565b612b9a8561391d565b60005b83811015612bbc57815481890152600182019150602081019050612b9d565b838801955050505b50505092915050565b6000612bda603283613964565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612c40602383613964565b91507f4d696e74696e6720776f756c6420657863656564206d6178696d756d2073757060008301527f706c7900000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ca6602683613964565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d0c601c83613964565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612d4c601483613964565b91507f4661696c656420746f2073656e642045746865720000000000000000000000006000830152602082019050919050565b6000612d8c602483613964565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612df2601983613964565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612e32602c83613964565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612e98603883613964565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612efe602a83613964565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f64602983613964565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fca602e83613964565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613030601d83613964565b91507f4d696e7465722061646472657373206e6f7420696e2070726573616c650000006000830152602082019050919050565b6000613070602083613964565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006130b0603183613964565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613116602c83613964565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061317c600583613975565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006131bc602083613964565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006131fc601583613964565b91507f4d696e74696e67206973206e6f742061637469766500000000000000000000006000830152602082019050919050565b600061323c602983613964565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132a2602f83613964565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613308602183613964565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061336e600083613959565b9150600082019050919050565b6000613388603183613964565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006133ee602183613964565b91507f4e6f7420656e6f756768204554482073656e743b20636865636b20707269636560008301527f21000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61345081613aa5565b82525050565b60006134628285612b1d565b915061346e8284612b1d565b91508190509392505050565b60006134868285612b1d565b91506134928284612b1d565b915061349d8261316f565b91508190509392505050565b60006134b58285612b4e565b91506134c18284612b1d565b91506134cc8261316f565b91508190509392505050565b60006134e382613361565b9150819050919050565b60006020820190506135026000830184612a8d565b92915050565b600060808201905061351d6000830187612a8d565b61352a6020830186612a8d565b6135376040830185613447565b81810360608301526135498184612aab565b905095945050505050565b60006020820190506135696000830184612a9c565b92915050565b600060208201905081810360008301526135898184612ae4565b905092915050565b600060208201905081810360008301526135aa81612bcd565b9050919050565b600060208201905081810360008301526135ca81612c33565b9050919050565b600060208201905081810360008301526135ea81612c99565b9050919050565b6000602082019050818103600083015261360a81612cff565b9050919050565b6000602082019050818103600083015261362a81612d3f565b9050919050565b6000602082019050818103600083015261364a81612d7f565b9050919050565b6000602082019050818103600083015261366a81612de5565b9050919050565b6000602082019050818103600083015261368a81612e25565b9050919050565b600060208201905081810360008301526136aa81612e8b565b9050919050565b600060208201905081810360008301526136ca81612ef1565b9050919050565b600060208201905081810360008301526136ea81612f57565b9050919050565b6000602082019050818103600083015261370a81612fbd565b9050919050565b6000602082019050818103600083015261372a81613023565b9050919050565b6000602082019050818103600083015261374a81613063565b9050919050565b6000602082019050818103600083015261376a816130a3565b9050919050565b6000602082019050818103600083015261378a81613109565b9050919050565b600060208201905081810360008301526137aa816131af565b9050919050565b600060208201905081810360008301526137ca816131ef565b9050919050565b600060208201905081810360008301526137ea8161322f565b9050919050565b6000602082019050818103600083015261380a81613295565b9050919050565b6000602082019050818103600083015261382a816132fb565b9050919050565b6000602082019050818103600083015261384a8161337b565b9050919050565b6000602082019050818103600083015261386a816133e1565b9050919050565b60006020820190506138866000830184613447565b92915050565b6000604051905081810181811067ffffffffffffffff821117156138b3576138b2613c2a565b5b8060405250919050565b600067ffffffffffffffff8211156138d8576138d7613c2a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561390857613907613c2a565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061398b82613aa5565b915061399683613aa5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139cb576139ca613b9d565b5b828201905092915050565b60006139e182613aa5565b91506139ec83613aa5565b9250826139fc576139fb613bcc565b5b828204905092915050565b6000613a1282613aa5565b9150613a1d83613aa5565b925082821015613a3057613a2f613b9d565b5b828203905092915050565b6000613a4682613a85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613adc578082015181840152602081019050613ac1565b83811115613aeb576000848401525b50505050565b60006002820490506001821680613b0957607f821691505b60208210811415613b1d57613b1c613bfb565b5b50919050565b6000613b2e82613aa5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b6157613b60613b9d565b5b600182019050919050565b6000613b7782613aa5565b9150613b8283613aa5565b925082613b9257613b91613bcc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613c7381613a3b565b8114613c7e57600080fd5b50565b613c8a81613a4d565b8114613c9557600080fd5b50565b613ca181613a59565b8114613cac57600080fd5b50565b613cb881613aa5565b8114613cc357600080fd5b5056fea264697066735822122088930334c35fdbda1c5591313949e5334e5bbb48fc13d6fc6325f3d809092e8364736f6c63430008000033

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

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