ETH Price: $3,356.79 (-2.70%)
Gas: 4 Gwei

Token

ThreeGMBot (3GMBOT)
 

Overview

Max Total Supply

1,000 3GMBOT

Holders

926

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
dumpedonyou.eth
Balance
1 3GMBOT
0x71cc0e32b2abd066558deba0e47bee9bd8f5ada7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The 3gm Bot is a discord based utility tool offering analytics around minting, buying, and selling NFTs. Its highlight feature is a command which shows detailed profit/loss information across all your wallets, broken down by collection.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ThreeGMBot

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 11 : ThreeGMBot.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

/**

      /$$$$$$   /$$$$$$  /$$      /$$
     /$$__  $$ /$$__  $$| $$$    /$$$
    |__/  \ $$| $$  \__/| $$$$  /$$$$
       /$$$$$/| $$ /$$$$| $$ $$/$$ $$
      |___  $$| $$|_  $$| $$  $$$| $$
     /$$  \ $$| $$  \ $$| $$\  $ | $$
    |  $$$$$$/|  $$$$$$/| $$ \/  | $$
    \______/  \______/ |__/     |__/


    ** Website
       https://3gm.dev/

    ** Twitter
       https://twitter.com/3gmdev

**/

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract ThreeGMBot is ERC721, Ownable {

    string public baseURI = "";
    string public contractURI = "";
    uint256 constant public MAX_SUPPLY = 1000;

    uint256 private _totalSupply = 1;
    uint256 public txLimit = 1;
    uint256 public walletLimit = 2;
    uint256 public price = 0.1 ether;

    mapping(address => bool) public bannedMarketplaces;
    mapping(address => uint256) public walletMint;

    bool public publicPaused = true;

    constructor() ERC721("ThreeGMBot", "3GMBOT") {}

    function mint(uint256 _amountToMint) external payable {
        require(!publicPaused, "Public paused");
        require(MAX_SUPPLY >= totalSupply() + _amountToMint, "Exceeds max supply");
        require(_amountToMint > 0, "Not 0 mints");
        require(_amountToMint <= txLimit, "Tx limit");
        require(_amountToMint * price <= msg.value, "Invalid funds provided");

        address _caller = _msgSender();
        require(tx.origin == _caller, "No rpc coordinated attacks");
        require(walletMint[_caller] + _amountToMint <= walletLimit, "Not allow to mint more");

        unchecked { walletMint[_caller] += _amountToMint; }
        for (uint256 i; i < _amountToMint; i++) {
            _safeMint(_caller, _totalSupply + i);
        }
        unchecked { _totalSupply += _amountToMint; }
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}("");
        require(success, "Failed to send");
    }

    function approve(address to, uint256 tokenId) public virtual override {
        require(bannedMarketplaces[to] == false, "Not approved marketplace");
        super.approve(to, tokenId);
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(bannedMarketplaces[operator] == false, "Not approved marketplace");
        super.setApprovalForAll(operator, approved);
    }

    function setBannedMarketplace(address _marketplace, bool _banned) external onlyOwner {
        bannedMarketplaces[_marketplace] = _banned;
    }

    function badboy(address _from, uint256 _tokenId) external onlyOwner {
        _safeTransfer(_from, owner(), _tokenId, "");
    }

    function teamMint(address _to, uint256 _amount) external onlyOwner {
        for (uint256 i; i < _amount; i++) {
            _safeMint(_to, _totalSupply + i);
        }
        unchecked { _totalSupply += _amount; }
    }

    function togglePublic() external onlyOwner {
        publicPaused = !publicPaused;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setTxLimit(uint256 _limit) external onlyOwner {
        txLimit = _limit;
    }

    function setWalletLimit(uint256 _limit) external onlyOwner {
        walletLimit = _limit;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function totalSupply() public view returns (uint256){
        return _totalSupply - 1;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
        ) : "";
    }
}

