ETH Price: $3,263.15 (-0.63%)
Gas: 1 Gwei

Token

Etherbananas (EB)
 

Overview

Max Total Supply

750 EB

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EB
0xa7e9c4029d6a29c3ad3c07e7f5e0608ff581dcf9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EtherBananas

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-05
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org

// File contracts/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;

/**
 * @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 contracts/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 contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;

/**
 * @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 contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File contracts/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;

/**
 * @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 contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;







/**
 * @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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


// File contracts/token/ERC721/extensions/ERC721URIStorage.sol



pragma solidity ^0.8.0;

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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


// File contracts/access/Ownable.sol



pragma solidity ^0.8.0;

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



pragma solidity ^0.8.0;



contract EtherBananas is ERC721URIStorage, Ownable{

    event MintBananas (address indexed minter, uint256 startWith, uint256 times);


    uint256 public totalBananas;
    uint256 public totalCount = 750; //bruhTotal
    uint256 public maxBatch = 20; // bruhBatch
    uint256 public price = 50000000000000000; // 0.07 eth
    string public baseURI;
    bool public started;
    uint addressRegistryCount;

    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    modifier mintEnabled() {
        require(started, "not started");
        _;
    }

    function totalSupply() public view virtual returns (uint256) {
        return totalBananas;
    }

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

    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    function changePrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(_tokenId, _tokenURI);
    }

    function setNormalStart(bool _start) public onlyOwner {
        started = _start;
    }

    function mintBanana(uint256 _times) payable public mintEnabled {
        require(_times >0 && _times <= maxBatch, "mint wrong number");
        require(totalBananas + _times <= totalCount, "too much");
        require(msg.value == _times * price, "value error");
        payable(owner()).transfer(msg.value);
        emit MintBananas(_msgSender(), totalBananas+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalBananas++);
        }
    }

    function adminMint(uint256 _times) payable public onlyOwner {
        require(_times >0 && _times <= maxBatch, "mint wrong number");
        require(totalBananas + _times <= totalCount, "too much");
        require(msg.value == _times * price, "value error");
        payable(owner()).transfer(msg.value);
        emit MintBananas(_msgSender(), totalBananas+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalBananas++);
        }
    }



    function adminMintGiveaways(address _addr) public onlyOwner {
        require(totalBananas + 1 <= totalCount, "Mint amount will exceed total collection amount.");
        emit MintBananas(_addr, totalBananas+1, 1);
        _mint(_addr, 1 + totalBananas++);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintBananas","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"adminMintGiveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","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":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mintBanana","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setNormalStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBananas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526102ee6009556014600a5566b1a2bc2ec50000600b553480156200002757600080fd5b50604051620043533803806200435383398181016040528101906200004d919062000280565b82828160009080519060200190620000679291906200015e565b508060019080519060200190620000809291906200015e565b5050506000620000956200015660201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c90805190602001906200014c9291906200015e565b5050505062000452565b600033905090565b8280546200016c90620003be565b90600052602060002090601f016020900481019282620001905760008555620001dc565b82601f10620001ab57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001db578251825591602001919060010190620001be565b5b509050620001eb9190620001ef565b5090565b5b808211156200020a576000816000905550600101620001f0565b5090565b6000620002256200021f8462000355565b62000321565b9050828152602081018484840111156200023e57600080fd5b6200024b84828562000388565b509392505050565b600082601f8301126200026557600080fd5b8151620002778482602086016200020e565b91505092915050565b6000806000606084860312156200029657600080fd5b600084015167ffffffffffffffff811115620002b157600080fd5b620002bf8682870162000253565b935050602084015167ffffffffffffffff811115620002dd57600080fd5b620002eb8682870162000253565b925050604084015167ffffffffffffffff8111156200030957600080fd5b620003178682870162000253565b9150509250925092565b6000604051905081810181811067ffffffffffffffff821117156200034b576200034a62000423565b5b8060405250919050565b600067ffffffffffffffff82111562000373576200037262000423565b5b601f19601f8301169050602081019050919050565b60005b83811015620003a85780820151818401526020810190506200038b565b83811115620003b8576000848401525b50505050565b60006002820490506001821680620003d757607f821691505b60208210811415620003ee57620003ed620003f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ef180620004626000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610632578063e1ba304b1461066f578063e985e9c51461069a578063f2fde38b146106d7576101cd565b8063a22cb4651461059b578063a2b40d19146105c4578063b88d4fde146105ed578063c1f2612314610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104f1578063917bb57f1461051c57806395d89b4114610545578063a035b1fe14610570576101cd565b806370a0823114610481578063715018a6146104be5780638c0ffc74146104d5576101cd565b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103c55780636352211e146103ee57806367765b871461042b5780636c0360eb14610456576101cd565b806323b872dd1461031f57806334eafb11146103485780633c49a8a91461037357806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b314610277578063162094c4146102a057806318160ddd146102c95780631f2698ab146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c37565b610700565b60405161020691906136ab565b60405180910390f35b34801561021b57600080fd5b506102246107e2565b60405161023191906136c6565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612cca565b610874565b60405161026e9190613644565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612bd2565b6108f9565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612cf3565b610a11565b005b3480156102d557600080fd5b506102de610a9b565b6040516102eb91906139c8565b60405180910390f35b34801561030057600080fd5b50610309610aa5565b60405161031691906136ab565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612acc565b610ab8565b005b34801561035457600080fd5b5061035d610b18565b60405161036a91906139c8565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190612a67565b610b1e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612acc565b610c7b565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612c89565b610c9b565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612cca565b610d31565b6040516104229190613644565b60405180910390f35b34801561043757600080fd5b50610440610de3565b60405161044d91906139c8565b60405180910390f35b34801561046257600080fd5b5061046b610de9565b60405161047891906136c6565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612a67565b610e77565b6040516104b591906139c8565b60405180910390f35b3480156104ca57600080fd5b506104d3610f2f565b005b6104ef60048036038101906104ea9190612cca565b61106c565b005b3480156104fd57600080fd5b506105066112b5565b6040516105139190613644565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612c0e565b6112df565b005b34801561055157600080fd5b5061055a611378565b60405161056791906136c6565b60405180910390f35b34801561057c57600080fd5b5061058561140a565b60405161059291906139c8565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190612b96565b611410565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612cca565b611591565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612b1b565b611617565b005b610630600480360381019061062b9190612cca565b611679565b005b34801561063e57600080fd5b5061065960048036038101906106549190612cca565b6118ef565b60405161066691906136c6565b60405180910390f35b34801561067b57600080fd5b50610684611a41565b60405161069191906139c8565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190612a90565b611a47565b6040516106ce91906136ab565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190612a67565b611adb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107db57506107da82611c87565b5b9050919050565b6060600080546107f190613ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461081d90613ce6565b801561086a5780601f1061083f5761010080835404028352916020019161086a565b820191906000526020600020905b81548152906001019060200180831161084d57829003601f168201915b5050505050905090565b600061087f82611cf1565b6108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b5906138a8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090482610d31565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613928565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610994611d5d565b73ffffffffffffffffffffffffffffffffffffffff1614806109c357506109c2816109bd611d5d565b611a47565b5b610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f9906137e8565b60405180910390fd5b610a0c8383611d65565b505050565b610a19611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610a376112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906138c8565b60405180910390fd5b610a978282611e1e565b5050565b6000600854905090565b600d60009054906101000a900460ff1681565b610ac9610ac3611d5d565b82611e92565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613948565b60405180910390fd5b610b13838383611f70565b505050565b60095481565b610b26611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610b446112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906138c8565b60405180910390fd5b6009546001600854610bac9190613b09565b1115610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613968565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167fe7b73c18cc91b99e26ac643b214c5ba69fec3625ac4e031ed1594d9cf10365c76001600854610c349190613b09565b6001604051610c449291906139e3565b60405180910390a2610c788160086000815480929190610c6390613d18565b919050556001610c739190613b09565b6121cc565b50565b610c9683838360405180602001604052806000815250611617565b505050565b610ca3611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610cc16112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906138c8565b60405180910390fd5b80600c9080519060200190610d2d92919061288b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613828565b60405180910390fd5b80915050919050565b600a5481565b600c8054610df690613ce6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2290613ce6565b8015610e6f5780601f10610e4457610100808354040283529160200191610e6f565b820191906000526020600020905b815481529060010190602001808311610e5257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613808565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f37611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610f556112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906138c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff166110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613988565b60405180910390fd5b6000811180156110cd5750600a548111155b61110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613768565b60405180910390fd5b6009548160085461111d9190613b09565b111561115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906136e8565b60405180910390fd5b600b548161116c9190613b90565b34146111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906139a8565b60405180910390fd5b6111b56112b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156111fa573d6000803e3d6000fd5b50611203611d5d565b73ffffffffffffffffffffffffffffffffffffffff167fe7b73c18cc91b99e26ac643b214c5ba69fec3625ac4e031ed1594d9cf10365c760016008546112499190613b09565b83604051611258929190613a0c565b60405180910390a260005b818110156112b15761129e611276611d5d565b6008600081548092919061128990613d18565b9190505560016112999190613b09565b6121cc565b80806112a990613d18565b915050611263565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e7611d5d565b73ffffffffffffffffffffffffffffffffffffffff166113056112b5565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611352906138c8565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60606001805461138790613ce6565b80601f01602080910402602001604051908101604052809291908181526020018280546113b390613ce6565b80156114005780601f106113d557610100808354040283529160200191611400565b820191906000526020600020905b8154815290600101906020018083116113e357829003601f168201915b5050505050905090565b600b5481565b611418611d5d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906137a8565b60405180910390fd5b8060056000611493611d5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611540611d5d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161158591906136ab565b60405180910390a35050565b611599611d5d565b73ffffffffffffffffffffffffffffffffffffffff166115b76112b5565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906138c8565b60405180910390fd5b80600b8190555050565b611628611622611d5d565b83611e92565b611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613948565b60405180910390fd5b6116738484848461239a565b50505050565b611681611d5d565b73ffffffffffffffffffffffffffffffffffffffff1661169f6112b5565b73ffffffffffffffffffffffffffffffffffffffff16146116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec906138c8565b60405180910390fd5b6000811180156117075750600a548111155b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613768565b60405180910390fd5b600954816008546117579190613b09565b1115611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906136e8565b60405180910390fd5b600b54816117a69190613b90565b34146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de906139a8565b60405180910390fd5b6117ef6112b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611834573d6000803e3d6000fd5b5061183d611d5d565b73ffffffffffffffffffffffffffffffffffffffff167fe7b73c18cc91b99e26ac643b214c5ba69fec3625ac4e031ed1594d9cf10365c760016008546118839190613b09565b83604051611892929190613a0c565b60405180910390a260005b818110156118eb576118d86118b0611d5d565b600860008154809291906118c390613d18565b9190505560016118d39190613b09565b6121cc565b80806118e390613d18565b91505061189d565b5050565b60606118fa82611cf1565b611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613888565b60405180910390fd5b600060066000848152602001908152602001600020805461195990613ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461198590613ce6565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b5050505050905060006119e36123f6565b90506000815114156119f9578192505050611a3c565b600082511115611a2e578082604051602001611a16929190613620565b60405160208183030381529060405292505050611a3c565b611a3784612488565b925050505b919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae3611d5d565b73ffffffffffffffffffffffffffffffffffffffff16611b016112b5565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e906138c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe90613728565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd883610d31565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e2782611cf1565b611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613848565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611e8d92919061288b565b505050565b6000611e9d82611cf1565b611edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed3906137c8565b60405180910390fd5b6000611ee783610d31565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f5657508373ffffffffffffffffffffffffffffffffffffffff16611f3e84610874565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f675750611f668185611a47565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f9082610d31565b73ffffffffffffffffffffffffffffffffffffffff1614611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906138e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d90613788565b60405180910390fd5b61206183838361252f565b61206c600082611d65565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bc9190613bea565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121139190613b09565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390613868565b60405180910390fd5b61224581611cf1565b15612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90613748565b60405180910390fd5b6122916000838361252f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e19190613b09565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6123a5848484611f70565b6123b184848484612534565b6123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790613708565b60405180910390fd5b50505050565b6060600c805461240590613ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461243190613ce6565b801561247e5780601f106124535761010080835404028352916020019161247e565b820191906000526020600020905b81548152906001019060200180831161246157829003601f168201915b5050505050905090565b606061249382611cf1565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613908565b60405180910390fd5b60006124dc6123f6565b905060008151116124fc5760405180602001604052806000815250612527565b80612506846126cb565b604051602001612517929190613620565b6040516020818303038152906040525b915050919050565b505050565b60006125558473ffffffffffffffffffffffffffffffffffffffff16612878565b156126be578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257e611d5d565b8786866040518563ffffffff1660e01b81526004016125a0949392919061365f565b602060405180830381600087803b1580156125ba57600080fd5b505af19250505080156125eb57506040513d601f19601f820116820180604052508101906125e89190612c60565b60015b61266e573d806000811461261b576040519150601f19603f3d011682016040523d82523d6000602084013e612620565b606091505b50600081511415612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90613708565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126c3565b600190505b949350505050565b60606000821415612713576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612873565b600082905060005b6000821461274557808061272e90613d18565b915050600a8261273e9190613b5f565b915061271b565b60008167ffffffffffffffff811115612787577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127b95781602001600182028036833780820191505090505b5090505b6000851461286c576001826127d29190613bea565b9150600a856127e19190613d61565b60306127ed9190613b09565b60f81b818381518110612829577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128659190613b5f565b94506127bd565b8093505050505b919050565b600080823b905060008111915050919050565b82805461289790613ce6565b90600052602060002090601f0160209004810192826128b95760008555612900565b82601f106128d257805160ff1916838001178555612900565b82800160010185558215612900579182015b828111156128ff5782518255916020019190600101906128e4565b5b50905061290d9190612911565b5090565b5b8082111561292a576000816000905550600101612912565b5090565b600061294161293c84613a66565b613a35565b90508281526020810184848401111561295957600080fd5b612964848285613ca4565b509392505050565b600061297f61297a84613a96565b613a35565b90508281526020810184848401111561299757600080fd5b6129a2848285613ca4565b509392505050565b6000813590506129b981613e5f565b92915050565b6000813590506129ce81613e76565b92915050565b6000813590506129e381613e8d565b92915050565b6000815190506129f881613e8d565b92915050565b600082601f830112612a0f57600080fd5b8135612a1f84826020860161292e565b91505092915050565b600082601f830112612a3957600080fd5b8135612a4984826020860161296c565b91505092915050565b600081359050612a6181613ea4565b92915050565b600060208284031215612a7957600080fd5b6000612a87848285016129aa565b91505092915050565b60008060408385031215612aa357600080fd5b6000612ab1858286016129aa565b9250506020612ac2858286016129aa565b9150509250929050565b600080600060608486031215612ae157600080fd5b6000612aef868287016129aa565b9350506020612b00868287016129aa565b9250506040612b1186828701612a52565b9150509250925092565b60008060008060808587031215612b3157600080fd5b6000612b3f878288016129aa565b9450506020612b50878288016129aa565b9350506040612b6187828801612a52565b925050606085013567ffffffffffffffff811115612b7e57600080fd5b612b8a878288016129fe565b91505092959194509250565b60008060408385031215612ba957600080fd5b6000612bb7858286016129aa565b9250506020612bc8858286016129bf565b9150509250929050565b60008060408385031215612be557600080fd5b6000612bf3858286016129aa565b9250506020612c0485828601612a52565b9150509250929050565b600060208284031215612c2057600080fd5b6000612c2e848285016129bf565b91505092915050565b600060208284031215612c4957600080fd5b6000612c57848285016129d4565b91505092915050565b600060208284031215612c7257600080fd5b6000612c80848285016129e9565b91505092915050565b600060208284031215612c9b57600080fd5b600082013567ffffffffffffffff811115612cb557600080fd5b612cc184828501612a28565b91505092915050565b600060208284031215612cdc57600080fd5b6000612cea84828501612a52565b91505092915050565b60008060408385031215612d0657600080fd5b6000612d1485828601612a52565b925050602083013567ffffffffffffffff811115612d3157600080fd5b612d3d85828601612a28565b9150509250929050565b612d5081613c1e565b82525050565b612d5f81613c30565b82525050565b6000612d7082613ac6565b612d7a8185613adc565b9350612d8a818560208601613cb3565b612d9381613e4e565b840191505092915050565b612da781613c92565b82525050565b6000612db882613ad1565b612dc28185613aed565b9350612dd2818560208601613cb3565b612ddb81613e4e565b840191505092915050565b6000612df182613ad1565b612dfb8185613afe565b9350612e0b818560208601613cb3565b80840191505092915050565b6000612e24600883613aed565b91507f746f6f206d7563680000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612e64603283613aed565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612eca602683613aed565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f30601c83613aed565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612f70601183613aed565b91507f6d696e742077726f6e67206e756d6265720000000000000000000000000000006000830152602082019050919050565b6000612fb0602483613aed565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613016601983613aed565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613056602c83613aed565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006130bc603883613aed565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613122602a83613aed565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613188602983613aed565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ee602e83613aed565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613254602083613aed565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613294603183613aed565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006132fa602c83613aed565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613360602083613aed565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006133a0602983613aed565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613406602f83613aed565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061346c602183613aed565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134d2603183613aed565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613538603083613aed565b91507f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60008301527f6c6c656374696f6e20616d6f756e742e000000000000000000000000000000006020830152604082019050919050565b600061359e600b83613aed565b91507f6e6f7420737461727465640000000000000000000000000000000000000000006000830152602082019050919050565b60006135de600b83613aed565b91507f76616c7565206572726f720000000000000000000000000000000000000000006000830152602082019050919050565b61361a81613c88565b82525050565b600061362c8285612de6565b91506136388284612de6565b91508190509392505050565b60006020820190506136596000830184612d47565b92915050565b60006080820190506136746000830187612d47565b6136816020830186612d47565b61368e6040830185613611565b81810360608301526136a08184612d65565b905095945050505050565b60006020820190506136c06000830184612d56565b92915050565b600060208201905081810360008301526136e08184612dad565b905092915050565b6000602082019050818103600083015261370181612e17565b9050919050565b6000602082019050818103600083015261372181612e57565b9050919050565b6000602082019050818103600083015261374181612ebd565b9050919050565b6000602082019050818103600083015261376181612f23565b9050919050565b6000602082019050818103600083015261378181612f63565b9050919050565b600060208201905081810360008301526137a181612fa3565b9050919050565b600060208201905081810360008301526137c181613009565b9050919050565b600060208201905081810360008301526137e181613049565b9050919050565b60006020820190508181036000830152613801816130af565b9050919050565b6000602082019050818103600083015261382181613115565b9050919050565b600060208201905081810360008301526138418161317b565b9050919050565b60006020820190508181036000830152613861816131e1565b9050919050565b6000602082019050818103600083015261388181613247565b9050919050565b600060208201905081810360008301526138a181613287565b9050919050565b600060208201905081810360008301526138c1816132ed565b9050919050565b600060208201905081810360008301526138e181613353565b9050919050565b6000602082019050818103600083015261390181613393565b9050919050565b60006020820190508181036000830152613921816133f9565b9050919050565b600060208201905081810360008301526139418161345f565b9050919050565b60006020820190508181036000830152613961816134c5565b9050919050565b600060208201905081810360008301526139818161352b565b9050919050565b600060208201905081810360008301526139a181613591565b9050919050565b600060208201905081810360008301526139c1816135d1565b9050919050565b60006020820190506139dd6000830184613611565b92915050565b60006040820190506139f86000830185613611565b613a056020830184612d9e565b9392505050565b6000604082019050613a216000830185613611565b613a2e6020830184613611565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715613a5c57613a5b613e1f565b5b8060405250919050565b600067ffffffffffffffff821115613a8157613a80613e1f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ab157613ab0613e1f565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b1482613c88565b9150613b1f83613c88565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b5457613b53613d92565b5b828201905092915050565b6000613b6a82613c88565b9150613b7583613c88565b925082613b8557613b84613dc1565b5b828204905092915050565b6000613b9b82613c88565b9150613ba683613c88565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bdf57613bde613d92565b5b828202905092915050565b6000613bf582613c88565b9150613c0083613c88565b925082821015613c1357613c12613d92565b5b828203905092915050565b6000613c2982613c68565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613c9d82613c88565b9050919050565b82818337600083830152505050565b60005b83811015613cd1578082015181840152602081019050613cb6565b83811115613ce0576000848401525b50505050565b60006002820490506001821680613cfe57607f821691505b60208210811415613d1257613d11613df0565b5b50919050565b6000613d2382613c88565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5657613d55613d92565b5b600182019050919050565b6000613d6c82613c88565b9150613d7783613c88565b925082613d8757613d86613dc1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e6881613c1e565b8114613e7357600080fd5b50565b613e7f81613c30565b8114613e8a57600080fd5b50565b613e9681613c3c565b8114613ea157600080fd5b50565b613ead81613c88565b8114613eb857600080fd5b5056fea2646970667358221220cbe5047484bcc253068aa6cfa7573e9a721a35842bf292f7c06510d4ceedc6eb64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c457468657262616e616e61730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000245420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610632578063e1ba304b1461066f578063e985e9c51461069a578063f2fde38b146106d7576101cd565b8063a22cb4651461059b578063a2b40d19146105c4578063b88d4fde146105ed578063c1f2612314610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104f1578063917bb57f1461051c57806395d89b4114610545578063a035b1fe14610570576101cd565b806370a0823114610481578063715018a6146104be5780638c0ffc74146104d5576101cd565b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103c55780636352211e146103ee57806367765b871461042b5780636c0360eb14610456576101cd565b806323b872dd1461031f57806334eafb11146103485780633c49a8a91461037357806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b314610277578063162094c4146102a057806318160ddd146102c95780631f2698ab146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c37565b610700565b60405161020691906136ab565b60405180910390f35b34801561021b57600080fd5b506102246107e2565b60405161023191906136c6565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612cca565b610874565b60405161026e9190613644565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612bd2565b6108f9565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612cf3565b610a11565b005b3480156102d557600080fd5b506102de610a9b565b6040516102eb91906139c8565b60405180910390f35b34801561030057600080fd5b50610309610aa5565b60405161031691906136ab565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612acc565b610ab8565b005b34801561035457600080fd5b5061035d610b18565b60405161036a91906139c8565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190612a67565b610b1e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612acc565b610c7b565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612c89565b610c9b565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612cca565b610d31565b6040516104229190613644565b60405180910390f35b34801561043757600080fd5b50610440610de3565b60405161044d91906139c8565b60405180910390f35b34801561046257600080fd5b5061046b610de9565b60405161047891906136c6565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612a67565b610e77565b6040516104b591906139c8565b60405180910390f35b3480156104ca57600080fd5b506104d3610f2f565b005b6104ef60048036038101906104ea9190612cca565b61106c565b005b3480156104fd57600080fd5b506105066112b5565b6040516105139190613644565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612c0e565b6112df565b005b34801561055157600080fd5b5061055a611378565b60405161056791906136c6565b60405180910390f35b34801561057c57600080fd5b5061058561140a565b60405161059291906139c8565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190612b96565b611410565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612cca565b611591565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612b1b565b611617565b005b610630600480360381019061062b9190612cca565b611679565b005b34801561063e57600080fd5b5061065960048036038101906106549190612cca565b6118ef565b60405161066691906136c6565b60405180910390f35b34801561067b57600080fd5b50610684611a41565b60405161069191906139c8565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190612a90565b611a47565b6040516106ce91906136ab565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190612a67565b611adb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107db57506107da82611c87565b5b9050919050565b6060600080546107f190613ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461081d90613ce6565b801561086a5780601f1061083f5761010080835404028352916020019161086a565b820191906000526020600020905b81548152906001019060200180831161084d57829003601f168201915b5050505050905090565b600061087f82611cf1565b6108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b5906138a8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090482610d31565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90613928565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610994611d5d565b73ffffffffffffffffffffffffffffffffffffffff1614806109c357506109c2816109bd611d5d565b611a47565b5b610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f9906137e8565b60405180910390fd5b610a0c8383611d65565b505050565b610a19611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610a376112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906138c8565b60405180910390fd5b610a978282611e1e565b5050565b6000600854905090565b600d60009054906101000a900460ff1681565b610ac9610ac3611d5d565b82611e92565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613948565b60405180910390fd5b610b13838383611f70565b505050565b60095481565b610b26611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610b446112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906138c8565b60405180910390fd5b6009546001600854610bac9190613b09565b1115610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613968565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167fe7b73c18cc91b99e26ac643b214c5ba69fec3625ac4e031ed1594d9cf10365c76001600854610c349190613b09565b6001604051610c449291906139e3565b60405180910390a2610c788160086000815480929190610c6390613d18565b919050556001610c739190613b09565b6121cc565b50565b610c9683838360405180602001604052806000815250611617565b505050565b610ca3611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610cc16112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906138c8565b60405180910390fd5b80600c9080519060200190610d2d92919061288b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613828565b60405180910390fd5b80915050919050565b600a5481565b600c8054610df690613ce6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2290613ce6565b8015610e6f5780601f10610e4457610100808354040283529160200191610e6f565b820191906000526020600020905b815481529060010190602001808311610e5257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613808565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f37611d5d565b73ffffffffffffffffffffffffffffffffffffffff16610f556112b5565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906138c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff166110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290613988565b60405180910390fd5b6000811180156110cd5750600a548111155b61110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613768565b60405180910390fd5b6009548160085461111d9190613b09565b111561115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906136e8565b60405180910390fd5b600b548161116c9190613b90565b34146111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a4906139a8565b60405180910390fd5b6111b56112b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156111fa573d6000803e3d6000fd5b50611203611d5d565b73ffffffffffffffffffffffffffffffffffffffff167fe7b73c18cc91b99e26ac643b214c5ba69fec3625ac4e031ed1594d9cf10365c760016008546112499190613b09565b83604051611258929190613a0c565b60405180910390a260005b818110156112b15761129e611276611d5d565b6008600081548092919061128990613d18565b9190505560016112999190613b09565b6121cc565b80806112a990613d18565b915050611263565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e7611d5d565b73ffffffffffffffffffffffffffffffffffffffff166113056112b5565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611352906138c8565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60606001805461138790613ce6565b80601f01602080910402602001604051908101604052809291908181526020018280546113b390613ce6565b80156114005780601f106113d557610100808354040283529160200191611400565b820191906000526020600020905b8154815290600101906020018083116113e357829003601f168201915b5050505050905090565b600b5481565b611418611d5d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906137a8565b60405180910390fd5b8060056000611493611d5d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611540611d5d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161158591906136ab565b60405180910390a35050565b611599611d5d565b73ffffffffffffffffffffffffffffffffffffffff166115b76112b5565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611604906138c8565b60405180910390fd5b80600b8190555050565b611628611622611d5d565b83611e92565b611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613948565b60405180910390fd5b6116738484848461239a565b50505050565b611681611d5d565b73ffffffffffffffffffffffffffffffffffffffff1661169f6112b5565b73ffffffffffffffffffffffffffffffffffffffff16146116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec906138c8565b60405180910390fd5b6000811180156117075750600a548111155b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90613768565b60405180910390fd5b600954816008546117579190613b09565b1115611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906136e8565b60405180910390fd5b600b54816117a69190613b90565b34146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de906139a8565b60405180910390fd5b6117ef6112b5565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611834573d6000803e3d6000fd5b5061183d611d5d565b73ffffffffffffffffffffffffffffffffffffffff167fe7b73c18cc91b99e26ac643b214c5ba69fec3625ac4e031ed1594d9cf10365c760016008546118839190613b09565b83604051611892929190613a0c565b60405180910390a260005b818110156118eb576118d86118b0611d5d565b600860008154809291906118c390613d18565b9190505560016118d39190613b09565b6121cc565b80806118e390613d18565b91505061189d565b5050565b60606118fa82611cf1565b611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613888565b60405180910390fd5b600060066000848152602001908152602001600020805461195990613ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461198590613ce6565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b5050505050905060006119e36123f6565b90506000815114156119f9578192505050611a3c565b600082511115611a2e578082604051602001611a16929190613620565b60405160208183030381529060405292505050611a3c565b611a3784612488565b925050505b919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae3611d5d565b73ffffffffffffffffffffffffffffffffffffffff16611b016112b5565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e906138c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe90613728565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dd883610d31565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e2782611cf1565b611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613848565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611e8d92919061288b565b505050565b6000611e9d82611cf1565b611edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed3906137c8565b60405180910390fd5b6000611ee783610d31565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f5657508373ffffffffffffffffffffffffffffffffffffffff16611f3e84610874565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f675750611f668185611a47565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f9082610d31565b73ffffffffffffffffffffffffffffffffffffffff1614611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906138e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d90613788565b60405180910390fd5b61206183838361252f565b61206c600082611d65565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bc9190613bea565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121139190613b09565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390613868565b60405180910390fd5b61224581611cf1565b15612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90613748565b60405180910390fd5b6122916000838361252f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e19190613b09565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6123a5848484611f70565b6123b184848484612534565b6123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790613708565b60405180910390fd5b50505050565b6060600c805461240590613ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461243190613ce6565b801561247e5780601f106124535761010080835404028352916020019161247e565b820191906000526020600020905b81548152906001019060200180831161246157829003601f168201915b5050505050905090565b606061249382611cf1565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990613908565b60405180910390fd5b60006124dc6123f6565b905060008151116124fc5760405180602001604052806000815250612527565b80612506846126cb565b604051602001612517929190613620565b6040516020818303038152906040525b915050919050565b505050565b60006125558473ffffffffffffffffffffffffffffffffffffffff16612878565b156126be578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257e611d5d565b8786866040518563ffffffff1660e01b81526004016125a0949392919061365f565b602060405180830381600087803b1580156125ba57600080fd5b505af19250505080156125eb57506040513d601f19601f820116820180604052508101906125e89190612c60565b60015b61266e573d806000811461261b576040519150601f19603f3d011682016040523d82523d6000602084013e612620565b606091505b50600081511415612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90613708565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126c3565b600190505b949350505050565b60606000821415612713576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612873565b600082905060005b6000821461274557808061272e90613d18565b915050600a8261273e9190613b5f565b915061271b565b60008167ffffffffffffffff811115612787577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127b95781602001600182028036833780820191505090505b5090505b6000851461286c576001826127d29190613bea565b9150600a856127e19190613d61565b60306127ed9190613b09565b60f81b818381518110612829577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128659190613b5f565b94506127bd565b8093505050505b919050565b600080823b905060008111915050919050565b82805461289790613ce6565b90600052602060002090601f0160209004810192826128b95760008555612900565b82601f106128d257805160ff1916838001178555612900565b82800160010185558215612900579182015b828111156128ff5782518255916020019190600101906128e4565b5b50905061290d9190612911565b5090565b5b8082111561292a576000816000905550600101612912565b5090565b600061294161293c84613a66565b613a35565b90508281526020810184848401111561295957600080fd5b612964848285613ca4565b509392505050565b600061297f61297a84613a96565b613a35565b90508281526020810184848401111561299757600080fd5b6129a2848285613ca4565b509392505050565b6000813590506129b981613e5f565b92915050565b6000813590506129ce81613e76565b92915050565b6000813590506129e381613e8d565b92915050565b6000815190506129f881613e8d565b92915050565b600082601f830112612a0f57600080fd5b8135612a1f84826020860161292e565b91505092915050565b600082601f830112612a3957600080fd5b8135612a4984826020860161296c565b91505092915050565b600081359050612a6181613ea4565b92915050565b600060208284031215612a7957600080fd5b6000612a87848285016129aa565b91505092915050565b60008060408385031215612aa357600080fd5b6000612ab1858286016129aa565b9250506020612ac2858286016129aa565b9150509250929050565b600080600060608486031215612ae157600080fd5b6000612aef868287016129aa565b9350506020612b00868287016129aa565b9250506040612b1186828701612a52565b9150509250925092565b60008060008060808587031215612b3157600080fd5b6000612b3f878288016129aa565b9450506020612b50878288016129aa565b9350506040612b6187828801612a52565b925050606085013567ffffffffffffffff811115612b7e57600080fd5b612b8a878288016129fe565b91505092959194509250565b60008060408385031215612ba957600080fd5b6000612bb7858286016129aa565b9250506020612bc8858286016129bf565b9150509250929050565b60008060408385031215612be557600080fd5b6000612bf3858286016129aa565b9250506020612c0485828601612a52565b9150509250929050565b600060208284031215612c2057600080fd5b6000612c2e848285016129bf565b91505092915050565b600060208284031215612c4957600080fd5b6000612c57848285016129d4565b91505092915050565b600060208284031215612c7257600080fd5b6000612c80848285016129e9565b91505092915050565b600060208284031215612c9b57600080fd5b600082013567ffffffffffffffff811115612cb557600080fd5b612cc184828501612a28565b91505092915050565b600060208284031215612cdc57600080fd5b6000612cea84828501612a52565b91505092915050565b60008060408385031215612d0657600080fd5b6000612d1485828601612a52565b925050602083013567ffffffffffffffff811115612d3157600080fd5b612d3d85828601612a28565b9150509250929050565b612d5081613c1e565b82525050565b612d5f81613c30565b82525050565b6000612d7082613ac6565b612d7a8185613adc565b9350612d8a818560208601613cb3565b612d9381613e4e565b840191505092915050565b612da781613c92565b82525050565b6000612db882613ad1565b612dc28185613aed565b9350612dd2818560208601613cb3565b612ddb81613e4e565b840191505092915050565b6000612df182613ad1565b612dfb8185613afe565b9350612e0b818560208601613cb3565b80840191505092915050565b6000612e24600883613aed565b91507f746f6f206d7563680000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612e64603283613aed565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612eca602683613aed565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f30601c83613aed565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612f70601183613aed565b91507f6d696e742077726f6e67206e756d6265720000000000000000000000000000006000830152602082019050919050565b6000612fb0602483613aed565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613016601983613aed565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613056602c83613aed565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006130bc603883613aed565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613122602a83613aed565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613188602983613aed565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ee602e83613aed565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613254602083613aed565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613294603183613aed565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006132fa602c83613aed565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613360602083613aed565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006133a0602983613aed565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613406602f83613aed565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061346c602183613aed565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134d2603183613aed565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613538603083613aed565b91507f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60008301527f6c6c656374696f6e20616d6f756e742e000000000000000000000000000000006020830152604082019050919050565b600061359e600b83613aed565b91507f6e6f7420737461727465640000000000000000000000000000000000000000006000830152602082019050919050565b60006135de600b83613aed565b91507f76616c7565206572726f720000000000000000000000000000000000000000006000830152602082019050919050565b61361a81613c88565b82525050565b600061362c8285612de6565b91506136388284612de6565b91508190509392505050565b60006020820190506136596000830184612d47565b92915050565b60006080820190506136746000830187612d47565b6136816020830186612d47565b61368e6040830185613611565b81810360608301526136a08184612d65565b905095945050505050565b60006020820190506136c06000830184612d56565b92915050565b600060208201905081810360008301526136e08184612dad565b905092915050565b6000602082019050818103600083015261370181612e17565b9050919050565b6000602082019050818103600083015261372181612e57565b9050919050565b6000602082019050818103600083015261374181612ebd565b9050919050565b6000602082019050818103600083015261376181612f23565b9050919050565b6000602082019050818103600083015261378181612f63565b9050919050565b600060208201905081810360008301526137a181612fa3565b9050919050565b600060208201905081810360008301526137c181613009565b9050919050565b600060208201905081810360008301526137e181613049565b9050919050565b60006020820190508181036000830152613801816130af565b9050919050565b6000602082019050818103600083015261382181613115565b9050919050565b600060208201905081810360008301526138418161317b565b9050919050565b60006020820190508181036000830152613861816131e1565b9050919050565b6000602082019050818103600083015261388181613247565b9050919050565b600060208201905081810360008301526138a181613287565b9050919050565b600060208201905081810360008301526138c1816132ed565b9050919050565b600060208201905081810360008301526138e181613353565b9050919050565b6000602082019050818103600083015261390181613393565b9050919050565b60006020820190508181036000830152613921816133f9565b9050919050565b600060208201905081810360008301526139418161345f565b9050919050565b60006020820190508181036000830152613961816134c5565b9050919050565b600060208201905081810360008301526139818161352b565b9050919050565b600060208201905081810360008301526139a181613591565b9050919050565b600060208201905081810360008301526139c1816135d1565b9050919050565b60006020820190506139dd6000830184613611565b92915050565b60006040820190506139f86000830185613611565b613a056020830184612d9e565b9392505050565b6000604082019050613a216000830185613611565b613a2e6020830184613611565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715613a5c57613a5b613e1f565b5b8060405250919050565b600067ffffffffffffffff821115613a8157613a80613e1f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ab157613ab0613e1f565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b1482613c88565b9150613b1f83613c88565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b5457613b53613d92565b5b828201905092915050565b6000613b6a82613c88565b9150613b7583613c88565b925082613b8557613b84613dc1565b5b828204905092915050565b6000613b9b82613c88565b9150613ba683613c88565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bdf57613bde613d92565b5b828202905092915050565b6000613bf582613c88565b9150613c0083613c88565b925082821015613c1357613c12613d92565b5b828203905092915050565b6000613c2982613c68565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613c9d82613c88565b9050919050565b82818337600083830152505050565b60005b83811015613cd1578082015181840152602081019050613cb6565b83811115613ce0576000848401525b50505050565b60006002820490506001821680613cfe57607f821691505b60208210811415613d1257613d11613df0565b5b50919050565b6000613d2382613c88565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5657613d55613d92565b5b600182019050919050565b6000613d6c82613c88565b9150613d7783613c88565b925082613d8757613d86613dc1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e6881613c1e565b8114613e7357600080fd5b50565b613e7f81613c30565b8114613e8a57600080fd5b50565b613e9681613c3c565b8114613ea157600080fd5b50565b613ead81613c88565b8114613eb857600080fd5b5056fea2646970667358221220cbe5047484bcc253068aa6cfa7573e9a721a35842bf292f7c06510d4ceedc6eb64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c457468657262616e616e61730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000245420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Etherbananas
Arg [1] : symbol_ (string): EB
Arg [2] : baseURI_ (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 457468657262616e616e61730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4542000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36569:2603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20534:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21466:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22926:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22463:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37662:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37235:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36934:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23816:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36749:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38901:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24192:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37457:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21160:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36799:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36906:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20890:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35980:148;;;;;;;;;;;;;:::i;:::-;;37900:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35329:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37803:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21635:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36847:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23219:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37561:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24414:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38400:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32754:679;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36715:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23585:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36283:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20534:292;20636:4;20675:25;20660:40;;;:11;:40;;;;:105;;;;20732:33;20717:48;;;:11;:48;;;;20660:105;:158;;;;20782:36;20806:11;20782:23;:36::i;:::-;20660:158;20653:165;;20534:292;;;:::o;21466:100::-;21520:13;21553:5;21546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21466:100;:::o;22926:221::-;23002:7;23030:16;23038:7;23030;:16::i;:::-;23022:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23115:15;:24;23131:7;23115:24;;;;;;;;;;;;;;;;;;;;;23108:31;;22926:221;;;:::o;22463:397::-;22544:13;22560:23;22575:7;22560:14;:23::i;:::-;22544:39;;22608:5;22602:11;;:2;:11;;;;22594:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22688:5;22672:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22697:37;22714:5;22721:12;:10;:12::i;:::-;22697:16;:37::i;:::-;22672:62;22664:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22831:21;22840:2;22844:7;22831:8;:21::i;:::-;22463:397;;;:::o;37662:133::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37754:33:::1;37767:8;37777:9;37754:12;:33::i;:::-;37662:133:::0;;:::o;37235:99::-;37287:7;37314:12;;37307:19;;37235:99;:::o;36934:19::-;;;;;;;;;;;;;:::o;23816:305::-;23977:41;23996:12;:10;:12::i;:::-;24010:7;23977:18;:41::i;:::-;23969:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24085:28;24095:4;24101:2;24105:7;24085:9;:28::i;:::-;23816:305;;;:::o;36749:31::-;;;;:::o;38901:266::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39000:10:::1;;38995:1;38980:12;;:16;;;;:::i;:::-;:30;;38972:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;39091:5;39079:37;;;39111:1;39098:12;;:14;;;;:::i;:::-;39114:1;39079:37;;;;;;;:::i;:::-;;;;;;;;39127:32;39133:5;39144:12;;:14;;;;;;;;;:::i;:::-;;;;;39140:1;:18;;;;:::i;:::-;39127:5;:32::i;:::-;38901:266:::0;:::o;24192:151::-;24296:39;24313:4;24319:2;24323:7;24296:39;;;;;;;;;;;;:16;:39::i;:::-;24192:151;;;:::o;37457:96::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37538:7:::1;37528;:17;;;;;;;;;;;;:::i;:::-;;37457:96:::0;:::o;21160:239::-;21232:7;21252:13;21268:7;:16;21276:7;21268:16;;;;;;;;;;;;;;;;;;;;;21252:32;;21320:1;21303:19;;:5;:19;;;;21295:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21386:5;21379:12;;;21160:239;;;:::o;36799:28::-;;;;:::o;36906:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20890:208::-;20962:7;21007:1;20990:19;;:5;:19;;;;20982:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21074:9;:16;21084:5;21074:16;;;;;;;;;;;;;;;;21067:23;;20890:208;;;:::o;35980:148::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36087:1:::1;36050:40;;36071:6;;;;;;;;;;;36050:40;;;;;;;;;;;;36118:1;36101:6;;:19;;;;;;;;;;;;;;;;;;35980:148::o:0;37900:492::-;37184:7;;;;;;;;;;;37176:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;37990:1:::1;37982:6;:9;:31;;;;;38005:8;;37995:6;:18;;37982:31;37974:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38079:10;;38069:6;38054:12;;:21;;;;:::i;:::-;:35;;38046:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38143:5;;38134:6;:14;;;;:::i;:::-;38121:9;:27;38113:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;38183:7;:5;:7::i;:::-;38175:25;;:36;38201:9;38175:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38239:12;:10;:12::i;:::-;38227:49;;;38266:1;38253:12;;:14;;;;:::i;:::-;38269:6;38227:49;;;;;;;:::i;:::-;;;;;;;;38291:9;38287:98;38307:6;38304:1;:9;38287:98;;;38334:39;38340:12;:10;:12::i;:::-;38358;;:14;;;;;;;;;:::i;:::-;;;;;38354:1;:18;;;;:::i;:::-;38334:5;:39::i;:::-;38315:3;;;;;:::i;:::-;;;;38287:98;;;;37900:492:::0;:::o;35329:87::-;35375:7;35402:6;;;;;;;;;;;35395:13;;35329:87;:::o;37803:89::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37878:6:::1;37868:7;;:16;;;;;;;;;;;;;;;;;;37803:89:::0;:::o;21635:104::-;21691:13;21724:7;21717:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21635:104;:::o;36847:40::-;;;;:::o;23219:295::-;23334:12;:10;:12::i;:::-;23322:24;;:8;:24;;;;23314:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23434:8;23389:18;:32;23408:12;:10;:12::i;:::-;23389:32;;;;;;;;;;;;;;;:42;23422:8;23389:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23487:8;23458:48;;23473:12;:10;:12::i;:::-;23458:48;;;23497:8;23458:48;;;;;;:::i;:::-;;;;;;;;23219:295;;:::o;37561:93::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37637:9:::1;37629:5;:17;;;;37561:93:::0;:::o;24414:285::-;24546:41;24565:12;:10;:12::i;:::-;24579:7;24546:18;:41::i;:::-;24538:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24652:39;24666:4;24672:2;24676:7;24685:5;24652:13;:39::i;:::-;24414:285;;;;:::o;38400:489::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38487:1:::1;38479:6;:9;:31;;;;;38502:8;;38492:6;:18;;38479:31;38471:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38576:10;;38566:6;38551:12;;:21;;;;:::i;:::-;:35;;38543:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38640:5;;38631:6;:14;;;;:::i;:::-;38618:9;:27;38610:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;38680:7;:5;:7::i;:::-;38672:25;;:36;38698:9;38672:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38736:12;:10;:12::i;:::-;38724:49;;;38763:1;38750:12;;:14;;;;:::i;:::-;38766:6;38724:49;;;;;;;:::i;:::-;;;;;;;;38788:9;38784:98;38804:6;38801:1;:9;38784:98;;;38831:39;38837:12;:10;:12::i;:::-;38855;;:14;;;;;;;;;:::i;:::-;;;;;38851:1;:18;;;;:::i;:::-;38831:5;:39::i;:::-;38812:3;;;;;:::i;:::-;;;;38784:98;;;;38400:489:::0;:::o;32754:679::-;32827:13;32861:16;32869:7;32861;:16::i;:::-;32853:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;32944:23;32970:10;:19;32981:7;32970:19;;;;;;;;;;;32944:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000:18;33021:10;:8;:10::i;:::-;33000:31;;33129:1;33113:4;33107:18;:23;33103:72;;;33154:9;33147:16;;;;;;33103:72;33305:1;33285:9;33279:23;:27;33275:108;;;33354:4;33360:9;33337:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33323:48;;;;;;33275:108;33402:23;33417:7;33402:14;:23::i;:::-;33395:30;;;;32754:679;;;;:::o;36715:27::-;;;;:::o;23585:164::-;23682:4;23706:18;:25;23725:5;23706:25;;;;;;;;;;;;;;;:35;23732:8;23706:35;;;;;;;;;;;;;;;;;;;;;;;;;23699:42;;23585:164;;;;:::o;36283:244::-;35560:12;:10;:12::i;:::-;35549:23;;:7;:5;:7::i;:::-;:23;;;35541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36392:1:::1;36372:22;;:8;:22;;;;36364:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36482:8;36453:38;;36474:6;;;;;;;;;;;36453:38;;;;;;;;;;;;36511:8;36502:6;;:17;;;;;;;;;;;;;;;;;;36283:244:::0;:::o;19047:157::-;19132:4;19171:25;19156:40;;;:11;:40;;;;19149:47;;19047:157;;;:::o;26166:127::-;26231:4;26283:1;26255:30;;:7;:16;26263:7;26255:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26248:37;;26166:127;;;:::o;15865:98::-;15918:7;15945:10;15938:17;;15865:98;:::o;30043:174::-;30145:2;30118:15;:24;30134:7;30118:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30201:7;30197:2;30163:46;;30172:23;30187:7;30172:14;:23::i;:::-;30163:46;;;;;;;;;;;;30043:174;;:::o;33589:217::-;33689:16;33697:7;33689;:16::i;:::-;33681:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;33789:9;33767:10;:19;33778:7;33767:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;33589:217;;:::o;26460:348::-;26553:4;26578:16;26586:7;26578;:16::i;:::-;26570:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26654:13;26670:23;26685:7;26670:14;:23::i;:::-;26654:39;;26723:5;26712:16;;:7;:16;;;:51;;;;26756:7;26732:31;;:20;26744:7;26732:11;:20::i;:::-;:31;;;26712:51;:87;;;;26767:32;26784:5;26791:7;26767:16;:32::i;:::-;26712:87;26704:96;;;26460:348;;;;:::o;29381:544::-;29506:4;29479:31;;:23;29494:7;29479:14;:23::i;:::-;:31;;;29471:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29589:1;29575:16;;:2;:16;;;;29567:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29645:39;29666:4;29672:2;29676:7;29645:20;:39::i;:::-;29749:29;29766:1;29770:7;29749:8;:29::i;:::-;29810:1;29791:9;:15;29801:4;29791:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29839:1;29822:9;:13;29832:2;29822:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29870:2;29851:7;:16;29859:7;29851:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29909:7;29905:2;29890:27;;29899:4;29890:27;;;;;;;;;;;;29381:544;;;:::o;28073:382::-;28167:1;28153:16;;:2;:16;;;;28145:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28226:16;28234:7;28226;:16::i;:::-;28225:17;28217:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28288:45;28317:1;28321:2;28325:7;28288:20;:45::i;:::-;28363:1;28346:9;:13;28356:2;28346:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28394:2;28375:7;:16;28383:7;28375:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28439:7;28435:2;28414:33;;28431:1;28414:33;;;;;;;;;;;;28073:382;;:::o;25581:272::-;25695:28;25705:4;25711:2;25715:7;25695:9;:28::i;:::-;25742:48;25765:4;25771:2;25775:7;25784:5;25742:22;:48::i;:::-;25734:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25581:272;;;;:::o;37342:107::-;37402:13;37434:7;37427:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37342:107;:::o;21810:360::-;21883:13;21917:16;21925:7;21917;:16::i;:::-;21909:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21998:21;22022:10;:8;:10::i;:::-;21998:34;;22074:1;22056:7;22050:21;:25;:112;;;;;;;;;;;;;;;;;22115:7;22124:18;:7;:16;:18::i;:::-;22098:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22050:112;22043:119;;;21810:360;;;:::o;32238:93::-;;;;:::o;30782:843::-;30903:4;30929:15;:2;:13;;;:15::i;:::-;30925:693;;;30981:2;30965:36;;;31002:12;:10;:12::i;:::-;31016:4;31022:7;31031:5;30965:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30961:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31228:1;31211:6;:13;:18;31207:341;;;31254:60;;;;;;;;;;:::i;:::-;;;;;;;;31207:341;31498:6;31492:13;31483:6;31479:2;31475:15;31468:38;30961:602;31098:45;;;31088:55;;;:6;:55;;;;31081:62;;;;;30925:693;31602:4;31595:11;;30782:843;;;;;;;:::o;16507:723::-;16563:13;16793:1;16784:5;:10;16780:53;;;16811:10;;;;;;;;;;;;;;;;;;;;;16780:53;16843:12;16858:5;16843:20;;16874:14;16899:78;16914:1;16906:4;:9;16899:78;;16932:8;;;;;:::i;:::-;;;;16963:2;16955:10;;;;;:::i;:::-;;;16899:78;;;16987:19;17019:6;17009:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16987:39;;17037:154;17053:1;17044:5;:10;17037:154;;17081:1;17071:11;;;;;:::i;:::-;;;17148:2;17140:5;:10;;;;:::i;:::-;17127:2;:24;;;;:::i;:::-;17114:39;;17097:6;17104;17097:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17177:2;17168:11;;;;;:::i;:::-;;;17037:154;;;17215:6;17201:21;;;;;16507:723;;;;:::o;7995:422::-;8055:4;8263:12;8374:7;8362:20;8354:28;;8408:1;8401:4;:8;8394:15;;;7995:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:520::-;;;6481:2;6469:9;6460:7;6456:23;6452:32;6449:2;;;6497:1;6494;6487:12;6449:2;6540:1;6565:53;6610:7;6601:6;6590:9;6586:22;6565:53;:::i;:::-;6555:63;;6511:117;6695:2;6684:9;6680:18;6667:32;6726:18;6718:6;6715:30;6712:2;;;6758:1;6755;6748:12;6712:2;6786:63;6841:7;6832:6;6821:9;6817:22;6786:63;:::i;:::-;6776:73;;6638:221;6439:427;;;;;:::o;6872:118::-;6959:24;6977:5;6959:24;:::i;:::-;6954:3;6947:37;6937:53;;:::o;6996:109::-;7077:21;7092:5;7077:21;:::i;:::-;7072:3;7065:34;7055:50;;:::o;7111:360::-;;7225:38;7257:5;7225:38;:::i;:::-;7279:70;7342:6;7337:3;7279:70;:::i;:::-;7272:77;;7358:52;7403:6;7398:3;7391:4;7384:5;7380:16;7358:52;:::i;:::-;7435:29;7457:6;7435:29;:::i;:::-;7430:3;7426:39;7419:46;;7201:270;;;;;:::o;7477:147::-;7572:45;7611:5;7572:45;:::i;:::-;7567:3;7560:58;7550:74;;:::o;7630:364::-;;7746:39;7779:5;7746:39;:::i;:::-;7801:71;7865:6;7860:3;7801:71;:::i;:::-;7794:78;;7881:52;7926:6;7921:3;7914:4;7907:5;7903:16;7881:52;:::i;:::-;7958:29;7980:6;7958:29;:::i;:::-;7953:3;7949:39;7942:46;;7722:272;;;;;:::o;8000:377::-;;8134:39;8167:5;8134:39;:::i;:::-;8189:89;8271:6;8266:3;8189:89;:::i;:::-;8182:96;;8287:52;8332:6;8327:3;8320:4;8313:5;8309:16;8287:52;:::i;:::-;8364:6;8359:3;8355:16;8348:23;;8110:267;;;;;:::o;8383:305::-;;8546:66;8610:1;8605:3;8546:66;:::i;:::-;8539:73;;8642:10;8638:1;8633:3;8629:11;8622:31;8679:2;8674:3;8670:12;8663:19;;8529:159;;;:::o;8694:382::-;;8857:67;8921:2;8916:3;8857:67;:::i;:::-;8850:74;;8954:34;8950:1;8945:3;8941:11;8934:55;9020:20;9015:2;9010:3;9006:12;8999:42;9067:2;9062:3;9058:12;9051:19;;8840:236;;;:::o;9082:370::-;;9245:67;9309:2;9304:3;9245:67;:::i;:::-;9238:74;;9342:34;9338:1;9333:3;9329:11;9322:55;9408:8;9403:2;9398:3;9394:12;9387:30;9443:2;9438:3;9434:12;9427:19;;9228:224;;;:::o;9458:326::-;;9621:67;9685:2;9680:3;9621:67;:::i;:::-;9614:74;;9718:30;9714:1;9709:3;9705:11;9698:51;9775:2;9770:3;9766:12;9759:19;;9604:180;;;:::o;9790:315::-;;9953:67;10017:2;10012:3;9953:67;:::i;:::-;9946:74;;10050:19;10046:1;10041:3;10037:11;10030:40;10096:2;10091:3;10087:12;10080:19;;9936:169;;;:::o;10111:368::-;;10274:67;10338:2;10333:3;10274:67;:::i;:::-;10267:74;;10371:34;10367:1;10362:3;10358:11;10351:55;10437:6;10432:2;10427:3;10423:12;10416:28;10470:2;10465:3;10461:12;10454:19;;10257:222;;;:::o;10485:323::-;;10648:67;10712:2;10707:3;10648:67;:::i;:::-;10641:74;;10745:27;10741:1;10736:3;10732:11;10725:48;10799:2;10794:3;10790:12;10783:19;;10631:177;;;:::o;10814:376::-;;10977:67;11041:2;11036:3;10977:67;:::i;:::-;10970:74;;11074:34;11070:1;11065:3;11061:11;11054:55;11140:14;11135:2;11130:3;11126:12;11119:36;11181:2;11176:3;11172:12;11165:19;;10960:230;;;:::o;11196:388::-;;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11456:34;11452:1;11447:3;11443:11;11436:55;11522:26;11517:2;11512:3;11508:12;11501:48;11575:2;11570:3;11566:12;11559:19;;11342:242;;;:::o;11590:374::-;;11753:67;11817:2;11812:3;11753:67;:::i;:::-;11746:74;;11850:34;11846:1;11841:3;11837:11;11830:55;11916:12;11911:2;11906:3;11902:12;11895:34;11955:2;11950:3;11946:12;11939:19;;11736:228;;;:::o;11970:373::-;;12133:67;12197:2;12192:3;12133:67;:::i;:::-;12126:74;;12230:34;12226:1;12221:3;12217:11;12210:55;12296:11;12291:2;12286:3;12282:12;12275:33;12334:2;12329:3;12325:12;12318:19;;12116:227;;;:::o;12349:378::-;;12512:67;12576:2;12571:3;12512:67;:::i;:::-;12505:74;;12609:34;12605:1;12600:3;12596:11;12589:55;12675:16;12670:2;12665:3;12661:12;12654:38;12718:2;12713:3;12709:12;12702:19;;12495:232;;;:::o;12733:330::-;;12896:67;12960:2;12955:3;12896:67;:::i;:::-;12889:74;;12993:34;12989:1;12984:3;12980:11;12973:55;13054:2;13049:3;13045:12;13038:19;;12879:184;;;:::o;13069:381::-;;13232:67;13296:2;13291:3;13232:67;:::i;:::-;13225:74;;13329:34;13325:1;13320:3;13316:11;13309:55;13395:19;13390:2;13385:3;13381:12;13374:41;13441:2;13436:3;13432:12;13425:19;;13215:235;;;:::o;13456:376::-;;13619:67;13683:2;13678:3;13619:67;:::i;:::-;13612:74;;13716:34;13712:1;13707:3;13703:11;13696:55;13782:14;13777:2;13772:3;13768:12;13761:36;13823:2;13818:3;13814:12;13807:19;;13602:230;;;:::o;13838:330::-;;14001:67;14065:2;14060:3;14001:67;:::i;:::-;13994:74;;14098:34;14094:1;14089:3;14085:11;14078:55;14159:2;14154:3;14150:12;14143:19;;13984:184;;;:::o;14174:373::-;;14337:67;14401:2;14396:3;14337:67;:::i;:::-;14330:74;;14434:34;14430:1;14425:3;14421:11;14414:55;14500:11;14495:2;14490:3;14486:12;14479:33;14538:2;14533:3;14529:12;14522:19;;14320:227;;;:::o;14553:379::-;;14716:67;14780:2;14775:3;14716:67;:::i;:::-;14709:74;;14813:34;14809:1;14804:3;14800:11;14793:55;14879:17;14874:2;14869:3;14865:12;14858:39;14923:2;14918:3;14914:12;14907:19;;14699:233;;;:::o;14938:365::-;;15101:67;15165:2;15160:3;15101:67;:::i;:::-;15094:74;;15198:34;15194:1;15189:3;15185:11;15178:55;15264:3;15259:2;15254:3;15250:12;15243:25;15294:2;15289:3;15285:12;15278:19;;15084:219;;;:::o;15309:381::-;;15472:67;15536:2;15531:3;15472:67;:::i;:::-;15465:74;;15569:34;15565:1;15560:3;15556:11;15549:55;15635:19;15630:2;15625:3;15621:12;15614:41;15681:2;15676:3;15672:12;15665:19;;15455:235;;;:::o;15696:380::-;;15859:67;15923:2;15918:3;15859:67;:::i;:::-;15852:74;;15956:34;15952:1;15947:3;15943:11;15936:55;16022:18;16017:2;16012:3;16008:12;16001:40;16067:2;16062:3;16058:12;16051:19;;15842:234;;;:::o;16082:309::-;;16245:67;16309:2;16304:3;16245:67;:::i;:::-;16238:74;;16342:13;16338:1;16333:3;16329:11;16322:34;16382:2;16377:3;16373:12;16366:19;;16228:163;;;:::o;16397:309::-;;16560:67;16624:2;16619:3;16560:67;:::i;:::-;16553:74;;16657:13;16653:1;16648:3;16644:11;16637:34;16697:2;16692:3;16688:12;16681:19;;16543:163;;;:::o;16712:118::-;16799:24;16817:5;16799:24;:::i;:::-;16794:3;16787:37;16777:53;;:::o;16836:435::-;;17038:95;17129:3;17120:6;17038:95;:::i;:::-;17031:102;;17150:95;17241:3;17232:6;17150:95;:::i;:::-;17143:102;;17262:3;17255:10;;17020:251;;;;;:::o;17277:222::-;;17408:2;17397:9;17393:18;17385:26;;17421:71;17489:1;17478:9;17474:17;17465:6;17421:71;:::i;:::-;17375:124;;;;:::o;17505:640::-;;17738:3;17727:9;17723:19;17715:27;;17752:71;17820:1;17809:9;17805:17;17796:6;17752:71;:::i;:::-;17833:72;17901:2;17890:9;17886:18;17877:6;17833:72;:::i;:::-;17915;17983:2;17972:9;17968:18;17959:6;17915:72;:::i;:::-;18034:9;18028:4;18024:20;18019:2;18008:9;18004:18;17997:48;18062:76;18133:4;18124:6;18062:76;:::i;:::-;18054:84;;17705:440;;;;;;;:::o;18151:210::-;;18276:2;18265:9;18261:18;18253:26;;18289:65;18351:1;18340:9;18336:17;18327:6;18289:65;:::i;:::-;18243:118;;;;:::o;18367:313::-;;18518:2;18507:9;18503:18;18495:26;;18567:9;18561:4;18557:20;18553:1;18542:9;18538:17;18531:47;18595:78;18668:4;18659:6;18595:78;:::i;:::-;18587:86;;18485:195;;;;:::o;18686:419::-;;18890:2;18879:9;18875:18;18867:26;;18939:9;18933:4;18929:20;18925:1;18914:9;18910:17;18903:47;18967:131;19093:4;18967:131;:::i;:::-;18959:139;;18857:248;;;:::o;19111:419::-;;19315:2;19304:9;19300:18;19292:26;;19364:9;19358:4;19354:20;19350:1;19339:9;19335:17;19328:47;19392:131;19518:4;19392:131;:::i;:::-;19384:139;;19282:248;;;:::o;19536:419::-;;19740:2;19729:9;19725:18;19717:26;;19789:9;19783:4;19779:20;19775:1;19764:9;19760:17;19753:47;19817:131;19943:4;19817:131;:::i;:::-;19809:139;;19707:248;;;:::o;19961:419::-;;20165:2;20154:9;20150:18;20142:26;;20214:9;20208:4;20204:20;20200:1;20189:9;20185:17;20178:47;20242:131;20368:4;20242:131;:::i;:::-;20234:139;;20132:248;;;:::o;20386:419::-;;20590:2;20579:9;20575:18;20567:26;;20639:9;20633:4;20629:20;20625:1;20614:9;20610:17;20603:47;20667:131;20793:4;20667:131;:::i;:::-;20659:139;;20557:248;;;:::o;20811:419::-;;21015:2;21004:9;21000:18;20992:26;;21064:9;21058:4;21054:20;21050:1;21039:9;21035:17;21028:47;21092:131;21218:4;21092:131;:::i;:::-;21084:139;;20982:248;;;:::o;21236:419::-;;21440:2;21429:9;21425:18;21417:26;;21489:9;21483:4;21479:20;21475:1;21464:9;21460:17;21453:47;21517:131;21643:4;21517:131;:::i;:::-;21509:139;;21407:248;;;:::o;21661:419::-;;21865:2;21854:9;21850:18;21842:26;;21914:9;21908:4;21904:20;21900:1;21889:9;21885:17;21878:47;21942:131;22068:4;21942:131;:::i;:::-;21934:139;;21832:248;;;:::o;22086:419::-;;22290:2;22279:9;22275:18;22267:26;;22339:9;22333:4;22329:20;22325:1;22314:9;22310:17;22303:47;22367:131;22493:4;22367:131;:::i;:::-;22359:139;;22257:248;;;:::o;22511:419::-;;22715:2;22704:9;22700:18;22692:26;;22764:9;22758:4;22754:20;22750:1;22739:9;22735:17;22728:47;22792:131;22918:4;22792:131;:::i;:::-;22784:139;;22682:248;;;:::o;22936:419::-;;23140:2;23129:9;23125:18;23117:26;;23189:9;23183:4;23179:20;23175:1;23164:9;23160:17;23153:47;23217:131;23343:4;23217:131;:::i;:::-;23209:139;;23107:248;;;:::o;23361:419::-;;23565:2;23554:9;23550:18;23542:26;;23614:9;23608:4;23604:20;23600:1;23589:9;23585:17;23578:47;23642:131;23768:4;23642:131;:::i;:::-;23634:139;;23532:248;;;:::o;23786:419::-;;23990:2;23979:9;23975:18;23967:26;;24039:9;24033:4;24029:20;24025:1;24014:9;24010:17;24003:47;24067:131;24193:4;24067:131;:::i;:::-;24059:139;;23957:248;;;:::o;24211:419::-;;24415:2;24404:9;24400:18;24392:26;;24464:9;24458:4;24454:20;24450:1;24439:9;24435:17;24428:47;24492:131;24618:4;24492:131;:::i;:::-;24484:139;;24382:248;;;:::o;24636:419::-;;24840:2;24829:9;24825:18;24817:26;;24889:9;24883:4;24879:20;24875:1;24864:9;24860:17;24853:47;24917:131;25043:4;24917:131;:::i;:::-;24909:139;;24807:248;;;:::o;25061:419::-;;25265:2;25254:9;25250:18;25242:26;;25314:9;25308:4;25304:20;25300:1;25289:9;25285:17;25278:47;25342:131;25468:4;25342:131;:::i;:::-;25334:139;;25232:248;;;:::o;25486:419::-;;25690:2;25679:9;25675:18;25667:26;;25739:9;25733:4;25729:20;25725:1;25714:9;25710:17;25703:47;25767:131;25893:4;25767:131;:::i;:::-;25759:139;;25657:248;;;:::o;25911:419::-;;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;26082:248;;;:::o;26336:419::-;;26540:2;26529:9;26525:18;26517:26;;26589:9;26583:4;26579:20;26575:1;26564:9;26560:17;26553:47;26617:131;26743:4;26617:131;:::i;:::-;26609:139;;26507:248;;;:::o;26761:419::-;;26965:2;26954:9;26950:18;26942:26;;27014:9;27008:4;27004:20;27000:1;26989:9;26985:17;26978:47;27042:131;27168:4;27042:131;:::i;:::-;27034:139;;26932:248;;;:::o;27186:419::-;;27390:2;27379:9;27375:18;27367:26;;27439:9;27433:4;27429:20;27425:1;27414:9;27410:17;27403:47;27467:131;27593:4;27467:131;:::i;:::-;27459:139;;27357:248;;;:::o;27611:419::-;;27815:2;27804:9;27800:18;27792:26;;27864:9;27858:4;27854:20;27850:1;27839:9;27835:17;27828:47;27892:131;28018:4;27892:131;:::i;:::-;27884:139;;27782:248;;;:::o;28036:419::-;;28240:2;28229:9;28225:18;28217:26;;28289:9;28283:4;28279:20;28275:1;28264:9;28260:17;28253:47;28317:131;28443:4;28317:131;:::i;:::-;28309:139;;28207:248;;;:::o;28461:222::-;;28592:2;28581:9;28577:18;28569:26;;28605:71;28673:1;28662:9;28658:17;28649:6;28605:71;:::i;:::-;28559:124;;;;:::o;28689:348::-;;28856:2;28845:9;28841:18;28833:26;;28869:71;28937:1;28926:9;28922:17;28913:6;28869:71;:::i;:::-;28950:80;29026:2;29015:9;29011:18;29002:6;28950:80;:::i;:::-;28823:214;;;;;:::o;29043:332::-;;29202:2;29191:9;29187:18;29179:26;;29215:71;29283:1;29272:9;29268:17;29259:6;29215:71;:::i;:::-;29296:72;29364:2;29353:9;29349:18;29340:6;29296:72;:::i;:::-;29169:206;;;;;:::o;29381:283::-;;29447:2;29441:9;29431:19;;29489:4;29481:6;29477:17;29596:6;29584:10;29581:22;29560:18;29548:10;29545:34;29542:62;29539:2;;;29607:18;;:::i;:::-;29539:2;29647:10;29643:2;29636:22;29421:243;;;;:::o;29670:331::-;;29821:18;29813:6;29810:30;29807:2;;;29843:18;;:::i;:::-;29807:2;29928:4;29924:9;29917:4;29909:6;29905:17;29901:33;29893:41;;29989:4;29983;29979:15;29971:23;;29736:265;;;:::o;30007:332::-;;30159:18;30151:6;30148:30;30145:2;;;30181:18;;:::i;:::-;30145:2;30266:4;30262:9;30255:4;30247:6;30243:17;30239:33;30231:41;;30327:4;30321;30317:15;30309:23;;30074:265;;;:::o;30345:98::-;;30430:5;30424:12;30414:22;;30403:40;;;:::o;30449:99::-;;30535:5;30529:12;30519:22;;30508:40;;;:::o;30554:168::-;;30671:6;30666:3;30659:19;30711:4;30706:3;30702:14;30687:29;;30649:73;;;;:::o;30728:169::-;;30846:6;30841:3;30834:19;30886:4;30881:3;30877:14;30862:29;;30824:73;;;;:::o;30903:148::-;;31042:3;31027:18;;31017:34;;;;:::o;31057:305::-;;31116:20;31134:1;31116:20;:::i;:::-;31111:25;;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31304:1;31236:66;31232:74;31229:1;31226:81;31223:2;;;31310:18;;:::i;:::-;31223:2;31354:1;31351;31347:9;31340:16;;31101:261;;;;:::o;31368:185::-;;31425:20;31443:1;31425:20;:::i;:::-;31420:25;;31459:20;31477:1;31459:20;:::i;:::-;31454:25;;31498:1;31488:2;;31503:18;;:::i;:::-;31488:2;31545:1;31542;31538:9;31533:14;;31410:143;;;;:::o;31559:348::-;;31622:20;31640:1;31622:20;:::i;:::-;31617:25;;31656:20;31674:1;31656:20;:::i;:::-;31651:25;;31844:1;31776:66;31772:74;31769:1;31766:81;31761:1;31754:9;31747:17;31743:105;31740:2;;;31851:18;;:::i;:::-;31740:2;31899:1;31896;31892:9;31881:20;;31607:300;;;;:::o;31913:191::-;;31973:20;31991:1;31973:20;:::i;:::-;31968:25;;32007:20;32025:1;32007:20;:::i;:::-;32002:25;;32046:1;32043;32040:8;32037:2;;;32051:18;;:::i;:::-;32037:2;32096:1;32093;32089:9;32081:17;;31958:146;;;;:::o;32110:96::-;;32176:24;32194:5;32176:24;:::i;:::-;32165:35;;32155:51;;;:::o;32212:90::-;;32289:5;32282:13;32275:21;32264:32;;32254:48;;;:::o;32308:149::-;;32384:66;32377:5;32373:78;32362:89;;32352:105;;;:::o;32463:126::-;;32540:42;32533:5;32529:54;32518:65;;32508:81;;;:::o;32595:77::-;;32661:5;32650:16;;32640:32;;;:::o;32678:121::-;;32769:24;32787:5;32769:24;:::i;:::-;32756:37;;32746:53;;;:::o;32805:154::-;32889:6;32884:3;32879;32866:30;32951:1;32942:6;32937:3;32933:16;32926:27;32856:103;;;:::o;32965:307::-;33033:1;33043:113;33057:6;33054:1;33051:13;33043:113;;;33142:1;33137:3;33133:11;33127:18;33123:1;33118:3;33114:11;33107:39;33079:2;33076:1;33072:10;33067:15;;33043:113;;;33174:6;33171:1;33168:13;33165:2;;;33254:1;33245:6;33240:3;33236:16;33229:27;33165:2;33014:258;;;;:::o;33278:320::-;;33359:1;33353:4;33349:12;33339:22;;33406:1;33400:4;33396:12;33427:18;33417:2;;33483:4;33475:6;33471:17;33461:27;;33417:2;33545;33537:6;33534:14;33514:18;33511:38;33508:2;;;33564:18;;:::i;:::-;33508:2;33329:269;;;;:::o;33604:233::-;;33666:24;33684:5;33666:24;:::i;:::-;33657:33;;33712:66;33705:5;33702:77;33699:2;;;33782:18;;:::i;:::-;33699:2;33829:1;33822:5;33818:13;33811:20;;33647:190;;;:::o;33843:176::-;;33892:20;33910:1;33892:20;:::i;:::-;33887:25;;33926:20;33944:1;33926:20;:::i;:::-;33921:25;;33965:1;33955:2;;33970:18;;:::i;:::-;33955:2;34011:1;34008;34004:9;33999:14;;33877:142;;;;:::o;34025:180::-;34073:77;34070:1;34063:88;34170:4;34167:1;34160:15;34194:4;34191:1;34184:15;34211:180;34259:77;34256:1;34249:88;34356:4;34353:1;34346:15;34380:4;34377:1;34370:15;34397:180;34445:77;34442:1;34435:88;34542:4;34539:1;34532:15;34566:4;34563:1;34556:15;34583:180;34631:77;34628:1;34621:88;34728:4;34725:1;34718:15;34752:4;34749:1;34742:15;34769:102;;34861:2;34857:7;34852:2;34845:5;34841:14;34837:28;34827:38;;34817:54;;;:::o;34877:122::-;34950:24;34968:5;34950:24;:::i;:::-;34943:5;34940:35;34930:2;;34989:1;34986;34979:12;34930:2;34920:79;:::o;35005:116::-;35075:21;35090:5;35075:21;:::i;:::-;35068:5;35065:32;35055:2;;35111:1;35108;35101:12;35055:2;35045:76;:::o;35127:120::-;35199:23;35216:5;35199:23;:::i;:::-;35192:5;35189:34;35179:2;;35237:1;35234;35227:12;35179:2;35169:78;:::o;35253:122::-;35326:24;35344:5;35326:24;:::i;:::-;35319:5;35316:35;35306:2;;35365:1;35362;35355:12;35306:2;35296:79;:::o

Swarm Source

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