ETH Price: $3,475.57 (+5.98%)
Gas: 7 Gwei

Token

Evil Cookies (EVC)
 

Overview

Max Total Supply

0 EVC

Holders

923

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EVC
0x5cbadd801da068a03aa7097ad8fb78194354a203
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:
EvilCookies

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@@@@@        @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@@            @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@                @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@                    (@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@                           @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@                                  (@@@@@ (@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@                                               @@@@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@@                                                  (@@@@@@@@@@@@@@@@@@@@@@@@@\\
//@@@                                                         @@@@@@@@@@@@      @@\\
//@@                     @@@@@                                                   @\\
//@@                   @@@@@@@@@                                                  \\
//@@                   @@@@@@@@@@@                                                \\
//@@       @@@@@@      @@@@@@@@@@@@@@                                 @@@@@@      \\
//@      @@@@@@@@@     @@@@@@@@@@@@@@@@                             @@@@@@@@@     \\
//@      @@@@@@@@@       @@@@@@@@@@@@@           @@  @@@@@@@@@      @@@@@@@@@     \\
//@       (@@@@@@            (@@@            @@@@@@@@@@@@@@@@@@      (@@@@@@      \\
//@                                           @@@@@@@@@@@@@@@@@                   \\
//@                                           (@@@@@@@@@@@@@@@                    \\
//@@                                             @@@@@@@@@@@                     @\\
//@@@                                                                            @\\
//@@@@                                                                          @@\\
//@@@@@@                                                                      @@@@\\
//@@@@@@@@                                                                  @@@@@@\\
//@@@@@@@@@                                 @@@@@@@                       @@@@@@@@\\
//@@@@@@@@@@@                             @@@@@@@@@@                    @@@@@@@@@@\\
//@@@@@@@@@@@@(                            @@@@@@@@@                  @@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@                           @@@@@@                  @@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@@@@@                                            @@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@@@@@@@@@@@                                 @@@@@@@@@@@@@@@@@@@@@@\\
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\\

pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract EvilCookies is ERC721, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using Counters for Counters.Counter;

    // Used by the GODS to store their gold. GODS who love earhtly goods..kinda pathetic.
    address public constant GODS_TREASURY = 0x7d38046872bCAE2258327b2df3EE1Ec6Db0B7eab;
    string public baseURI;

    constructor(string memory _name, string memory _symbol)
        ERC721(_name, _symbol)
    {}

    // Useful constants
    uint256 public constant ARMY_SIZE = 3333;
    uint256 public constant FREE_RECRUIT_MAX = 1111;
    uint256 public constant EARLY_RECRUIT_MAX = 1111;
    uint256 public constant LAST_CALL_MAX = 1111;

    Counters.Counter public totalArmy;

    // And useful config
    mapping(address => bool) public freeRecruited;
    uint256 public earlyPrice = 0.06 ether;
    uint256 public lastCallPrice = 0.11 ether;
    bool public recruitmentEnabled = false;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Direct mint from contract not allowed");
        _;
    }

    modifier recruitIsEnabled() {
        require(recruitmentEnabled, "Recruitment is not enabled");
        _;
    }

    function getRemainingSupply() public view returns (uint256) {
        unchecked { return ARMY_SIZE - totalArmy.current(); }
    }

    // Will anyone see it?
    function whoAreYou() public pure returns (string memory) {
        return "The OVERGOD is watching you. Or maybe not. The OVERGOD doesn't give a s*it. Not at all. Not even cares about me..";
    }

    // Please, stop it before it's too late
    function getRecruitmentState() public view returns (uint256) {
        unchecked {
            if (totalArmy.current() < FREE_RECRUIT_MAX)
                return 0; 
            if (totalArmy.current() < FREE_RECRUIT_MAX+EARLY_RECRUIT_MAX)
                return 1;
            if (totalArmy.current() < ARMY_SIZE)
                return 2;

            return 3; 
        }
    }

    // Don't you dare to mint them.
    function freeRecruit()
        external
        nonReentrant 
        callerIsUser 
        recruitIsEnabled
    {
        require(totalArmy.current() < FREE_RECRUIT_MAX, "Exceeding free recruitment supply");
        // Come on, don't be greedy! You don't really want to mint them after all.
        require(!freeRecruited[msg.sender], "A single demon can't recruit more than one free Cookie");

        totalArmy.increment();
        _mint(msg.sender, totalArmy.current());

        unchecked { freeRecruited[msg.sender] = true; }
    }

    // F*ck these cookies.
    function earlyRecruit(uint256 quantity) 
        external 
        payable 
        nonReentrant 
        callerIsUser 
        recruitIsEnabled
    {
        require(totalArmy.current() >= FREE_RECRUIT_MAX, "Early recruitment still locked");
        require(totalArmy.current() + quantity <= FREE_RECRUIT_MAX + EARLY_RECRUIT_MAX, "Exceeding early recruitment supply");
        require(msg.value >= earlyPrice * quantity, "Insufficient ETH sent");

        for (uint256 i; i < quantity;) {
            totalArmy.increment();
            _mint(msg.sender, totalArmy.current());
            unchecked { ++i; }
        }
    }

    // And f*ck these cookies too.
    function lastCall(uint256 quantity) 
        external 
        payable 
        nonReentrant 
        callerIsUser 
        recruitIsEnabled
    {
        require(totalArmy.current() >= FREE_RECRUIT_MAX + EARLY_RECRUIT_MAX, "Last call recruitment still locked");
        require(totalArmy.current() + quantity <= ARMY_SIZE, "Exceeding last call recruitment max supply");
        require(msg.value >= lastCallPrice * quantity, "Insufficient ETH sent");

        for (uint256 i; i < quantity;) {
            totalArmy.increment();
            _mint(msg.sender, totalArmy.current());
            unchecked { ++i; }
        }
    }

    // You earned the favor of the GODS. Joke. They hate you.
    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = payable(GODS_TREASURY).call{
            value: address(this).balance
        }("");

        require(success, "Withdrawal Failed");
    }

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

    function setBaseURI(string calldata _uri) external onlyOwner {
        baseURI = _uri;
    }

    function setRecruitmentEnabled(bool enabled) external onlyOwner {
        recruitmentEnabled = enabled;
    }

    // The GODS hate you. They hate me too. I can't escape, I tried to.
    // Don't mint these cookies please. They aren't cute or dumb, this is just the beginning.
    // It's starting, I've seen it.. this is not a normal damn pfp collection.
    // There's something different..this energy..this..evil..
    // The world is changing..and not just the world. 
    // They are already here..they are already in your head.
    // You can't escape.
    // This is not a silly game.
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev 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 {}

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

File 3 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

File 5 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                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
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ARMY_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_RECRUIT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_RECRUIT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GODS_TREASURY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAST_CALL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"earlyRecruit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeRecruit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeRecruited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRecruitmentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"lastCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"lastCallPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recruitmentEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setRecruitmentEnabled","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":[],"name":"totalArmy","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whoAreYou","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600b55670186cc6acd4b0000600c556000600d60006101000a81548160ff0219169083151502179055503480156200004357600080fd5b5060405162004879380380620048798339818101604052810190620000699190620002cb565b81818160009080519060200190620000839291906200019d565b5080600190805190602001906200009c9291906200019d565b505050620000bf620000b3620000cf60201b60201c565b620000d760201b60201c565b60016007819055505050620004d4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ab90620003e5565b90600052602060002090601f016020900481019282620001cf57600085556200021b565b82601f10620001ea57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021a578251825591602001919060010190620001fd565b5b5090506200022a91906200022e565b5090565b5b80821115620002495760008160009055506001016200022f565b5090565b6000620002646200025e8462000379565b62000350565b905082815260208101848484011115620002835762000282620004b4565b5b62000290848285620003af565b509392505050565b600082601f830112620002b057620002af620004af565b5b8151620002c28482602086016200024d565b91505092915050565b60008060408385031215620002e557620002e4620004be565b5b600083015167ffffffffffffffff811115620003065762000305620004b9565b5b620003148582860162000298565b925050602083015167ffffffffffffffff811115620003385762000337620004b9565b5b620003468582860162000298565b9150509250929050565b60006200035c6200036f565b90506200036a82826200041b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000397576200039662000480565b5b620003a282620004c3565b9050602081019050919050565b60005b83811015620003cf578082015181840152602081019050620003b2565b83811115620003df576000848401525b50505050565b60006002820490506001821680620003fe57607f821691505b6020821081141562000415576200041462000451565b5b50919050565b6200042682620004c3565b810181811067ffffffffffffffff8211171562000448576200044762000480565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61439580620004e46000396000f3fe60806040526004361061020f5760003560e01c80637e19a78411610118578063a4cb58b7116100a0578063d60f23631161006f578063d60f23631461075c578063dd217ca314610778578063e4b7fb73146107a3578063e985e9c5146107ce578063f2fde38b1461080b5761020f565b8063a4cb58b7146106a0578063b107ba7b146106cb578063b88d4fde146106f6578063c87b56dd1461071f5761020f565b806395d89b41116100e757806395d89b41146105c85780639a2f9bd2146105f35780639eea7b9d1461060f5780639fb1cd8b1461064c578063a22cb465146106775761020f565b80637e19a7841461051c578063855d695d146105475780638d4dd4df146105725780638da5cb5b1461059d5761020f565b80633e351a541161019b57806355f804b31161016a57806355f804b3146104375780636352211e146104605780636c0360eb1461049d57806370a08231146104c8578063715018a6146105055761020f565b80633e351a54146103a15780633e49d35b146103cc578063403fe4c8146103f757806342842e0e1461040e5761020f565b80631a9a4909116101e25780631a9a4909146102e2578063239c47c01461030d57806323b872dd1461033857806335db290d146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d5a565b610834565b6040516102489190613372565b60405180910390f35b34801561025d57600080fd5b50610266610916565b604051610273919061338d565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e01565b6109a8565b6040516102b0919061330b565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612ced565b610a2d565b005b3480156102ee57600080fd5b506102f7610b45565b604051610304919061330b565b60405180910390f35b34801561031957600080fd5b50610322610b5d565b60405161032f919061370f565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612bd7565b610b63565b005b34801561036d57600080fd5b5061038860048036038101906103839190612d2d565b610bc3565b005b34801561039657600080fd5b5061039f610c5c565b005b3480156103ad57600080fd5b506103b6610df1565b6040516103c3919061370f565b60405180910390f35b3480156103d857600080fd5b506103e1610df7565b6040516103ee9190613372565b60405180910390f35b34801561040357600080fd5b5061040c610e0a565b005b34801561041a57600080fd5b5061043560048036038101906104309190612bd7565b61106e565b005b34801561044357600080fd5b5061045e60048036038101906104599190612db4565b61108e565b005b34801561046c57600080fd5b5061048760048036038101906104829190612e01565b611120565b604051610494919061330b565b60405180910390f35b3480156104a957600080fd5b506104b26111d2565b6040516104bf919061338d565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612b6a565b611260565b6040516104fc919061370f565b60405180910390f35b34801561051157600080fd5b5061051a611318565b005b34801561052857600080fd5b506105316113a0565b60405161053e919061338d565b60405180910390f35b34801561055357600080fd5b5061055c6113c0565b604051610569919061370f565b60405180910390f35b34801561057e57600080fd5b506105876113c6565b604051610594919061370f565b60405180910390f35b3480156105a957600080fd5b506105b26113d2565b6040516105bf919061330b565b60405180910390f35b3480156105d457600080fd5b506105dd6113fc565b6040516105ea919061338d565b60405180910390f35b61060d60048036038101906106089190612e01565b61148e565b005b34801561061b57600080fd5b5061063660048036038101906106319190612b6a565b6116da565b6040516106439190613372565b60405180910390f35b34801561065857600080fd5b506106616116fa565b60405161066e919061370f565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612cad565b611700565b005b3480156106ac57600080fd5b506106b5611716565b6040516106c2919061370f565b60405180910390f35b3480156106d757600080fd5b506106e0611776565b6040516106ed919061370f565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190612c2a565b61177c565b005b34801561072b57600080fd5b5061074660048036038101906107419190612e01565b6117de565b604051610753919061338d565b60405180910390f35b61077660048036038101906107719190612e01565b611885565b005b34801561078457600080fd5b5061078d611ad1565b60405161079a919061370f565b60405180910390f35b3480156107af57600080fd5b506107b8611ad7565b6040516107c5919061370f565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612b97565b611aec565b6040516108029190613372565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190612b6a565b611b80565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090f575061090e82611c78565b5b9050919050565b60606000805461092590613999565b80601f016020809104026020016040519081016040528092919081815260200182805461095190613999565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b382611ce2565b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e9906135af565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3882611120565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa09061366f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac8611d4e565b73ffffffffffffffffffffffffffffffffffffffff161480610af75750610af681610af1611d4e565b611aec565b5b610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d9061352f565b60405180910390fd5b610b408383611d56565b505050565b737d38046872bcae2258327b2df3ee1ec6db0b7eab81565b600b5481565b610b74610b6e611d4e565b82611e0f565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061368f565b60405180910390fd5b610bbe838383611eed565b505050565b610bcb611d4e565b73ffffffffffffffffffffffffffffffffffffffff16610be96113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c36906135ef565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610c64611d4e565b73ffffffffffffffffffffffffffffffffffffffff16610c826113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135ef565b60405180910390fd5b60026007541415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906136ef565b60405180910390fd5b60026007819055506000737d38046872bcae2258327b2df3ee1ec6db0b7eab73ffffffffffffffffffffffffffffffffffffffff1647604051610d60906132f6565b60006040518083038185875af1925050503d8060008114610d9d576040519150601f19603f3d011682016040523d82523d6000602084013e610da2565b606091505b5050905080610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906135cf565b60405180910390fd5b506001600781905550565b600c5481565b600d60009054906101000a900460ff1681565b60026007541415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e47906136ef565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd9061362f565b60405180910390fd5b600d60009054906101000a900460ff16610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c9061344f565b60405180910390fd5b610457610f226009612154565b10610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906134cf565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061364f565b60405180910390fd5b610ff96009612162565b61100c336110076009612154565b612178565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600781905550565b6110898383836040518060200160405280600081525061177c565b505050565b611096611d4e565b73ffffffffffffffffffffffffffffffffffffffff166110b46113d2565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611101906135ef565b60405180910390fd5b81816008919061111b929190612998565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061356f565b60405180910390fd5b80915050919050565b600880546111df90613999565b80601f016020809104026020016040519081016040528092919081815260200182805461120b90613999565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89061354f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611320611d4e565b73ffffffffffffffffffffffffffffffffffffffff1661133e6113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906135ef565b60405180910390fd5b61139e6000612352565b565b60606040518060a00160405280607181526020016142ef60719139905090565b61045781565b60098060000154905081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461140b90613999565b80601f016020809104026020016040519081016040528092919081815260200182805461143790613999565b80156114845780601f1061145957610100808354040283529160200191611484565b820191906000526020600020905b81548152906001019060200180831161146757829003601f168201915b5050505050905090565b600260075414156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb906136ef565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115419061362f565b60405180910390fd5b600d60009054906101000a900460ff16611599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115909061344f565b60405180910390fd5b6104576115a66009612154565b10156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de9061350f565b60405180910390fd5b610457806115f591906137ce565b816116006009612154565b61160a91906137ce565b111561164b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611642906136cf565b60405180910390fd5b80600b546116599190613855565b34101561169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906133af565b60405180910390fd5b60005b818110156116ce576116b06009612162565b6116c3336116be6009612154565b612178565b80600101905061169e565b50600160078190555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610d0581565b61171261170b611d4e565b8383612418565b5050565b60006104576117256009612154565b10156117345760009050611773565b61045780016117436009612154565b10156117525760019050611773565b610d0561175f6009612154565b101561176e5760029050611773565b600390505b90565b61045781565b61178d611787611d4e565b83611e0f565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061368f565b60405180910390fd5b6117d884848484612585565b50505050565b60606117e982611ce2565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f9061360f565b60405180910390fd5b60006118326125e1565b90506000815111611852576040518060200160405280600081525061187d565b8061185c84612673565b60405160200161186d9291906132d2565b6040516020818303038152906040525b915050919050565b600260075414156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906136ef565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119389061362f565b60405180910390fd5b600d60009054906101000a900460ff16611990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119879061344f565b60405180910390fd5b6104578061199e91906137ce565b6119a86009612154565b10156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e0906136af565b60405180910390fd5b610d05816119f76009612154565b611a0191906137ce565b1115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a399061346f565b60405180910390fd5b80600c54611a509190613855565b341015611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a89906133af565b60405180910390fd5b60005b81811015611ac557611aa76009612162565b611aba33611ab56009612154565b612178565b806001019050611a95565b50600160078190555050565b61045781565b6000611ae36009612154565b610d0503905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b88611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611ba66113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906135ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906133ef565b60405180910390fd5b611c7581612352565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc983611120565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e1a82611ce2565b611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e50906134ef565b60405180910390fd5b6000611e6483611120565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ea65750611ea58185611aec565b5b80611ee457508373ffffffffffffffffffffffffffffffffffffffff16611ecc846109a8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0d82611120565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a9061340f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca9061348f565b60405180910390fd5b611fde8383836127d4565b611fe9600082611d56565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203991906138af565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209091906137ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214f8383836127d9565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df9061358f565b60405180910390fd5b6121f181611ce2565b15612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122289061342f565b60405180910390fd5b61223d600083836127d4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228d91906137ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234e600083836127d9565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e906134af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125789190613372565b60405180910390a3505050565b612590848484611eed565b61259c848484846127de565b6125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906133cf565b60405180910390fd5b50505050565b6060600880546125f090613999565b80601f016020809104026020016040519081016040528092919081815260200182805461261c90613999565b80156126695780601f1061263e57610100808354040283529160200191612669565b820191906000526020600020905b81548152906001019060200180831161264c57829003601f168201915b5050505050905090565b606060008214156126bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127cf565b600082905060005b600082146126ed5780806126d6906139fc565b915050600a826126e69190613824565b91506126c3565b60008167ffffffffffffffff81111561270957612708613b32565b5b6040519080825280601f01601f19166020018201604052801561273b5781602001600182028036833780820191505090505b5090505b600085146127c85760018261275491906138af565b9150600a856127639190613a45565b603061276f91906137ce565b60f81b81838151811061278557612784613b03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c19190613824565b945061273f565b8093505050505b919050565b505050565b505050565b60006127ff8473ffffffffffffffffffffffffffffffffffffffff16612975565b15612968578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612828611d4e565b8786866040518563ffffffff1660e01b815260040161284a9493929190613326565b602060405180830381600087803b15801561286457600080fd5b505af192505050801561289557506040513d601f19601f820116820180604052508101906128929190612d87565b60015b612918573d80600081146128c5576040519150601f19603f3d011682016040523d82523d6000602084013e6128ca565b606091505b50600081511415612910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612907906133cf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296d565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546129a490613999565b90600052602060002090601f0160209004810192826129c65760008555612a0d565b82601f106129df57803560ff1916838001178555612a0d565b82800160010185558215612a0d579182015b82811115612a0c5782358255916020019190600101906129f1565b5b509050612a1a9190612a1e565b5090565b5b80821115612a37576000816000905550600101612a1f565b5090565b6000612a4e612a498461374f565b61372a565b905082815260208101848484011115612a6a57612a69613b70565b5b612a75848285613957565b509392505050565b600081359050612a8c81614292565b92915050565b600081359050612aa1816142a9565b92915050565b600081359050612ab6816142c0565b92915050565b600081519050612acb816142c0565b92915050565b600082601f830112612ae657612ae5613b66565b5b8135612af6848260208601612a3b565b91505092915050565b60008083601f840112612b1557612b14613b66565b5b8235905067ffffffffffffffff811115612b3257612b31613b61565b5b602083019150836001820283011115612b4e57612b4d613b6b565b5b9250929050565b600081359050612b64816142d7565b92915050565b600060208284031215612b8057612b7f613b7a565b5b6000612b8e84828501612a7d565b91505092915050565b60008060408385031215612bae57612bad613b7a565b5b6000612bbc85828601612a7d565b9250506020612bcd85828601612a7d565b9150509250929050565b600080600060608486031215612bf057612bef613b7a565b5b6000612bfe86828701612a7d565b9350506020612c0f86828701612a7d565b9250506040612c2086828701612b55565b9150509250925092565b60008060008060808587031215612c4457612c43613b7a565b5b6000612c5287828801612a7d565b9450506020612c6387828801612a7d565b9350506040612c7487828801612b55565b925050606085013567ffffffffffffffff811115612c9557612c94613b75565b5b612ca187828801612ad1565b91505092959194509250565b60008060408385031215612cc457612cc3613b7a565b5b6000612cd285828601612a7d565b9250506020612ce385828601612a92565b9150509250929050565b60008060408385031215612d0457612d03613b7a565b5b6000612d1285828601612a7d565b9250506020612d2385828601612b55565b9150509250929050565b600060208284031215612d4357612d42613b7a565b5b6000612d5184828501612a92565b91505092915050565b600060208284031215612d7057612d6f613b7a565b5b6000612d7e84828501612aa7565b91505092915050565b600060208284031215612d9d57612d9c613b7a565b5b6000612dab84828501612abc565b91505092915050565b60008060208385031215612dcb57612dca613b7a565b5b600083013567ffffffffffffffff811115612de957612de8613b75565b5b612df585828601612aff565b92509250509250929050565b600060208284031215612e1757612e16613b7a565b5b6000612e2584828501612b55565b91505092915050565b612e37816138e3565b82525050565b612e46816138f5565b82525050565b6000612e5782613780565b612e618185613796565b9350612e71818560208601613966565b612e7a81613b7f565b840191505092915050565b6000612e908261378b565b612e9a81856137b2565b9350612eaa818560208601613966565b612eb381613b7f565b840191505092915050565b6000612ec98261378b565b612ed381856137c3565b9350612ee3818560208601613966565b80840191505092915050565b6000612efc6015836137b2565b9150612f0782613b90565b602082019050919050565b6000612f1f6032836137b2565b9150612f2a82613bb9565b604082019050919050565b6000612f426026836137b2565b9150612f4d82613c08565b604082019050919050565b6000612f656025836137b2565b9150612f7082613c57565b604082019050919050565b6000612f88601c836137b2565b9150612f9382613ca6565b602082019050919050565b6000612fab601a836137b2565b9150612fb682613ccf565b602082019050919050565b6000612fce602a836137b2565b9150612fd982613cf8565b604082019050919050565b6000612ff16024836137b2565b9150612ffc82613d47565b604082019050919050565b60006130146019836137b2565b915061301f82613d96565b602082019050919050565b60006130376021836137b2565b915061304282613dbf565b604082019050919050565b600061305a602c836137b2565b915061306582613e0e565b604082019050919050565b600061307d601e836137b2565b915061308882613e5d565b602082019050919050565b60006130a06038836137b2565b91506130ab82613e86565b604082019050919050565b60006130c3602a836137b2565b91506130ce82613ed5565b604082019050919050565b60006130e66029836137b2565b91506130f182613f24565b604082019050919050565b60006131096020836137b2565b915061311482613f73565b602082019050919050565b600061312c602c836137b2565b915061313782613f9c565b604082019050919050565b600061314f6011836137b2565b915061315a82613feb565b602082019050919050565b60006131726020836137b2565b915061317d82614014565b602082019050919050565b6000613195602f836137b2565b91506131a08261403d565b604082019050919050565b60006131b86025836137b2565b91506131c38261408c565b604082019050919050565b60006131db6036836137b2565b91506131e6826140db565b604082019050919050565b60006131fe6021836137b2565b91506132098261412a565b604082019050919050565b60006132216000836137a7565b915061322c82614179565b600082019050919050565b60006132446031836137b2565b915061324f8261417c565b604082019050919050565b60006132676022836137b2565b9150613272826141cb565b604082019050919050565b600061328a6022836137b2565b91506132958261421a565b604082019050919050565b60006132ad601f836137b2565b91506132b882614269565b602082019050919050565b6132cc8161394d565b82525050565b60006132de8285612ebe565b91506132ea8284612ebe565b91508190509392505050565b600061330182613214565b9150819050919050565b60006020820190506133206000830184612e2e565b92915050565b600060808201905061333b6000830187612e2e565b6133486020830186612e2e565b61335560408301856132c3565b81810360608301526133678184612e4c565b905095945050505050565b60006020820190506133876000830184612e3d565b92915050565b600060208201905081810360008301526133a78184612e85565b905092915050565b600060208201905081810360008301526133c881612eef565b9050919050565b600060208201905081810360008301526133e881612f12565b9050919050565b6000602082019050818103600083015261340881612f35565b9050919050565b6000602082019050818103600083015261342881612f58565b9050919050565b6000602082019050818103600083015261344881612f7b565b9050919050565b6000602082019050818103600083015261346881612f9e565b9050919050565b6000602082019050818103600083015261348881612fc1565b9050919050565b600060208201905081810360008301526134a881612fe4565b9050919050565b600060208201905081810360008301526134c881613007565b9050919050565b600060208201905081810360008301526134e88161302a565b9050919050565b600060208201905081810360008301526135088161304d565b9050919050565b6000602082019050818103600083015261352881613070565b9050919050565b6000602082019050818103600083015261354881613093565b9050919050565b60006020820190508181036000830152613568816130b6565b9050919050565b60006020820190508181036000830152613588816130d9565b9050919050565b600060208201905081810360008301526135a8816130fc565b9050919050565b600060208201905081810360008301526135c88161311f565b9050919050565b600060208201905081810360008301526135e881613142565b9050919050565b6000602082019050818103600083015261360881613165565b9050919050565b6000602082019050818103600083015261362881613188565b9050919050565b60006020820190508181036000830152613648816131ab565b9050919050565b60006020820190508181036000830152613668816131ce565b9050919050565b60006020820190508181036000830152613688816131f1565b9050919050565b600060208201905081810360008301526136a881613237565b9050919050565b600060208201905081810360008301526136c88161325a565b9050919050565b600060208201905081810360008301526136e88161327d565b9050919050565b60006020820190508181036000830152613708816132a0565b9050919050565b600060208201905061372460008301846132c3565b92915050565b6000613734613745565b905061374082826139cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561376a57613769613b32565b5b61377382613b7f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137d98261394d565b91506137e48361394d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561381957613818613a76565b5b828201905092915050565b600061382f8261394d565b915061383a8361394d565b92508261384a57613849613aa5565b5b828204905092915050565b60006138608261394d565b915061386b8361394d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138a4576138a3613a76565b5b828202905092915050565b60006138ba8261394d565b91506138c58361394d565b9250828210156138d8576138d7613a76565b5b828203905092915050565b60006138ee8261392d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613984578082015181840152602081019050613969565b83811115613993576000848401525b50505050565b600060028204905060018216806139b157607f821691505b602082108114156139c5576139c4613ad4565b5b50919050565b6139d482613b7f565b810181811067ffffffffffffffff821117156139f3576139f2613b32565b5b80604052505050565b6000613a078261394d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3a57613a39613a76565b5b600182019050919050565b6000613a508261394d565b9150613a5b8361394d565b925082613a6b57613a6a613aa5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f526563727569746d656e74206973206e6f7420656e61626c6564000000000000600082015250565b7f457863656564696e67206c6173742063616c6c20726563727569746d656e742060008201527f6d617820737570706c7900000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f457863656564696e67206672656520726563727569746d656e7420737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4561726c7920726563727569746d656e74207374696c6c206c6f636b65640000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5769746864726177616c204661696c6564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f446972656374206d696e742066726f6d20636f6e7472616374206e6f7420616c60008201527f6c6f776564000000000000000000000000000000000000000000000000000000602082015250565b7f412073696e676c652064656d6f6e2063616e27742072656372756974206d6f7260008201527f65207468616e206f6e65206672656520436f6f6b696500000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4c6173742063616c6c20726563727569746d656e74207374696c6c206c6f636b60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f457863656564696e67206561726c7920726563727569746d656e74207375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61429b816138e3565b81146142a657600080fd5b50565b6142b2816138f5565b81146142bd57600080fd5b50565b6142c981613901565b81146142d457600080fd5b50565b6142e08161394d565b81146142eb57600080fd5b5056fe546865204f564552474f44206973207761746368696e6720796f752e204f72206d61796265206e6f742e20546865204f564552474f4420646f65736e27742067697665206120732a69742e204e6f7420617420616c6c2e204e6f74206576656e2063617265732061626f7574206d652e2ea26469706673582212202301193b0a715f8826d048c3dfb0b2a6bf692aec0a7a1613d753e07f90c8c0a064736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4576696c20436f6f6b696573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034556430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637e19a78411610118578063a4cb58b7116100a0578063d60f23631161006f578063d60f23631461075c578063dd217ca314610778578063e4b7fb73146107a3578063e985e9c5146107ce578063f2fde38b1461080b5761020f565b8063a4cb58b7146106a0578063b107ba7b146106cb578063b88d4fde146106f6578063c87b56dd1461071f5761020f565b806395d89b41116100e757806395d89b41146105c85780639a2f9bd2146105f35780639eea7b9d1461060f5780639fb1cd8b1461064c578063a22cb465146106775761020f565b80637e19a7841461051c578063855d695d146105475780638d4dd4df146105725780638da5cb5b1461059d5761020f565b80633e351a541161019b57806355f804b31161016a57806355f804b3146104375780636352211e146104605780636c0360eb1461049d57806370a08231146104c8578063715018a6146105055761020f565b80633e351a54146103a15780633e49d35b146103cc578063403fe4c8146103f757806342842e0e1461040e5761020f565b80631a9a4909116101e25780631a9a4909146102e2578063239c47c01461030d57806323b872dd1461033857806335db290d146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d5a565b610834565b6040516102489190613372565b60405180910390f35b34801561025d57600080fd5b50610266610916565b604051610273919061338d565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e01565b6109a8565b6040516102b0919061330b565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612ced565b610a2d565b005b3480156102ee57600080fd5b506102f7610b45565b604051610304919061330b565b60405180910390f35b34801561031957600080fd5b50610322610b5d565b60405161032f919061370f565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612bd7565b610b63565b005b34801561036d57600080fd5b5061038860048036038101906103839190612d2d565b610bc3565b005b34801561039657600080fd5b5061039f610c5c565b005b3480156103ad57600080fd5b506103b6610df1565b6040516103c3919061370f565b60405180910390f35b3480156103d857600080fd5b506103e1610df7565b6040516103ee9190613372565b60405180910390f35b34801561040357600080fd5b5061040c610e0a565b005b34801561041a57600080fd5b5061043560048036038101906104309190612bd7565b61106e565b005b34801561044357600080fd5b5061045e60048036038101906104599190612db4565b61108e565b005b34801561046c57600080fd5b5061048760048036038101906104829190612e01565b611120565b604051610494919061330b565b60405180910390f35b3480156104a957600080fd5b506104b26111d2565b6040516104bf919061338d565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612b6a565b611260565b6040516104fc919061370f565b60405180910390f35b34801561051157600080fd5b5061051a611318565b005b34801561052857600080fd5b506105316113a0565b60405161053e919061338d565b60405180910390f35b34801561055357600080fd5b5061055c6113c0565b604051610569919061370f565b60405180910390f35b34801561057e57600080fd5b506105876113c6565b604051610594919061370f565b60405180910390f35b3480156105a957600080fd5b506105b26113d2565b6040516105bf919061330b565b60405180910390f35b3480156105d457600080fd5b506105dd6113fc565b6040516105ea919061338d565b60405180910390f35b61060d60048036038101906106089190612e01565b61148e565b005b34801561061b57600080fd5b5061063660048036038101906106319190612b6a565b6116da565b6040516106439190613372565b60405180910390f35b34801561065857600080fd5b506106616116fa565b60405161066e919061370f565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612cad565b611700565b005b3480156106ac57600080fd5b506106b5611716565b6040516106c2919061370f565b60405180910390f35b3480156106d757600080fd5b506106e0611776565b6040516106ed919061370f565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190612c2a565b61177c565b005b34801561072b57600080fd5b5061074660048036038101906107419190612e01565b6117de565b604051610753919061338d565b60405180910390f35b61077660048036038101906107719190612e01565b611885565b005b34801561078457600080fd5b5061078d611ad1565b60405161079a919061370f565b60405180910390f35b3480156107af57600080fd5b506107b8611ad7565b6040516107c5919061370f565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612b97565b611aec565b6040516108029190613372565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190612b6a565b611b80565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090f575061090e82611c78565b5b9050919050565b60606000805461092590613999565b80601f016020809104026020016040519081016040528092919081815260200182805461095190613999565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b382611ce2565b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e9906135af565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3882611120565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa09061366f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac8611d4e565b73ffffffffffffffffffffffffffffffffffffffff161480610af75750610af681610af1611d4e565b611aec565b5b610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d9061352f565b60405180910390fd5b610b408383611d56565b505050565b737d38046872bcae2258327b2df3ee1ec6db0b7eab81565b600b5481565b610b74610b6e611d4e565b82611e0f565b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061368f565b60405180910390fd5b610bbe838383611eed565b505050565b610bcb611d4e565b73ffffffffffffffffffffffffffffffffffffffff16610be96113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c36906135ef565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610c64611d4e565b73ffffffffffffffffffffffffffffffffffffffff16610c826113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135ef565b60405180910390fd5b60026007541415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906136ef565b60405180910390fd5b60026007819055506000737d38046872bcae2258327b2df3ee1ec6db0b7eab73ffffffffffffffffffffffffffffffffffffffff1647604051610d60906132f6565b60006040518083038185875af1925050503d8060008114610d9d576040519150601f19603f3d011682016040523d82523d6000602084013e610da2565b606091505b5050905080610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906135cf565b60405180910390fd5b506001600781905550565b600c5481565b600d60009054906101000a900460ff1681565b60026007541415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e47906136ef565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd9061362f565b60405180910390fd5b600d60009054906101000a900460ff16610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c9061344f565b60405180910390fd5b610457610f226009612154565b10610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906134cf565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061364f565b60405180910390fd5b610ff96009612162565b61100c336110076009612154565b612178565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600781905550565b6110898383836040518060200160405280600081525061177c565b505050565b611096611d4e565b73ffffffffffffffffffffffffffffffffffffffff166110b46113d2565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611101906135ef565b60405180910390fd5b81816008919061111b929190612998565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061356f565b60405180910390fd5b80915050919050565b600880546111df90613999565b80601f016020809104026020016040519081016040528092919081815260200182805461120b90613999565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89061354f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611320611d4e565b73ffffffffffffffffffffffffffffffffffffffff1661133e6113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906135ef565b60405180910390fd5b61139e6000612352565b565b60606040518060a00160405280607181526020016142ef60719139905090565b61045781565b60098060000154905081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461140b90613999565b80601f016020809104026020016040519081016040528092919081815260200182805461143790613999565b80156114845780601f1061145957610100808354040283529160200191611484565b820191906000526020600020905b81548152906001019060200180831161146757829003601f168201915b5050505050905090565b600260075414156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb906136ef565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115419061362f565b60405180910390fd5b600d60009054906101000a900460ff16611599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115909061344f565b60405180910390fd5b6104576115a66009612154565b10156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de9061350f565b60405180910390fd5b610457806115f591906137ce565b816116006009612154565b61160a91906137ce565b111561164b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611642906136cf565b60405180910390fd5b80600b546116599190613855565b34101561169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906133af565b60405180910390fd5b60005b818110156116ce576116b06009612162565b6116c3336116be6009612154565b612178565b80600101905061169e565b50600160078190555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610d0581565b61171261170b611d4e565b8383612418565b5050565b60006104576117256009612154565b10156117345760009050611773565b61045780016117436009612154565b10156117525760019050611773565b610d0561175f6009612154565b101561176e5760029050611773565b600390505b90565b61045781565b61178d611787611d4e565b83611e0f565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061368f565b60405180910390fd5b6117d884848484612585565b50505050565b60606117e982611ce2565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f9061360f565b60405180910390fd5b60006118326125e1565b90506000815111611852576040518060200160405280600081525061187d565b8061185c84612673565b60405160200161186d9291906132d2565b6040516020818303038152906040525b915050919050565b600260075414156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c2906136ef565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119389061362f565b60405180910390fd5b600d60009054906101000a900460ff16611990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119879061344f565b60405180910390fd5b6104578061199e91906137ce565b6119a86009612154565b10156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e0906136af565b60405180910390fd5b610d05816119f76009612154565b611a0191906137ce565b1115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a399061346f565b60405180910390fd5b80600c54611a509190613855565b341015611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a89906133af565b60405180910390fd5b60005b81811015611ac557611aa76009612162565b611aba33611ab56009612154565b612178565b806001019050611a95565b50600160078190555050565b61045781565b6000611ae36009612154565b610d0503905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b88611d4e565b73ffffffffffffffffffffffffffffffffffffffff16611ba66113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906135ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c63906133ef565b60405180910390fd5b611c7581612352565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dc983611120565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e1a82611ce2565b611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e50906134ef565b60405180910390fd5b6000611e6483611120565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ea65750611ea58185611aec565b5b80611ee457508373ffffffffffffffffffffffffffffffffffffffff16611ecc846109a8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0d82611120565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a9061340f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca9061348f565b60405180910390fd5b611fde8383836127d4565b611fe9600082611d56565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203991906138af565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209091906137ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214f8383836127d9565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df9061358f565b60405180910390fd5b6121f181611ce2565b15612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122289061342f565b60405180910390fd5b61223d600083836127d4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228d91906137ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234e600083836127d9565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e906134af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125789190613372565b60405180910390a3505050565b612590848484611eed565b61259c848484846127de565b6125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906133cf565b60405180910390fd5b50505050565b6060600880546125f090613999565b80601f016020809104026020016040519081016040528092919081815260200182805461261c90613999565b80156126695780601f1061263e57610100808354040283529160200191612669565b820191906000526020600020905b81548152906001019060200180831161264c57829003601f168201915b5050505050905090565b606060008214156126bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127cf565b600082905060005b600082146126ed5780806126d6906139fc565b915050600a826126e69190613824565b91506126c3565b60008167ffffffffffffffff81111561270957612708613b32565b5b6040519080825280601f01601f19166020018201604052801561273b5781602001600182028036833780820191505090505b5090505b600085146127c85760018261275491906138af565b9150600a856127639190613a45565b603061276f91906137ce565b60f81b81838151811061278557612784613b03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c19190613824565b945061273f565b8093505050505b919050565b505050565b505050565b60006127ff8473ffffffffffffffffffffffffffffffffffffffff16612975565b15612968578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612828611d4e565b8786866040518563ffffffff1660e01b815260040161284a9493929190613326565b602060405180830381600087803b15801561286457600080fd5b505af192505050801561289557506040513d601f19601f820116820180604052508101906128929190612d87565b60015b612918573d80600081146128c5576040519150601f19603f3d011682016040523d82523d6000602084013e6128ca565b606091505b50600081511415612910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612907906133cf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296d565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546129a490613999565b90600052602060002090601f0160209004810192826129c65760008555612a0d565b82601f106129df57803560ff1916838001178555612a0d565b82800160010185558215612a0d579182015b82811115612a0c5782358255916020019190600101906129f1565b5b509050612a1a9190612a1e565b5090565b5b80821115612a37576000816000905550600101612a1f565b5090565b6000612a4e612a498461374f565b61372a565b905082815260208101848484011115612a6a57612a69613b70565b5b612a75848285613957565b509392505050565b600081359050612a8c81614292565b92915050565b600081359050612aa1816142a9565b92915050565b600081359050612ab6816142c0565b92915050565b600081519050612acb816142c0565b92915050565b600082601f830112612ae657612ae5613b66565b5b8135612af6848260208601612a3b565b91505092915050565b60008083601f840112612b1557612b14613b66565b5b8235905067ffffffffffffffff811115612b3257612b31613b61565b5b602083019150836001820283011115612b4e57612b4d613b6b565b5b9250929050565b600081359050612b64816142d7565b92915050565b600060208284031215612b8057612b7f613b7a565b5b6000612b8e84828501612a7d565b91505092915050565b60008060408385031215612bae57612bad613b7a565b5b6000612bbc85828601612a7d565b9250506020612bcd85828601612a7d565b9150509250929050565b600080600060608486031215612bf057612bef613b7a565b5b6000612bfe86828701612a7d565b9350506020612c0f86828701612a7d565b9250506040612c2086828701612b55565b9150509250925092565b60008060008060808587031215612c4457612c43613b7a565b5b6000612c5287828801612a7d565b9450506020612c6387828801612a7d565b9350506040612c7487828801612b55565b925050606085013567ffffffffffffffff811115612c9557612c94613b75565b5b612ca187828801612ad1565b91505092959194509250565b60008060408385031215612cc457612cc3613b7a565b5b6000612cd285828601612a7d565b9250506020612ce385828601612a92565b9150509250929050565b60008060408385031215612d0457612d03613b7a565b5b6000612d1285828601612a7d565b9250506020612d2385828601612b55565b9150509250929050565b600060208284031215612d4357612d42613b7a565b5b6000612d5184828501612a92565b91505092915050565b600060208284031215612d7057612d6f613b7a565b5b6000612d7e84828501612aa7565b91505092915050565b600060208284031215612d9d57612d9c613b7a565b5b6000612dab84828501612abc565b91505092915050565b60008060208385031215612dcb57612dca613b7a565b5b600083013567ffffffffffffffff811115612de957612de8613b75565b5b612df585828601612aff565b92509250509250929050565b600060208284031215612e1757612e16613b7a565b5b6000612e2584828501612b55565b91505092915050565b612e37816138e3565b82525050565b612e46816138f5565b82525050565b6000612e5782613780565b612e618185613796565b9350612e71818560208601613966565b612e7a81613b7f565b840191505092915050565b6000612e908261378b565b612e9a81856137b2565b9350612eaa818560208601613966565b612eb381613b7f565b840191505092915050565b6000612ec98261378b565b612ed381856137c3565b9350612ee3818560208601613966565b80840191505092915050565b6000612efc6015836137b2565b9150612f0782613b90565b602082019050919050565b6000612f1f6032836137b2565b9150612f2a82613bb9565b604082019050919050565b6000612f426026836137b2565b9150612f4d82613c08565b604082019050919050565b6000612f656025836137b2565b9150612f7082613c57565b604082019050919050565b6000612f88601c836137b2565b9150612f9382613ca6565b602082019050919050565b6000612fab601a836137b2565b9150612fb682613ccf565b602082019050919050565b6000612fce602a836137b2565b9150612fd982613cf8565b604082019050919050565b6000612ff16024836137b2565b9150612ffc82613d47565b604082019050919050565b60006130146019836137b2565b915061301f82613d96565b602082019050919050565b60006130376021836137b2565b915061304282613dbf565b604082019050919050565b600061305a602c836137b2565b915061306582613e0e565b604082019050919050565b600061307d601e836137b2565b915061308882613e5d565b602082019050919050565b60006130a06038836137b2565b91506130ab82613e86565b604082019050919050565b60006130c3602a836137b2565b91506130ce82613ed5565b604082019050919050565b60006130e66029836137b2565b91506130f182613f24565b604082019050919050565b60006131096020836137b2565b915061311482613f73565b602082019050919050565b600061312c602c836137b2565b915061313782613f9c565b604082019050919050565b600061314f6011836137b2565b915061315a82613feb565b602082019050919050565b60006131726020836137b2565b915061317d82614014565b602082019050919050565b6000613195602f836137b2565b91506131a08261403d565b604082019050919050565b60006131b86025836137b2565b91506131c38261408c565b604082019050919050565b60006131db6036836137b2565b91506131e6826140db565b604082019050919050565b60006131fe6021836137b2565b91506132098261412a565b604082019050919050565b60006132216000836137a7565b915061322c82614179565b600082019050919050565b60006132446031836137b2565b915061324f8261417c565b604082019050919050565b60006132676022836137b2565b9150613272826141cb565b604082019050919050565b600061328a6022836137b2565b91506132958261421a565b604082019050919050565b60006132ad601f836137b2565b91506132b882614269565b602082019050919050565b6132cc8161394d565b82525050565b60006132de8285612ebe565b91506132ea8284612ebe565b91508190509392505050565b600061330182613214565b9150819050919050565b60006020820190506133206000830184612e2e565b92915050565b600060808201905061333b6000830187612e2e565b6133486020830186612e2e565b61335560408301856132c3565b81810360608301526133678184612e4c565b905095945050505050565b60006020820190506133876000830184612e3d565b92915050565b600060208201905081810360008301526133a78184612e85565b905092915050565b600060208201905081810360008301526133c881612eef565b9050919050565b600060208201905081810360008301526133e881612f12565b9050919050565b6000602082019050818103600083015261340881612f35565b9050919050565b6000602082019050818103600083015261342881612f58565b9050919050565b6000602082019050818103600083015261344881612f7b565b9050919050565b6000602082019050818103600083015261346881612f9e565b9050919050565b6000602082019050818103600083015261348881612fc1565b9050919050565b600060208201905081810360008301526134a881612fe4565b9050919050565b600060208201905081810360008301526134c881613007565b9050919050565b600060208201905081810360008301526134e88161302a565b9050919050565b600060208201905081810360008301526135088161304d565b9050919050565b6000602082019050818103600083015261352881613070565b9050919050565b6000602082019050818103600083015261354881613093565b9050919050565b60006020820190508181036000830152613568816130b6565b9050919050565b60006020820190508181036000830152613588816130d9565b9050919050565b600060208201905081810360008301526135a8816130fc565b9050919050565b600060208201905081810360008301526135c88161311f565b9050919050565b600060208201905081810360008301526135e881613142565b9050919050565b6000602082019050818103600083015261360881613165565b9050919050565b6000602082019050818103600083015261362881613188565b9050919050565b60006020820190508181036000830152613648816131ab565b9050919050565b60006020820190508181036000830152613668816131ce565b9050919050565b60006020820190508181036000830152613688816131f1565b9050919050565b600060208201905081810360008301526136a881613237565b9050919050565b600060208201905081810360008301526136c88161325a565b9050919050565b600060208201905081810360008301526136e88161327d565b9050919050565b60006020820190508181036000830152613708816132a0565b9050919050565b600060208201905061372460008301846132c3565b92915050565b6000613734613745565b905061374082826139cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561376a57613769613b32565b5b61377382613b7f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137d98261394d565b91506137e48361394d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561381957613818613a76565b5b828201905092915050565b600061382f8261394d565b915061383a8361394d565b92508261384a57613849613aa5565b5b828204905092915050565b60006138608261394d565b915061386b8361394d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138a4576138a3613a76565b5b828202905092915050565b60006138ba8261394d565b91506138c58361394d565b9250828210156138d8576138d7613a76565b5b828203905092915050565b60006138ee8261392d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613984578082015181840152602081019050613969565b83811115613993576000848401525b50505050565b600060028204905060018216806139b157607f821691505b602082108114156139c5576139c4613ad4565b5b50919050565b6139d482613b7f565b810181811067ffffffffffffffff821117156139f3576139f2613b32565b5b80604052505050565b6000613a078261394d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3a57613a39613a76565b5b600182019050919050565b6000613a508261394d565b9150613a5b8361394d565b925082613a6b57613a6a613aa5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f526563727569746d656e74206973206e6f7420656e61626c6564000000000000600082015250565b7f457863656564696e67206c6173742063616c6c20726563727569746d656e742060008201527f6d617820737570706c7900000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f457863656564696e67206672656520726563727569746d656e7420737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4561726c7920726563727569746d656e74207374696c6c206c6f636b65640000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5769746864726177616c204661696c6564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f446972656374206d696e742066726f6d20636f6e7472616374206e6f7420616c60008201527f6c6f776564000000000000000000000000000000000000000000000000000000602082015250565b7f412073696e676c652064656d6f6e2063616e27742072656372756974206d6f7260008201527f65207468616e206f6e65206672656520436f6f6b696500000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4c6173742063616c6c20726563727569746d656e74207374696c6c206c6f636b60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f457863656564696e67206561726c7920726563727569746d656e74207375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61429b816138e3565b81146142a657600080fd5b50565b6142b2816138f5565b81146142bd57600080fd5b50565b6142c981613901565b81146142d457600080fd5b50565b6142e08161394d565b81146142eb57600080fd5b5056fe546865204f564552474f44206973207761746368696e6720796f752e204f72206d61796265206e6f742e20546865204f564552474f4420646f65736e27742067697665206120732a69742e204e6f7420617420616c6c2e204e6f74206576656e2063617265732061626f7574206d652e2ea26469706673582212202301193b0a715f8826d048c3dfb0b2a6bf692aec0a7a1613d753e07f90c8c0a064736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4576696c20436f6f6b696573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034556430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Evil Cookies
Arg [1] : _symbol (string): EVC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4576696c20436f6f6b6965730000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4556430000000000000000000000000000000000000000000000000000000000


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.