File 2 of 11 : 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 3 of 11 : 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 4 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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 5 of 11 : 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 6 of 11 : 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 7 of 11 : 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 8 of 11 : 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 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 11 of 11 : 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": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","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":"_from","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"badboy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bannedMarketplaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","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":"address","name":"_marketplace","type":"address"},{"internalType":"bool","name":"_banned","type":"bool"}],"name":"setBannedMarketplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWalletLimit","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600060809081526007906200001a9082620001f2565b50604080516020810190915260008152600890620000399082620001f2565b5060016009819055600a8190556002600b5567016345785d8a0000600c55600f805460ff191690911790553480156200007157600080fd5b506040518060400160405280600a815260200169151a1c995951d3509bdd60b21b815250604051806040016040528060068152602001650cd1d35093d560d21b8152508160009081620000c59190620001f2565b506001620000d48282620001f2565b505050620000f1620000eb620000f760201b60201c565b620000fb565b620002be565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017857607f821691505b6020821081036200019957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ed57600081815260208120601f850160051c81016020861015620001c85750805b601f850160051c820191505b81811015620001e957828155600101620001d4565b5050505b505050565b81516001600160401b038111156200020e576200020e6200014d565b62000226816200021f845462000163565b846200019f565b602080601f8311600181146200025e5760008415620002455750858301515b600019600386901b1c1916600185901b178555620001e9565b600085815260208120601f198616915b828110156200028f578886015182559484019460019091019084016200026e565b5085821015620002ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6122bd80620002ce6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063cd6ca1101161006f578063cd6ca110146105fc578063e8a3d4851461061c578063e985e9c514610631578063f1d5f5171461067a578063f2fde38b1461069a57600080fd5b8063a22cb4651461054c578063add5a4fa1461056c578063af62a9881461058c578063b88d4fde146105bc578063c87b56dd146105dc57600080fd5b8063938e3d7b116100f2578063938e3d7b146104d957806395d89b41146104f9578063981d87711461050e578063a035b1fe14610523578063a0712d681461053957600080fd5b806370a0823114610466578063715018a6146104865780638da5cb5b1461049b57806391b7f5ed146104b957600080fd5b80633c8463a1116101a657806355f804b31161017557806355f804b3146103db5780635c85974f146103fb5780636352211e1461041b5780636c0360eb1461043b5780636caae8321461045057600080fd5b80633c8463a1146103705780633ccfd60b1461038657806342842e0e1461039b5780634297e734146103bb57600080fd5b80630bb12bb8116101ed5780630bb12bb8146102d05780631056ae31146102ea57806318160ddd1461032557806323b872dd1461033a57806332cb6b0c1461035a57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611ba0565b6106ba565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961070c565b60405161024b9190611c1c565b34801561028257600080fd5b50610296610291366004611c2f565b61079e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611c64565b610838565b005b3480156102dc57600080fd5b50600f5461023f9060ff1681565b3480156102f657600080fd5b50610317610305366004611c8e565b600e6020526000908152604090205481565b60405190815260200161024b565b34801561033157600080fd5b506103176108aa565b34801561034657600080fd5b506102ce610355366004611ca9565b6108c0565b34801561036657600080fd5b506103176103e881565b34801561037c57600080fd5b50610317600b5481565b34801561039257600080fd5b506102ce6108f6565b3480156103a757600080fd5b506102ce6103b6366004611ca9565b6109c8565b3480156103c757600080fd5b506102ce6103d6366004611ce5565b6109e3565b3480156103e757600080fd5b506102ce6103f6366004611dad565b610a38565b34801561040757600080fd5b506102ce610416366004611c2f565b610a6e565b34801561042757600080fd5b50610296610436366004611c2f565b610a9d565b34801561044757600080fd5b50610269610b14565b34801561045c57600080fd5b50610317600a5481565b34801561047257600080fd5b50610317610481366004611c8e565b610ba2565b34801561049257600080fd5b506102ce610c29565b3480156104a757600080fd5b506006546001600160a01b0316610296565b3480156104c557600080fd5b506102ce6104d4366004611c2f565b610c5f565b3480156104e557600080fd5b506102ce6104f4366004611dad565b610c8e565b34801561050557600080fd5b50610269610cc4565b34801561051a57600080fd5b506102ce610cd3565b34801561052f57600080fd5b50610317600c5481565b6102ce610547366004611c2f565b610d11565b34801561055857600080fd5b506102ce610567366004611ce5565b610f99565b34801561057857600080fd5b506102ce610587366004611c64565b611007565b34801561059857600080fd5b5061023f6105a7366004611c8e565b600d6020526000908152604090205460ff1681565b3480156105c857600080fd5b506102ce6105d7366004611df6565b61106d565b3480156105e857600080fd5b506102696105f7366004611c2f565b6110a5565b34801561060857600080fd5b506102ce610617366004611c64565b611160565b34801561062857600080fd5b506102696111b6565b34801561063d57600080fd5b5061023f61064c366004611e72565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068657600080fd5b506102ce610695366004611c2f565b6111c3565b3480156106a657600080fd5b506102ce6106b5366004611c8e565b6111f2565b60006001600160e01b031982166380ac58cd60e01b14806106eb57506001600160e01b03198216635b5e139f60e01b145b8061070657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461071b90611ea5565b80601f016020809104026020016040519081016040528092919081815260200182805461074790611ea5565b80156107945780601f1061076957610100808354040283529160200191610794565b820191906000526020600020905b81548152906001019060200180831161077757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6001600160a01b0382166000908152600d602052604090205460ff161561089c5760405162461bcd60e51b81526020600482015260186024820152774e6f7420617070726f766564206d61726b6574706c61636560401b6044820152606401610813565b6108a6828261128a565b5050565b600060016009546108bb9190611ef5565b905090565b6108ca338261139a565b6108e65760405162461bcd60e51b815260040161081390611f0c565b6108f1838383611491565b505050565b6006546001600160a01b031633146109205760405162461bcd60e51b815260040161081390611f5d565b60006109346006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461097e576040519150601f19603f3d011682016040523d82523d6000602084013e610983565b606091505b50509050806109c55760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610813565b50565b6108f18383836040518060200160405280600081525061106d565b6006546001600160a01b03163314610a0d5760405162461bcd60e51b815260040161081390611f5d565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610a625760405162461bcd60e51b815260040161081390611f5d565b60076108a68282611fe0565b6006546001600160a01b03163314610a985760405162461bcd60e51b815260040161081390611f5d565b600a55565b6000818152600260205260408120546001600160a01b0316806107065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610813565b60078054610b2190611ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4d90611ea5565b8015610b9a5780601f10610b6f57610100808354040283529160200191610b9a565b820191906000526020600020905b815481529060010190602001808311610b7d57829003601f168201915b505050505081565b60006001600160a01b038216610c0d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610813565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c535760405162461bcd60e51b815260040161081390611f5d565b610c5d600061162d565b565b6006546001600160a01b03163314610c895760405162461bcd60e51b815260040161081390611f5d565b600c55565b6006546001600160a01b03163314610cb85760405162461bcd60e51b815260040161081390611f5d565b60086108a68282611fe0565b60606001805461071b90611ea5565b6006546001600160a01b03163314610cfd5760405162461bcd60e51b815260040161081390611f5d565b600f805460ff19811660ff90911615179055565b600f5460ff1615610d545760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b6044820152606401610813565b80610d5d6108aa565b610d6791906120a0565b6103e81015610dad5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610813565b60008111610deb5760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610813565b600a54811115610e285760405162461bcd60e51b8152602060048201526008602482015267151e081b1a5b5a5d60c21b6044820152606401610813565b34600c5482610e3791906120b8565b1115610e7e5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610813565b33328114610ece5760405162461bcd60e51b815260206004820152601a60248201527f4e6f2072706320636f6f7264696e617465642061747461636b730000000000006044820152606401610813565b600b546001600160a01b0382166000908152600e6020526040902054610ef59084906120a0565b1115610f3c5760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610813565b6001600160a01b0381166000908152600e602052604081208054840190555b82811015610f8c57610f7a8282600954610f7591906120a0565b61167f565b80610f84816120d7565b915050610f5b565b5050600980549091019055565b6001600160a01b0382166000908152600d602052604090205460ff1615610ffd5760405162461bcd60e51b81526020600482015260186024820152774e6f7420617070726f766564206d61726b6574706c61636560401b6044820152606401610813565b6108a68282611699565b6006546001600160a01b031633146110315760405162461bcd60e51b815260040161081390611f5d565b60005b818110156110605761104e8382600954610f7591906120a0565b80611058816120d7565b915050611034565b5060098054909101905550565b611077338361139a565b6110935760405162461bcd60e51b815260040161081390611f0c565b61109f848484846116a4565b50505050565b6000818152600260205260409020546060906001600160a01b03166111045760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610813565b60006007805461111390611ea5565b90501161112f5760405180602001604052806000815250610706565b600761113a836116d7565b60405160200161114b9291906120f0565b60405160208183030381529060405292915050565b6006546001600160a01b0316331461118a5760405162461bcd60e51b815260040161081390611f5d565b6108a6826111a06006546001600160a01b031690565b83604051806020016040528060008152506116a4565b60088054610b2190611ea5565b6006546001600160a01b031633146111ed5760405162461bcd60e51b815260040161081390611f5d565b600b55565b6006546001600160a01b0316331461121c5760405162461bcd60e51b815260040161081390611f5d565b6001600160a01b0381166112815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610813565b6109c58161162d565b600061129582610a9d565b9050806001600160a01b0316836001600160a01b0316036113025760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610813565b336001600160a01b038216148061131e575061131e813361064c565b6113905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610813565b6108f183836117d8565b6000818152600260205260408120546001600160a01b03166114135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610813565b600061141e83610a9d565b9050806001600160a01b0316846001600160a01b031614806114595750836001600160a01b031661144e8461079e565b6001600160a01b0316145b8061148957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114a482610a9d565b6001600160a01b0316146115085760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610813565b6001600160a01b03821661156a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610813565b6115756000826117d8565b6001600160a01b038316600090815260036020526040812080546001929061159e908490611ef5565b90915550506001600160a01b03821660009081526003602052604081208054600192906115cc9084906120a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108a6828260405180602001604052806000815250611846565b6108a6338383611879565b6116af848484611491565b6116bb84848484611947565b61109f5760405162461bcd60e51b815260040161081390612187565b6060816000036116fe5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117285780611712816120d7565b91506117219050600a836121ef565b9150611702565b60008167ffffffffffffffff81111561174357611743611d21565b6040519080825280601f01601f19166020018201604052801561176d576020820181803683370190505b5090505b841561148957611782600183611ef5565b915061178f600a86612203565b61179a9060306120a0565b60f81b8183815181106117af576117af612217565b60200101906001600160f81b031916908160001a9053506117d1600a866121ef565b9450611771565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180d82610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118508383611a48565b61185d6000848484611947565b6108f15760405162461bcd60e51b815260040161081390612187565b816001600160a01b0316836001600160a01b0316036118da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610813565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b15611a3d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061198b90339089908890889060040161222d565b6020604051808303816000875af19250505080156119c6575060408051601f3d908101601f191682019092526119c39181019061226a565b60015b611a23573d8080156119f4576040519150601f19603f3d011682016040523d82523d6000602084013e6119f9565b606091505b508051600003611a1b5760405162461bcd60e51b815260040161081390612187565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611489565b506001949350505050565b6001600160a01b038216611a9e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610813565b6000818152600260205260409020546001600160a01b031615611b035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610813565b6001600160a01b0382166000908152600360205260408120805460019290611b2c9084906120a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109c557600080fd5b600060208284031215611bb257600080fd5b8135611bbd81611b8a565b9392505050565b60005b83811015611bdf578181015183820152602001611bc7565b8381111561109f5750506000910152565b60008151808452611c08816020860160208601611bc4565b601f01601f19169290920160200192915050565b602081526000611bbd6020830184611bf0565b600060208284031215611c4157600080fd5b5035919050565b80356001600160a01b0381168114611c5f57600080fd5b919050565b60008060408385031215611c7757600080fd5b611c8083611c48565b946020939093013593505050565b600060208284031215611ca057600080fd5b611bbd82611c48565b600080600060608486031215611cbe57600080fd5b611cc784611c48565b9250611cd560208501611c48565b9150604084013590509250925092565b60008060408385031215611cf857600080fd5b611d0183611c48565b915060208301358015158114611d1657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d5257611d52611d21565b604051601f8501601f19908116603f01168101908282118183101715611d7a57611d7a611d21565b81604052809350858152868686011115611d9357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dbf57600080fd5b813567ffffffffffffffff811115611dd657600080fd5b8201601f81018413611de757600080fd5b61148984823560208401611d37565b60008060008060808587031215611e0c57600080fd5b611e1585611c48565b9350611e2360208601611c48565b925060408501359150606085013567ffffffffffffffff811115611e4657600080fd5b8501601f81018713611e5757600080fd5b611e6687823560208401611d37565b91505092959194509250565b60008060408385031215611e8557600080fd5b611e8e83611c48565b9150611e9c60208401611c48565b90509250929050565b600181811c90821680611eb957607f821691505b602082108103611ed957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611f0757611f07611edf565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156108f157600081815260208120601f850160051c81016020861015611fb95750805b601f850160051c820191505b81811015611fd857828155600101611fc5565b505050505050565b815167ffffffffffffffff811115611ffa57611ffa611d21565b61200e816120088454611ea5565b84611f92565b602080601f831160018114612043576000841561202b5750858301515b600019600386901b1c1916600185901b178555611fd8565b600085815260208120601f198616915b8281101561207257888601518255948401946001909101908401612053565b50858210156120905787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156120b3576120b3611edf565b500190565b60008160001904831182151516156120d2576120d2611edf565b500290565b6000600182016120e9576120e9611edf565b5060010190565b60008084546120fe81611ea5565b60018281168015612116576001811461212b5761215a565b60ff198416875282151583028701945061215a565b8860005260208060002060005b858110156121515781548a820152908401908201612138565b50505082870194505b50505050835161216e818360208801611bc4565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121fe576121fe6121d9565b500490565b600082612212576122126121d9565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226090830184611bf0565b9695505050505050565b60006020828403121561227c57600080fd5b8151611bbd81611b8a56fea2646970667358221220c9a3e0225e8e0f1a3170478f48d0fd746a792bd68ad0da72442daf7607331d5364736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063cd6ca1101161006f578063cd6ca110146105fc578063e8a3d4851461061c578063e985e9c514610631578063f1d5f5171461067a578063f2fde38b1461069a57600080fd5b8063a22cb4651461054c578063add5a4fa1461056c578063af62a9881461058c578063b88d4fde146105bc578063c87b56dd146105dc57600080fd5b8063938e3d7b116100f2578063938e3d7b146104d957806395d89b41146104f9578063981d87711461050e578063a035b1fe14610523578063a0712d681461053957600080fd5b806370a0823114610466578063715018a6146104865780638da5cb5b1461049b57806391b7f5ed146104b957600080fd5b80633c8463a1116101a657806355f804b31161017557806355f804b3146103db5780635c85974f146103fb5780636352211e1461041b5780636c0360eb1461043b5780636caae8321461045057600080fd5b80633c8463a1146103705780633ccfd60b1461038657806342842e0e1461039b5780634297e734146103bb57600080fd5b80630bb12bb8116101ed5780630bb12bb8146102d05780631056ae31146102ea57806318160ddd1461032557806323b872dd1461033a57806332cb6b0c1461035a57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611ba0565b6106ba565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961070c565b60405161024b9190611c1c565b34801561028257600080fd5b50610296610291366004611c2f565b61079e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611c64565b610838565b005b3480156102dc57600080fd5b50600f5461023f9060ff1681565b3480156102f657600080fd5b50610317610305366004611c8e565b600e6020526000908152604090205481565b60405190815260200161024b565b34801561033157600080fd5b506103176108aa565b34801561034657600080fd5b506102ce610355366004611ca9565b6108c0565b34801561036657600080fd5b506103176103e881565b34801561037c57600080fd5b50610317600b5481565b34801561039257600080fd5b506102ce6108f6565b3480156103a757600080fd5b506102ce6103b6366004611ca9565b6109c8565b3480156103c757600080fd5b506102ce6103d6366004611ce5565b6109e3565b3480156103e757600080fd5b506102ce6103f6366004611dad565b610a38565b34801561040757600080fd5b506102ce610416366004611c2f565b610a6e565b34801561042757600080fd5b50610296610436366004611c2f565b610a9d565b34801561044757600080fd5b50610269610b14565b34801561045c57600080fd5b50610317600a5481565b34801561047257600080fd5b50610317610481366004611c8e565b610ba2565b34801561049257600080fd5b506102ce610c29565b3480156104a757600080fd5b506006546001600160a01b0316610296565b3480156104c557600080fd5b506102ce6104d4366004611c2f565b610c5f565b3480156104e557600080fd5b506102ce6104f4366004611dad565b610c8e565b34801561050557600080fd5b50610269610cc4565b34801561051a57600080fd5b506102ce610cd3565b34801561052f57600080fd5b50610317600c5481565b6102ce610547366004611c2f565b610d11565b34801561055857600080fd5b506102ce610567366004611ce5565b610f99565b34801561057857600080fd5b506102ce610587366004611c64565b611007565b34801561059857600080fd5b5061023f6105a7366004611c8e565b600d6020526000908152604090205460ff1681565b3480156105c857600080fd5b506102ce6105d7366004611df6565b61106d565b3480156105e857600080fd5b506102696105f7366004611c2f565b6110a5565b34801561060857600080fd5b506102ce610617366004611c64565b611160565b34801561062857600080fd5b506102696111b6565b34801561063d57600080fd5b5061023f61064c366004611e72565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068657600080fd5b506102ce610695366004611c2f565b6111c3565b3480156106a657600080fd5b506102ce6106b5366004611c8e565b6111f2565b60006001600160e01b031982166380ac58cd60e01b14806106eb57506001600160e01b03198216635b5e139f60e01b145b8061070657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461071b90611ea5565b80601f016020809104026020016040519081016040528092919081815260200182805461074790611ea5565b80156107945780601f1061076957610100808354040283529160200191610794565b820191906000526020600020905b81548152906001019060200180831161077757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6001600160a01b0382166000908152600d602052604090205460ff161561089c5760405162461bcd60e51b81526020600482015260186024820152774e6f7420617070726f766564206d61726b6574706c61636560401b6044820152606401610813565b6108a6828261128a565b5050565b600060016009546108bb9190611ef5565b905090565b6108ca338261139a565b6108e65760405162461bcd60e51b815260040161081390611f0c565b6108f1838383611491565b505050565b6006546001600160a01b031633146109205760405162461bcd60e51b815260040161081390611f5d565b60006109346006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461097e576040519150601f19603f3d011682016040523d82523d6000602084013e610983565b606091505b50509050806109c55760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610813565b50565b6108f18383836040518060200160405280600081525061106d565b6006546001600160a01b03163314610a0d5760405162461bcd60e51b815260040161081390611f5d565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610a625760405162461bcd60e51b815260040161081390611f5d565b60076108a68282611fe0565b6006546001600160a01b03163314610a985760405162461bcd60e51b815260040161081390611f5d565b600a55565b6000818152600260205260408120546001600160a01b0316806107065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610813565b60078054610b2190611ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4d90611ea5565b8015610b9a5780601f10610b6f57610100808354040283529160200191610b9a565b820191906000526020600020905b815481529060010190602001808311610b7d57829003601f168201915b505050505081565b60006001600160a01b038216610c0d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610813565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c535760405162461bcd60e51b815260040161081390611f5d565b610c5d600061162d565b565b6006546001600160a01b03163314610c895760405162461bcd60e51b815260040161081390611f5d565b600c55565b6006546001600160a01b03163314610cb85760405162461bcd60e51b815260040161081390611f5d565b60086108a68282611fe0565b60606001805461071b90611ea5565b6006546001600160a01b03163314610cfd5760405162461bcd60e51b815260040161081390611f5d565b600f805460ff19811660ff90911615179055565b600f5460ff1615610d545760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b6044820152606401610813565b80610d5d6108aa565b610d6791906120a0565b6103e81015610dad5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610813565b60008111610deb5760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610813565b600a54811115610e285760405162461bcd60e51b8152602060048201526008602482015267151e081b1a5b5a5d60c21b6044820152606401610813565b34600c5482610e3791906120b8565b1115610e7e5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610813565b33328114610ece5760405162461bcd60e51b815260206004820152601a60248201527f4e6f2072706320636f6f7264696e617465642061747461636b730000000000006044820152606401610813565b600b546001600160a01b0382166000908152600e6020526040902054610ef59084906120a0565b1115610f3c5760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610813565b6001600160a01b0381166000908152600e602052604081208054840190555b82811015610f8c57610f7a8282600954610f7591906120a0565b61167f565b80610f84816120d7565b915050610f5b565b5050600980549091019055565b6001600160a01b0382166000908152600d602052604090205460ff1615610ffd5760405162461bcd60e51b81526020600482015260186024820152774e6f7420617070726f766564206d61726b6574706c61636560401b6044820152606401610813565b6108a68282611699565b6006546001600160a01b031633146110315760405162461bcd60e51b815260040161081390611f5d565b60005b818110156110605761104e8382600954610f7591906120a0565b80611058816120d7565b915050611034565b5060098054909101905550565b611077338361139a565b6110935760405162461bcd60e51b815260040161081390611f0c565b61109f848484846116a4565b50505050565b6000818152600260205260409020546060906001600160a01b03166111045760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610813565b60006007805461111390611ea5565b90501161112f5760405180602001604052806000815250610706565b600761113a836116d7565b60405160200161114b9291906120f0565b60405160208183030381529060405292915050565b6006546001600160a01b0316331461118a5760405162461bcd60e51b815260040161081390611f5d565b6108a6826111a06006546001600160a01b031690565b83604051806020016040528060008152506116a4565b60088054610b2190611ea5565b6006546001600160a01b031633146111ed5760405162461bcd60e51b815260040161081390611f5d565b600b55565b6006546001600160a01b0316331461121c5760405162461bcd60e51b815260040161081390611f5d565b6001600160a01b0381166112815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610813565b6109c58161162d565b600061129582610a9d565b9050806001600160a01b0316836001600160a01b0316036113025760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610813565b336001600160a01b038216148061131e575061131e813361064c565b6113905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610813565b6108f183836117d8565b6000818152600260205260408120546001600160a01b03166114135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610813565b600061141e83610a9d565b9050806001600160a01b0316846001600160a01b031614806114595750836001600160a01b031661144e8461079e565b6001600160a01b0316145b8061148957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114a482610a9d565b6001600160a01b0316146115085760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610813565b6001600160a01b03821661156a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610813565b6115756000826117d8565b6001600160a01b038316600090815260036020526040812080546001929061159e908490611ef5565b90915550506001600160a01b03821660009081526003602052604081208054600192906115cc9084906120a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108a6828260405180602001604052806000815250611846565b6108a6338383611879565b6116af848484611491565b6116bb84848484611947565b61109f5760405162461bcd60e51b815260040161081390612187565b6060816000036116fe5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117285780611712816120d7565b91506117219050600a836121ef565b9150611702565b60008167ffffffffffffffff81111561174357611743611d21565b6040519080825280601f01601f19166020018201604052801561176d576020820181803683370190505b5090505b841561148957611782600183611ef5565b915061178f600a86612203565b61179a9060306120a0565b60f81b8183815181106117af576117af612217565b60200101906001600160f81b031916908160001a9053506117d1600a866121ef565b9450611771565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180d82610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118508383611a48565b61185d6000848484611947565b6108f15760405162461bcd60e51b815260040161081390612187565b816001600160a01b0316836001600160a01b0316036118da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610813565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b15611a3d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061198b90339089908890889060040161222d565b6020604051808303816000875af19250505080156119c6575060408051601f3d908101601f191682019092526119c39181019061226a565b60015b611a23573d8080156119f4576040519150601f19603f3d011682016040523d82523d6000602084013e6119f9565b606091505b508051600003611a1b5760405162461bcd60e51b815260040161081390612187565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611489565b506001949350505050565b6001600160a01b038216611a9e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610813565b6000818152600260205260409020546001600160a01b031615611b035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610813565b6001600160a01b0382166000908152600360205260408120805460019290611b2c9084906120a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109c557600080fd5b600060208284031215611bb257600080fd5b8135611bbd81611b8a565b9392505050565b60005b83811015611bdf578181015183820152602001611bc7565b8381111561109f5750506000910152565b60008151808452611c08816020860160208601611bc4565b601f01601f19169290920160200192915050565b602081526000611bbd6020830184611bf0565b600060208284031215611c4157600080fd5b5035919050565b80356001600160a01b0381168114611c5f57600080fd5b919050565b60008060408385031215611c7757600080fd5b611c8083611c48565b946020939093013593505050565b600060208284031215611ca057600080fd5b611bbd82611c48565b600080600060608486031215611cbe57600080fd5b611cc784611c48565b9250611cd560208501611c48565b9150604084013590509250925092565b60008060408385031215611cf857600080fd5b611d0183611c48565b915060208301358015158114611d1657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d5257611d52611d21565b604051601f8501601f19908116603f01168101908282118183101715611d7a57611d7a611d21565b81604052809350858152868686011115611d9357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dbf57600080fd5b813567ffffffffffffffff811115611dd657600080fd5b8201601f81018413611de757600080fd5b61148984823560208401611d37565b60008060008060808587031215611e0c57600080fd5b611e1585611c48565b9350611e2360208601611c48565b925060408501359150606085013567ffffffffffffffff811115611e4657600080fd5b8501601f81018713611e5757600080fd5b611e6687823560208401611d37565b91505092959194509250565b60008060408385031215611e8557600080fd5b611e8e83611c48565b9150611e9c60208401611c48565b90509250929050565b600181811c90821680611eb957607f821691505b602082108103611ed957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611f0757611f07611edf565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156108f157600081815260208120601f850160051c81016020861015611fb95750805b601f850160051c820191505b81811015611fd857828155600101611fc5565b505050505050565b815167ffffffffffffffff811115611ffa57611ffa611d21565b61200e816120088454611ea5565b84611f92565b602080601f831160018114612043576000841561202b5750858301515b600019600386901b1c1916600185901b178555611fd8565b600085815260208120601f198616915b8281101561207257888601518255948401946001909101908401612053565b50858210156120905787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156120b3576120b3611edf565b500190565b60008160001904831182151516156120d2576120d2611edf565b500290565b6000600182016120e9576120e9611edf565b5060010190565b60008084546120fe81611ea5565b60018281168015612116576001811461212b5761215a565b60ff198416875282151583028701945061215a565b8860005260208060002060005b858110156121515781548a820152908401908201612138565b50505082870194505b50505050835161216e818360208801611bc4565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121fe576121fe6121d9565b500490565b600082612212576122126121d9565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226090830184611bf0565b9695505050505050565b60006020828403121561227c57600080fd5b8151611bbd81611b8a56fea2646970667358221220c9a3e0225e8e0f1a3170478f48d0fd746a792bd68ad0da72442daf7607331d5364736f6c634300080f0033

