ETH Price: $3,244.83 (-0.43%)
Gas: 1 Gwei

Token

VibinGhosts (VibinGhosts)
 

Overview

Max Total Supply

888 VibinGhosts

Holders

196

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 VibinGhosts
0xc53af37b73818d09876db5da099b569be8b4379e
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:
VibinGhosts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-08
*/

// File: contracts/VibinGhosts.sol

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


// OpenZeppelin Contracts v4.4.1 (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 generally not needed starting with Solidity 0.8, since 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/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;









contract VibinGhosts is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmZ66fsFQVDkN8bmgMK1qTVEVdg59iv1KvCW3FZpAffy5E";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public maxSupply = 888;

    uint256 public constant PUBLIC_SALE_PRICE = 0.0069 ether;
    uint256 public NUM_FREE_MINTS = 555;
    bool public isPublicSaleActive = true;




    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor(
    ) ERC721A("VibinGhosts", "VibinGhosts", 100, maxSupply) {
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

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

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055600755610120604052603560c08181529062002cc660e03980516200003291600b91602090910190620001d8565b50600c805460ff60a01b196001600160a01b031990911673a5409ec958c83c3f309868babaca7c86dcb077c11716600160a01b179055610378600d5561022b600e55600f805460ff191660011790553480156200008e57600080fd5b506040518060400160405280600b81526020016a566962696e47686f73747360a81b8152506040518060400160405280600b81526020016a566962696e47686f73747360a81b8152506064600d5460008111620001085760405162461bcd60e51b8152600401620000ff90620002c5565b60405180910390fd5b600082116200012b5760405162461bcd60e51b8152600401620000ff906200027e565b835162000140906001906020870190620001d8565b50825162000156906002906020860190620001d8565b5060a091909152608052506200017790506200017162000182565b62000186565b600160095562000350565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e69062000313565b90600052602060002090601f0160209004810192826200020a576000855562000255565b82601f106200022557805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025557825182559160200191906001019062000238565b506200026392915062000267565b5090565b5b8082111562000263576000815560010162000268565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200032857607f821691505b602082108114156200034a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161294562000381600039600081816114fa0152818161152401526119160152600050506129456000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610565578063d7224ba01461057a578063e43082f71461058f578063e985e9c5146105af578063f2fde38b146105cf576101f9565b8063a22cb465146104f0578063b88d4fde14610510578063c6a91b4214610530578063c87b56dd14610545576101f9565b80638da5cb5b116100dc5780638da5cb5b1461049e57806395d89b41146104b3578063982d669e146104c8578063a0712d68146104dd576101f9565b80636352211e1461043457806370a0823114610454578063714c539814610474578063715018a614610489576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461039f57806342842e0e146103b457806349df728c146103d45780634f6ccce7146103f457806355f804b314610414576101f9565b806323b872dd1461031157806328cad13d146103315780632a55205a146103515780632f745c591461037f576101f9565b8063095ea7b3116101cc578063095ea7b3146102a55780630a00ae83146102c757806318160ddd146102e75780631e84c413146102fc576101f9565b806301ffc9a7146101fe57806306fdde031461023457806307e89ec014610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004611dfb565b6105ef565b60405161022b919061206c565b60405180910390f35b34801561024057600080fd5b5061024961061c565b60405161022b9190612077565b34801561026257600080fd5b5061026b6106ae565b60405161022b919061271d565b34801561028457600080fd5b50610298610293366004611e95565b6106b9565b60405161022b9190612002565b3480156102b157600080fd5b506102c56102c0366004611d98565b610705565b005b3480156102d357600080fd5b506102c56102e2366004611e95565b61079e565b3480156102f357600080fd5b5061026b6107e2565b34801561030857600080fd5b5061021e6107e8565b34801561031d57600080fd5b506102c561032c366004611cae565b6107f1565b34801561033d57600080fd5b506102c561034c366004611dc3565b6107fc565b34801561035d57600080fd5b5061037161036c366004611ec5565b61084e565b60405161022b929190612053565b34801561038b57600080fd5b5061026b61039a366004611d98565b610897565b3480156103ab57600080fd5b506102c5610993565b3480156103c057600080fd5b506102c56103cf366004611cae565b610a05565b3480156103e057600080fd5b506102c56103ef366004611c5a565b610a20565b34801561040057600080fd5b5061026b61040f366004611e95565b610b61565b34801561042057600080fd5b506102c561042f366004611e4f565b610b8d565b34801561044057600080fd5b5061029861044f366004611e95565b610bdf565b34801561046057600080fd5b5061026b61046f366004611c5a565b610bf1565b34801561048057600080fd5b50610249610c3e565b34801561049557600080fd5b506102c5610c4d565b3480156104aa57600080fd5b50610298610c98565b3480156104bf57600080fd5b50610249610ca7565b3480156104d457600080fd5b5061026b610cb6565b6102c56104eb366004611e95565b610cbc565b3480156104fc57600080fd5b506102c561050b366004611d6b565b610db7565b34801561051c57600080fd5b506102c561052b366004611cee565b610e85565b34801561053c57600080fd5b5061026b610ebe565b34801561055157600080fd5b50610249610560366004611e95565b610ec3565b34801561057157600080fd5b5061026b610f26565b34801561058657600080fd5b5061026b610f2c565b34801561059b57600080fd5b506102c56105aa366004611dc3565b610f32565b3480156105bb57600080fd5b5061021e6105ca366004611c76565b610f8f565b3480156105db57600080fd5b506102c56105ea366004611c5a565b611063565b60006001600160e01b0319821663152a902d60e11b14806106145750610614826110d4565b90505b919050565b60606001805461062b9061282a565b80601f01602080910402602001604051908101604052809291908181526020018280546106579061282a565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b6618838370f3400081565b60006106c48261112f565b6106e95760405162461bcd60e51b81526004016106e09061268e565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061071082610bdf565b9050806001600160a01b0316836001600160a01b031614156107445760405162461bcd60e51b81526004016106e09061243f565b806001600160a01b0316610756611136565b6001600160a01b031614806107725750610772816105ca611136565b61078e5760405162461bcd60e51b81526004016106e090612293565b61079983838361113a565b505050565b6107a6611136565b6001600160a01b03166107b7610c98565b6001600160a01b0316146107dd5760405162461bcd60e51b81526004016106e090612381565b600e55565b60005490565b600f5460ff1681565b610799838383611196565b610804611136565b6001600160a01b0316610815610c98565b6001600160a01b03161461083b5760405162461bcd60e51b81526004016106e090612381565b600f805460ff1916911515919091179055565b60008061085a8461112f565b6108765760405162461bcd60e51b81526004016106e090612268565b3061088c6108858560056114aa565b60646114bd565b915091509250929050565b60006108a283610bf1565b82106108c05760405162461bcd60e51b81526004016106e09061208a565b60006108ca6107e2565b905060008060005b83811015610974576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561092557805192505b876001600160a01b0316836001600160a01b0316141561096157868414156109535750935061098d92505050565b8361095d81612865565b9450505b508061096c81612865565b9150506108d2565b5060405162461bcd60e51b81526004016106e090612583565b92915050565b61099b611136565b6001600160a01b03166109ac610c98565b6001600160a01b0316146109d25760405162461bcd60e51b81526004016106e090612381565b6040514790339082156108fc029083906000818181858888f19350505050158015610a01573d6000803e3d6000fd5b5050565b61079983838360405180602001604052806000815250610e85565b610a28611136565b6001600160a01b0316610a39610c98565b6001600160a01b031614610a5f5760405162461bcd60e51b81526004016106e090612381565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610a8e903090600401612002565b60206040518083038186803b158015610aa657600080fd5b505afa158015610aba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ade9190611ead565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610b0f9033908590600401612053565b602060405180830381600087803b158015610b2957600080fd5b505af1158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107999190611ddf565b6000610b6b6107e2565b8210610b895760405162461bcd60e51b81526004016106e09061215c565b5090565b610b95611136565b6001600160a01b0316610ba6610c98565b6001600160a01b031614610bcc5760405162461bcd60e51b81526004016106e090612381565b8051610a0190600b906020840190611b3e565b6000610bea826114c9565b5192915050565b60006001600160a01b038216610c195760405162461bcd60e51b81526004016106e0906122f0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461062b9061282a565b610c55611136565b6001600160a01b0316610c66610c98565b6001600160a01b031614610c8c5760405162461bcd60e51b81526004016106e090612381565b610c9660006115dc565b565b6008546001600160a01b031690565b60606002805461062b9061282a565b600e5481565b60026009541415610cdf5760405162461bcd60e51b81526004016106e0906125d1565b6002600955600e546618838370f34000908290610cfa6107e2565b1115610d285734610d0b8284612789565b14610d285760405162461bcd60e51b81526004016106e09061254c565b600f5460ff16610d4a5760405162461bcd60e51b81526004016106e090612657565b82600d5481610d576107e2565b610d61919061275d565b1115610d7f5760405162461bcd60e51b81526004016106e09061219f565b836005811115610da15760405162461bcd60e51b81526004016106e090612226565b610dab338661162e565b50506001600955505050565b610dbf611136565b6001600160a01b0316826001600160a01b03161415610df05760405162461bcd60e51b81526004016106e0906123b6565b8060066000610dfd611136565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e41611136565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e79919061206c565b60405180910390a35050565b610e90848484611196565b610e9c84848484611648565b610eb85760405162461bcd60e51b81526004016106e090612481565b50505050565b600581565b6060610ece8261112f565b610eea5760405162461bcd60e51b81526004016106e090612268565b600b610eff610efa84600161275d565b611763565b604051602001610f10929190611f4c565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610f3a611136565b6001600160a01b0316610f4b610c98565b6001600160a01b031614610f715760405162461bcd60e51b81526004016106e090612381565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff1680156110425750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b8152600401610fe79190612002565b60206040518083038186803b158015610fff57600080fd5b505afa158015611013573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110379190611e33565b6001600160a01b0316145b1561105157600191505061098d565b61105b848461187e565b949350505050565b61106b611136565b6001600160a01b031661107c610c98565b6001600160a01b0316146110a25760405162461bcd60e51b81526004016106e090612381565b6001600160a01b0381166110c85760405162461bcd60e51b81526004016106e0906120cc565b6110d1816115dc565b50565b60006001600160e01b031982166380ac58cd60e01b148061110557506001600160e01b03198216635b5e139f60e01b145b8061112057506001600160e01b0319821663780e9d6360e01b145b806106145750610614826118ac565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111a1826114c9565b9050600081600001516001600160a01b03166111bb611136565b6001600160a01b031614806111f057506111d3611136565b6001600160a01b03166111e5846106b9565b6001600160a01b0316145b8061120457508151611204906105ca611136565b9050806112235760405162461bcd60e51b81526004016106e0906123ed565b846001600160a01b031682600001516001600160a01b0316146112585760405162461bcd60e51b81526004016106e09061233b565b6001600160a01b03841661127e5760405162461bcd60e51b81526004016106e0906121e1565b61128b8585856001610eb8565b61129b600084846000015161113a565b6001600160a01b03851660009081526004602052604081208054600192906112cd9084906001600160801b03166127a8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261131991859116612732565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556113af84600161275d565b6000818152600360205260409020549091506001600160a01b0316611454576113d78161112f565b156114545760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114a28686866001610eb8565b505050505050565b60006114b68284612789565b9392505050565b60006114b68284612775565b6114d1611bbe565b6114da8261112f565b6114f65760405162461bcd60e51b81526004016106e090612112565b60007f00000000000000000000000000000000000000000000000000000000000000008310611557576115497f0000000000000000000000000000000000000000000000000000000000000000846127d0565b61155490600161275d565b90505b825b8181106115c3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115b0579250610617915050565b50806115bb81612813565b915050611559565b5060405162461bcd60e51b81526004016106e090612608565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a018282604051806020016040528060008152506118c5565b600061165c846001600160a01b0316611b38565b1561175857836001600160a01b031663150b7a02611678611136565b8786866040518563ffffffff1660e01b815260040161169a9493929190612016565b602060405180830381600087803b1580156116b457600080fd5b505af19250505080156116e4575060408051601f3d908101601f191682019092526116e191810190611e17565b60015b61173e573d808015611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b5080516117365760405162461bcd60e51b81526004016106e090612481565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061105b565b506001949350505050565b60608161178857506040805180820190915260018152600360fc1b6020820152610617565b8160005b81156117b2578061179c81612865565b91506117ab9050600a83612775565b915061178c565b60008167ffffffffffffffff8111156117db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611805576020820181803683370190505b5090505b841561105b5761181a6001836127d0565b9150611827600a86612880565b61183290603061275d565b60f81b81838151811061185557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611877600a86612775565b9450611809565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166118ee5760405162461bcd60e51b81526004016106e09061250b565b6118f78161112f565b156119145760405162461bcd60e51b81526004016106e0906124d4565b7f00000000000000000000000000000000000000000000000000000000000000008311156119545760405162461bcd60e51b81526004016106e0906126db565b6119616000858386610eb8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119bd908790612732565b6001600160801b031681526020018583602001516119db9190612732565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611b265760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aea6000888488611648565b611b065760405162461bcd60e51b81526004016106e090612481565b81611b1081612865565b9250508080611b1e90612865565b915050611a9d565b5060008181556114a290878588610eb8565b3b151590565b828054611b4a9061282a565b90600052602060002090601f016020900481019282611b6c5760008555611bb2565b82601f10611b8557805160ff1916838001178555611bb2565b82800160010185558215611bb2579182015b82811115611bb2578251825591602001919060010190611b97565b50610b89929150611bd5565b604080518082019091526000808252602082015290565b5b80821115610b895760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056128c0565b604051601f8501601f191681016020018281118282101715611c2957611c296128c0565b604052848152915081838501861015611c4157600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611c6b578081fd5b81356114b6816128d6565b60008060408385031215611c88578081fd5b8235611c93816128d6565b91506020830135611ca3816128d6565b809150509250929050565b600080600060608486031215611cc2578081fd5b8335611ccd816128d6565b92506020840135611cdd816128d6565b929592945050506040919091013590565b60008060008060808587031215611d03578081fd5b8435611d0e816128d6565b93506020850135611d1e816128d6565b925060408501359150606085013567ffffffffffffffff811115611d40578182fd5b8501601f81018713611d50578182fd5b611d5f87823560208401611bea565b91505092959194509250565b60008060408385031215611d7d578182fd5b8235611d88816128d6565b91506020830135611ca3816128eb565b60008060408385031215611daa578182fd5b8235611db5816128d6565b946020939093013593505050565b600060208284031215611dd4578081fd5b81356114b6816128eb565b600060208284031215611df0578081fd5b81516114b6816128eb565b600060208284031215611e0c578081fd5b81356114b6816128f9565b600060208284031215611e28578081fd5b81516114b6816128f9565b600060208284031215611e44578081fd5b81516114b6816128d6565b600060208284031215611e60578081fd5b813567ffffffffffffffff811115611e76578182fd5b8201601f81018413611e86578182fd5b61105b84823560208401611bea565b600060208284031215611ea6578081fd5b5035919050565b600060208284031215611ebe578081fd5b5051919050565b60008060408385031215611ed7578182fd5b50508035926020909101359150565b60008151808452611efe8160208601602086016127e7565b601f01601f19169290920160200192915050565b60008151611f248185602086016127e7565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b8254600090819060028104600180831680611f6857607f831692505b6020808410821415611f8857634e487b7160e01b87526022600452602487fd5b818015611f9c5760018114611fad57611fd9565b60ff19861689528489019650611fd9565b611fb68b612726565b885b86811015611fd15781548b820152908501908301611fb8565b505084890196505b505050505050611ff9611ff4611fee83611f3f565b86611f12565b611f2e565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204990830184611ee6565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526114b66020830184611ee6565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b0380831681851680830382111561275457612754612894565b01949350505050565b6000821982111561277057612770612894565b500190565b600082612784576127846128aa565b500490565b60008160001904831182151516156127a3576127a3612894565b500290565b60006001600160801b03838116908316818110156127c8576127c8612894565b039392505050565b6000828210156127e2576127e2612894565b500390565b60005b838110156128025781810151838201526020016127ea565b83811115610eb85750506000910152565b60008161282257612822612894565b506000190190565b60028104600182168061283e57607f821691505b6020821081141561285f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287957612879612894565b5060010190565b60008261288f5761288f6128aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110d157600080fd5b80151581146110d157600080fd5b6001600160e01b0319811681146110d157600080fdfea264697066735822122071a6fbba1111c87c1bbd13dca8358a035a200eacd2f5b63206738b33a4177dc064736f6c63430008000033697066733a2f2f516d5a36366673465156446b4e38626d674d4b317154564556646735396976314b76435733465a70416666793545

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610565578063d7224ba01461057a578063e43082f71461058f578063e985e9c5146105af578063f2fde38b146105cf576101f9565b8063a22cb465146104f0578063b88d4fde14610510578063c6a91b4214610530578063c87b56dd14610545576101f9565b80638da5cb5b116100dc5780638da5cb5b1461049e57806395d89b41146104b3578063982d669e146104c8578063a0712d68146104dd576101f9565b80636352211e1461043457806370a0823114610454578063714c539814610474578063715018a614610489576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461039f57806342842e0e146103b457806349df728c146103d45780634f6ccce7146103f457806355f804b314610414576101f9565b806323b872dd1461031157806328cad13d146103315780632a55205a146103515780632f745c591461037f576101f9565b8063095ea7b3116101cc578063095ea7b3146102a55780630a00ae83146102c757806318160ddd146102e75780631e84c413146102fc576101f9565b806301ffc9a7146101fe57806306fdde031461023457806307e89ec014610256578063081812fc14610278575b600080fd5b34801561020a57600080fd5b5061021e610219366004611dfb565b6105ef565b60405161022b919061206c565b60405180910390f35b34801561024057600080fd5b5061024961061c565b60405161022b9190612077565b34801561026257600080fd5b5061026b6106ae565b60405161022b919061271d565b34801561028457600080fd5b50610298610293366004611e95565b6106b9565b60405161022b9190612002565b3480156102b157600080fd5b506102c56102c0366004611d98565b610705565b005b3480156102d357600080fd5b506102c56102e2366004611e95565b61079e565b3480156102f357600080fd5b5061026b6107e2565b34801561030857600080fd5b5061021e6107e8565b34801561031d57600080fd5b506102c561032c366004611cae565b6107f1565b34801561033d57600080fd5b506102c561034c366004611dc3565b6107fc565b34801561035d57600080fd5b5061037161036c366004611ec5565b61084e565b60405161022b929190612053565b34801561038b57600080fd5b5061026b61039a366004611d98565b610897565b3480156103ab57600080fd5b506102c5610993565b3480156103c057600080fd5b506102c56103cf366004611cae565b610a05565b3480156103e057600080fd5b506102c56103ef366004611c5a565b610a20565b34801561040057600080fd5b5061026b61040f366004611e95565b610b61565b34801561042057600080fd5b506102c561042f366004611e4f565b610b8d565b34801561044057600080fd5b5061029861044f366004611e95565b610bdf565b34801561046057600080fd5b5061026b61046f366004611c5a565b610bf1565b34801561048057600080fd5b50610249610c3e565b34801561049557600080fd5b506102c5610c4d565b3480156104aa57600080fd5b50610298610c98565b3480156104bf57600080fd5b50610249610ca7565b3480156104d457600080fd5b5061026b610cb6565b6102c56104eb366004611e95565b610cbc565b3480156104fc57600080fd5b506102c561050b366004611d6b565b610db7565b34801561051c57600080fd5b506102c561052b366004611cee565b610e85565b34801561053c57600080fd5b5061026b610ebe565b34801561055157600080fd5b50610249610560366004611e95565b610ec3565b34801561057157600080fd5b5061026b610f26565b34801561058657600080fd5b5061026b610f2c565b34801561059b57600080fd5b506102c56105aa366004611dc3565b610f32565b3480156105bb57600080fd5b5061021e6105ca366004611c76565b610f8f565b3480156105db57600080fd5b506102c56105ea366004611c5a565b611063565b60006001600160e01b0319821663152a902d60e11b14806106145750610614826110d4565b90505b919050565b60606001805461062b9061282a565b80601f01602080910402602001604051908101604052809291908181526020018280546106579061282a565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b6618838370f3400081565b60006106c48261112f565b6106e95760405162461bcd60e51b81526004016106e09061268e565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061071082610bdf565b9050806001600160a01b0316836001600160a01b031614156107445760405162461bcd60e51b81526004016106e09061243f565b806001600160a01b0316610756611136565b6001600160a01b031614806107725750610772816105ca611136565b61078e5760405162461bcd60e51b81526004016106e090612293565b61079983838361113a565b505050565b6107a6611136565b6001600160a01b03166107b7610c98565b6001600160a01b0316146107dd5760405162461bcd60e51b81526004016106e090612381565b600e55565b60005490565b600f5460ff1681565b610799838383611196565b610804611136565b6001600160a01b0316610815610c98565b6001600160a01b03161461083b5760405162461bcd60e51b81526004016106e090612381565b600f805460ff1916911515919091179055565b60008061085a8461112f565b6108765760405162461bcd60e51b81526004016106e090612268565b3061088c6108858560056114aa565b60646114bd565b915091509250929050565b60006108a283610bf1565b82106108c05760405162461bcd60e51b81526004016106e09061208a565b60006108ca6107e2565b905060008060005b83811015610974576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561092557805192505b876001600160a01b0316836001600160a01b0316141561096157868414156109535750935061098d92505050565b8361095d81612865565b9450505b508061096c81612865565b9150506108d2565b5060405162461bcd60e51b81526004016106e090612583565b92915050565b61099b611136565b6001600160a01b03166109ac610c98565b6001600160a01b0316146109d25760405162461bcd60e51b81526004016106e090612381565b6040514790339082156108fc029083906000818181858888f19350505050158015610a01573d6000803e3d6000fd5b5050565b61079983838360405180602001604052806000815250610e85565b610a28611136565b6001600160a01b0316610a39610c98565b6001600160a01b031614610a5f5760405162461bcd60e51b81526004016106e090612381565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610a8e903090600401612002565b60206040518083038186803b158015610aa657600080fd5b505afa158015610aba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ade9190611ead565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610b0f9033908590600401612053565b602060405180830381600087803b158015610b2957600080fd5b505af1158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107999190611ddf565b6000610b6b6107e2565b8210610b895760405162461bcd60e51b81526004016106e09061215c565b5090565b610b95611136565b6001600160a01b0316610ba6610c98565b6001600160a01b031614610bcc5760405162461bcd60e51b81526004016106e090612381565b8051610a0190600b906020840190611b3e565b6000610bea826114c9565b5192915050565b60006001600160a01b038216610c195760405162461bcd60e51b81526004016106e0906122f0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461062b9061282a565b610c55611136565b6001600160a01b0316610c66610c98565b6001600160a01b031614610c8c5760405162461bcd60e51b81526004016106e090612381565b610c9660006115dc565b565b6008546001600160a01b031690565b60606002805461062b9061282a565b600e5481565b60026009541415610cdf5760405162461bcd60e51b81526004016106e0906125d1565b6002600955600e546618838370f34000908290610cfa6107e2565b1115610d285734610d0b8284612789565b14610d285760405162461bcd60e51b81526004016106e09061254c565b600f5460ff16610d4a5760405162461bcd60e51b81526004016106e090612657565b82600d5481610d576107e2565b610d61919061275d565b1115610d7f5760405162461bcd60e51b81526004016106e09061219f565b836005811115610da15760405162461bcd60e51b81526004016106e090612226565b610dab338661162e565b50506001600955505050565b610dbf611136565b6001600160a01b0316826001600160a01b03161415610df05760405162461bcd60e51b81526004016106e0906123b6565b8060066000610dfd611136565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e41611136565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e79919061206c565b60405180910390a35050565b610e90848484611196565b610e9c84848484611648565b610eb85760405162461bcd60e51b81526004016106e090612481565b50505050565b600581565b6060610ece8261112f565b610eea5760405162461bcd60e51b81526004016106e090612268565b600b610eff610efa84600161275d565b611763565b604051602001610f10929190611f4c565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610f3a611136565b6001600160a01b0316610f4b610c98565b6001600160a01b031614610f715760405162461bcd60e51b81526004016106e090612381565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff1680156110425750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b8152600401610fe79190612002565b60206040518083038186803b158015610fff57600080fd5b505afa158015611013573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110379190611e33565b6001600160a01b0316145b1561105157600191505061098d565b61105b848461187e565b949350505050565b61106b611136565b6001600160a01b031661107c610c98565b6001600160a01b0316146110a25760405162461bcd60e51b81526004016106e090612381565b6001600160a01b0381166110c85760405162461bcd60e51b81526004016106e0906120cc565b6110d1816115dc565b50565b60006001600160e01b031982166380ac58cd60e01b148061110557506001600160e01b03198216635b5e139f60e01b145b8061112057506001600160e01b0319821663780e9d6360e01b145b806106145750610614826118ac565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111a1826114c9565b9050600081600001516001600160a01b03166111bb611136565b6001600160a01b031614806111f057506111d3611136565b6001600160a01b03166111e5846106b9565b6001600160a01b0316145b8061120457508151611204906105ca611136565b9050806112235760405162461bcd60e51b81526004016106e0906123ed565b846001600160a01b031682600001516001600160a01b0316146112585760405162461bcd60e51b81526004016106e09061233b565b6001600160a01b03841661127e5760405162461bcd60e51b81526004016106e0906121e1565b61128b8585856001610eb8565b61129b600084846000015161113a565b6001600160a01b03851660009081526004602052604081208054600192906112cd9084906001600160801b03166127a8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261131991859116612732565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556113af84600161275d565b6000818152600360205260409020549091506001600160a01b0316611454576113d78161112f565b156114545760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114a28686866001610eb8565b505050505050565b60006114b68284612789565b9392505050565b60006114b68284612775565b6114d1611bbe565b6114da8261112f565b6114f65760405162461bcd60e51b81526004016106e090612112565b60007f00000000000000000000000000000000000000000000000000000000000000648310611557576115497f0000000000000000000000000000000000000000000000000000000000000064846127d0565b61155490600161275d565b90505b825b8181106115c3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115b0579250610617915050565b50806115bb81612813565b915050611559565b5060405162461bcd60e51b81526004016106e090612608565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a018282604051806020016040528060008152506118c5565b600061165c846001600160a01b0316611b38565b1561175857836001600160a01b031663150b7a02611678611136565b8786866040518563ffffffff1660e01b815260040161169a9493929190612016565b602060405180830381600087803b1580156116b457600080fd5b505af19250505080156116e4575060408051601f3d908101601f191682019092526116e191810190611e17565b60015b61173e573d808015611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b5080516117365760405162461bcd60e51b81526004016106e090612481565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061105b565b506001949350505050565b60608161178857506040805180820190915260018152600360fc1b6020820152610617565b8160005b81156117b2578061179c81612865565b91506117ab9050600a83612775565b915061178c565b60008167ffffffffffffffff8111156117db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611805576020820181803683370190505b5090505b841561105b5761181a6001836127d0565b9150611827600a86612880565b61183290603061275d565b60f81b81838151811061185557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611877600a86612775565b9450611809565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166118ee5760405162461bcd60e51b81526004016106e09061250b565b6118f78161112f565b156119145760405162461bcd60e51b81526004016106e0906124d4565b7f00000000000000000000000000000000000000000000000000000000000000648311156119545760405162461bcd60e51b81526004016106e0906126db565b6119616000858386610eb8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119bd908790612732565b6001600160801b031681526020018583602001516119db9190612732565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611b265760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aea6000888488611648565b611b065760405162461bcd60e51b81526004016106e090612481565b81611b1081612865565b9250508080611b1e90612865565b915050611a9d565b5060008181556114a290878588610eb8565b3b151590565b828054611b4a9061282a565b90600052602060002090601f016020900481019282611b6c5760008555611bb2565b82601f10611b8557805160ff1916838001178555611bb2565b82800160010185558215611bb2579182015b82811115611bb2578251825591602001919060010190611b97565b50610b89929150611bd5565b604080518082019091526000808252602082015290565b5b80821115610b895760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056128c0565b604051601f8501601f191681016020018281118282101715611c2957611c296128c0565b604052848152915081838501861015611c4157600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611c6b578081fd5b81356114b6816128d6565b60008060408385031215611c88578081fd5b8235611c93816128d6565b91506020830135611ca3816128d6565b809150509250929050565b600080600060608486031215611cc2578081fd5b8335611ccd816128d6565b92506020840135611cdd816128d6565b929592945050506040919091013590565b60008060008060808587031215611d03578081fd5b8435611d0e816128d6565b93506020850135611d1e816128d6565b925060408501359150606085013567ffffffffffffffff811115611d40578182fd5b8501601f81018713611d50578182fd5b611d5f87823560208401611bea565b91505092959194509250565b60008060408385031215611d7d578182fd5b8235611d88816128d6565b91506020830135611ca3816128eb565b60008060408385031215611daa578182fd5b8235611db5816128d6565b946020939093013593505050565b600060208284031215611dd4578081fd5b81356114b6816128eb565b600060208284031215611df0578081fd5b81516114b6816128eb565b600060208284031215611e0c578081fd5b81356114b6816128f9565b600060208284031215611e28578081fd5b81516114b6816128f9565b600060208284031215611e44578081fd5b81516114b6816128d6565b600060208284031215611e60578081fd5b813567ffffffffffffffff811115611e76578182fd5b8201601f81018413611e86578182fd5b61105b84823560208401611bea565b600060208284031215611ea6578081fd5b5035919050565b600060208284031215611ebe578081fd5b5051919050565b60008060408385031215611ed7578182fd5b50508035926020909101359150565b60008151808452611efe8160208601602086016127e7565b601f01601f19169290920160200192915050565b60008151611f248185602086016127e7565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b8254600090819060028104600180831680611f6857607f831692505b6020808410821415611f8857634e487b7160e01b87526022600452602487fd5b818015611f9c5760018114611fad57611fd9565b60ff19861689528489019650611fd9565b611fb68b612726565b885b86811015611fd15781548b820152908501908301611fb8565b505084890196505b505050505050611ff9611ff4611fee83611f3f565b86611f12565b611f2e565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204990830184611ee6565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526114b66020830184611ee6565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b0380831681851680830382111561275457612754612894565b01949350505050565b6000821982111561277057612770612894565b500190565b600082612784576127846128aa565b500490565b60008160001904831182151516156127a3576127a3612894565b500290565b60006001600160801b03838116908316818110156127c8576127c8612894565b039392505050565b6000828210156127e2576127e2612894565b500390565b60005b838110156128025781810151838201526020016127ea565b83811115610eb85750506000910152565b60008161282257612822612894565b506000190190565b60028104600182168061283e57607f821691505b6020821081141561285f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287957612879612894565b5060010190565b60008261288f5761288f6128aa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110d157600080fd5b80151581146110d157600080fd5b6001600160e01b0319811681146110d157600080fdfea264697066735822122071a6fbba1111c87c1bbd13dca8358a035a200eacd2f5b63206738b33a4177dc064736f6c63430008000033

Deployed Bytecode Sourcemap

54985:5712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58886:292;;;;;;;;;;-1:-1:-1;58886:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44204:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55503:56::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45729:204::-;;;;;;;;;;-1:-1:-1;45729:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45292:379::-;;;;;;;;;;-1:-1:-1;45292:379:0;;;;;:::i;:::-;;:::i;:::-;;58154:139;;;;;;;;;;-1:-1:-1;58154:139:0;;;;;:::i;:::-;;:::i;41039:94::-;;;;;;;;;;;;;:::i;55608:37::-;;;;;;;;;;;;;:::i;46579:142::-;;;;;;;;;;-1:-1:-1;46579:142:0;;;;;:::i;:::-;;:::i;57988:158::-;;;;;;;;;;-1:-1:-1;57988:158:0;;;;;:::i;:::-;;:::i;60376:318::-;;;;;;;;;;-1:-1:-1;60376:318:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;41670:744::-;;;;;;;;;;-1:-1:-1;41670:744:0;;;;;:::i;:::-;;:::i;58303:143::-;;;;;;;;;;;;;:::i;46784:157::-;;;;;;;;;;-1:-1:-1;46784:157:0;;;;;:::i;:::-;;:::i;58454:168::-;;;;;;;;;;-1:-1:-1;58454:168:0;;;;;:::i;:::-;;:::i;41202:177::-;;;;;;;;;;-1:-1:-1;41202:177:0;;;;;:::i;:::-;;:::i;57590:100::-;;;;;;;;;;-1:-1:-1;57590:100:0;;;;;:::i;:::-;;:::i;44027:118::-;;;;;;;;;;-1:-1:-1;44027:118:0;;;;;:::i;:::-;;:::i;42904:211::-;;;;;;;;;;-1:-1:-1;42904:211:0;;;;;:::i;:::-;;:::i;57426:93::-;;;;;;;;;;;;;:::i;19064:103::-;;;;;;;;;;;;;:::i;18413:87::-;;;;;;;;;;;;;:::i;44359:98::-;;;;;;;;;;;;;:::i;55566:35::-;;;;;;;;;;;;;:::i;56910:321::-;;;;;;:::i;:::-;;:::i;45997:274::-;;;;;;;;;;-1:-1:-1;45997:274:0;;;;;:::i;:::-;;:::i;47004:311::-;;;;;;;;;;-1:-1:-1;47004:311:0;;;;;:::i;:::-;;:::i;55413:44::-;;;;;;;;;;;;;:::i;60003:307::-;;;;;;;;;;-1:-1:-1;60003:307:0;;;;;:::i;:::-;;:::i;55464:30::-;;;;;;;;;;;;;:::i;51419:43::-;;;;;;;;;;;;;:::i;57814:166::-;;;;;;;;;;-1:-1:-1;57814:166:0;;;;;:::i;:::-;;:::i;59315:617::-;;;;;;;;;;-1:-1:-1;59315:617:0;;;;;:::i;:::-;;:::i;19322:201::-;;;;;;;;;;-1:-1:-1;19322:201:0;;;;;:::i;:::-;;:::i;58886:292::-;59034:4;-1:-1:-1;;;;;;59076:41:0;;-1:-1:-1;;;59076:41:0;;:94;;;59134:36;59158:11;59134:23;:36::i;:::-;59056:114;;58886:292;;;;:::o;44204:94::-;44258:13;44287:5;44280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44204:94;:::o;55503:56::-;55547:12;55503:56;:::o;45729:204::-;45797:7;45821:16;45829:7;45821;:16::i;:::-;45813:74;;;;-1:-1:-1;;;45813:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;45903:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45903:24:0;;45729:204::o;45292:379::-;45361:13;45377:24;45393:7;45377:15;:24::i;:::-;45361:40;;45422:5;-1:-1:-1;;;;;45416:11:0;:2;-1:-1:-1;;;;;45416:11:0;;;45408:58;;;;-1:-1:-1;;;45408:58:0;;;;;;;:::i;:::-;45507:5;-1:-1:-1;;;;;45491:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45491:21:0;;:62;;;;45516:37;45533:5;45540:12;:10;:12::i;45516:37::-;45475:153;;;;-1:-1:-1;;;45475:153:0;;;;;;;:::i;:::-;45637:28;45646:2;45650:7;45659:5;45637:8;:28::i;:::-;45292:379;;;:::o;58154:139::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;58255:14:::1;:30:::0;58154:139::o;41039:94::-;41092:7;41115:12;41039:94;:::o;55608:37::-;;;;;;:::o;46579:142::-;46687:28;46697:4;46703:2;46707:7;46687:9;:28::i;57988:158::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;58098:18:::1;:40:::0;;-1:-1:-1;;58098:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57988:158::o;60376:318::-;60501:16;60519:21;60566:16;60574:7;60566;:16::i;:::-;60558:46;;;;-1:-1:-1;;;60558:46:0;;;;;;;:::i;:::-;60633:4;60640:45;60653:26;60666:9;60677:1;60653:12;:26::i;:::-;60681:3;60640:12;:45::i;:::-;60617:69;;;;60376:318;;;;;:::o;41670:744::-;41779:7;41814:16;41824:5;41814:9;:16::i;:::-;41806:5;:24;41798:71;;;;-1:-1:-1;;;41798:71:0;;;;;;;:::i;:::-;41876:22;41901:13;:11;:13::i;:::-;41876:38;;41921:19;41951:25;42001:9;41996:350;42020:14;42016:1;:18;41996:350;;;42050:31;42084:14;;;:11;:14;;;;;;;;;42050:48;;;;;;;;;-1:-1:-1;;;;;42050:48:0;;;;;-1:-1:-1;;;42050:48:0;;;;;;;;;;;;42111:28;42107:89;;42172:14;;;-1:-1:-1;42107:89:0;42229:5;-1:-1:-1;;;;;42208:26:0;:17;-1:-1:-1;;;;;42208:26:0;;42204:135;;;42266:5;42251:11;:20;42247:59;;;-1:-1:-1;42293:1:0;-1:-1:-1;42286:8:0;;-1:-1:-1;;;42286:8:0;42247:59;42316:13;;;;:::i;:::-;;;;42204:135;-1:-1:-1;42036:3:0;;;;:::i;:::-;;;;41996:350;;;;42352:56;;-1:-1:-1;;;42352:56:0;;;;;;;:::i;41670:744::-;;;;;:::o;58303:143::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;58401:37:::1;::::0;58369:21:::1;::::0;58409:10:::1;::::0;58401:37;::::1;;;::::0;58369:21;;58351:15:::1;58401:37:::0;58351:15;58401:37;58369:21;58409:10;58401:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;18704:1;58303:143::o:0;46784:157::-;46896:39;46913:4;46919:2;46923:7;46896:39;;;;;;;;;;;;:16;:39::i;58454:168::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;58538:30:::1;::::0;-1:-1:-1;;;58538:30:0;;58520:15:::1;::::0;-1:-1:-1;;;;;58538:15:0;::::1;::::0;::::1;::::0;:30:::1;::::0;58562:4:::1;::::0;58538:30:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58579:35;::::0;-1:-1:-1;;;58579:35:0;;58520:48;;-1:-1:-1;;;;;;58579:14:0;::::1;::::0;::::1;::::0;:35:::1;::::0;58594:10:::1;::::0;58520:48;;58579:35:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41202:177::-:0;41269:7;41301:13;:11;:13::i;:::-;41293:5;:21;41285:69;;;;-1:-1:-1;;;41285:69:0;;;;;;;:::i;:::-;-1:-1:-1;41368:5:0;41202:177::o;57590:100::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;57664:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;44027:118::-:0;44091:7;44114:20;44126:7;44114:11;:20::i;:::-;:25;;44027:118;-1:-1:-1;;44027:118:0:o;42904:211::-;42968:7;-1:-1:-1;;;;;42992:19:0;;42984:75;;;;-1:-1:-1;;;42984:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;43081:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43081:27:0;;42904:211::o;57426:93::-;57471:13;57504:7;57497:14;;;;;:::i;19064:103::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;19129:30:::1;19156:1;19129:18;:30::i;:::-;19064:103::o:0;18413:87::-;18486:6;;-1:-1:-1;;;;;18486:6:0;18413:87;:::o;44359:98::-;44415:13;44444:7;44437:14;;;;;:::i;55566:35::-;;;;:::o;56910:321::-;10342:1;10940:7;;:19;;10932:63;;;;-1:-1:-1;;;10932:63:0;;;;;;;:::i;:::-;10342:1;11073:7;:18;56577:14:::1;::::0;55547:12:::1;::::0;57050:14;;56563:13:::1;:11;:13::i;:::-;:28;56560:166;;;56653:9;56626:22;56634:14:::0;56626:5;:22:::1;:::i;:::-;56625:37;56603:111;;;;-1:-1:-1::0;;;56603:111:0::1;;;;;;;:::i;:::-;55775:18:::2;::::0;::::2;;55767:54;;;;-1:-1:-1::0;;;55767:54:0::2;;;;;;;:::i;:::-;57113:14:::3;56186:9;;56151:14;56135:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56113:144;;;;-1:-1:-1::0;;;56113:144:0::3;;;;;;;:::i;:::-;57152:14:::4;55456:1;55933:14;:34;;55911:118;;;;-1:-1:-1::0;;;55911:118:0::4;;;;;;;:::i;:::-;57186:37:::5;57196:10;57208:14;57186:9;:37::i;:::-;-1:-1:-1::0;;10298:1:0;11252:7;:22;-1:-1:-1;;;56910:321:0:o;45997:274::-;46100:12;:10;:12::i;:::-;-1:-1:-1;;;;;46088:24:0;:8;-1:-1:-1;;;;;46088:24:0;;;46080:63;;;;-1:-1:-1;;;46080:63:0;;;;;;;:::i;:::-;46197:8;46152:18;:32;46171:12;:10;:12::i;:::-;-1:-1:-1;;;;;46152:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;46152:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;46152:53:0;;;;;;;;;;;46232:12;:10;:12::i;:::-;-1:-1:-1;;;;;46217:48:0;;46256:8;46217:48;;;;;;:::i;:::-;;;;;;;;45997:274;;:::o;47004:311::-;47141:28;47151:4;47157:2;47161:7;47141:9;:28::i;:::-;47192:48;47215:4;47221:2;47225:7;47234:5;47192:22;:48::i;:::-;47176:133;;;;-1:-1:-1;;;47176:133:0;;;;;;;:::i;:::-;47004:311;;;;:::o;55413:44::-;55456:1;55413:44;:::o;60003:307::-;60121:13;60160:16;60168:7;60160;:16::i;:::-;60152:46;;;;-1:-1:-1;;;60152:46:0;;;;;;;:::i;:::-;60255:7;60269:22;60270:9;:7;60278:1;60270:9;:::i;:::-;60269:20;:22::i;:::-;60238:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60211:91;;60003:307;;;:::o;55464:30::-;;;;:::o;51419:43::-;;;;:::o;57814:166::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;57928:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;57928:44:0::1;-1:-1:-1::0;;;;57928:44:0;;::::1;::::0;;;::::1;::::0;;57814:166::o;59315:617::-;59663:27;;59440:4;;-1:-1:-1;;;;;59663:27:0;;;-1:-1:-1;;;59730:20:0;;;;:86;;;;;59808:8;-1:-1:-1;;;;;59767:49:0;59775:13;-1:-1:-1;;;;;59775:21:0;;59797:5;59775:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59767:49:0;;59730:86;59712:154;;;59850:4;59843:11;;;;;59712:154;59885:39;59908:5;59915:8;59885:22;:39::i;:::-;59878:46;59315:617;-1:-1:-1;;;;59315:617:0:o;19322:201::-;18644:12;:10;:12::i;:::-;-1:-1:-1;;;;;18633:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18633:23:0;;18625:68;;;;-1:-1:-1;;;18625:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19411:22:0;::::1;19403:73;;;;-1:-1:-1::0;;;19403:73:0::1;;;;;;;:::i;:::-;19487:28;19506:8;19487:18;:28::i;:::-;19322:201:::0;:::o;42478:370::-;42605:4;-1:-1:-1;;;;;;42635:40:0;;-1:-1:-1;;;42635:40:0;;:99;;-1:-1:-1;;;;;;;42686:48:0;;-1:-1:-1;;;42686:48:0;42635:99;:160;;;-1:-1:-1;;;;;;;42745:50:0;;-1:-1:-1;;;42745:50:0;42635:160;:207;;;;42806:36;42830:11;42806:23;:36::i;47554:105::-;47611:4;47641:12;-1:-1:-1;47631:22:0;47554:105::o;17137:98::-;17217:10;17137:98;:::o;51241:172::-;51338:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51338:29:0;-1:-1:-1;;;;;51338:29:0;;;;;;;;;51379:28;;51338:24;;51379:28;;;;;;;51241:172;;;:::o;49606:1529::-;49703:35;49741:20;49753:7;49741:11;:20::i;:::-;49703:58;;49770:22;49812:13;:18;;;-1:-1:-1;;;;;49796:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;49796:34:0;;:81;;;;49865:12;:10;:12::i;:::-;-1:-1:-1;;;;;49841:36:0;:20;49853:7;49841:11;:20::i;:::-;-1:-1:-1;;;;;49841:36:0;;49796:81;:142;;;-1:-1:-1;49905:18:0;;49888:50;;49925:12;:10;:12::i;49888:50::-;49770:169;;49964:17;49948:101;;;;-1:-1:-1;;;49948:101:0;;;;;;;:::i;:::-;50096:4;-1:-1:-1;;;;;50074:26:0;:13;:18;;;-1:-1:-1;;;;;50074:26:0;;50058:98;;;;-1:-1:-1;;;50058:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50171:16:0;;50163:66;;;;-1:-1:-1;;;50163:66:0;;;;;;;:::i;:::-;50238:43;50260:4;50266:2;50270:7;50279:1;50238:21;:43::i;:::-;50338:49;50355:1;50359:7;50368:13;:18;;;50338:8;:49::i;:::-;-1:-1:-1;;;;;50396:18:0;;;;;;:12;:18;;;;;:31;;50426:1;;50396:18;:31;;50426:1;;-1:-1:-1;;;;;50396:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50396:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50434:16:0;;-1:-1:-1;50434:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50434:16:0;;:29;;-1:-1:-1;;50434:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50434:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50493:43:0;;;;;;;;-1:-1:-1;;;;;50493:43:0;;;;;;50519:15;50493:43;;;;;;;;;-1:-1:-1;50470:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50470:66:0;-1:-1:-1;;;;50470:66:0;;;;-1:-1:-1;;;;;;50470:66:0;;;;;;;;50786:11;50482:7;-1:-1:-1;50786:11:0;:::i;:::-;50849:1;50808:24;;;:11;:24;;;;;:29;50764:33;;-1:-1:-1;;;;;;50808:29:0;50804:236;;50866:20;50874:11;50866:7;:20::i;:::-;50862:171;;;50926:97;;;;;;;;50953:18;;-1:-1:-1;;;;;50926:97:0;;;;;;50984:28;;;;50926:97;;;;;;;;;;-1:-1:-1;50899:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;50899:124:0;;;;;;;;;-1:-1:-1;;;;50899:124:0;-1:-1:-1;;;50899:124:0;;;;;;;;;;;;;;50862:171;51072:7;51068:2;-1:-1:-1;;;;;51053:27:0;51062:4;-1:-1:-1;;;;;51053:27:0;;;;;;;;;;;51087:42;51108:4;51114:2;51118:7;51127:1;51087:20;:42::i;:::-;49606:1529;;;;;;:::o;3638:98::-;3696:7;3723:5;3727:1;3723;:5;:::i;:::-;3716:12;3638:98;-1:-1:-1;;;3638:98:0:o;4037:::-;4095:7;4122:5;4126:1;4122;:5;:::i;43367:606::-;43443:21;;:::i;:::-;43484:16;43492:7;43484;:16::i;:::-;43476:71;;;;-1:-1:-1;;;43476:71:0;;;;;;;:::i;:::-;43556:26;43604:12;43593:7;:23;43589:93;;43648:22;43658:12;43648:7;:22;:::i;:::-;:26;;43673:1;43648:26;:::i;:::-;43627:47;;43589:93;43710:7;43690:212;43727:18;43719:4;:26;43690:212;;43764:31;43798:17;;;:11;:17;;;;;;;;;43764:51;;;;;;;;;-1:-1:-1;;;;;43764:51:0;;;;;-1:-1:-1;;;43764:51:0;;;;;;;;;;;;43828:28;43824:71;;43876:9;-1:-1:-1;43869:16:0;;-1:-1:-1;;43869:16:0;43824:71;-1:-1:-1;43747:6:0;;;;:::i;:::-;;;;43690:212;;;;43910:57;;-1:-1:-1;;;43910:57:0;;;;;;;:::i;19683:191::-;19776:6;;;-1:-1:-1;;;;;19793:17:0;;;-1:-1:-1;;;;;;19793:17:0;;;;;;;19826:40;;19776:6;;;19793:17;19776:6;;19826:40;;19757:16;;19826:40;19683:191;;:::o;47665:98::-;47730:27;47740:2;47744:8;47730:27;;;;;;;;;;;;:9;:27::i;52956:690::-;53093:4;53110:15;:2;-1:-1:-1;;;;;53110:13:0;;:15::i;:::-;53106:535;;;53165:2;-1:-1:-1;;;;;53149:36:0;;53186:12;:10;:12::i;:::-;53200:4;53206:7;53215:5;53149:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53149:72:0;;;;;;;;-1:-1:-1;;53149:72:0;;;;;;;;;;;;:::i;:::-;;;53136:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53380:13:0;;53376:215;;53413:61;;-1:-1:-1;;;53413:61:0;;;;;;;:::i;53376:215::-;53559:6;53553:13;53544:6;53540:2;53536:15;53529:38;53136:464;-1:-1:-1;;;;;;53271:55:0;-1:-1:-1;;;53271:55:0;;-1:-1:-1;53264:62:0;;53106:535;-1:-1:-1;53629:4:0;52956:690;;;;;;:::o;14699:723::-;14755:13;14976:10;14972:53;;-1:-1:-1;15003:10:0;;;;;;;;;;;;-1:-1:-1;;;15003:10:0;;;;;;14972:53;15050:5;15035:12;15091:78;15098:9;;15091:78;;15124:8;;;;:::i;:::-;;-1:-1:-1;15147:10:0;;-1:-1:-1;15155:2:0;15147:10;;:::i;:::-;;;15091:78;;;15179:19;15211:6;15201:17;;;;;;-1:-1:-1;;;15201:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15201:17:0;;15179:39;;15229:154;15236:10;;15229:154;;15263:11;15273:1;15263:11;;:::i;:::-;;-1:-1:-1;15332:10:0;15340:2;15332:5;:10;:::i;:::-;15319:24;;:2;:24;:::i;:::-;15306:39;;15289:6;15296;15289:14;;;;;;-1:-1:-1;;;15289:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;15289:56:0;;;;;;;;-1:-1:-1;15360:11:0;15369:2;15360:11;;:::i;:::-;;;15229:154;;46334:186;-1:-1:-1;;;;;46479:25:0;;;46456:4;46479:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46334:186::o;31811:157::-;-1:-1:-1;;;;;;31920:40:0;;-1:-1:-1;;;31920:40:0;31811:157;;;:::o;48102:1272::-;48207:20;48230:12;-1:-1:-1;;;;;48257:16:0;;48249:62;;;;-1:-1:-1;;;48249:62:0;;;;;;;:::i;:::-;48448:21;48456:12;48448:7;:21::i;:::-;48447:22;48439:64;;;;-1:-1:-1;;;48439:64:0;;;;;;;:::i;:::-;48530:12;48518:8;:24;;48510:71;;;;-1:-1:-1;;;48510:71:0;;;;;;;:::i;:::-;48590:61;48620:1;48624:2;48628:12;48642:8;48590:21;:61::i;:::-;-1:-1:-1;;;;;48693:16:0;;48660:30;48693:16;;;:12;:16;;;;;;;;;48660:49;;;;;;;;;-1:-1:-1;;;;;48660:49:0;;;;;-1:-1:-1;;;48660:49:0;;;;;;;;;;;48735:119;;;;;;;;48755:19;;48660:49;;48735:119;;;48755:39;;48785:8;;48755:39;:::i;:::-;-1:-1:-1;;;;;48735:119:0;;;;;48838:8;48803:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;48735:119:0;;;;;;-1:-1:-1;;;;;48716:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;48716:138:0;;;;-1:-1:-1;;48716:138:0;;;;;;;;;;;;;;;;;48889:43;;;;;;;;;;;48915:15;48889:43;;;;;;;;48861:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48861:71:0;-1:-1:-1;;;;48861:71:0;;;;-1:-1:-1;;;;;;48861:71:0;;;;;;;;;;;;;;;48873:12;;48985:281;49009:8;49005:1;:12;48985:281;;;49038:38;;49063:12;;-1:-1:-1;;;;;49038:38:0;;;49055:1;;49038:38;;49055:1;;49038:38;49103:59;49134:1;49138:2;49142:12;49156:5;49103:22;:59::i;:::-;49085:150;;;;-1:-1:-1;;;49085:150:0;;;;;;;:::i;:::-;49244:14;;;;:::i;:::-;;;;49019:3;;;;;:::i;:::-;;;;48985:281;;;-1:-1:-1;49274:12:0;:27;;;49308:60;;49341:2;49345:12;49359:8;49308:20;:60::i;20699:387::-;21022:20;21070:8;;;20699:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:396::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2939;2898;2939;:::i;3008:327::-;;;3137:2;3125:9;3116:7;3112:23;3108:32;3105:2;;;3158:6;3150;3143:22;3105:2;3202:9;3189:23;3221:33;3248:5;3221:33;:::i;:::-;3273:5;3325:2;3310:18;;;;3297:32;;-1:-1:-1;;;3095:240:1:o;3340:253::-;;3449:2;3437:9;3428:7;3424:23;3420:32;3417:2;;;3470:6;3462;3455:22;3417:2;3514:9;3501:23;3533:30;3557:5;3533:30;:::i;3598:257::-;;3718:2;3706:9;3697:7;3693:23;3689:32;3686:2;;;3739:6;3731;3724:22;3686:2;3776:9;3770:16;3795:30;3819:5;3795:30;:::i;3860:257::-;;3971:2;3959:9;3950:7;3946:23;3942:32;3939:2;;;3992:6;3984;3977:22;3939:2;4036:9;4023:23;4055:32;4081:5;4055:32;:::i;4122:261::-;;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4302:9;4296:16;4321:32;4347:5;4321:32;:::i;4666:292::-;;4818:2;4806:9;4797:7;4793:23;4789:32;4786:2;;;4839:6;4831;4824:22;4786:2;4876:9;4870:16;4895:33;4922:5;4895:33;:::i;4963:482::-;;5085:2;5073:9;5064:7;5060:23;5056:32;5053:2;;;5106:6;5098;5091:22;5053:2;5151:9;5138:23;5184:18;5176:6;5173:30;5170:2;;;5221:6;5213;5206:22;5170:2;5249:22;;5302:4;5294:13;;5290:27;-1:-1:-1;5280:2:1;;5336:6;5328;5321:22;5280:2;5364:75;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5364:75;:::i;5450:190::-;;5562:2;5550:9;5541:7;5537:23;5533:32;5530:2;;;5583:6;5575;5568:22;5530:2;-1:-1:-1;5611:23:1;;5520:120;-1:-1:-1;5520:120:1:o;5645:194::-;;5768:2;5756:9;5747:7;5743:23;5739:32;5736:2;;;5789:6;5781;5774:22;5736:2;-1:-1:-1;5817:16:1;;5726:113;-1:-1:-1;5726:113:1:o;5844:258::-;;;5973:2;5961:9;5952:7;5948:23;5944:32;5941:2;;;5994:6;5986;5979:22;5941:2;-1:-1:-1;;6022:23:1;;;6092:2;6077:18;;;6064:32;;-1:-1:-1;5931:171:1:o;6107:259::-;;6188:5;6182:12;6215:6;6210:3;6203:19;6231:63;6287:6;6280:4;6275:3;6271:14;6264:4;6257:5;6253:16;6231:63;:::i;:::-;6348:2;6327:15;-1:-1:-1;;6323:29:1;6314:39;;;;6355:4;6310:50;;6158:208;-1:-1:-1;;6158:208:1:o;6371:187::-;;6453:5;6447:12;6468:52;6513:6;6508:3;6501:4;6494:5;6490:16;6468:52;:::i;:::-;6536:16;;;;;6423:135;-1:-1:-1;;6423:135:1:o;6563:120::-;-1:-1:-1;;;6630:20:1;;6675:1;6666:11;;6620:63::o;6688:116::-;-1:-1:-1;;;6755:16:1;;6796:1;6787:11;;6745:59::o;6809:1449::-;7245:13;;6809:1449;;;;7318:1;7303:17;;7339:1;7375:18;;;;7402:2;;7456:4;7448:6;7444:17;7434:27;;7402:2;7482;7530;7522:6;7519:14;7499:18;7496:38;7493:2;;;-1:-1:-1;;;7557:33:1;;7613:4;7610:1;7603:15;7643:4;7564:3;7631:17;7493:2;7674:18;7701:104;;;;7819:1;7814:324;;;;7667:471;;7701:104;-1:-1:-1;;7734:24:1;;7722:37;;7779:16;;;;-1:-1:-1;7701:104:1;;7814:324;7850:39;7882:6;7850:39;:::i;:::-;7911:3;7927:165;7941:6;7938:1;7935:13;7927:165;;;8019:14;;8006:11;;;7999:35;8062:16;;;;7956:10;;7927:165;;;7931:3;;8121:6;8116:3;8112:16;8105:23;;7667:471;;;;;;;8154:98;8186:65;8214:36;8246:3;8214:36;:::i;:::-;8206:6;8186:65;:::i;:::-;8154:98;:::i;:::-;8147:105;7195:1063;-1:-1:-1;;;;;7195:1063:1:o;8263:203::-;-1:-1:-1;;;;;8427:32:1;;;;8409:51;;8397:2;8382:18;;8364:102::o;8471:490::-;-1:-1:-1;;;;;8740:15:1;;;8722:34;;8792:15;;8787:2;8772:18;;8765:43;8839:2;8824:18;;8817:34;;;8887:3;8882:2;8867:18;;8860:31;;;8471:490;;8908:47;;8935:19;;8927:6;8908:47;:::i;:::-;8900:55;8674:287;-1:-1:-1;;;;;;8674:287:1:o;8966:274::-;-1:-1:-1;;;;;9158:32:1;;;;9140:51;;9222:2;9207:18;;9200:34;9128:2;9113:18;;9095:145::o;9245:187::-;9410:14;;9403:22;9385:41;;9373:2;9358:18;;9340:92::o;9437:221::-;;9586:2;9575:9;9568:21;9606:46;9648:2;9637:9;9633:18;9625:6;9606:46;:::i;9663:398::-;9865:2;9847:21;;;9904:2;9884:18;;;9877:30;9943:34;9938:2;9923:18;;9916:62;-1:-1:-1;;;10009:2:1;9994:18;;9987:32;10051:3;10036:19;;9837:224::o;10066:402::-;10268:2;10250:21;;;10307:2;10287:18;;;10280:30;10346:34;10341:2;10326:18;;10319:62;-1:-1:-1;;;10412:2:1;10397:18;;10390:36;10458:3;10443:19;;10240:228::o;10473:406::-;10675:2;10657:21;;;10714:2;10694:18;;;10687:30;10753:34;10748:2;10733:18;;10726:62;-1:-1:-1;;;10819:2:1;10804:18;;10797:40;10869:3;10854:19;;10647:232::o;10884:399::-;11086:2;11068:21;;;11125:2;11105:18;;;11098:30;11164:34;11159:2;11144:18;;11137:62;-1:-1:-1;;;11230:2:1;11215:18;;11208:33;11273:3;11258:19;;11058:225::o;11288:398::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;11568:34;11563:2;11548:18;;11541:62;-1:-1:-1;;;11634:2:1;11619:18;;11612:32;11676:3;11661:19;;11462:224::o;11691:401::-;11893:2;11875:21;;;11932:2;11912:18;;;11905:30;11971:34;11966:2;11951:18;;11944:62;-1:-1:-1;;;12037:2:1;12022:18;;12015:35;12082:3;12067:19;;11865:227::o;12097:398::-;12299:2;12281:21;;;12338:2;12318:18;;;12311:30;12377:34;12372:2;12357:18;;12350:62;-1:-1:-1;;;12443:2:1;12428:18;;12421:32;12485:3;12470:19;;12271:224::o;12500:341::-;12702:2;12684:21;;;12741:2;12721:18;;;12714:30;-1:-1:-1;;;12775:2:1;12760:18;;12753:47;12832:2;12817:18;;12674:167::o;12846:421::-;13048:2;13030:21;;;13087:2;13067:18;;;13060:30;13126:34;13121:2;13106:18;;13099:62;13197:27;13192:2;13177:18;;13170:55;13257:3;13242:19;;13020:247::o;13272:407::-;13474:2;13456:21;;;13513:2;13493:18;;;13486:30;13552:34;13547:2;13532:18;;13525:62;-1:-1:-1;;;13618:2:1;13603:18;;13596:41;13669:3;13654:19;;13446:233::o;13684:402::-;13886:2;13868:21;;;13925:2;13905:18;;;13898:30;13964:34;13959:2;13944:18;;13937:62;-1:-1:-1;;;14030:2:1;14015:18;;14008:36;14076:3;14061:19;;13858:228::o;14091:356::-;14293:2;14275:21;;;14312:18;;;14305:30;14371:34;14366:2;14351:18;;14344:62;14438:2;14423:18;;14265:182::o;14452:350::-;14654:2;14636:21;;;14693:2;14673:18;;;14666:30;14732:28;14727:2;14712:18;;14705:56;14793:2;14778:18;;14626:176::o;14807:414::-;15009:2;14991:21;;;15048:2;15028:18;;;15021:30;15087:34;15082:2;15067:18;;15060:62;-1:-1:-1;;;15153:2:1;15138:18;;15131:48;15211:3;15196:19;;14981:240::o;15226:398::-;15428:2;15410:21;;;15467:2;15447:18;;;15440:30;15506:34;15501:2;15486:18;;15479:62;-1:-1:-1;;;15572:2:1;15557:18;;15550:32;15614:3;15599:19;;15400:224::o;15629:415::-;15831:2;15813:21;;;15870:2;15850:18;;;15843:30;15909:34;15904:2;15889:18;;15882:62;-1:-1:-1;;;15975:2:1;15960:18;;15953:49;16034:3;16019:19;;15803:241::o;16049:353::-;16251:2;16233:21;;;16290:2;16270:18;;;16263:30;16329:31;16324:2;16309:18;;16302:59;16393:2;16378:18;;16223:179::o;16407:397::-;16609:2;16591:21;;;16648:2;16628:18;;;16621:30;16687:34;16682:2;16667:18;;16660:62;-1:-1:-1;;;16753:2:1;16738:18;;16731:31;16794:3;16779:19;;16581:223::o;16809:348::-;17011:2;16993:21;;;17050:2;17030:18;;;17023:30;17089:26;17084:2;17069:18;;17062:54;17148:2;17133:18;;16983:174::o;17162:410::-;17364:2;17346:21;;;17403:2;17383:18;;;17376:30;17442:34;17437:2;17422:18;;17415:62;-1:-1:-1;;;17508:2:1;17493:18;;17486:44;17562:3;17547:19;;17336:236::o;17577:355::-;17779:2;17761:21;;;17818:2;17798:18;;;17791:30;17857:33;17852:2;17837:18;;17830:61;17923:2;17908:18;;17751:181::o;17937:411::-;18139:2;18121:21;;;18178:2;18158:18;;;18151:30;18217:34;18212:2;18197:18;;18190:62;-1:-1:-1;;;18283:2:1;18268:18;;18261:45;18338:3;18323:19;;18111:237::o;18353:347::-;18555:2;18537:21;;;18594:2;18574:18;;;18567:30;18633:25;18628:2;18613:18;;18606:53;18691:2;18676:18;;18527:173::o;18705:409::-;18907:2;18889:21;;;18946:2;18926:18;;;18919:30;18985:34;18980:2;18965:18;;18958:62;-1:-1:-1;;;19051:2:1;19036:18;;19029:43;19104:3;19089:19;;18879:235::o;19119:398::-;19321:2;19303:21;;;19360:2;19340:18;;;19333:30;19399:34;19394:2;19379:18;;19372:62;-1:-1:-1;;;19465:2:1;19450:18;;19443:32;19507:3;19492:19;;19293:224::o;19522:177::-;19668:25;;;19656:2;19641:18;;19623:76::o;19704:129::-;;19772:17;;;19822:4;19806:21;;;19762:71::o;19838:253::-;;-1:-1:-1;;;;;19967:2:1;19964:1;19960:10;19997:2;19994:1;19990:10;20028:3;20024:2;20020:12;20015:3;20012:21;20009:2;;;20036:18;;:::i;:::-;20072:13;;19886:205;-1:-1:-1;;;;19886:205:1:o;20096:128::-;;20167:1;20163:6;20160:1;20157:13;20154:2;;;20173:18;;:::i;:::-;-1:-1:-1;20209:9:1;;20144:80::o;20229:120::-;;20295:1;20285:2;;20300:18;;:::i;:::-;-1:-1:-1;20334:9:1;;20275:74::o;20354:168::-;;20460:1;20456;20452:6;20448:14;20445:1;20442:21;20437:1;20430:9;20423:17;20419:45;20416:2;;;20467:18;;:::i;:::-;-1:-1:-1;20507:9:1;;20406:116::o;20527:246::-;;-1:-1:-1;;;;;20680:10:1;;;;20650;;20702:12;;;20699:2;;;20717:18;;:::i;:::-;20754:13;;20576:197;-1:-1:-1;;;20576:197:1:o;20778:125::-;;20846:1;20843;20840:8;20837:2;;;20851:18;;:::i;:::-;-1:-1:-1;20888:9:1;;20827:76::o;20908:258::-;20980:1;20990:113;21004:6;21001:1;20998:13;20990:113;;;21080:11;;;21074:18;21061:11;;;21054:39;21026:2;21019:10;20990:113;;;21121:6;21118:1;21115:13;21112:2;;;-1:-1:-1;;21156:1:1;21138:16;;21131:27;20961:205::o;21171:136::-;;21238:5;21228:2;;21247:18;;:::i;:::-;-1:-1:-1;;;21283:18:1;;21218:89::o;21312:380::-;21397:1;21387:12;;21444:1;21434:12;;;21455:2;;21509:4;21501:6;21497:17;21487:27;;21455:2;21562;21554:6;21551:14;21531:18;21528:38;21525:2;;;21608:10;21603:3;21599:20;21596:1;21589:31;21643:4;21640:1;21633:15;21671:4;21668:1;21661:15;21525:2;;21367:325;;;:::o;21697:135::-;;-1:-1:-1;;21757:17:1;;21754:2;;;21777:18;;:::i;:::-;-1:-1:-1;21824:1:1;21813:13;;21744:88::o;21837:112::-;;21895:1;21885:2;;21900:18;;:::i;:::-;-1:-1:-1;21934:9:1;;21875:74::o;21954:127::-;22015:10;22010:3;22006:20;22003:1;21996:31;22046:4;22043:1;22036:15;22070:4;22067:1;22060:15;22086:127;22147:10;22142:3;22138:20;22135:1;22128:31;22178:4;22175:1;22168:15;22202:4;22199:1;22192:15;22218:127;22279:10;22274:3;22270:20;22267:1;22260:31;22310:4;22307:1;22300:15;22334:4;22331:1;22324:15;22350:133;-1:-1:-1;;;;;22427:31:1;;22417:42;;22407:2;;22473:1;22470;22463:12;22488:120;22576:5;22569:13;22562:21;22555:5;22552:32;22542:2;;22598:1;22595;22588:12;22613:133;-1:-1:-1;;;;;;22689:32:1;;22679:43;;22669:2;;22736:1;22733;22726:12

Swarm Source

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