ETH Price: $2,654.46 (+0.44%)

Token

InsaneBoxKids (IBK)
 

Overview

Max Total Supply

554 IBK

Holders

205

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nftrepreneur.eth
Balance
3 IBK
0x79137D62F126836f96FED0fE044C7c0023F6cD15
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:
InsaneBoxKids

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-02
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/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) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/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: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol



pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol



pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/InsaneBoxKids.sol


pragma solidity >=0.8.0 <0.9.0;








contract InsaneBoxKids is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenId;

    uint256 public constant MAX_ELEMENTS = 9500;
    uint256 public constant MAX_FEMALE = 500;
    uint256 public constant RESERVES = 25;
    uint256 public price = 0.05 ether;
    uint256 public constant MAX_BY_MINT = 10;

    address public constant creatorAddress = 0x2C0AE94503dFeEA20AA7B71cB9884C9B5db42CB6; // 45%
    address public constant devAddress = 0x75479B52c8ccBD74716fb3EA17074AAeF14c66a2;  // 25%
    address public constant artistAddress = 0xdcd14a1325b1fd98A275b195A60a01FDF4a10803; //  25%
    address public constant IBKAddress = 0x29864E60135E96Ab9D2495c0BFff5d54CF35F9e0; // 5%
    
    uint private femaleSaleTime = 1630627200; // September 2, 2021 20:00 EST
    uint private saleTime = 1633046400; // September 30, 2021 20:00 EST
    uint private preSaleTime = 1633046400; // September 30, 2021 20:00 EST
    uint256 private _preSaleSupply = 6;
    string public baseTokenURI;
    
    mapping(address => bool) addressToPreSaleEntry;
    mapping(address => uint256) addressToPreSaleMints;
    constructor(string memory baseURI) ERC721("InsaneBoxKids", "IBK") {
        setBaseURI(baseURI);
        pause(true);
    }

    modifier femaleSaleIsOpen() {
        require(block.timestamp >= femaleSaleTime, "Sale has not started yet.");
        require(totalSupply() <= MAX_FEMALE, "Female sale has ended.");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        if (_msgSender() != owner()) {
            require(block.timestamp >= saleTime, "Sales not open");
        }
        _;
    }
    modifier preSaleIsOpen {
        require(block.timestamp >= preSaleTime, "The presale has not started yet.");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
    
    function _totalSupply() internal view returns (uint) {
        return _tokenId.current();
    }
    function totalMint() public view returns (uint256) {
        return totalSupply();
    }
    function setSaleTime(uint256 _time) public onlyOwner {
        saleTime = _time;
    }
    function setPreSaleTime(uint256 _time) public onlyOwner {
        preSaleTime = _time;
    }
    function getSaleTime() public view returns (uint256){
        return saleTime;
    }
     function getPreSaleTime() public view returns (uint256){
        return preSaleTime;
    }
    function setPreSaleSupply(uint256 _val) public onlyOwner {
        _preSaleSupply = _val;
    }
    function getPreSaleSupply() public view returns (uint256){
        return _preSaleSupply;
    }
    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }
    function getPrice() public view returns (uint256) {
        return price;
    }
    function pause(bool value) public onlyOwner {
        if(value == true){
            _pause();
            return;
        }
        _unpause();
    }
   
    function addWalletToPreSale(address _address) public onlyOwner {
        addressToPreSaleEntry[_address] = true;
    }
    function isWalletInPreSale(address _address) public view returns (bool){
        return addressToPreSaleEntry[_address];
    }
    function preSaleKidsMinted(address _address) public view returns (uint256){
        return addressToPreSaleMints[_address];
    }
    function femaleSaleMint(uint256 _count) public payable femaleSaleIsOpen {
        uint256 totalSupply = totalSupply();
        
        require(totalSupply < MAX_FEMALE, "All females are already minted.");
        require(totalSupply + _count <= MAX_FEMALE, "This amount will exceed max supply.");
        require(price * _count <= msg.value, "Transaction value is too low.");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        for(uint256 i = 0; i < _count; i++){
            _safeMint(msg.sender, totalSupply + i);
        }

    }
    function preSaleMint(uint256 _count) public payable preSaleIsOpen {
        uint256 totalSupply = totalSupply();
        require(_count <= _preSaleSupply, "Mint transaction exceeds the available supply.");
        require(addressToPreSaleEntry[msg.sender] == true, "This address does not have access to the presale.");
        require(addressToPreSaleMints[msg.sender] + _count <= _preSaleSupply, "Exceeds supply of available mints.");
        require(price * _count <= msg.value, "Transaction value too low.");
        
        for(uint i; i < _count; i++){
            _safeMint(msg.sender, totalSupply + i);
        }
        addressToPreSaleMints[msg.sender] += _count;
    }
    function mint(uint256 _count) public payable saleIsOpen {
        uint256 totalSupply = totalSupply();
        require(totalSupply + _count <= MAX_ELEMENTS, "Max limit");
        require(totalSupply <= MAX_ELEMENTS, "Sale has ended");
        require(_count <= MAX_BY_MINT, "Exceeds number of allowed tokens to mint.");
        require(msg.value >= price * _count, "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }
   
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

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

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0){
            return new uint256[](0);
        }
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

 
    function reserve(uint256 _count) public onlyOwner {
        uint256 total = totalSupply();
        require(total + _count <= RESERVES, "Exceeded");

        for (uint256 i = 0; i < _count; i++) {
            _safeMint(IBKAddress, total + i);
        }
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _withdraw(devAddress, balance.mul(25).div(100));
        _withdraw(artistAddress, balance.mul(25).div(100));
        _withdraw(IBKAddress, balance.mul(5).div(100));
        _withdraw(creatorAddress, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
     function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
     function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"IBKAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEMALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWalletToPreSale","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":[],"name":"artistAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"femaleSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWalletInPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"preSaleKidsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"_count","type":"uint256"}],"name":"reserve","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPreSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPreSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266b1a2bc2ec50000600c556361316580600d556361564f80600e556361564f80600f5560066010553480156200003957600080fd5b5060405162003635380380620036358339810160408190526200005c9162000422565b604080518082018252600d81526c496e73616e65426f784b69647360981b60208083019182528351808501909452600384526249424b60e81b908401528151919291620000ac916000916200037c565b508051620000c29060019060208401906200037c565b505050620000df620000d96200010a60201b60201c565b6200010e565b600a805460ff60a01b19169055620000f78162000160565b620001036001620001c8565b5062000551565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001af5760405162461bcd60e51b815260206004820181905260248201526000805160206200361583398151915260448201526064015b60405180910390fd5b8051620001c49060119060208401906200037c565b5050565b600a546001600160a01b03163314620002135760405162461bcd60e51b81526020600482018190526024820152600080516020620036158339815191526044820152606401620001a6565b600181151514156200022c576200022962000236565b50565b62000229620002e5565b6200024a600a54600160a01b900460ff1690565b156200028c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001a6565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002c83390565b6040516001600160a01b03909116815260200160405180910390a1565b620002f9600a54600160a01b900460ff1690565b620003475760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401620001a6565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33620002c8565b8280546200038a90620004fe565b90600052602060002090601f016020900481019282620003ae5760008555620003f9565b82601f10620003c957805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f9578251825591602001919060010190620003dc565b50620004079291506200040b565b5090565b5b808211156200040757600081556001016200040c565b600060208083850312156200043657600080fd5b82516001600160401b03808211156200044e57600080fd5b818501915085601f8301126200046357600080fd5b8151818111156200047857620004786200053b565b604051601f8201601f19908116603f01168101908382118183101715620004a357620004a36200053b565b816040528281528886848701011115620004bc57600080fd5b600093505b82841015620004e05784840186015181850187015292850192620004c1565b82841115620004f25760008684830101525b98975050505050505050565b600181811c908216806200051357607f821691505b602082108114156200053557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6130b480620005616000396000f3fe6080604052600436106102e45760003560e01c806369ce40e311610190578063a22cb465116100dc578063d4dfaada11610095578063e0c3caa91161006f578063e0c3caa91461088d578063e927fc5c146108a3578063e985e9c5146108cb578063f2fde38b1461091457600080fd5b8063d4dfaada1461083b578063d547cfb714610850578063d7eb3f3a1461086557600080fd5b8063a22cb4651461076d578063ae8e5ec91461078d578063b015cf98146107c6578063b88d4fde146107e6578063c87b56dd14610806578063cbf21fe41461082657600080fd5b80638ad5de281161014957806395d89b411161012357806395d89b411461071a57806398d5fdca1461072f578063a035b1fe14610744578063a0712d681461075a57600080fd5b80638ad5de28146106c75780638da5cb5b146106dc57806391b7f5ed146106fa57600080fd5b806369ce40e31461064257806370a0823114610657578063715018a6146106775780637835c6351461068c578063819b25ba1461069f578063853828b6146106bf57600080fd5b80633502a7161161024f5780634f6ccce71161020857806355f804b3116101e257806355f804b3146105ce57806359a7715a146105ee5780635c975abb146106035780636352211e1461062257600080fd5b80634f6ccce7146105735780634f88f707146105935780635045bb38146105a657600080fd5b80633502a716146104a85780633ad10ef6146104be5780633bd2b67d146104e657806342842e0e1461050657806342966c6814610526578063438b63001461054657600080fd5b80630f0e4f73116102a15780630f0e4f73146103dd57806318160ddd146103fd578063233f50661461041257806323b872dd14610432578063292c226a146104525780632f745c591461048857600080fd5b806301ffc9a7146102e957806302329a291461031e57806306fdde0314610340578063081812fc146103625780630922f9c51461039a578063095ea7b3146103bd575b600080fd5b3480156102f557600080fd5b50610309610304366004612c75565b610934565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612c5a565b610945565b005b34801561034c57600080fd5b50610355610996565b6040516103159190612ded565b34801561036e57600080fd5b5061038261037d366004612cf8565b610a28565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b506103af601981565b604051908152602001610315565b3480156103c957600080fd5b5061033e6103d8366004612c30565b610abd565b3480156103e957600080fd5b5061033e6103f8366004612cf8565b610bd3565b34801561040957600080fd5b506008546103af565b34801561041e57600080fd5b5061033e61042d366004612b00565b610c02565b34801561043e57600080fd5b5061033e61044d366004612b4e565b610c50565b34801561045e57600080fd5b506103af61046d366004612b00565b6001600160a01b031660009081526013602052604090205490565b34801561049457600080fd5b506103af6104a3366004612c30565b610c82565b3480156104b457600080fd5b506103af61251c81565b3480156104ca57600080fd5b506103827375479b52c8ccbd74716fb3ea17074aaef14c66a281565b3480156104f257600080fd5b5061033e610501366004612cf8565b610d18565b34801561051257600080fd5b5061033e610521366004612b4e565b610d47565b34801561053257600080fd5b5061033e610541366004612cf8565b610d62565b34801561055257600080fd5b50610566610561366004612b00565b610dd9565b6040516103159190612da9565b34801561057f57600080fd5b506103af61058e366004612cf8565b610e92565b61033e6105a1366004612cf8565b610f25565b3480156105b257600080fd5b506103827329864e60135e96ab9d2495c0bfff5d54cf35f9e081565b3480156105da57600080fd5b5061033e6105e9366004612caf565b61119a565b3480156105fa57600080fd5b506103af6111db565b34801561060f57600080fd5b50600a54600160a01b900460ff16610309565b34801561062e57600080fd5b5061038261063d366004612cf8565b6111eb565b34801561064e57600080fd5b50600f546103af565b34801561066357600080fd5b506103af610672366004612b00565b611262565b34801561068357600080fd5b5061033e6112e9565b61033e61069a366004612cf8565b61131f565b3480156106ab57600080fd5b5061033e6106ba366004612cf8565b6115c9565b61033e611684565b3480156106d357600080fd5b506103af600a81565b3480156106e857600080fd5b50600a546001600160a01b0316610382565b34801561070657600080fd5b5061033e610715366004612cf8565b61175a565b34801561072657600080fd5b50610355611789565b34801561073b57600080fd5b50600c546103af565b34801561075057600080fd5b506103af600c5481565b61033e610768366004612cf8565b611798565b34801561077957600080fd5b5061033e610788366004612c06565b6119a7565b34801561079957600080fd5b506103096107a8366004612b00565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156107d257600080fd5b5061033e6107e1366004612cf8565b611a6c565b3480156107f257600080fd5b5061033e610801366004612b8a565b611a9b565b34801561081257600080fd5b50610355610821366004612cf8565b611ad3565b34801561083257600080fd5b50600e546103af565b34801561084757600080fd5b506010546103af565b34801561085c57600080fd5b50610355611bae565b34801561087157600080fd5b5061038273dcd14a1325b1fd98a275b195a60a01fdf4a1080381565b34801561089957600080fd5b506103af6101f481565b3480156108af57600080fd5b50610382732c0ae94503dfeea20aa7b71cb9884c9b5db42cb681565b3480156108d757600080fd5b506103096108e6366004612b1b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561092057600080fd5b5061033e61092f366004612b00565b611c3c565b600061093f82611cd4565b92915050565b600a546001600160a01b031633146109785760405162461bcd60e51b815260040161096f90612e7c565b60405180910390fd5b6001811515141561098e5761098b611cf9565b50565b61098b611d7b565b6060600080546109a590612f90565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190612f90565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096f565b506000908152600460205260409020546001600160a01b031690565b6000610ac8826111eb565b9050806001600160a01b0316836001600160a01b03161415610b365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096f565b336001600160a01b0382161480610b525750610b5281336108e6565b610bc45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096f565b610bce8383611dff565b505050565b600a546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161096f90612e7c565b600f55565b600a546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161096f90612e7c565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b610c5b335b82611e6d565b610c775760405162461bcd60e51b815260040161096f90612eb1565b610bce838383611f64565b6000610c8d83611262565b8210610cef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161096f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d425760405162461bcd60e51b815260040161096f90612e7c565b600e55565b610bce83838360405180602001604052806000815250611a9b565b610d6b33610c55565b610dd05760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161096f565b61098b8161210f565b60606000610de683611262565b905080610e075760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610e2257610e22613052565b604051908082528060200260200182016040528015610e4b578160200160208202803683370190505b50905060005b82811015610dff57610e638582610c82565b828281518110610e7557610e7561303c565b602090810291909101015280610e8a81612fcb565b915050610e51565b6000610e9d60085490565b8210610f005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161096f565b60088281548110610f1357610f1361303c565b90600052602060002001549050919050565b600d54421015610f775760405162461bcd60e51b815260206004820152601960248201527f53616c6520686173206e6f742073746172746564207965742e00000000000000604482015260640161096f565b6101f4610f8360085490565b1115610fca5760405162461bcd60e51b81526020600482015260166024820152752332b6b0b6329039b0b632903430b99032b73232b21760511b604482015260640161096f565b600a546001600160a01b0316331461100657600a54600160a01b900460ff16156110065760405162461bcd60e51b815260040161096f90612e52565b600061101160085490565b90506101f481106110645760405162461bcd60e51b815260206004820152601f60248201527f416c6c2066656d616c65732061726520616c7265616479206d696e7465642e00604482015260640161096f565b6101f46110718383612f02565b11156110cb5760405162461bcd60e51b815260206004820152602360248201527f5468697320616d6f756e742077696c6c20657863656564206d61782073757070604482015262363c9760e91b606482015260840161096f565b3482600c546110da9190612f2e565b11156111285760405162461bcd60e51b815260206004820152601d60248201527f5472616e73616374696f6e2076616c756520697320746f6f206c6f772e000000604482015260640161096f565b600a82111561116a5760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b604482015260640161096f565b60005b82811015610bce57611188336111838385612f02565b6121b6565b8061119281612fcb565b91505061116d565b600a546001600160a01b031633146111c45760405162461bcd60e51b815260040161096f90612e7c565b80516111d79060119060208401906129c5565b5050565b60006111e660085490565b905090565b6000818152600260205260408120546001600160a01b03168061093f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161096f565b60006001600160a01b0382166112cd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161096f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113135760405162461bcd60e51b815260040161096f90612e7c565b61131d60006121d0565b565b600f544210156113715760405162461bcd60e51b815260206004820181905260248201527f5468652070726573616c6520686173206e6f742073746172746564207965742e604482015260640161096f565b600a546001600160a01b031633146113ad57600a54600160a01b900460ff16156113ad5760405162461bcd60e51b815260040161096f90612e52565b60006113b860085490565b90506010548211156114235760405162461bcd60e51b815260206004820152602e60248201527f4d696e74207472616e73616374696f6e2065786365656473207468652061766160448201526d34b630b136329039bab838363c9760911b606482015260840161096f565b3360009081526012602052604090205460ff1615156001146114a15760405162461bcd60e51b815260206004820152603160248201527f54686973206164647265737320646f6573206e6f74206861766520616363657360448201527039903a37903a343290383932b9b0b6329760791b606482015260840161096f565b601054336000908152601360205260409020546114bf908490612f02565b11156115185760405162461bcd60e51b815260206004820152602260248201527f4578636565647320737570706c79206f6620617661696c61626c65206d696e74604482015261399760f11b606482015260840161096f565b3482600c546115279190612f2e565b11156115755760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000604482015260640161096f565b60005b828110156115a05761158e336111838385612f02565b8061159881612fcb565b915050611578565b5033600090815260136020526040812080548492906115c0908490612f02565b90915550505050565b600a546001600160a01b031633146115f35760405162461bcd60e51b815260040161096f90612e7c565b60006115fe60085490565b9050601961160c8383612f02565b11156116455760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b604482015260640161096f565b60005b82811015610bce576116727329864e60135e96ab9d2495c0bfff5d54cf35f9e06111838385612f02565b8061167c81612fcb565b915050611648565b600a546001600160a01b031633146116ae5760405162461bcd60e51b815260040161096f90612e7c565b47806116b957600080fd5b6116ec7375479b52c8ccbd74716fb3ea17074aaef14c66a26116e760646116e1856019612222565b9061222e565b61223a565b61171473dcd14a1325b1fd98a275b195a60a01fdf4a108036116e760646116e1856019612222565b61173c7329864e60135e96ab9d2495c0bfff5d54cf35f9e06116e760646116e1856005612222565b61098b732c0ae94503dfeea20aa7b71cb9884c9b5db42cb64761223a565b600a546001600160a01b031633146117845760405162461bcd60e51b815260040161096f90612e7c565b600c55565b6060600180546109a590612f90565b61251c6117a36122d0565b11156117dc5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161096f565b600a546001600160a01b0316331461183157600e544210156118315760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b604482015260640161096f565b600061183c60085490565b905061251c61184b8383612f02565b11156118855760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161096f565b61251c8111156118c85760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a185cc8195b99195960921b604482015260640161096f565b600a82111561192b5760405162461bcd60e51b815260206004820152602960248201527f45786365656473206e756d626572206f6620616c6c6f77656420746f6b656e73604482015268103a379036b4b73a1760b91b606482015260840161096f565b81600c546119399190612f2e565b34101561197c5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161096f565b60005b82811015610bce57611995336111838385612f02565b8061199f81612fcb565b91505061197f565b6001600160a01b038216331415611a005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a965760405162461bcd60e51b815260040161096f90612e7c565b601055565b611aa53383611e6d565b611ac15760405162461bcd60e51b815260040161096f90612eb1565b611acd848484846122db565b50505050565b6000818152600260205260409020546060906001600160a01b0316611b525760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096f565b6000611b5c61230e565b90506000815111611b7c5760405180602001604052806000815250611ba7565b80611b868461231d565b604051602001611b97929190612d3d565b6040516020818303038152906040525b9392505050565b60118054611bbb90612f90565b80601f0160208091040260200160405190810160405280929190818152602001828054611be790612f90565b8015611c345780601f10611c0957610100808354040283529160200191611c34565b820191906000526020600020905b815481529060010190602001808311611c1757829003601f168201915b505050505081565b600a546001600160a01b03163314611c665760405162461bcd60e51b815260040161096f90612e7c565b6001600160a01b038116611ccb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b61098b816121d0565b60006001600160e01b0319821663780e9d6360e01b148061093f575061093f8261241b565b600a54600160a01b900460ff1615611d235760405162461bcd60e51b815260040161096f90612e52565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d5e3390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff16611dcb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161096f565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611d5e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e34826111eb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ee65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096f565b6000611ef1836111eb565b9050806001600160a01b0316846001600160a01b03161480611f2c5750836001600160a01b0316611f2184610a28565b6001600160a01b0316145b80611f5c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f77826111eb565b6001600160a01b031614611fdf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161096f565b6001600160a01b0382166120415760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096f565b61204c83838361246b565b612057600082611dff565b6001600160a01b0383166000908152600360205260408120805460019290612080908490612f4d565b90915550506001600160a01b03821660009081526003602052604081208054600192906120ae908490612f02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061211a826111eb565b90506121288160008461246b565b612133600083611dff565b6001600160a01b038116600090815260036020526040812080546001929061215c908490612f4d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6111d7828260405180602001604052806000815250612476565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611ba78284612f2e565b6000611ba78284612f1a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b5050905080610bce5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161096f565b60006111e6600b5490565b6122e6848484611f64565b6122f2848484846124a9565b611acd5760405162461bcd60e51b815260040161096f90612e00565b6060601180546109a590612f90565b6060816123415750506040805180820190915260018152600360fc1b602082015290565b8160005b811561236b578061235581612fcb565b91506123649050600a83612f1a565b9150612345565b60008167ffffffffffffffff81111561238657612386613052565b6040519080825280601f01601f1916602001820160405280156123b0576020820181803683370190505b5090505b8415611f5c576123c5600183612f4d565b91506123d2600a86612fe6565b6123dd906030612f02565b60f81b8183815181106123f2576123f261303c565b60200101906001600160f81b031916908160001a905350612414600a86612f1a565b94506123b4565b60006001600160e01b031982166380ac58cd60e01b148061244c57506001600160e01b03198216635b5e139f60e01b145b8061093f57506301ffc9a760e01b6001600160e01b031983161461093f565b610bce8383836125b6565b612480838361262f565b61248d60008484846124a9565b610bce5760405162461bcd60e51b815260040161096f90612e00565b60006001600160a01b0384163b156125ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124ed903390899088908890600401612d6c565b602060405180830381600087803b15801561250757600080fd5b505af1925050508015612537575060408051601f3d908101601f1916820190925261253491810190612c92565b60015b612591573d808015612565576040519150601f19603f3d011682016040523d82523d6000602084013e61256a565b606091505b5080516125895760405162461bcd60e51b815260040161096f90612e00565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f5c565b506001949350505050565b6125c183838361277d565b600a54600160a01b900460ff1615610bce5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161096f565b6001600160a01b0382166126855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161096f565b6000818152600260205260409020546001600160a01b0316156126ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161096f565b6126f66000838361246b565b6001600160a01b038216600090815260036020526040812080546001929061271f908490612f02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166127d8576127d381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127fb565b816001600160a01b0316836001600160a01b0316146127fb576127fb8382612835565b6001600160a01b03821661281257610bce816128d2565b826001600160a01b0316826001600160a01b031614610bce57610bce8282612981565b6000600161284284611262565b61284c9190612f4d565b60008381526007602052604090205490915080821461289f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128e490600190612f4d565b6000838152600960205260408120546008805493945090928490811061290c5761290c61303c565b90600052602060002001549050806008838154811061292d5761292d61303c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061296557612965613026565b6001900381819060005260206000200160009055905550505050565b600061298c83611262565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546129d190612f90565b90600052602060002090601f0160209004810192826129f35760008555612a39565b82601f10612a0c57805160ff1916838001178555612a39565b82800160010185558215612a39579182015b82811115612a39578251825591602001919060010190612a1e565b50612a45929150612a49565b5090565b5b80821115612a455760008155600101612a4a565b600067ffffffffffffffff80841115612a7957612a79613052565b604051601f8501601f19908116603f01168101908282118183101715612aa157612aa1613052565b81604052809350858152868686011115612aba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612aeb57600080fd5b919050565b80358015158114612aeb57600080fd5b600060208284031215612b1257600080fd5b611ba782612ad4565b60008060408385031215612b2e57600080fd5b612b3783612ad4565b9150612b4560208401612ad4565b90509250929050565b600080600060608486031215612b6357600080fd5b612b6c84612ad4565b9250612b7a60208501612ad4565b9150604084013590509250925092565b60008060008060808587031215612ba057600080fd5b612ba985612ad4565b9350612bb760208601612ad4565b925060408501359150606085013567ffffffffffffffff811115612bda57600080fd5b8501601f81018713612beb57600080fd5b612bfa87823560208401612a5e565b91505092959194509250565b60008060408385031215612c1957600080fd5b612c2283612ad4565b9150612b4560208401612af0565b60008060408385031215612c4357600080fd5b612c4c83612ad4565b946020939093013593505050565b600060208284031215612c6c57600080fd5b611ba782612af0565b600060208284031215612c8757600080fd5b8135611ba781613068565b600060208284031215612ca457600080fd5b8151611ba781613068565b600060208284031215612cc157600080fd5b813567ffffffffffffffff811115612cd857600080fd5b8201601f81018413612ce957600080fd5b611f5c84823560208401612a5e565b600060208284031215612d0a57600080fd5b5035919050565b60008151808452612d29816020860160208601612f64565b601f01601f19169290920160200192915050565b60008351612d4f818460208801612f64565b835190830190612d63818360208801612f64565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9f90830184612d11565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612de157835183529284019291840191600101612dc5565b50909695505050505050565b602081526000611ba76020830184612d11565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612f1557612f15612ffa565b500190565b600082612f2957612f29613010565b500490565b6000816000190483118215151615612f4857612f48612ffa565b500290565b600082821015612f5f57612f5f612ffa565b500390565b60005b83811015612f7f578181015183820152602001612f67565b83811115611acd5750506000910152565b600181811c90821680612fa457607f821691505b60208210811415612fc557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fdf57612fdf612ffa565b5060010190565b600082612ff557612ff5613010565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098b57600080fdfea2646970667358221220256ad3317c693df6c326d7eef16a216bd33cafcfcbd864794817e5df20d4a36c64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806369ce40e311610190578063a22cb465116100dc578063d4dfaada11610095578063e0c3caa91161006f578063e0c3caa91461088d578063e927fc5c146108a3578063e985e9c5146108cb578063f2fde38b1461091457600080fd5b8063d4dfaada1461083b578063d547cfb714610850578063d7eb3f3a1461086557600080fd5b8063a22cb4651461076d578063ae8e5ec91461078d578063b015cf98146107c6578063b88d4fde146107e6578063c87b56dd14610806578063cbf21fe41461082657600080fd5b80638ad5de281161014957806395d89b411161012357806395d89b411461071a57806398d5fdca1461072f578063a035b1fe14610744578063a0712d681461075a57600080fd5b80638ad5de28146106c75780638da5cb5b146106dc57806391b7f5ed146106fa57600080fd5b806369ce40e31461064257806370a0823114610657578063715018a6146106775780637835c6351461068c578063819b25ba1461069f578063853828b6146106bf57600080fd5b80633502a7161161024f5780634f6ccce71161020857806355f804b3116101e257806355f804b3146105ce57806359a7715a146105ee5780635c975abb146106035780636352211e1461062257600080fd5b80634f6ccce7146105735780634f88f707146105935780635045bb38146105a657600080fd5b80633502a716146104a85780633ad10ef6146104be5780633bd2b67d146104e657806342842e0e1461050657806342966c6814610526578063438b63001461054657600080fd5b80630f0e4f73116102a15780630f0e4f73146103dd57806318160ddd146103fd578063233f50661461041257806323b872dd14610432578063292c226a146104525780632f745c591461048857600080fd5b806301ffc9a7146102e957806302329a291461031e57806306fdde0314610340578063081812fc146103625780630922f9c51461039a578063095ea7b3146103bd575b600080fd5b3480156102f557600080fd5b50610309610304366004612c75565b610934565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612c5a565b610945565b005b34801561034c57600080fd5b50610355610996565b6040516103159190612ded565b34801561036e57600080fd5b5061038261037d366004612cf8565b610a28565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b506103af601981565b604051908152602001610315565b3480156103c957600080fd5b5061033e6103d8366004612c30565b610abd565b3480156103e957600080fd5b5061033e6103f8366004612cf8565b610bd3565b34801561040957600080fd5b506008546103af565b34801561041e57600080fd5b5061033e61042d366004612b00565b610c02565b34801561043e57600080fd5b5061033e61044d366004612b4e565b610c50565b34801561045e57600080fd5b506103af61046d366004612b00565b6001600160a01b031660009081526013602052604090205490565b34801561049457600080fd5b506103af6104a3366004612c30565b610c82565b3480156104b457600080fd5b506103af61251c81565b3480156104ca57600080fd5b506103827375479b52c8ccbd74716fb3ea17074aaef14c66a281565b3480156104f257600080fd5b5061033e610501366004612cf8565b610d18565b34801561051257600080fd5b5061033e610521366004612b4e565b610d47565b34801561053257600080fd5b5061033e610541366004612cf8565b610d62565b34801561055257600080fd5b50610566610561366004612b00565b610dd9565b6040516103159190612da9565b34801561057f57600080fd5b506103af61058e366004612cf8565b610e92565b61033e6105a1366004612cf8565b610f25565b3480156105b257600080fd5b506103827329864e60135e96ab9d2495c0bfff5d54cf35f9e081565b3480156105da57600080fd5b5061033e6105e9366004612caf565b61119a565b3480156105fa57600080fd5b506103af6111db565b34801561060f57600080fd5b50600a54600160a01b900460ff16610309565b34801561062e57600080fd5b5061038261063d366004612cf8565b6111eb565b34801561064e57600080fd5b50600f546103af565b34801561066357600080fd5b506103af610672366004612b00565b611262565b34801561068357600080fd5b5061033e6112e9565b61033e61069a366004612cf8565b61131f565b3480156106ab57600080fd5b5061033e6106ba366004612cf8565b6115c9565b61033e611684565b3480156106d357600080fd5b506103af600a81565b3480156106e857600080fd5b50600a546001600160a01b0316610382565b34801561070657600080fd5b5061033e610715366004612cf8565b61175a565b34801561072657600080fd5b50610355611789565b34801561073b57600080fd5b50600c546103af565b34801561075057600080fd5b506103af600c5481565b61033e610768366004612cf8565b611798565b34801561077957600080fd5b5061033e610788366004612c06565b6119a7565b34801561079957600080fd5b506103096107a8366004612b00565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156107d257600080fd5b5061033e6107e1366004612cf8565b611a6c565b3480156107f257600080fd5b5061033e610801366004612b8a565b611a9b565b34801561081257600080fd5b50610355610821366004612cf8565b611ad3565b34801561083257600080fd5b50600e546103af565b34801561084757600080fd5b506010546103af565b34801561085c57600080fd5b50610355611bae565b34801561087157600080fd5b5061038273dcd14a1325b1fd98a275b195a60a01fdf4a1080381565b34801561089957600080fd5b506103af6101f481565b3480156108af57600080fd5b50610382732c0ae94503dfeea20aa7b71cb9884c9b5db42cb681565b3480156108d757600080fd5b506103096108e6366004612b1b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561092057600080fd5b5061033e61092f366004612b00565b611c3c565b600061093f82611cd4565b92915050565b600a546001600160a01b031633146109785760405162461bcd60e51b815260040161096f90612e7c565b60405180910390fd5b6001811515141561098e5761098b611cf9565b50565b61098b611d7b565b6060600080546109a590612f90565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190612f90565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096f565b506000908152600460205260409020546001600160a01b031690565b6000610ac8826111eb565b9050806001600160a01b0316836001600160a01b03161415610b365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096f565b336001600160a01b0382161480610b525750610b5281336108e6565b610bc45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096f565b610bce8383611dff565b505050565b600a546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161096f90612e7c565b600f55565b600a546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161096f90612e7c565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b610c5b335b82611e6d565b610c775760405162461bcd60e51b815260040161096f90612eb1565b610bce838383611f64565b6000610c8d83611262565b8210610cef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161096f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d425760405162461bcd60e51b815260040161096f90612e7c565b600e55565b610bce83838360405180602001604052806000815250611a9b565b610d6b33610c55565b610dd05760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161096f565b61098b8161210f565b60606000610de683611262565b905080610e075760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610e2257610e22613052565b604051908082528060200260200182016040528015610e4b578160200160208202803683370190505b50905060005b82811015610dff57610e638582610c82565b828281518110610e7557610e7561303c565b602090810291909101015280610e8a81612fcb565b915050610e51565b6000610e9d60085490565b8210610f005760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161096f565b60088281548110610f1357610f1361303c565b90600052602060002001549050919050565b600d54421015610f775760405162461bcd60e51b815260206004820152601960248201527f53616c6520686173206e6f742073746172746564207965742e00000000000000604482015260640161096f565b6101f4610f8360085490565b1115610fca5760405162461bcd60e51b81526020600482015260166024820152752332b6b0b6329039b0b632903430b99032b73232b21760511b604482015260640161096f565b600a546001600160a01b0316331461100657600a54600160a01b900460ff16156110065760405162461bcd60e51b815260040161096f90612e52565b600061101160085490565b90506101f481106110645760405162461bcd60e51b815260206004820152601f60248201527f416c6c2066656d616c65732061726520616c7265616479206d696e7465642e00604482015260640161096f565b6101f46110718383612f02565b11156110cb5760405162461bcd60e51b815260206004820152602360248201527f5468697320616d6f756e742077696c6c20657863656564206d61782073757070604482015262363c9760e91b606482015260840161096f565b3482600c546110da9190612f2e565b11156111285760405162461bcd60e51b815260206004820152601d60248201527f5472616e73616374696f6e2076616c756520697320746f6f206c6f772e000000604482015260640161096f565b600a82111561116a5760405162461bcd60e51b815260206004820152600e60248201526d22bc31b2b2b23990373ab6b132b960911b604482015260640161096f565b60005b82811015610bce57611188336111838385612f02565b6121b6565b8061119281612fcb565b91505061116d565b600a546001600160a01b031633146111c45760405162461bcd60e51b815260040161096f90612e7c565b80516111d79060119060208401906129c5565b5050565b60006111e660085490565b905090565b6000818152600260205260408120546001600160a01b03168061093f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161096f565b60006001600160a01b0382166112cd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161096f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113135760405162461bcd60e51b815260040161096f90612e7c565b61131d60006121d0565b565b600f544210156113715760405162461bcd60e51b815260206004820181905260248201527f5468652070726573616c6520686173206e6f742073746172746564207965742e604482015260640161096f565b600a546001600160a01b031633146113ad57600a54600160a01b900460ff16156113ad5760405162461bcd60e51b815260040161096f90612e52565b60006113b860085490565b90506010548211156114235760405162461bcd60e51b815260206004820152602e60248201527f4d696e74207472616e73616374696f6e2065786365656473207468652061766160448201526d34b630b136329039bab838363c9760911b606482015260840161096f565b3360009081526012602052604090205460ff1615156001146114a15760405162461bcd60e51b815260206004820152603160248201527f54686973206164647265737320646f6573206e6f74206861766520616363657360448201527039903a37903a343290383932b9b0b6329760791b606482015260840161096f565b601054336000908152601360205260409020546114bf908490612f02565b11156115185760405162461bcd60e51b815260206004820152602260248201527f4578636565647320737570706c79206f6620617661696c61626c65206d696e74604482015261399760f11b606482015260840161096f565b3482600c546115279190612f2e565b11156115755760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000604482015260640161096f565b60005b828110156115a05761158e336111838385612f02565b8061159881612fcb565b915050611578565b5033600090815260136020526040812080548492906115c0908490612f02565b90915550505050565b600a546001600160a01b031633146115f35760405162461bcd60e51b815260040161096f90612e7c565b60006115fe60085490565b9050601961160c8383612f02565b11156116455760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b604482015260640161096f565b60005b82811015610bce576116727329864e60135e96ab9d2495c0bfff5d54cf35f9e06111838385612f02565b8061167c81612fcb565b915050611648565b600a546001600160a01b031633146116ae5760405162461bcd60e51b815260040161096f90612e7c565b47806116b957600080fd5b6116ec7375479b52c8ccbd74716fb3ea17074aaef14c66a26116e760646116e1856019612222565b9061222e565b61223a565b61171473dcd14a1325b1fd98a275b195a60a01fdf4a108036116e760646116e1856019612222565b61173c7329864e60135e96ab9d2495c0bfff5d54cf35f9e06116e760646116e1856005612222565b61098b732c0ae94503dfeea20aa7b71cb9884c9b5db42cb64761223a565b600a546001600160a01b031633146117845760405162461bcd60e51b815260040161096f90612e7c565b600c55565b6060600180546109a590612f90565b61251c6117a36122d0565b11156117dc5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161096f565b600a546001600160a01b0316331461183157600e544210156118315760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b604482015260640161096f565b600061183c60085490565b905061251c61184b8383612f02565b11156118855760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161096f565b61251c8111156118c85760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a185cc8195b99195960921b604482015260640161096f565b600a82111561192b5760405162461bcd60e51b815260206004820152602960248201527f45786365656473206e756d626572206f6620616c6c6f77656420746f6b656e73604482015268103a379036b4b73a1760b91b606482015260840161096f565b81600c546119399190612f2e565b34101561197c5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161096f565b60005b82811015610bce57611995336111838385612f02565b8061199f81612fcb565b91505061197f565b6001600160a01b038216331415611a005760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a965760405162461bcd60e51b815260040161096f90612e7c565b601055565b611aa53383611e6d565b611ac15760405162461bcd60e51b815260040161096f90612eb1565b611acd848484846122db565b50505050565b6000818152600260205260409020546060906001600160a01b0316611b525760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096f565b6000611b5c61230e565b90506000815111611b7c5760405180602001604052806000815250611ba7565b80611b868461231d565b604051602001611b97929190612d3d565b6040516020818303038152906040525b9392505050565b60118054611bbb90612f90565b80601f0160208091040260200160405190810160405280929190818152602001828054611be790612f90565b8015611c345780601f10611c0957610100808354040283529160200191611c34565b820191906000526020600020905b815481529060010190602001808311611c1757829003601f168201915b505050505081565b600a546001600160a01b03163314611c665760405162461bcd60e51b815260040161096f90612e7c565b6001600160a01b038116611ccb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096f565b61098b816121d0565b60006001600160e01b0319821663780e9d6360e01b148061093f575061093f8261241b565b600a54600160a01b900460ff1615611d235760405162461bcd60e51b815260040161096f90612e52565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d5e3390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff16611dcb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161096f565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611d5e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e34826111eb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ee65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096f565b6000611ef1836111eb565b9050806001600160a01b0316846001600160a01b03161480611f2c5750836001600160a01b0316611f2184610a28565b6001600160a01b0316145b80611f5c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f77826111eb565b6001600160a01b031614611fdf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161096f565b6001600160a01b0382166120415760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096f565b61204c83838361246b565b612057600082611dff565b6001600160a01b0383166000908152600360205260408120805460019290612080908490612f4d565b90915550506001600160a01b03821660009081526003602052604081208054600192906120ae908490612f02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061211a826111eb565b90506121288160008461246b565b612133600083611dff565b6001600160a01b038116600090815260036020526040812080546001929061215c908490612f4d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6111d7828260405180602001604052806000815250612476565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611ba78284612f2e565b6000611ba78284612f1a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b5050905080610bce5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161096f565b60006111e6600b5490565b6122e6848484611f64565b6122f2848484846124a9565b611acd5760405162461bcd60e51b815260040161096f90612e00565b6060601180546109a590612f90565b6060816123415750506040805180820190915260018152600360fc1b602082015290565b8160005b811561236b578061235581612fcb565b91506123649050600a83612f1a565b9150612345565b60008167ffffffffffffffff81111561238657612386613052565b6040519080825280601f01601f1916602001820160405280156123b0576020820181803683370190505b5090505b8415611f5c576123c5600183612f4d565b91506123d2600a86612fe6565b6123dd906030612f02565b60f81b8183815181106123f2576123f261303c565b60200101906001600160f81b031916908160001a905350612414600a86612f1a565b94506123b4565b60006001600160e01b031982166380ac58cd60e01b148061244c57506001600160e01b03198216635b5e139f60e01b145b8061093f57506301ffc9a760e01b6001600160e01b031983161461093f565b610bce8383836125b6565b612480838361262f565b61248d60008484846124a9565b610bce5760405162461bcd60e51b815260040161096f90612e00565b60006001600160a01b0384163b156125ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124ed903390899088908890600401612d6c565b602060405180830381600087803b15801561250757600080fd5b505af1925050508015612537575060408051601f3d908101601f1916820190925261253491810190612c92565b60015b612591573d808015612565576040519150601f19603f3d011682016040523d82523d6000602084013e61256a565b606091505b5080516125895760405162461bcd60e51b815260040161096f90612e00565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f5c565b506001949350505050565b6125c183838361277d565b600a54600160a01b900460ff1615610bce5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161096f565b6001600160a01b0382166126855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161096f565b6000818152600260205260409020546001600160a01b0316156126ea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161096f565b6126f66000838361246b565b6001600160a01b038216600090815260036020526040812080546001929061271f908490612f02565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166127d8576127d381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127fb565b816001600160a01b0316836001600160a01b0316146127fb576127fb8382612835565b6001600160a01b03821661281257610bce816128d2565b826001600160a01b0316826001600160a01b031614610bce57610bce8282612981565b6000600161284284611262565b61284c9190612f4d565b60008381526007602052604090205490915080821461289f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128e490600190612f4d565b6000838152600960205260408120546008805493945090928490811061290c5761290c61303c565b90600052602060002001549050806008838154811061292d5761292d61303c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061296557612965613026565b6001900381819060005260206000200160009055905550505050565b600061298c83611262565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546129d190612f90565b90600052602060002090601f0160209004810192826129f35760008555612a39565b82601f10612a0c57805160ff1916838001178555612a39565b82800160010185558215612a39579182015b82811115612a39578251825591602001919060010190612a1e565b50612a45929150612a49565b5090565b5b80821115612a455760008155600101612a4a565b600067ffffffffffffffff80841115612a7957612a79613052565b604051601f8501601f19908116603f01168101908282118183101715612aa157612aa1613052565b81604052809350858152868686011115612aba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612aeb57600080fd5b919050565b80358015158114612aeb57600080fd5b600060208284031215612b1257600080fd5b611ba782612ad4565b60008060408385031215612b2e57600080fd5b612b3783612ad4565b9150612b4560208401612ad4565b90509250929050565b600080600060608486031215612b6357600080fd5b612b6c84612ad4565b9250612b7a60208501612ad4565b9150604084013590509250925092565b60008060008060808587031215612ba057600080fd5b612ba985612ad4565b9350612bb760208601612ad4565b925060408501359150606085013567ffffffffffffffff811115612bda57600080fd5b8501601f81018713612beb57600080fd5b612bfa87823560208401612a5e565b91505092959194509250565b60008060408385031215612c1957600080fd5b612c2283612ad4565b9150612b4560208401612af0565b60008060408385031215612c4357600080fd5b612c4c83612ad4565b946020939093013593505050565b600060208284031215612c6c57600080fd5b611ba782612af0565b600060208284031215612c8757600080fd5b8135611ba781613068565b600060208284031215612ca457600080fd5b8151611ba781613068565b600060208284031215612cc157600080fd5b813567ffffffffffffffff811115612cd857600080fd5b8201601f81018413612ce957600080fd5b611f5c84823560208401612a5e565b600060208284031215612d0a57600080fd5b5035919050565b60008151808452612d29816020860160208601612f64565b601f01601f19169290920160200192915050565b60008351612d4f818460208801612f64565b835190830190612d63818360208801612f64565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9f90830184612d11565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612de157835183529284019291840191600101612dc5565b50909695505050505050565b602081526000611ba76020830184612d11565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612f1557612f15612ffa565b500190565b600082612f2957612f29613010565b500490565b6000816000190483118215151615612f4857612f48612ffa565b500290565b600082821015612f5f57612f5f612ffa565b500390565b60005b83811015612f7f578181015183820152602001612f67565b83811115611acd5750506000910152565b600181811c90821680612fa457607f821691505b60208210811415612fc557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fdf57612fdf612ffa565b5060010190565b600082612ff557612ff5613010565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098b57600080fdfea2646970667358221220256ad3317c693df6c326d7eef16a216bd33cafcfcbd864794817e5df20d4a36c64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55456:7435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62703:179;;;;;;;;;;-1:-1:-1;62703:179:0;;;;;:::i;:::-;;:::i;:::-;;;6750:14:1;;6743:22;6725:41;;6713:2;6698:18;62703:179:0;;;;;;;;58593:156;;;;;;;;;;-1:-1:-1;58593:156:0;;;;;:::i;:::-;;:::i;:::-;;35519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37078:221::-;;;;;;;;;;-1:-1:-1;37078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;37078:221:0;5247:203:1;55763:37:0;;;;;;;;;;;;55798:2;55763:37;;;;;22795:25:1;;;22783:2;22768:18;55763:37:0;22649:177:1;36601:411:0;;;;;;;;;;-1:-1:-1;36601:411:0;;;;;:::i;:::-;;:::i;57913:94::-;;;;;;;;;;-1:-1:-1;57913:94:0;;;;;:::i;:::-;;:::i;49857:113::-;;;;;;;;;;-1:-1:-1;49945:10:0;:17;49857:113;;58760:120;;;;;;;;;;-1:-1:-1;58760:120:0;;;;;:::i;:::-;;:::i;37968:339::-;;;;;;;;;;-1:-1:-1;37968:339:0;;;;;:::i;:::-;;:::i;59020:131::-;;;;;;;;;;-1:-1:-1;59020:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;59112:31:0;59086:7;59112:31;;;:21;:31;;;;;;;59020:131;49525:256;;;;;;;;;;-1:-1:-1;49525:256:0;;;;;:::i;:::-;;:::i;55666:43::-;;;;;;;;;;;;55705:4;55666:43;;55993:79;;;;;;;;;;;;56030:42;55993:79;;57819:88;;;;;;;;;;-1:-1:-1;57819:88:0;;;;;:::i;:::-;;:::i;38378:185::-;;;;;;;;;;-1:-1:-1;38378:185:0;;;;;:::i;:::-;;:::i;47154:245::-;;;;;;;;;;-1:-1:-1;47154:245:0;;;;;:::i;:::-;;:::i;61176:431::-;;;;;;;;;;-1:-1:-1;61176:431:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50047:233::-;;;;;;;;;;-1:-1:-1;50047:233:0;;;;;:::i;:::-;;:::i;59157:559::-;;;;;;:::i;:::-;;:::i;56184:79::-;;;;;;;;;;;;56221:42;56184:79;;61067:101;;;;;;;;;;-1:-1:-1;61067:101:0;;;;;:::i;:::-;;:::i;57723:90::-;;;;;;;;;;;;;:::i;8585:86::-;;;;;;;;;;-1:-1:-1;8656:7:0;;-1:-1:-1;;;8656:7:0;;;;8585:86;;35213:239;;;;;;;;;;-1:-1:-1;35213:239:0;;;;;:::i;:::-;;:::i;58106:92::-;;;;;;;;;;-1:-1:-1;58179:11:0;;58106:92;;34943:208;;;;;;;;;;-1:-1:-1;34943:208:0;;;;;:::i;:::-;;:::i;19787:94::-;;;;;;;;;;;;;:::i;59722:690::-;;;;;;:::i;:::-;;:::i;61618:264::-;;;;;;;;;;-1:-1:-1;61618:264:0;;;;;:::i;:::-;;:::i;61890:372::-;;;:::i;55847:40::-;;;;;;;;;;;;55885:2;55847:40;;19136:87;;;;;;;;;;-1:-1:-1;19209:6:0;;-1:-1:-1;;;;;19209:6:0;19136:87;;58410:90;;;;;;;;;;-1:-1:-1;58410:90:0;;;;;:::i;:::-;;:::i;35688:104::-;;;;;;;;;;;;;:::i;58506:81::-;;;;;;;;;;-1:-1:-1;58574:5:0;;58506:81;;55807:33;;;;;;;;;;;;;;;;60418:512;;;;;;:::i;:::-;;:::i;37371:295::-;;;;;;;;;;-1:-1:-1;37371:295:0;;;;;:::i;:::-;;:::i;58886:128::-;;;;;;;;;;-1:-1:-1;58886:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;58975:31:0;58952:4;58975:31;;;:21;:31;;;;;;;;;58886:128;58204:97;;;;;;;;;;-1:-1:-1;58204:97:0;;;;;:::i;:::-;;:::i;38634:328::-;;;;;;;;;;-1:-1:-1;38634:328:0;;;;;:::i;:::-;;:::i;35863:334::-;;;;;;;;;;-1:-1:-1;35863:334:0;;;;;:::i;:::-;;:::i;58013:86::-;;;;;;;;;;-1:-1:-1;58083:8:0;;58013:86;;58307:97;;;;;;;;;;-1:-1:-1;58382:14:0;;58307:97;;56550:26;;;;;;;;;;;;;:::i;56087:82::-;;;;;;;;;;;;56127:42;56087:82;;55716:40;;;;;;;;;;;;55753:3;55716:40;;55896:83;;;;;;;;;;;;55937:42;55896:83;;37737:164;;;;;;;;;;-1:-1:-1;37737:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37858:25:0;;;37834:4;37858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37737:164;20036:192;;;;;;;;;;-1:-1:-1;20036:192:0;;;;;:::i;:::-;;:::i;62703:179::-;62814:4;62838:36;62862:11;62838:23;:36::i;:::-;62831:43;62703:179;-1:-1:-1;;62703:179:0:o;58593:156::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;;;;;;;;;58660:4:::1;58651:13:::0;::::1;;;58648:73;;;58680:8;:6;:8::i;:::-;58593:156:::0;:::o;58648:73::-:1;58731:10;:8;:10::i;35519:100::-:0;35573:13;35606:5;35599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35519:100;:::o;37078:221::-;37154:7;40561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40561:16:0;37174:73;;;;-1:-1:-1;;;37174:73:0;;16762:2:1;37174:73:0;;;16744:21:1;16801:2;16781:18;;;16774:30;16840:34;16820:18;;;16813:62;-1:-1:-1;;;16891:18:1;;;16884:42;16943:19;;37174:73:0;16560:408:1;37174:73:0;-1:-1:-1;37267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37267:24:0;;37078:221::o;36601:411::-;36682:13;36698:23;36713:7;36698:14;:23::i;:::-;36682:39;;36746:5;-1:-1:-1;;;;;36740:11:0;:2;-1:-1:-1;;;;;36740:11:0;;;36732:57;;;;-1:-1:-1;;;36732:57:0;;19413:2:1;36732:57:0;;;19395:21:1;19452:2;19432:18;;;19425:30;19491:34;19471:18;;;19464:62;-1:-1:-1;;;19542:18:1;;;19535:31;19583:19;;36732:57:0;19211:397:1;36732:57:0;7377:10;-1:-1:-1;;;;;36824:21:0;;;;:62;;-1:-1:-1;36849:37:0;36866:5;7377:10;37737:164;:::i;36849:37::-;36802:168;;;;-1:-1:-1;;;36802:168:0;;13998:2:1;36802:168:0;;;13980:21:1;14037:2;14017:18;;;14010:30;14076:34;14056:18;;;14049:62;14147:26;14127:18;;;14120:54;14191:19;;36802:168:0;13796:420:1;36802:168:0;36983:21;36992:2;36996:7;36983:8;:21::i;:::-;36671:341;36601:411;;:::o;57913:94::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;57980:11:::1;:19:::0;57913:94::o;58760:120::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58834:31:0::1;;::::0;;;:21:::1;:31;::::0;;;;:38;;-1:-1:-1;;58834:38:0::1;58868:4;58834:38;::::0;;58760:120::o;37968:339::-;38163:41;7377:10;38182:12;38196:7;38163:18;:41::i;:::-;38155:103;;;;-1:-1:-1;;;38155:103:0;;;;;;;:::i;:::-;38271:28;38281:4;38287:2;38291:7;38271:9;:28::i;49525:256::-;49622:7;49658:23;49675:5;49658:16;:23::i;:::-;49650:5;:31;49642:87;;;;-1:-1:-1;;;49642:87:0;;9020:2:1;49642:87:0;;;9002:21:1;9059:2;9039:18;;;9032:30;9098:34;9078:18;;;9071:62;-1:-1:-1;;;9149:18:1;;;9142:41;9200:19;;49642:87:0;8818:407:1;49642:87:0;-1:-1:-1;;;;;;49747:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;49525:256::o;57819:88::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;57883:8:::1;:16:::0;57819:88::o;38378:185::-;38516:39;38533:4;38539:2;38543:7;38516:39;;;;;;;;;;;;:16;:39::i;47154:245::-;47272:41;7377:10;47291:12;7297:98;47272:41;47264:102;;;;-1:-1:-1;;;47264:102:0;;22074:2:1;47264:102:0;;;22056:21:1;22113:2;22093:18;;;22086:30;22152:34;22132:18;;;22125:62;-1:-1:-1;;;22203:18:1;;;22196:46;22259:19;;47264:102:0;21872:412:1;47264:102:0;47377:14;47383:7;47377:5;:14::i;61176:431::-;61238:16;61267:18;61288:17;61298:6;61288:9;:17::i;:::-;61267:38;-1:-1:-1;61320:15:0;61316:70;;61358:16;;;61372:1;61358:16;;;;;;;;;;;-1:-1:-1;61351:23:0;61176:431;-1:-1:-1;;;61176:431:0:o;61316:70::-;61396:25;61438:10;61424:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61424:25:0;;61396:53;;61465:9;61460:112;61484:10;61480:1;:14;61460:112;;;61530:30;61550:6;61558:1;61530:19;:30::i;:::-;61516:8;61525:1;61516:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;61496:3;;;;:::i;:::-;;;;61460:112;;50047:233;50122:7;50158:30;49945:10;:17;;49857:113;50158:30;50150:5;:38;50142:95;;;;-1:-1:-1;;;50142:95:0;;21325:2:1;50142:95:0;;;21307:21:1;21364:2;21344:18;;;21337:30;21403:34;21383:18;;;21376:62;-1:-1:-1;;;21454:18:1;;;21447:42;21506:19;;50142:95:0;21123:408:1;50142:95:0;50255:10;50266:5;50255:17;;;;;;;;:::i;:::-;;;;;;;;;50248:24;;50047:233;;;:::o;59157:559::-;56898:14;;56879:15;:33;;56871:71;;;;-1:-1:-1;;;56871:71:0;;18362:2:1;56871:71:0;;;18344:21:1;18401:2;18381:18;;;18374:30;18440:27;18420:18;;;18413:55;18485:18;;56871:71:0;18160:349:1;56871:71:0;55753:3;56961:13;49945:10;:17;;49857:113;56961:13;:27;;56953:62;;;;-1:-1:-1;;;56953:62:0;;18716:2:1;56953:62:0;;;18698:21:1;18755:2;18735:18;;;18728:30;-1:-1:-1;;;18774:18:1;;;18767:52;18836:18;;56953:62:0;18514:346:1;56953:62:0;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;57030:23;57026:94;;8656:7;;-1:-1:-1;;;8656:7:0;;;;57078:9;57070:38;;;;-1:-1:-1;;;57070:38:0;;;;;;;:::i;:::-;59240:19:::1;59262:13;49945:10:::0;:17;;49857:113;59262:13:::1;59240:35;;55753:3;59304:11;:24;59296:68;;;::::0;-1:-1:-1;;;59296:68:0;;22491:2:1;59296:68:0::1;::::0;::::1;22473:21:1::0;22530:2;22510:18;;;22503:30;22569:33;22549:18;;;22542:61;22620:18;;59296:68:0::1;22289:355:1::0;59296:68:0::1;55753:3;59383:20;59397:6:::0;59383:11;:20:::1;:::i;:::-;:34;;59375:82;;;::::0;-1:-1:-1;;;59375:82:0;;19815:2:1;59375:82:0::1;::::0;::::1;19797:21:1::0;19854:2;19834:18;;;19827:30;19893:34;19873:18;;;19866:62;-1:-1:-1;;;19944:18:1;;;19937:33;19987:19;;59375:82:0::1;19613:399:1::0;59375:82:0::1;59494:9;59484:6;59476:5;;:14;;;;:::i;:::-;:27;;59468:69;;;::::0;-1:-1:-1;;;59468:69:0;;7964:2:1;59468:69:0::1;::::0;::::1;7946:21:1::0;8003:2;7983:18;;;7976:30;8042:31;8022:18;;;8015:59;8091:18;;59468:69:0::1;7762:353:1::0;59468:69:0::1;55885:2;59556:6;:21;;59548:48;;;::::0;-1:-1:-1;;;59548:48:0;;8677:2:1;59548:48:0::1;::::0;::::1;8659:21:1::0;8716:2;8696:18;;;8689:30;-1:-1:-1;;;8735:18:1;;;8728:44;8789:18;;59548:48:0::1;8475:338:1::0;59548:48:0::1;59611:9;59607:100;59630:6;59626:1;:10;59607:100;;;59657:38;59667:10;59679:15;59693:1:::0;59679:11;:15:::1;:::i;:::-;59657:9;:38::i;:::-;59638:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59607:100;;61067:101:::0;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;61138:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;61067:101:::0;:::o;57723:90::-;57765:7;57792:13;49945:10;:17;;49857:113;57792:13;57785:20;;57723:90;:::o;35213:239::-;35285:7;35321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35321:16:0;35356:19;35348:73;;;;-1:-1:-1;;;35348:73:0;;14834:2:1;35348:73:0;;;14816:21:1;14873:2;14853:18;;;14846:30;14912:34;14892:18;;;14885:62;-1:-1:-1;;;14963:18:1;;;14956:39;15012:19;;35348:73:0;14632:405:1;34943:208:0;35015:7;-1:-1:-1;;;;;35043:19:0;;35035:74;;;;-1:-1:-1;;;35035:74:0;;14423:2:1;35035:74:0;;;14405:21:1;14462:2;14442:18;;;14435:30;14501:34;14481:18;;;14474:62;-1:-1:-1;;;14552:18:1;;;14545:40;14602:19;;35035:74:0;14221:406:1;35035:74:0;-1:-1:-1;;;;;;35127:16:0;;;;;:9;:16;;;;;;;34943:208::o;19787:94::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;19852:21:::1;19870:1;19852:9;:21::i;:::-;19787:94::o:0;59722:690::-;57436:11;;57417:15;:30;;57409:75;;;;-1:-1:-1;;;57409:75:0;;12877:2:1;57409:75:0;;;12859:21:1;;;12896:18;;;12889:30;12955:34;12935:18;;;12928:62;13007:18;;57409:75:0;12675:356:1;57409:75:0;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;57499:23;57495:94;;8656:7;;-1:-1:-1;;;8656:7:0;;;;57547:9;57539:38;;;;-1:-1:-1;;;57539:38:0;;;;;;;:::i;:::-;59799:19:::1;59821:13;49945:10:::0;:17;;49857:113;59821:13:::1;59799:35;;59863:14;;59853:6;:24;;59845:83;;;::::0;-1:-1:-1;;;59845:83:0;;13238:2:1;59845:83:0::1;::::0;::::1;13220:21:1::0;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:44;13421:19;;59845:83:0::1;13036:410:1::0;59845:83:0::1;59969:10;59947:33;::::0;;;:21:::1;:33;::::0;;;;;::::1;;:41;;:33:::0;:41:::1;59939:103;;;::::0;-1:-1:-1;;;59939:103:0;;15647:2:1;59939:103:0::1;::::0;::::1;15629:21:1::0;15686:2;15666:18;;;15659:30;15725:34;15705:18;;;15698:62;-1:-1:-1;;;15776:18:1;;;15769:47;15833:19;;59939:103:0::1;15445:413:1::0;59939:103:0::1;60107:14;::::0;60083:10:::1;60061:33;::::0;;;:21:::1;:33;::::0;;;;;:42:::1;::::0;60097:6;;60061:42:::1;:::i;:::-;:60;;60053:107;;;::::0;-1:-1:-1;;;60053:107:0;;15244:2:1;60053:107:0::1;::::0;::::1;15226:21:1::0;15283:2;15263:18;;;15256:30;15322:34;15302:18;;;15295:62;-1:-1:-1;;;15373:18:1;;;15366:32;15415:19;;60053:107:0::1;15042:398:1::0;60053:107:0::1;60197:9;60187:6;60179:5;;:14;;;;:::i;:::-;:27;;60171:66;;;::::0;-1:-1:-1;;;60171:66:0;;8322:2:1;60171:66:0::1;::::0;::::1;8304:21:1::0;8361:2;8341:18;;;8334:30;8400:28;8380:18;;;8373:56;8446:18;;60171:66:0::1;8120:350:1::0;60171:66:0::1;60262:6;60258:93;60274:6;60270:1;:10;60258:93;;;60301:38;60311:10;60323:15;60337:1:::0;60323:11;:15:::1;:::i;60301:38::-;60282:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60258:93;;;-1:-1:-1::0;60383:10:0::1;60361:33;::::0;;;:21:::1;:33;::::0;;;;:43;;60398:6;;60361:33;:43:::1;::::0;60398:6;;60361:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;59722:690:0:o;61618:264::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;61679:13:::1;61695;49945:10:::0;:17;;49857:113;61695:13:::1;61679:29:::0;-1:-1:-1;55798:2:0::1;61727:14;61735:6:::0;61679:29;61727:14:::1;:::i;:::-;:26;;61719:47;;;::::0;-1:-1:-1;;;61719:47:0;;21738:2:1;61719:47:0::1;::::0;::::1;21720:21:1::0;21777:1;21757:18;;;21750:29;-1:-1:-1;;;21795:18:1;;;21788:38;21843:18;;61719:47:0::1;21536:331:1::0;61719:47:0::1;61784:9;61779:96;61803:6;61799:1;:10;61779:96;;;61831:32;56221:42;61853:9;61861:1:::0;61853:5;:9:::1;:::i;61831:32::-;61811:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61779:96;;61890:372:::0;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;61967:21:::1;62007:11:::0;61999:20:::1;;;::::0;::::1;;62030:47;56030:42;62052:24;62072:3;62052:15;:7:::0;62064:2:::1;62052:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;62030:9;:47::i;:::-;62088:50;56127:42;62113:24;62133:3;62113:15;:7:::0;62125:2:::1;62113:11;:15::i;62088:50::-;62149:46;56221:42;62171:23;62190:3;62171:14;:7:::0;62183:1:::1;62171:11;:14::i;62149:46::-;62206:48;55937:42;62232:21;62206:9;:48::i;58410:90::-:0;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;58475:5:::1;:17:::0;58410:90::o;35688:104::-;35744:13;35777:7;35770:14;;;;;:::i;60418:512::-;55705:4;57186:14;:12;:14::i;:::-;:30;;57178:51;;;;-1:-1:-1;;;57178:51:0;;16426:2:1;57178:51:0;;;16408:21:1;16465:1;16445:18;;;16438:29;-1:-1:-1;;;16483:18:1;;;16476:38;16531:18;;57178:51:0;16224:331:1;57178:51:0;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;57244:23;57240:110;;57311:8;;57292:15;:27;;57284:54;;;;-1:-1:-1;;;57284:54:0;;20219:2:1;57284:54:0;;;20201:21:1;20258:2;20238:18;;;20231:30;-1:-1:-1;;;20277:18:1;;;20270:44;20331:18;;57284:54:0;20017:338:1;57284:54:0;60485:19:::1;60507:13;49945:10:::0;:17;;49857:113;60507:13:::1;60485:35:::0;-1:-1:-1;55705:4:0::1;60539:20;60553:6:::0;60485:35;60539:20:::1;:::i;:::-;:36;;60531:58;;;::::0;-1:-1:-1;;;60531:58:0;;11717:2:1;60531:58:0::1;::::0;::::1;11699:21:1::0;11756:1;11736:18;;;11729:29;-1:-1:-1;;;11774:18:1;;;11767:39;11823:18;;60531:58:0::1;11515:332:1::0;60531:58:0::1;55705:4;60608:11;:27;;60600:54;;;::::0;-1:-1:-1;;;60600:54:0;;10615:2:1;60600:54:0::1;::::0;::::1;10597:21:1::0;10654:2;10634:18;;;10627:30;-1:-1:-1;;;10673:18:1;;;10666:44;10727:18;;60600:54:0::1;10413:338:1::0;60600:54:0::1;55885:2;60673:6;:21;;60665:75;;;::::0;-1:-1:-1;;;60665:75:0;;12467:2:1;60665:75:0::1;::::0;::::1;12449:21:1::0;12506:2;12486:18;;;12479:30;12545:34;12525:18;;;12518:62;-1:-1:-1;;;12596:18:1;;;12589:39;12645:19;;60665:75:0::1;12265:405:1::0;60665:75:0::1;60780:6;60772:5;;:14;;;;:::i;:::-;60759:9;:27;;60751:57;;;::::0;-1:-1:-1;;;60751:57:0;;19067:2:1;60751:57:0::1;::::0;::::1;19049:21:1::0;19106:2;19086:18;;;19079:30;-1:-1:-1;;;19125:18:1;;;19118:47;19182:18;;60751:57:0::1;18865:341:1::0;60751:57:0::1;60826:9;60821:102;60845:6;60841:1;:10;60821:102;;;60873:38;60883:10;60895:15;60909:1:::0;60895:11;:15:::1;:::i;60873:38::-;60853:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60821:102;;37371:295:::0;-1:-1:-1;;;;;37474:24:0;;7377:10;37474:24;;37466:62;;;;-1:-1:-1;;;37466:62:0;;11363:2:1;37466:62:0;;;11345:21:1;11402:2;11382:18;;;11375:30;11441:27;11421:18;;;11414:55;11486:18;;37466:62:0;11161:349:1;37466:62:0;7377:10;37541:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37541:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37541:53:0;;;;;;;;;;37610:48;;6725:41:1;;;37541:42:0;;7377:10;37610:48;;6698:18:1;37610:48:0;;;;;;;37371:295;;:::o;58204:97::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;58272:14:::1;:21:::0;58204:97::o;38634:328::-;38809:41;7377:10;38842:7;38809:18;:41::i;:::-;38801:103;;;;-1:-1:-1;;;38801:103:0;;;;;;;:::i;:::-;38915:39;38929:4;38935:2;38939:7;38948:5;38915:13;:39::i;:::-;38634:328;;;;:::o;35863:334::-;40537:4;40561:16;;;:7;:16;;;;;;35936:13;;-1:-1:-1;;;;;40561:16:0;35962:76;;;;-1:-1:-1;;;35962:76:0;;17946:2:1;35962:76:0;;;17928:21:1;17985:2;17965:18;;;17958:30;18024:34;18004:18;;;17997:62;-1:-1:-1;;;18075:18:1;;;18068:45;18130:19;;35962:76:0;17744:411:1;35962:76:0;36051:21;36075:10;:8;:10::i;:::-;36051:34;;36127:1;36109:7;36103:21;:25;:86;;;;;;;;;;;;;;;;;36155:7;36164:18;:7;:16;:18::i;:::-;36138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36103:86;36096:93;35863:334;-1:-1:-1;;;35863:334:0:o;56550:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20036:192::-;19209:6;;-1:-1:-1;;;;;19209:6:0;7377:10;19356:23;19348:68;;;;-1:-1:-1;;;19348:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20125:22:0;::::1;20117:73;;;::::0;-1:-1:-1;;;20117:73:0;;9851:2:1;20117:73:0::1;::::0;::::1;9833:21:1::0;9890:2;9870:18;;;9863:30;9929:34;9909:18;;;9902:62;-1:-1:-1;;;9980:18:1;;;9973:36;10026:19;;20117:73:0::1;9649:402:1::0;20117:73:0::1;20201:19;20211:8;20201:9;:19::i;49217:224::-:0;49319:4;-1:-1:-1;;;;;;49343:50:0;;-1:-1:-1;;;49343:50:0;;:90;;;49397:36;49421:11;49397:23;:36::i;9385:118::-;8656:7;;-1:-1:-1;;;8656:7:0;;;;8910:9;8902:38;;;;-1:-1:-1;;;8902:38:0;;;;;;;:::i;:::-;9445:7:::1;:14:::0;;-1:-1:-1;;;;9445:14:0::1;-1:-1:-1::0;;;9445:14:0::1;::::0;;9475:20:::1;9482:12;7377:10:::0;;7297:98;9482:12:::1;9475:20;::::0;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;9475:20:0::1;;;;;;;9385:118::o:0;9644:120::-;8656:7;;-1:-1:-1;;;8656:7:0;;;;9180:41;;;;-1:-1:-1;;;9180:41:0;;7615:2:1;9180:41:0;;;7597:21:1;7654:2;7634:18;;;7627:30;-1:-1:-1;;;7673:18:1;;;7666:50;7733:18;;9180:41:0;7413:344:1;9180:41:0;9703:7:::1;:15:::0;;-1:-1:-1;;;;9703:15:0::1;::::0;;9734:22:::1;7377:10:::0;9743:12:::1;7297:98:::0;44454:174;44529:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44529:29:0;-1:-1:-1;;;;;44529:29:0;;;;;;;;:24;;44583:23;44529:24;44583:14;:23::i;:::-;-1:-1:-1;;;;;44574:46:0;;;;;;;;;;;44454:174;;:::o;40766:348::-;40859:4;40561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40561:16:0;40876:73;;;;-1:-1:-1;;;40876:73:0;;12054:2:1;40876:73:0;;;12036:21:1;12093:2;12073:18;;;12066:30;12132:34;12112:18;;;12105:62;-1:-1:-1;;;12183:18:1;;;12176:42;12235:19;;40876:73:0;11852:408:1;40876:73:0;40960:13;40976:23;40991:7;40976:14;:23::i;:::-;40960:39;;41029:5;-1:-1:-1;;;;;41018:16:0;:7;-1:-1:-1;;;;;41018:16:0;;:51;;;;41062:7;-1:-1:-1;;;;;41038:31:0;:20;41050:7;41038:11;:20::i;:::-;-1:-1:-1;;;;;41038:31:0;;41018:51;:87;;;-1:-1:-1;;;;;;37858:25:0;;;37834:4;37858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41073:32;41010:96;40766:348;-1:-1:-1;;;;40766:348:0:o;43758:578::-;43917:4;-1:-1:-1;;;;;43890:31:0;:23;43905:7;43890:14;:23::i;:::-;-1:-1:-1;;;;;43890:31:0;;43882:85;;;;-1:-1:-1;;;43882:85:0;;17536:2:1;43882:85:0;;;17518:21:1;17575:2;17555:18;;;17548:30;17614:34;17594:18;;;17587:62;-1:-1:-1;;;17665:18:1;;;17658:39;17714:19;;43882:85:0;17334:405:1;43882:85:0;-1:-1:-1;;;;;43986:16:0;;43978:65;;;;-1:-1:-1;;;43978:65:0;;10958:2:1;43978:65:0;;;10940:21:1;10997:2;10977:18;;;10970:30;11036:34;11016:18;;;11009:62;-1:-1:-1;;;11087:18:1;;;11080:34;11131:19;;43978:65:0;10756:400:1;43978:65:0;44056:39;44077:4;44083:2;44087:7;44056:20;:39::i;:::-;44160:29;44177:1;44181:7;44160:8;:29::i;:::-;-1:-1:-1;;;;;44202:15:0;;;;;;:9;:15;;;;;:20;;44221:1;;44202:15;:20;;44221:1;;44202:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44233:13:0;;;;;;:9;:13;;;;;:18;;44250:1;;44233:13;:18;;44250:1;;44233:18;:::i;:::-;;;;-1:-1:-1;;44262:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44262:21:0;-1:-1:-1;;;;;44262:21:0;;;;;;;;;44301:27;;44262:16;;44301:27;;;;;;;43758:578;;;:::o;43061:360::-;43121:13;43137:23;43152:7;43137:14;:23::i;:::-;43121:39;;43173:48;43194:5;43209:1;43213:7;43173:20;:48::i;:::-;43262:29;43279:1;43283:7;43262:8;:29::i;:::-;-1:-1:-1;;;;;43304:16:0;;;;;;:9;:16;;;;;:21;;43324:1;;43304:16;:21;;43324:1;;43304:21;:::i;:::-;;;;-1:-1:-1;;43343:16:0;;;;:7;:16;;;;;;43336:23;;-1:-1:-1;;;;;;43336:23:0;;;43377:36;43351:7;;43343:16;-1:-1:-1;;;;;43377:36:0;;;;;43343:16;;43377:36;43110:311;43061:360;:::o;41456:110::-;41532:26;41542:2;41546:7;41532:26;;;;;;;;;;;;:9;:26::i;20236:173::-;20311:6;;;-1:-1:-1;;;;;20328:17:0;;;-1:-1:-1;;;;;;20328:17:0;;;;;;;20361:40;;20311:6;;;20328:17;20311:6;;20361:40;;20292:16;;20361:40;20281:128;20236:173;:::o;14711:98::-;14769:7;14796:5;14800:1;14796;:5;:::i;15110:98::-;15168:7;15195:5;15199:1;15195;:5;:::i;62270:180::-;62344:12;62362:8;-1:-1:-1;;;;;62362:13:0;62383:7;62362:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62343:52;;;62414:7;62406:36;;;;-1:-1:-1;;;62406:36:0;;20562:2:1;62406:36:0;;;20544:21:1;20601:2;20581:18;;;20574:30;-1:-1:-1;;;20620:18:1;;;20613:46;20676:18;;62406:36:0;20360:340:1;57620:97:0;57667:4;57691:18;:8;10680:14;;10588:114;39844:315;40001:28;40011:4;40017:2;40021:7;40001:9;:28::i;:::-;40048:48;40071:4;40077:2;40081:7;40090:5;40048:22;:48::i;:::-;40040:111;;;;-1:-1:-1;;;40040:111:0;;;;;;;:::i;60946:113::-;61006:13;61039:12;61032:19;;;;;:::i;21689:723::-;21745:13;21966:10;21962:53;;-1:-1:-1;;21993:10:0;;;;;;;;;;;;-1:-1:-1;;;21993:10:0;;;;;21689:723::o;21962:53::-;22040:5;22025:12;22081:78;22088:9;;22081:78;;22114:8;;;;:::i;:::-;;-1:-1:-1;22137:10:0;;-1:-1:-1;22145:2:0;22137:10;;:::i;:::-;;;22081:78;;;22169:19;22201:6;22191:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22191:17:0;;22169:39;;22219:154;22226:10;;22219:154;;22253:11;22263:1;22253:11;;:::i;:::-;;-1:-1:-1;22322:10:0;22330:2;22322:5;:10;:::i;:::-;22309:24;;:2;:24;:::i;:::-;22296:39;;22279:6;22286;22279:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22279:56:0;;;;;;;;-1:-1:-1;22350:11:0;22359:2;22350:11;;:::i;:::-;;;22219:154;;34574:305;34676:4;-1:-1:-1;;;;;;34713:40:0;;-1:-1:-1;;;34713:40:0;;:105;;-1:-1:-1;;;;;;;34770:48:0;;-1:-1:-1;;;34770:48:0;34713:105;:158;;;-1:-1:-1;;;;;;;;;;21323:40:0;;;34835:36;21214:157;62457:239;62643:45;62670:4;62676:2;62680:7;62643:26;:45::i;41793:321::-;41923:18;41929:2;41933:7;41923:5;:18::i;:::-;41974:54;42005:1;42009:2;42013:7;42022:5;41974:22;:54::i;:::-;41952:154;;;;-1:-1:-1;;;41952:154:0;;;;;;;:::i;45193:799::-;45348:4;-1:-1:-1;;;;;45369:13:0;;24537:20;24585:8;45365:620;;45405:72;;-1:-1:-1;;;45405:72:0;;-1:-1:-1;;;;;45405:36:0;;;;;:72;;7377:10;;45456:4;;45462:7;;45471:5;;45405:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45405:72:0;;;;;;;;-1:-1:-1;;45405:72:0;;;;;;;;;;;;:::i;:::-;;;45401:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45647:13:0;;45643:272;;45690:60;;-1:-1:-1;;;45690:60:0;;;;;;;:::i;45643:272::-;45865:6;45859:13;45850:6;45846:2;45842:15;45835:38;45401:529;-1:-1:-1;;;;;;45528:51:0;-1:-1:-1;;;45528:51:0;;-1:-1:-1;45521:58:0;;45365:620;-1:-1:-1;45969:4:0;45193:799;;;;;;:::o;48005:275::-;48149:45;48176:4;48182:2;48186:7;48149:26;:45::i;:::-;8656:7;;-1:-1:-1;;;8656:7:0;;;;48215:9;48207:65;;;;-1:-1:-1;;;48207:65:0;;7203:2:1;48207:65:0;;;7185:21:1;7242:2;7222:18;;;7215:30;7281:34;7261:18;;;7254:62;-1:-1:-1;;;7332:18:1;;;7325:41;7383:19;;48207:65:0;7001:407:1;42450:382:0;-1:-1:-1;;;;;42530:16:0;;42522:61;;;;-1:-1:-1;;;42522:61:0;;16065:2:1;42522:61:0;;;16047:21:1;;;16084:18;;;16077:30;16143:34;16123:18;;;16116:62;16195:18;;42522:61:0;15863:356:1;42522:61:0;40537:4;40561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40561:16:0;:30;42594:58;;;;-1:-1:-1;;;42594:58:0;;10258:2:1;42594:58:0;;;10240:21:1;10297:2;10277:18;;;10270:30;10336;10316:18;;;10309:58;10384:18;;42594:58:0;10056:352:1;42594:58:0;42665:45;42694:1;42698:2;42702:7;42665:20;:45::i;:::-;-1:-1:-1;;;;;42723:13:0;;;;;;:9;:13;;;;;:18;;42740:1;;42723:13;:18;;42740:1;;42723:18;:::i;:::-;;;;-1:-1:-1;;42752:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42752:21:0;-1:-1:-1;;;;;42752:21:0;;;;;;;;42791:33;;42752:16;;;42791:33;;42752:16;;42791:33;42450:382;;:::o;50893:589::-;-1:-1:-1;;;;;51099:18:0;;51095:187;;51134:40;51166:7;52309:10;:17;;52282:24;;;;:15;:24;;;;;:44;;;52337:24;;;;;;;;;;;;52205:164;51134:40;51095:187;;;51204:2;-1:-1:-1;;;;;51196:10:0;:4;-1:-1:-1;;;;;51196:10:0;;51192:90;;51223:47;51256:4;51262:7;51223:32;:47::i;:::-;-1:-1:-1;;;;;51296:16:0;;51292:183;;51329:45;51366:7;51329:36;:45::i;51292:183::-;51402:4;-1:-1:-1;;;;;51396:10:0;:2;-1:-1:-1;;;;;51396:10:0;;51392:83;;51423:40;51451:2;51455:7;51423:27;:40::i;52996:988::-;53262:22;53312:1;53287:22;53304:4;53287:16;:22::i;:::-;:26;;;;:::i;:::-;53324:18;53345:26;;;:17;:26;;;;;;53262:51;;-1:-1:-1;53478:28:0;;;53474:328;;-1:-1:-1;;;;;53545:18:0;;53523:19;53545:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53596:30;;;;;;:44;;;53713:30;;:17;:30;;;;;:43;;;53474:328;-1:-1:-1;53898:26:0;;;;:17;:26;;;;;;;;53891:33;;;-1:-1:-1;;;;;53942:18:0;;;;;:12;:18;;;;;:34;;;;;;;53935:41;52996:988::o;54279:1079::-;54557:10;:17;54532:22;;54557:21;;54577:1;;54557:21;:::i;:::-;54589:18;54610:24;;;:15;:24;;;;;;54983:10;:26;;54532:46;;-1:-1:-1;54610:24:0;;54532:46;;54983:26;;;;;;:::i;:::-;;;;;;;;;54961:48;;55047:11;55022:10;55033;55022:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;55127:28;;;:15;:28;;;;;;;:41;;;55299:24;;;;;55292:31;55334:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;54350:1008;;;54279:1079;:::o;51783:221::-;51868:14;51885:20;51902:2;51885:16;:20::i;:::-;-1:-1:-1;;;;;51916:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51961:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51783:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;5948:632::-;6119:2;6171:21;;;6241:13;;6144:18;;;6263:22;;;6090:4;;6119:2;6342:15;;;;6316:2;6301:18;;;6090:4;6385:169;6399:6;6396:1;6393:13;6385:169;;;6460:13;;6448:26;;6529:15;;;;6494:12;;;;6421:1;6414:9;6385:169;;;-1:-1:-1;6571:3:1;;5948:632;-1:-1:-1;;;;;;5948:632:1:o;6777:219::-;6926:2;6915:9;6908:21;6889:4;6946:44;6986:2;6975:9;6971:18;6963:6;6946:44;:::i;9230:414::-;9432:2;9414:21;;;9471:2;9451:18;;;9444:30;9510:34;9505:2;9490:18;;9483:62;-1:-1:-1;;;9576:2:1;9561:18;;9554:48;9634:3;9619:19;;9230:414::o;13451:340::-;13653:2;13635:21;;;13692:2;13672:18;;;13665:30;-1:-1:-1;;;13726:2:1;13711:18;;13704:46;13782:2;13767:18;;13451:340::o;16973:356::-;17175:2;17157:21;;;17194:18;;;17187:30;17253:34;17248:2;17233:18;;17226:62;17320:2;17305:18;;16973:356::o;20705:413::-;20907:2;20889:21;;;20946:2;20926:18;;;20919:30;20985:34;20980:2;20965:18;;20958:62;-1:-1:-1;;;21051:2:1;21036:18;;21029:47;21108:3;21093:19;;20705:413::o;22831:128::-;22871:3;22902:1;22898:6;22895:1;22892:13;22889:39;;;22908:18;;:::i;:::-;-1:-1:-1;22944:9:1;;22831:128::o;22964:120::-;23004:1;23030;23020:35;;23035:18;;:::i;:::-;-1:-1:-1;23069:9:1;;22964:120::o;23089:168::-;23129:7;23195:1;23191;23187:6;23183:14;23180:1;23177:21;23172:1;23165:9;23158:17;23154:45;23151:71;;;23202:18;;:::i;:::-;-1:-1:-1;23242:9:1;;23089:168::o;23262:125::-;23302:4;23330:1;23327;23324:8;23321:34;;;23335:18;;:::i;:::-;-1:-1:-1;23372:9:1;;23262:125::o;23392:258::-;23464:1;23474:113;23488:6;23485:1;23482:13;23474:113;;;23564:11;;;23558:18;23545:11;;;23538:39;23510:2;23503:10;23474:113;;;23605:6;23602:1;23599:13;23596:48;;;-1:-1:-1;;23640:1:1;23622:16;;23615:27;23392:258::o;23655:380::-;23734:1;23730:12;;;;23777;;;23798:61;;23852:4;23844:6;23840:17;23830:27;;23798:61;23905:2;23897:6;23894:14;23874:18;23871:38;23868:161;;;23951:10;23946:3;23942:20;23939:1;23932:31;23986:4;23983:1;23976:15;24014:4;24011:1;24004:15;23868:161;;23655:380;;;:::o;24040:135::-;24079:3;-1:-1:-1;;24100:17:1;;24097:43;;;24120:18;;:::i;:::-;-1:-1:-1;24167:1:1;24156:13;;24040:135::o;24180:112::-;24212:1;24238;24228:35;;24243:18;;:::i;:::-;-1:-1:-1;24277:9:1;;24180:112::o;24297:127::-;24358:10;24353:3;24349:20;24346:1;24339:31;24389:4;24386:1;24379:15;24413:4;24410:1;24403:15;24429:127;24490:10;24485:3;24481:20;24478:1;24471:31;24521:4;24518:1;24511:15;24545:4;24542:1;24535:15;24561:127;24622:10;24617:3;24613:20;24610:1;24603:31;24653:4;24650:1;24643:15;24677:4;24674:1;24667:15;24693:127;24754:10;24749:3;24745:20;24742:1;24735:31;24785:4;24782:1;24775:15;24809:4;24806:1;24799:15;24825:127;24886:10;24881:3;24877:20;24874:1;24867:31;24917:4;24914:1;24907:15;24941:4;24938:1;24931:15;24957:131;-1:-1:-1;;;;;;25031:32:1;;25021:43;;25011:71;;25078:1;25075;25068:12

Swarm Source

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