Deployed Bytecode Sourcemap

654:3597:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;-1:-1:-1;1570:300:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;1570:300:1;;;;;;;;2488:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3999:217::-;;;;;;;;;;-1:-1:-1;3999:217:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:11;;;1674:51;;1662:2;1647:18;3999:217:1;1528:203:11;2195:194:10;;;;;;;;;;-1:-1:-1;2195:194:10;;;;;:::i;:::-;;:::i;:::-;;1083:31;;;;;;;;;;-1:-1:-1;1083:31:10;;;;;;;;1029:45;;;;;;;;;;-1:-1:-1;1029:45:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:11;;;2498:2;2483:18;1029:45:10;2364:177:11;3790:94:10;;;;;;;;;;;;;:::i;4726:330:1:-;;;;;;;;;;-1:-1:-1;4726:330:1;;;;;:::i;:::-;;:::i;772:41:10:-;;;;;;;;;;;;809:4;772:41;;894:30;;;;;;;;;;;;;;;;2010:177;;;;;;;;;;;;;:::i;5122:179:1:-;;;;;;;;;;-1:-1:-1;5122:179:1;;;;;:::i;:::-;;:::i;2636:146:10:-;;;;;;;;;;-1:-1:-1;2636:146:10;;;;;:::i;:::-;;:::i;3558:100::-;;;;;;;;;;-1:-1:-1;3558:100:10;;;;;:::i;:::-;;:::i;3354:90::-;;;;;;;;;;-1:-1:-1;3354:90:10;;;;;:::i;:::-;;:::i;2191:235:1:-;;;;;;;;;;-1:-1:-1;2191:235:1;;;;;:::i;:::-;;:::i;702:26:10:-;;;;;;;;;;;;;:::i;861:::-;;;;;;;;;;;;;;;;1929:205:1;;;;;;;;;;-1:-1:-1;1929:205:1;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1036:85::-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;3260:86:10;;;;;;;;;;-1:-1:-1;3260:86:10;;;;;:::i;:::-;;:::i;3666:116::-;;;;;;;;;;-1:-1:-1;3666:116:10;;;;;:::i;:::-;;:::i;2650:102:1:-;;;;;;;;;;;;;:::i;3162:90:10:-;;;;;;;;;;;;;:::i;931:32::-;;;;;;;;;;;;;;;;1178:824;;;;;;:::i;:::-;;:::i;2397:231::-;;;;;;;;;;-1:-1:-1;2397:231:10;;;;;:::i;:::-;;:::i;2928:226::-;;;;;;;;;;-1:-1:-1;2928:226:10;;;;;:::i;:::-;;:::i;972:50::-;;;;;;;;;;-1:-1:-1;972:50:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;5367:320:1;;;;;;;;;;-1:-1:-1;5367:320:1;;;;;:::i;:::-;;:::i;3892:356:10:-;;;;;;;;;;-1:-1:-1;3892:356:10;;;;;:::i;:::-;;:::i;2790:130::-;;;;;;;;;;-1:-1:-1;2790:130:10;;;;;:::i;:::-;;:::i;735:30::-;;;;;;;;;;;;;:::i;4502:162:1:-;;;;;;;;;;-1:-1:-1;4502:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;4622:25:1;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4502:162;3452:98:10;;;;;;;;;;-1:-1:-1;3452:98:10;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;1570:300:1:-;1672:4;-1:-1:-1;;;;;;1707:40:1;;-1:-1:-1;;;1707:40:1;;:104;;-1:-1:-1;;;;;;;1763:48:1;;-1:-1:-1;;;1763:48:1;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:8;;;1827:36:1;1688:175;1570:300;-1:-1:-1;;1570:300:1:o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;4094:73;;;;-1:-1:-1;;;4094:73:1;;5980:2:11;4094:73:1;;;5962:21:11;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:11;;;6102:42;6161:19;;4094:73:1;;;;;;;;;-1:-1:-1;4185:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4185:24:1;;3999:217::o;2195:194:10:-;-1:-1:-1;;;;;2284:22:10;;;;;;:18;:22;;;;;;;;:31;2276:68;;;;-1:-1:-1;;;2276:68:10;;6393:2:11;2276:68:10;;;6375:21:11;6432:2;6412:18;;;6405:30;-1:-1:-1;;;6451:18:11;;;6444:54;6515:18;;2276:68:10;6191:348:11;2276:68:10;2355:26;2369:2;2373:7;2355:13;:26::i;:::-;2195:194;;:::o;3790:94::-;3834:7;3875:1;3860:12;;:16;;;;:::i;:::-;3853:23;;3790:94;:::o;4726:330:1:-;4915:41;719:10:6;4948:7:1;4915:18;:41::i;:::-;4907:103;;;;-1:-1:-1;;;4907:103:1;;;;;;;:::i;:::-;5021:28;5031:4;5037:2;5041:7;5021:9;:28::i;:::-;4726:330;;;:::o;2010:177:10:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2061:12:10::1;2087:7;1108:6:0::0;;-1:-1:-1;;;;;1108:6:0;;1036:85;2087:7:10::1;-1:-1:-1::0;;;;;2079:21:10::1;2108;2079:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2060:74;;;2153:7;2145:34;;;::::0;-1:-1:-1;;;2145:34:10;;7997:2:11;2145:34:10::1;::::0;::::1;7979:21:11::0;8036:2;8016:18;;;8009:30;-1:-1:-1;;;8055:18:11;;;8048:44;8109:18;;2145:34:10::1;7795:338:11::0;2145:34:10::1;2049:138;2010:177::o:0;5122:179:1:-;5255:39;5272:4;5278:2;5282:7;5255:39;;;;;;;;;;;;:16;:39::i;2636:146:10:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2732:32:10;;;::::1;;::::0;;;:18:::1;:32;::::0;;;;:42;;-1:-1:-1;;2732:42:10::1;::::0;::::1;;::::0;;;::::1;::::0;;2636:146::o;3558:100::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3632:7:10::1;:18;3642:8:::0;3632:7;:18:::1;:::i;3354:90::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3420:7:10::1;:16:::0;3354:90::o;2191:235:1:-;2263:7;2298:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2298:16:1;;2324:73;;;;-1:-1:-1;;;2324:73:1;;10544:2:11;2324:73:1;;;10526:21:11;10583:2;10563:18;;;10556:30;10622:34;10602:18;;;10595:62;-1:-1:-1;;;10673:18:11;;;10666:39;10722:19;;2324:73:1;10342:405:11;702:26:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1929:205:1:-;2001:7;-1:-1:-1;;;;;2028:19:1;;2020:74;;;;-1:-1:-1;;;2020:74:1;;10954:2:11;2020:74:1;;;10936:21:11;10993:2;10973:18;;;10966:30;11032:34;11012:18;;;11005:62;-1:-1:-1;;;11083:18:11;;;11076:40;11133:19;;2020:74:1;10752:406:11;2020:74:1;-1:-1:-1;;;;;;2111:16:1;;;;;:9;:16;;;;;;;1929:205::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;3260:86:10:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3324:5:10::1;:14:::0;3260:86::o;3666:116::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3748:11:10::1;:26;3762:12:::0;3748:11;:26:::1;:::i;2650:102:1:-:0;2706:13;2738:7;2731:14;;;;;:::i;3162:90:10:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3232:12:10::1;::::0;;-1:-1:-1;;3216:28:10;::::1;3232:12;::::0;;::::1;3231:13;3216:28;::::0;;3162:90::o;1178:824::-;1252:12;;;;1251:13;1243:39;;;;-1:-1:-1;;;1243:39:10;;11365:2:11;1243:39:10;;;11347:21:11;11404:2;11384:18;;;11377:30;-1:-1:-1;;;11423:18:11;;;11416:43;11476:18;;1243:39:10;11163:337:11;1243:39:10;1331:13;1315;:11;:13::i;:::-;:29;;;;:::i;:::-;809:4;1301:43;;1293:74;;;;-1:-1:-1;;;1293:74:10;;11840:2:11;1293:74:10;;;11822:21:11;11879:2;11859:18;;;11852:30;-1:-1:-1;;;11898:18:11;;;11891:48;11956:18;;1293:74:10;11638:342:11;1293:74:10;1402:1;1386:13;:17;1378:41;;;;-1:-1:-1;;;1378:41:10;;12187:2:11;1378:41:10;;;12169:21:11;12226:2;12206:18;;;12199:30;-1:-1:-1;;;12245:18:11;;;12238:41;12296:18;;1378:41:10;11985:335:11;1378:41:10;1455:7;;1438:13;:24;;1430:45;;;;-1:-1:-1;;;1430:45:10;;12527:2:11;1430:45:10;;;12509:21:11;12566:1;12546:18;;;12539:29;-1:-1:-1;;;12584:18:11;;;12577:38;12632:18;;1430:45:10;12325:331:11;1430:45:10;1519:9;1510:5;;1494:13;:21;;;;:::i;:::-;:34;;1486:69;;;;-1:-1:-1;;;1486:69:10;;13036:2:11;1486:69:10;;;13018:21:11;13075:2;13055:18;;;13048:30;-1:-1:-1;;;13094:18:11;;;13087:52;13156:18;;1486:69:10;12834:346:11;1486:69:10;719:10:6;1617:9:10;:20;;1609:59;;;;-1:-1:-1;;;1609:59:10;;13387:2:11;1609:59:10;;;13369:21:11;13426:2;13406:18;;;13399:30;13465:28;13445:18;;;13438:56;13511:18;;1609:59:10;13185:350:11;1609:59:10;1726:11;;-1:-1:-1;;;;;1687:19:10;;;;;;:10;:19;;;;;;:35;;1709:13;;1687:35;:::i;:::-;:50;;1679:85;;;;-1:-1:-1;;;1679:85:10;;13742:2:11;1679:85:10;;;13724:21:11;13781:2;13761:18;;;13754:30;-1:-1:-1;;;13800:18:11;;;13793:52;13862:18;;1679:85:10;13540:346:11;1679:85:10;-1:-1:-1;;;;;1789:19:10;;;;;;:10;:19;;;;;:36;;;;;;1838:103;1858:13;1854:1;:17;1838:103;;;1893:36;1903:7;1927:1;1912:12;;:16;;;;:::i;:::-;1893:9;:36::i;:::-;1873:3;;;;:::i;:::-;;;;1838:103;;;-1:-1:-1;;1963:12:10;:29;;;;;;;1178:824::o;2397:231::-;-1:-1:-1;;;;;2500:28:10;;;;;;:18;:28;;;;;;;;:37;2492:74;;;;-1:-1:-1;;;2492:74:10;;6393:2:11;2492:74:10;;;6375:21:11;6432:2;6412:18;;;6405:30;-1:-1:-1;;;6451:18:11;;;6444:54;6515:18;;2492:74:10;6191:348:11;2492:74:10;2577:43;2601:8;2611;2577:23;:43::i;2928:226::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3011:9:10::1;3006:93;3026:7;3022:1;:11;3006:93;;;3055:32;3065:3;3085:1;3070:12;;:16;;;;:::i;3055:32::-;3035:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3006:93;;;-1:-1:-1::0;3121:12:10::1;:23:::0;;;;::::1;::::0;;-1:-1:-1;2928:226:10:o;5367:320:1:-;5536:41;719:10:6;5569:7:1;5536:18;:41::i;:::-;5528:103;;;;-1:-1:-1;;;5528:103:1;;;;;;;:::i;:::-;5641:39;5655:4;5661:2;5665:7;5674:5;5641:13;:39::i;:::-;5367:320;;;;:::o;3892:356:10:-;7224:4:1;7247:16;;;:7;:16;;;;;;3958:13:10;;-1:-1:-1;;;;;7247:16:1;3984:51:10;;;;-1:-1:-1;;;3984:51:10;;14233:2:11;3984:51:10;;;14215:21:11;14272:2;14252:18;;;14245:30;-1:-1:-1;;;14291:18:11;;;14284:51;14352:18;;3984:51:10;14031:345:11;3984:51:10;4077:1;4059:7;4053:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;4135:7;4159:26;4176:8;4159:16;:26::i;:::-;4102:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4046:194;3892:356;-1:-1:-1;;3892:356:10:o;2790:130::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2869:43:10::1;2883:5;2890:7;1108:6:0::0;;-1:-1:-1;;;;;1108:6:0;;1036:85;2890:7:10::1;2899:8;2869:43;;;;;;;;;;;::::0;:13:::1;:43::i;735:30::-:0;;;;;;;:::i;3452:98::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3522:11:10::1;:20:::0;3452:98::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;15762:2:11;1998:73:0::1;::::0;::::1;15744:21:11::0;15801:2;15781:18;;;15774:30;15840:34;15820:18;;;15813:62;-1:-1:-1;;;15891:18:11;;;15884:36;15937:19;;1998:73:0::1;15560:402:11::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;3537:401:1:-:0;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;-1:-1:-1;;;;;3674:11:1;:2;-1:-1:-1;;;;;3674:11:1;;3666:57;;;;-1:-1:-1;;;3666:57:1;;16169:2:11;3666:57:1;;;16151:21:11;16208:2;16188:18;;;16181:30;16247:34;16227:18;;;16220:62;-1:-1:-1;;;16298:18:11;;;16291:31;16339:19;;3666:57:1;15967:397:11;3666:57:1;719:10:6;-1:-1:-1;;;;;3755:21:1;;;;:62;;-1:-1:-1;3780:37:1;3797:5;719:10:6;4502:162:1;:::i;3780:37::-;3734:165;;;;-1:-1:-1;;;3734:165:1;;16571:2:11;3734:165:1;;;16553:21:11;16610:2;16590:18;;;16583:30;16649:34;16629:18;;;16622:62;16720:26;16700:18;;;16693:54;16764:19;;3734:165:1;16369:420:11;3734:165:1;3910:21;3919:2;3923:7;3910:8;:21::i;7442:344::-;7535:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;7551:73;;;;-1:-1:-1;;;7551:73:1;;16996:2:11;7551:73:1;;;16978:21:11;17035:2;17015:18;;;17008:30;17074:34;17054:18;;;17047:62;-1:-1:-1;;;17125:18:11;;;17118:42;17177:19;;7551:73:1;16794:408:11;7551:73:1;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;-1:-1:-1;;;;;7691:16:1;:7;-1:-1:-1;;;;;7691:16:1;;:51;;;;7735:7;-1:-1:-1;;;;;7711:31:1;:20;7723:7;7711:11;:20::i;:::-;-1:-1:-1;;;;;7711:31:1;;7691:51;:87;;;-1:-1:-1;;;;;;4622:25:1;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7746:32;7683:96;7442:344;-1:-1:-1;;;;7442:344:1:o;10452:605::-;10606:4;-1:-1:-1;;;;;10579:31:1;:23;10594:7;10579:14;:23::i;:::-;-1:-1:-1;;;;;10579:31:1;;10571:81;;;;-1:-1:-1;;;10571:81:1;;17409:2:11;10571:81:1;;;17391:21:11;17448:2;17428:18;;;17421:30;17487:34;17467:18;;;17460:62;-1:-1:-1;;;17538:18:11;;;17531:35;17583:19;;10571:81:1;17207:401:11;10571:81:1;-1:-1:-1;;;;;10670:16:1;;10662:65;;;;-1:-1:-1;;;10662:65:1;;17815:2:11;10662:65:1;;;17797:21:11;17854:2;17834:18;;;17827:30;17893:34;17873:18;;;17866:62;-1:-1:-1;;;17944:18:11;;;17937:34;17988:19;;10662:65:1;17613:400:11;10662:65:1;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;-1:-1:-1;;;;;10879:15:1;;;;;;:9;:15;;;;;:20;;10898:1;;10879:15;:20;;10898:1;;10879:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10909:13:1;;;;;;:9;:13;;;;;:18;;10926:1;;10909:13;:18;;10926:1;;10909:18;:::i;:::-;;;;-1:-1:-1;;10937:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10937:21:1;-1:-1:-1;;;;;10937:21:1;;;;;;;;;10974:27;;10937:16;;10974:27;;;;;;;4726:330;;;:::o;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;8116:108:1:-;8191:26;8201:2;8205:7;8191:26;;;;;;;;;;;;:9;:26::i;4283:153::-;4377:52;719:10:6;4410:8:1;4420;4377:18;:52::i;6549:307::-;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;-1:-1:-1;;;6738:111:1;;;;;;;:::i;328:703:7:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;11168:171:1;11242:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11242:29:1;-1:-1:-1;;;;;11242:29:1;;;;;;;;:24;;11295:23;11242:24;11295:14;:23::i;:::-;-1:-1:-1;;;;;11286:46:1;;;;;;;;;;;11168:171;;:::o;8445:311::-;8570:18;8576:2;8580:7;8570:5;:18::i;:::-;8619:54;8650:1;8654:2;8658:7;8667:5;8619:22;:54::i;:::-;8598:151;;;;-1:-1:-1;;;8598:151:1;;;;;;;:::i;11474:307::-;11624:8;-1:-1:-1;;;;;11615:17:1;:5;-1:-1:-1;;;;;11615:17:1;;11607:55;;;;-1:-1:-1;;;11607:55:1;;19145:2:11;11607:55:1;;;19127:21:11;19184:2;19164:18;;;19157:30;19223:27;19203:18;;;19196:55;19268:18;;11607:55:1;18943:349:11;11607:55:1;-1:-1:-1;;;;;11672:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11672:46:1;;;;;;;;;;11733:41;;540::11;;;11733::1;;513:18:11;11733:41:1;;;;;;;11474:307;;;:::o;12334:778::-;12484:4;-1:-1:-1;;;;;12504:13:1;;1465:19:5;:23;12500:606:1;;12539:72;;-1:-1:-1;;;12539:72:1;;-1:-1:-1;;;;;12539:36:1;;;;;:72;;719:10:6;;12590:4:1;;12596:7;;12605:5;;12539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12539:72:1;;;;;;;;-1:-1:-1;;12539:72:1;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12778:6;:13;12795:1;12778:18;12774:266;;12820:60;;-1:-1:-1;;;12820:60:1;;;;;;;:::i;12774:266::-;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;-1:-1:-1;;;;;;12661:51:1;-1:-1:-1;;;12661:51:1;;-1:-1:-1;12654:58:1;;12500:606;-1:-1:-1;13091:4:1;12334:778;;;;;;:::o;9078:427::-;-1:-1:-1;;;;;9157:16:1;;9149:61;;;;-1:-1:-1;;;9149:61:1;;20247:2:11;9149:61:1;;;20229:21:11;;;20266:18;;;20259:30;20325:34;20305:18;;;20298:62;20377:18;;9149:61:1;20045:356:11;9149:61:1;7224:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;:30;9220:58;;;;-1:-1:-1;;;9220:58:1;;20608:2:11;9220:58:1;;;20590:21:11;20647:2;20627:18;;;20620:30;20686;20666:18;;;20659:58;20734:18;;9220:58:1;20406:352:11;9220:58:1;-1:-1:-1;;;;;9345:13:1;;;;;;:9;:13;;;;;:18;;9362:1;;9345:13;:18;;9362:1;;9345:18;:::i;:::-;;;;-1:-1:-1;;9373:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9373:21:1;-1:-1:-1;;;;;9373:21:1;;;;;;;;9410:33;;9373:16;;;9410:33;;9373:16;;9410:33;2195:194:10;;:::o;14:131:11:-;-1:-1:-1;;;;;;88:32:11;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:11:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:11;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:11;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:11:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:11;;1343:180;-1:-1:-1;1343:180:11:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:11;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:11:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:632;3428:5;3458:18;3499:2;3491:6;3488:14;3485:40;;;3505:18;;:::i;:::-;3580:2;3574:9;3548:2;3634:15;;-1:-1:-1;;3630:24:11;;;3656:2;3626:33;3622:42;3610:55;;;3680:18;;;3700:22;;;3677:46;3674:72;;;3726:18;;:::i;:::-;3766:10;3762:2;3755:22;3795:6;3786:15;;3825:6;3817;3810:22;3865:3;3856:6;3851:3;3847:16;3844:25;3841:45;;;3882:1;3879;3872:12;3841:45;3932:6;3927:3;3920:4;3912:6;3908:17;3895:44;3987:1;3980:4;3971:6;3963;3959:19;3955:30;3948:41;;;;3363:632;;;;;:::o;4000:451::-;4069:6;4122:2;4110:9;4101:7;4097:23;4093:32;4090:52;;;4138:1;4135;4128:12;4090:52;4178:9;4165:23;4211:18;4203:6;4200:30;4197:50;;;4243:1;4240;4233:12;4197:50;4266:22;;4319:4;4311:13;;4307:27;-1:-1:-1;4297:55:11;;4348:1;4345;4338:12;4297:55;4371:74;4437:7;4432:2;4419:16;4414:2;4410;4406:11;4371:74;:::i;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:11;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6544:127::-;6605:10;6600:3;6596:20;6593:1;6586:31;6636:4;6633:1;6626:15;6660:4;6657:1;6650:15;6676:125;6716:4;6744:1;6741;6738:8;6735:34;;;6749:18;;:::i;:::-;-1:-1:-1;6786:9:11;;6676:125::o;6806:413::-;7008:2;6990:21;;;7047:2;7027:18;;;7020:30;7086:34;7081:2;7066:18;;7059:62;-1:-1:-1;;;7152:2:11;7137:18;;7130:47;7209:3;7194:19;;6806:413::o;7224:356::-;7426:2;7408:21;;;7445:18;;;7438:30;7504:34;7499:2;7484:18;;7477:62;7571:2;7556:18;;7224:356::o;8264:545::-;8366:2;8361:3;8358:11;8355:448;;;8402:1;8427:5;8423:2;8416:17;8472:4;8468:2;8458:19;8542:2;8530:10;8526:19;8523:1;8519:27;8513:4;8509:38;8578:4;8566:10;8563:20;8560:47;;;-1:-1:-1;8601:4:11;8560:47;8656:2;8651:3;8647:12;8644:1;8640:20;8634:4;8630:31;8620:41;;8711:82;8729:2;8722:5;8719:13;8711:82;;;8774:17;;;8755:1;8744:13;8711:82;;;8715:3;;;8264:545;;;:::o;8985:1352::-;9111:3;9105:10;9138:18;9130:6;9127:30;9124:56;;;9160:18;;:::i;:::-;9189:97;9279:6;9239:38;9271:4;9265:11;9239:38;:::i;:::-;9233:4;9189:97;:::i;:::-;9341:4;;9405:2;9394:14;;9422:1;9417:663;;;;10124:1;10141:6;10138:89;;;-1:-1:-1;10193:19:11;;;10187:26;10138:89;-1:-1:-1;;8942:1:11;8938:11;;;8934:24;8930:29;8920:40;8966:1;8962:11;;;8917:57;10240:81;;9387:944;;9417:663;8211:1;8204:14;;;8248:4;8235:18;;-1:-1:-1;;9453:20:11;;;9571:236;9585:7;9582:1;9579:14;9571:236;;;9674:19;;;9668:26;9653:42;;9766:27;;;;9734:1;9722:14;;;;9601:19;;9571:236;;;9575:3;9835:6;9826:7;9823:19;9820:201;;;9896:19;;;9890:26;-1:-1:-1;;9979:1:11;9975:14;;;9991:3;9971:24;9967:37;9963:42;9948:58;9933:74;;9820:201;-1:-1:-1;;;;;10067:1:11;10051:14;;;10047:22;10034:36;;-1:-1:-1;8985:1352:11:o;11505:128::-;11545:3;11576:1;11572:6;11569:1;11566:13;11563:39;;;11582:18;;:::i;:::-;-1:-1:-1;11618:9:11;;11505:128::o;12661:168::-;12701:7;12767:1;12763;12759:6;12755:14;12752:1;12749:21;12744:1;12737:9;12730:17;12726:45;12723:71;;;12774:18;;:::i;:::-;-1:-1:-1;12814:9:11;;12661:168::o;13891:135::-;13930:3;13951:17;;;13948:43;;13971:18;;:::i;:::-;-1:-1:-1;14018:1:11;14007:13;;13891:135::o;14381:1174::-;14658:3;14687:1;14720:6;14714:13;14750:36;14776:9;14750:36;:::i;:::-;14805:1;14822:18;;;14849:133;;;;14996:1;14991:356;;;;14815:532;;14849:133;-1:-1:-1;;14882:24:11;;14870:37;;14955:14;;14948:22;14936:35;;14927:45;;;-1:-1:-1;14849:133:11;;14991:356;15022:6;15019:1;15012:17;15052:4;15097:2;15094:1;15084:16;15122:1;15136:165;15150:6;15147:1;15144:13;15136:165;;;15228:14;;15215:11;;;15208:35;15271:16;;;;15165:10;;15136:165;;;15140:3;;;15330:6;15325:3;15321:16;15314:23;;14815:532;;;;;15378:6;15372:13;15394:55;15440:8;15435:3;15428:4;15420:6;15416:17;15394:55;:::i;:::-;-1:-1:-1;;;15471:18:11;;15498:22;;;15547:1;15536:13;;14381:1174;-1:-1:-1;;;;14381:1174:11:o;18018:414::-;18220:2;18202:21;;;18259:2;18239:18;;;18232:30;18298:34;18293:2;18278:18;;18271:62;-1:-1:-1;;;18364:2:11;18349:18;;18342:48;18422:3;18407:19;;18018:414::o;18437:127::-;18498:10;18493:3;18489:20;18486:1;18479:31;18529:4;18526:1;18519:15;18553:4;18550:1;18543:15;18569:120;18609:1;18635;18625:35;;18640:18;;:::i;:::-;-1:-1:-1;18674:9:11;;18569:120::o;18694:112::-;18726:1;18752;18742:35;;18757:18;;:::i;:::-;-1:-1:-1;18791:9:11;;18694:112::o;18811:127::-;18872:10;18867:3;18863:20;18860:1;18853:31;18903:4;18900:1;18893:15;18927:4;18924:1;18917:15;19297:489;-1:-1:-1;;;;;19566:15:11;;;19548:34;;19618:15;;19613:2;19598:18;;19591:43;19665:2;19650:18;;19643:34;;;19713:3;19708:2;19693:18;;19686:31;;;19491:4;;19734:46;;19760:19;;19752:6;19734:46;:::i;:::-;19726:54;19297:489;-1:-1:-1;;;;;;19297:489:11:o;19791:249::-;19860:6;19913:2;19901:9;19892:7;19888:23;19884:32;19881:52;;;19929:1;19926;19919:12;19881:52;19961:9;19955:16;19980:30;20004:5;19980:30;:::i

Swarm Source

ipfs://c9a3e0225e8e0f1a3170478f48d0fd746a792bd68ad0da72442daf7607331d53
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.