ETH Price: $2,975.02 (-4.15%)
Gas: 1 Gwei

Token

The Space Pet (Pet)
 

Overview

Max Total Supply

1,019 Pet

Holders

107

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
theconesofdunshire.eth
Balance
5 Pet
0xd2ccd6f3d65112bb0cc92df7d9b5d5f46986d9b1
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:
SpacePet

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/spacepet.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 {}
}
// File: contracts/spacepet.sol

//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 SpacePet is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmRJFbzb9fwvVPpx7UhPprDRj6VMDaiyRzEW7LF5W5nPLn";

    uint256 public constant MAX_MINTS_PER_TX = 20;
    uint256 public maxSupply = 1111;

    uint256 public constant PUBLIC_SALE_PRICE = 0.003 ether;
    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"
        );
        _;
    }

    constructor(
    ) ERC721A("The Space Pet", "Pet", 100, maxSupply) {
    }

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

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

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

        _safeMint(msg.sender, numberOfTokens);
    }


    // ============ 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 ownermint(uint256 _NUM) external onlyOwner {
        maxSupply = _NUM;
    }

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



    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 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(), ""));
    }

    /**
     * @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":"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":[{"internalType":"uint256","name":"_NUM","type":"uint256"}],"name":"ownermint","outputs":[],"stateMutability":"nonpayable","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":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","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"}]

60c060405260008055600060075560405180606001604052806035815260200162004d8760359139600b90805190602001906200003e929190620002ad565b50610457600c556001600d60006101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600d81526020017f54686520537061636520506574000000000000000000000000000000000000008152506040518060400160405280600381526020017f50657400000000000000000000000000000000000000000000000000000000008152506064600c546000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003cd565b60405180910390fd5b600082116200016b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016290620003ab565b60405180910390fd5b836001908051906020019062000183929190620002ad565b5082600290805190602001906200019c929190620002ad565b508160a08181525050806080818152505050505050620001d1620001c5620001df60201b60201c565b620001e760201b60201c565b600160098190555062000503565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bb9062000400565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b60006200036c602783620003ef565b9150620003798262000465565b604082019050919050565b600062000393602e83620003ef565b9150620003a082620004b4565b604082019050919050565b60006020820190508181036000830152620003c6816200035d565b9050919050565b60006020820190508181036000830152620003e88162000384565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f62000436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161485a6200052d60003960008181612243015261226c01526000505061485a6000f3fe6080604052600436106101e35760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106e4578063d7224ba01461070f578063e985e9c51461073a578063f2fde38b14610777576101e3565b8063a22cb4651461062a578063b88d4fde14610653578063c6a91b421461067c578063c87b56dd146106a7576101e3565b8063715018a6116100d1578063715018a6146105a15780638da5cb5b146105b857806395d89b41146105e3578063a0712d681461060e576101e3565b806355f804b3146104d35780636352211e146104fc57806370a0823114610539578063714c539814610576576101e3565b806328cad13d1161017a5780633ccfd60b116101495780633ccfd60b1461042d57806342842e0e1461044457806349df728c1461046d5780634f6ccce714610496576101e3565b806328cad13d146103605780632a55205a146103895780632f745c59146103c757806334bec43714610404576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613155565b6107a0565b60405161021c9190613866565b60405180910390f35b34801561023157600080fd5b5061023a61081a565b6040516102479190613881565b60405180910390f35b34801561025c57600080fd5b506102656108ac565b6040516102729190613ba3565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613225565b6108b7565b6040516102af91906137d6565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906130bb565b61093c565b005b3480156102ed57600080fd5b506102f6610a55565b6040516103039190613ba3565b60405180910390f35b34801561031857600080fd5b50610321610a5e565b60405161032e9190613866565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612fa5565b610a71565b005b34801561036c57600080fd5b50610387600480360381019061038291906130fb565b610a81565b005b34801561039557600080fd5b506103b060048036038101906103ab919061327f565b610b1a565b6040516103be92919061383d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906130bb565b610b86565b6040516103fb9190613ba3565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613225565b610d84565b005b34801561043957600080fd5b50610442610e0a565b005b34801561045057600080fd5b5061046b60048036038101906104669190612fa5565b610ed5565b005b34801561047957600080fd5b50610494600480360381019061048f91906131af565b610ef5565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613225565b611090565b6040516104ca9190613ba3565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906131dc565b6110e3565b005b34801561050857600080fd5b50610523600480360381019061051e9190613225565b611179565b60405161053091906137d6565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190612f38565b61118f565b60405161056d9190613ba3565b60405180910390f35b34801561058257600080fd5b5061058b611278565b6040516105989190613881565b60405180910390f35b3480156105ad57600080fd5b506105b661130a565b005b3480156105c457600080fd5b506105cd611392565b6040516105da91906137d6565b60405180910390f35b3480156105ef57600080fd5b506105f86113bc565b6040516106059190613881565b60405180910390f35b61062860048036038101906106239190613225565b61144e565b005b34801561063657600080fd5b50610651600480360381019061064c919061307b565b6115f7565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612ff8565b611778565b005b34801561068857600080fd5b506106916117d4565b60405161069e9190613ba3565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613225565b6117d9565b6040516106db9190613881565b60405180910390f35b3480156106f057600080fd5b506106f9611861565b6040516107069190613ba3565b60405180910390f35b34801561071b57600080fd5b50610724611867565b6040516107319190613ba3565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612f65565b61186d565b60405161076e9190613866565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612f38565b611901565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108135750610812826119f9565b5b9050919050565b60606001805461082990613f3a565b80601f016020809104026020016040519081016040528092919081815260200182805461085590613f3a565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b660aa87bee53800081565b60006108c282611b43565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890613b83565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782611179565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613a63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7611b50565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00611b50565b61186d565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c906139a3565b60405180910390fd5b610a50838383611b58565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a7c838383611c0a565b505050565b610a89611b50565b73ffffffffffffffffffffffffffffffffffffffff16610aa7611392565b73ffffffffffffffffffffffffffffffffffffffff1614610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613a03565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610b2684611b43565b610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90613983565b60405180910390fd5b30610b7b610b748560056121c3565b60646121d9565b915091509250929050565b6000610b918361118f565b8210610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc9906138a3565b60405180910390fd5b6000610bdc610a55565b905060008060005b83811015610d42576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e5786841415610d1f578195505050505050610d7e565b8380610d2a90613f9d565b9450505b508080610d3a90613f9d565b915050610be4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613b03565b60405180910390fd5b92915050565b610d8c611b50565b73ffffffffffffffffffffffffffffffffffffffff16610daa611392565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613a03565b60405180910390fd5b80600c8190555050565b610e12611b50565b73ffffffffffffffffffffffffffffffffffffffff16610e30611392565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613a03565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed1573d6000803e3d6000fd5b5050565b610ef083838360405180602001604052806000815250611778565b505050565b610efd611b50565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611392565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613a03565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fac91906137d6565b60206040518083038186803b158015610fc457600080fd5b505afa158015610fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffc9190613252565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161103992919061383d565b602060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108b9190613128565b505050565b600061109a610a55565b82106110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613903565b60405180910390fd5b819050919050565b6110eb611b50565b73ffffffffffffffffffffffffffffffffffffffff16611109611392565b73ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613a03565b60405180910390fd5b80600b9080519060200190611175929190612cd3565b5050565b6000611184826121ef565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f7906139c3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461128790613f3a565b80601f01602080910402602001604051908101604052809291908181526020018280546112b390613f3a565b80156113005780601f106112d557610100808354040283529160200191611300565b820191906000526020600020905b8154815290600101906020018083116112e357829003601f168201915b5050505050905090565b611312611b50565b73ffffffffffffffffffffffffffffffffffffffff16611330611392565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613a03565b60405180910390fd5b61139060006123f2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113cb90613f3a565b80601f01602080910402602001604051908101604052809291908181526020018280546113f790613f3a565b80156114445780601f1061141957610100808354040283529160200191611444565b820191906000526020600020905b81548152906001019060200180831161142757829003601f168201915b5050505050905090565b60026009541415611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b90613b23565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff166114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613b63565b60405180910390fd5b660aa87bee538000813481836115019190613d6a565b14611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613ae3565b60405180910390fd5b82600c548161154e610a55565b6115589190613ce3565b1115611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613923565b60405180910390fd5b8360148111156115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613963565b60405180910390fd5b6115e833866124b8565b50505050600160098190555050565b6115ff611b50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490613a23565b60405180910390fd5b806006600061167a611b50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611727611b50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176c9190613866565b60405180910390a35050565b611783848484611c0a565b61178f848484846124d6565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613a83565b60405180910390fd5b50505050565b601481565b60606117e482611b43565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90613983565b60405180910390fd5b600b61183a6001846118359190613ce3565b61266d565b60405160200161184b92919061379c565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611909611b50565b73ffffffffffffffffffffffffffffffffffffffff16611927611392565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e4906138c3565b60405180910390fd5b6119f6816123f2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ac457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b2c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b3c5750611b3b826127ce565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c15826121ef565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c3c611b50565b73ffffffffffffffffffffffffffffffffffffffff161480611c985750611c61611b50565b73ffffffffffffffffffffffffffffffffffffffff16611c80846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cb45750611cb38260000151611cae611b50565b61186d565b5b905080611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90613a43565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f906139e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613943565b60405180910390fd5b611de58585856001612838565b611df56000848460000151611b58565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e639190613dc4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f079190613c9d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461200d9190613ce3565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121535761208381611b43565b15612152576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121bb868686600161283e565b505050505050565b600081836121d19190613d6a565b905092915050565b600081836121e79190613d39565b905092915050565b6121f7612d59565b61220082611b43565b61223f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612236906138e3565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122a35760017f0000000000000000000000000000000000000000000000000000000000000000846122969190613df8565b6122a09190613ce3565b90505b60008390505b8181106123b1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461239d578093505050506123ed565b5080806123a990613f10565b9150506122a9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490613b43565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124d2828260405180602001604052806000815250612844565b5050565b60006124f78473ffffffffffffffffffffffffffffffffffffffff16612cc0565b15612660578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612520611b50565b8786866040518563ffffffff1660e01b815260040161254294939291906137f1565b602060405180830381600087803b15801561255c57600080fd5b505af192505050801561258d57506040513d601f19601f8201168201806040525081019061258a9190613182565b60015b612610573d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50600081511415612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90613a83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612665565b600190505b949350505050565b606060008214156126b5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127c9565b600082905060005b600082146126e75780806126d090613f9d565b915050600a826126e09190613d39565b91506126bd565b60008167ffffffffffffffff811115612703576127026140d3565b5b6040519080825280601f01601f1916602001820160405280156127355781602001600182028036833780820191505090505b5090505b600085146127c25760018261274e9190613df8565b9150600a8561275d9190613fe6565b60306127699190613ce3565b60f81b81838151811061277f5761277e6140a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127bb9190613d39565b9450612739565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190613ac3565b60405180910390fd5b6128c381611b43565b15612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90613aa3565b60405180910390fd5b6129106000858386612838565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a0d9190613c9d565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a349190613c9d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ca357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c4360008884886124d6565b612c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7990613a83565b60405180910390fd5b8180612c8d90613f9d565b9250508080612c9b90613f9d565b915050612bd2565b5080600081905550612cb8600087858861283e565b505050505050565b600080823b905060008111915050919050565b828054612cdf90613f3a565b90600052602060002090601f016020900481019282612d015760008555612d48565b82601f10612d1a57805160ff1916838001178555612d48565b82800160010185558215612d48579182015b82811115612d47578251825591602001919060010190612d2c565b5b509050612d559190612d93565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612dac576000816000905550600101612d94565b5090565b6000612dc3612dbe84613be3565b613bbe565b905082815260208101848484011115612ddf57612dde614107565b5b612dea848285613ece565b509392505050565b6000612e05612e0084613c14565b613bbe565b905082815260208101848484011115612e2157612e20614107565b5b612e2c848285613ece565b509392505050565b600081359050612e43816147b1565b92915050565b600081359050612e58816147c8565b92915050565b600081519050612e6d816147c8565b92915050565b600081359050612e82816147df565b92915050565b600081519050612e97816147df565b92915050565b600082601f830112612eb257612eb1614102565b5b8135612ec2848260208601612db0565b91505092915050565b600081359050612eda816147f6565b92915050565b600082601f830112612ef557612ef4614102565b5b8135612f05848260208601612df2565b91505092915050565b600081359050612f1d8161480d565b92915050565b600081519050612f328161480d565b92915050565b600060208284031215612f4e57612f4d614111565b5b6000612f5c84828501612e34565b91505092915050565b60008060408385031215612f7c57612f7b614111565b5b6000612f8a85828601612e34565b9250506020612f9b85828601612e34565b9150509250929050565b600080600060608486031215612fbe57612fbd614111565b5b6000612fcc86828701612e34565b9350506020612fdd86828701612e34565b9250506040612fee86828701612f0e565b9150509250925092565b6000806000806080858703121561301257613011614111565b5b600061302087828801612e34565b945050602061303187828801612e34565b935050604061304287828801612f0e565b925050606085013567ffffffffffffffff8111156130635761306261410c565b5b61306f87828801612e9d565b91505092959194509250565b6000806040838503121561309257613091614111565b5b60006130a085828601612e34565b92505060206130b185828601612e49565b9150509250929050565b600080604083850312156130d2576130d1614111565b5b60006130e085828601612e34565b92505060206130f185828601612f0e565b9150509250929050565b60006020828403121561311157613110614111565b5b600061311f84828501612e49565b91505092915050565b60006020828403121561313e5761313d614111565b5b600061314c84828501612e5e565b91505092915050565b60006020828403121561316b5761316a614111565b5b600061317984828501612e73565b91505092915050565b60006020828403121561319857613197614111565b5b60006131a684828501612e88565b91505092915050565b6000602082840312156131c5576131c4614111565b5b60006131d384828501612ecb565b91505092915050565b6000602082840312156131f2576131f1614111565b5b600082013567ffffffffffffffff8111156132105761320f61410c565b5b61321c84828501612ee0565b91505092915050565b60006020828403121561323b5761323a614111565b5b600061324984828501612f0e565b91505092915050565b60006020828403121561326857613267614111565b5b600061327684828501612f23565b91505092915050565b6000806040838503121561329657613295614111565b5b60006132a485828601612f0e565b92505060206132b585828601612f0e565b9150509250929050565b6132c881613e2c565b82525050565b6132d781613e3e565b82525050565b60006132e882613c5a565b6132f28185613c70565b9350613302818560208601613edd565b61330b81614116565b840191505092915050565b600061332182613c65565b61332b8185613c81565b935061333b818560208601613edd565b61334481614116565b840191505092915050565b600061335a82613c65565b6133648185613c92565b9350613374818560208601613edd565b80840191505092915050565b6000815461338d81613f3a565b6133978186613c92565b945060018216600081146133b257600181146133c3576133f6565b60ff198316865281860193506133f6565b6133cc85613c45565b60005b838110156133ee578154818901526001820191506020810190506133cf565b838801955050505b50505092915050565b600061340c602283613c81565b915061341782614127565b604082019050919050565b600061342f602683613c81565b915061343a82614176565b604082019050919050565b6000613452602a83613c81565b915061345d826141c5565b604082019050919050565b6000613475602383613c81565b915061348082614214565b604082019050919050565b6000613498602283613c81565b91506134a382614263565b604082019050919050565b60006134bb602583613c81565b91506134c6826142b2565b604082019050919050565b60006134de602283613c81565b91506134e982614301565b604082019050919050565b6000613501601183613c81565b915061350c82614350565b602082019050919050565b6000613524603983613c81565b915061352f82614379565b604082019050919050565b6000613547602b83613c81565b9150613552826143c8565b604082019050919050565b600061356a602683613c81565b915061357582614417565b604082019050919050565b600061358d602083613c81565b915061359882614466565b602082019050919050565b60006135b0601a83613c81565b91506135bb8261448f565b602082019050919050565b60006135d3603283613c81565b91506135de826144b8565b604082019050919050565b60006135f6602283613c81565b915061360182614507565b604082019050919050565b6000613619600083613c92565b915061362482614556565b600082019050919050565b600061363c603383613c81565b915061364782614559565b604082019050919050565b600061365f601d83613c81565b915061366a826145a8565b602082019050919050565b6000613682602183613c81565b915061368d826145d1565b604082019050919050565b60006136a5601883613c81565b91506136b082614620565b602082019050919050565b60006136c8602e83613c81565b91506136d382614649565b604082019050919050565b60006136eb601f83613c81565b91506136f682614698565b602082019050919050565b600061370e602f83613c81565b9150613719826146c1565b604082019050919050565b6000613731601783613c81565b915061373c82614710565b602082019050919050565b6000613754602d83613c81565b915061375f82614739565b604082019050919050565b6000613777600183613c92565b915061378282614788565b600182019050919050565b61379681613ec4565b82525050565b60006137a88285613380565b91506137b38261376a565b91506137bf828461334f565b91506137ca8261360c565b91508190509392505050565b60006020820190506137eb60008301846132bf565b92915050565b600060808201905061380660008301876132bf565b61381360208301866132bf565b613820604083018561378d565b818103606083015261383281846132dd565b905095945050505050565b600060408201905061385260008301856132bf565b61385f602083018461378d565b9392505050565b600060208201905061387b60008301846132ce565b92915050565b6000602082019050818103600083015261389b8184613316565b905092915050565b600060208201905081810360008301526138bc816133ff565b9050919050565b600060208201905081810360008301526138dc81613422565b9050919050565b600060208201905081810360008301526138fc81613445565b9050919050565b6000602082019050818103600083015261391c81613468565b9050919050565b6000602082019050818103600083015261393c8161348b565b9050919050565b6000602082019050818103600083015261395c816134ae565b9050919050565b6000602082019050818103600083015261397c816134d1565b9050919050565b6000602082019050818103600083015261399c816134f4565b9050919050565b600060208201905081810360008301526139bc81613517565b9050919050565b600060208201905081810360008301526139dc8161353a565b9050919050565b600060208201905081810360008301526139fc8161355d565b9050919050565b60006020820190508181036000830152613a1c81613580565b9050919050565b60006020820190508181036000830152613a3c816135a3565b9050919050565b60006020820190508181036000830152613a5c816135c6565b9050919050565b60006020820190508181036000830152613a7c816135e9565b9050919050565b60006020820190508181036000830152613a9c8161362f565b9050919050565b60006020820190508181036000830152613abc81613652565b9050919050565b60006020820190508181036000830152613adc81613675565b9050919050565b60006020820190508181036000830152613afc81613698565b9050919050565b60006020820190508181036000830152613b1c816136bb565b9050919050565b60006020820190508181036000830152613b3c816136de565b9050919050565b60006020820190508181036000830152613b5c81613701565b9050919050565b60006020820190508181036000830152613b7c81613724565b9050919050565b60006020820190508181036000830152613b9c81613747565b9050919050565b6000602082019050613bb8600083018461378d565b92915050565b6000613bc8613bd9565b9050613bd48282613f6c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bfe57613bfd6140d3565b5b613c0782614116565b9050602081019050919050565b600067ffffffffffffffff821115613c2f57613c2e6140d3565b5b613c3882614116565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ca882613e88565b9150613cb383613e88565b9250826fffffffffffffffffffffffffffffffff03821115613cd857613cd7614017565b5b828201905092915050565b6000613cee82613ec4565b9150613cf983613ec4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2e57613d2d614017565b5b828201905092915050565b6000613d4482613ec4565b9150613d4f83613ec4565b925082613d5f57613d5e614046565b5b828204905092915050565b6000613d7582613ec4565b9150613d8083613ec4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db957613db8614017565b5b828202905092915050565b6000613dcf82613e88565b9150613dda83613e88565b925082821015613ded57613dec614017565b5b828203905092915050565b6000613e0382613ec4565b9150613e0e83613ec4565b925082821015613e2157613e20614017565b5b828203905092915050565b6000613e3782613ea4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613e8182613e2c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efb578082015181840152602081019050613ee0565b83811115613f0a576000848401525b50505050565b6000613f1b82613ec4565b91506000821415613f2f57613f2e614017565b5b600182039050919050565b60006002820490506001821680613f5257607f821691505b60208210811415613f6657613f65614075565b5b50919050565b613f7582614116565b810181811067ffffffffffffffff82111715613f9457613f936140d3565b5b80604052505050565b6000613fa882613ec4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fdb57613fda614017565b5b600182019050919050565b6000613ff182613ec4565b9150613ffc83613ec4565b92508261400c5761400b614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6147ba81613e2c565b81146147c557600080fd5b50565b6147d181613e3e565b81146147dc57600080fd5b50565b6147e881613e4a565b81146147f357600080fd5b50565b6147ff81613e76565b811461480a57600080fd5b50565b61481681613ec4565b811461482157600080fd5b5056fea2646970667358221220424f924b7b4c0308e9bd376cbc6bf2185389d33e8249729d671bf552604312ba64736f6c63430008070033697066733a2f2f516d524a46627a62396677765650707837556850707244526a36564d44616979527a4557374c463557356e504c6e

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106e4578063d7224ba01461070f578063e985e9c51461073a578063f2fde38b14610777576101e3565b8063a22cb4651461062a578063b88d4fde14610653578063c6a91b421461067c578063c87b56dd146106a7576101e3565b8063715018a6116100d1578063715018a6146105a15780638da5cb5b146105b857806395d89b41146105e3578063a0712d681461060e576101e3565b806355f804b3146104d35780636352211e146104fc57806370a0823114610539578063714c539814610576576101e3565b806328cad13d1161017a5780633ccfd60b116101495780633ccfd60b1461042d57806342842e0e1461044457806349df728c1461046d5780634f6ccce714610496576101e3565b806328cad13d146103605780632a55205a146103895780632f745c59146103c757806334bec43714610404576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613155565b6107a0565b60405161021c9190613866565b60405180910390f35b34801561023157600080fd5b5061023a61081a565b6040516102479190613881565b60405180910390f35b34801561025c57600080fd5b506102656108ac565b6040516102729190613ba3565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613225565b6108b7565b6040516102af91906137d6565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906130bb565b61093c565b005b3480156102ed57600080fd5b506102f6610a55565b6040516103039190613ba3565b60405180910390f35b34801561031857600080fd5b50610321610a5e565b60405161032e9190613866565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612fa5565b610a71565b005b34801561036c57600080fd5b50610387600480360381019061038291906130fb565b610a81565b005b34801561039557600080fd5b506103b060048036038101906103ab919061327f565b610b1a565b6040516103be92919061383d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906130bb565b610b86565b6040516103fb9190613ba3565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613225565b610d84565b005b34801561043957600080fd5b50610442610e0a565b005b34801561045057600080fd5b5061046b60048036038101906104669190612fa5565b610ed5565b005b34801561047957600080fd5b50610494600480360381019061048f91906131af565b610ef5565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613225565b611090565b6040516104ca9190613ba3565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906131dc565b6110e3565b005b34801561050857600080fd5b50610523600480360381019061051e9190613225565b611179565b60405161053091906137d6565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190612f38565b61118f565b60405161056d9190613ba3565b60405180910390f35b34801561058257600080fd5b5061058b611278565b6040516105989190613881565b60405180910390f35b3480156105ad57600080fd5b506105b661130a565b005b3480156105c457600080fd5b506105cd611392565b6040516105da91906137d6565b60405180910390f35b3480156105ef57600080fd5b506105f86113bc565b6040516106059190613881565b60405180910390f35b61062860048036038101906106239190613225565b61144e565b005b34801561063657600080fd5b50610651600480360381019061064c919061307b565b6115f7565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612ff8565b611778565b005b34801561068857600080fd5b506106916117d4565b60405161069e9190613ba3565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613225565b6117d9565b6040516106db9190613881565b60405180910390f35b3480156106f057600080fd5b506106f9611861565b6040516107069190613ba3565b60405180910390f35b34801561071b57600080fd5b50610724611867565b6040516107319190613ba3565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612f65565b61186d565b60405161076e9190613866565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612f38565b611901565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108135750610812826119f9565b5b9050919050565b60606001805461082990613f3a565b80601f016020809104026020016040519081016040528092919081815260200182805461085590613f3a565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b660aa87bee53800081565b60006108c282611b43565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890613b83565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782611179565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90613a63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7611b50565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00611b50565b61186d565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c906139a3565b60405180910390fd5b610a50838383611b58565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a7c838383611c0a565b505050565b610a89611b50565b73ffffffffffffffffffffffffffffffffffffffff16610aa7611392565b73ffffffffffffffffffffffffffffffffffffffff1614610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613a03565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610b2684611b43565b610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90613983565b60405180910390fd5b30610b7b610b748560056121c3565b60646121d9565b915091509250929050565b6000610b918361118f565b8210610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc9906138a3565b60405180910390fd5b6000610bdc610a55565b905060008060005b83811015610d42576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e5786841415610d1f578195505050505050610d7e565b8380610d2a90613f9d565b9450505b508080610d3a90613f9d565b915050610be4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613b03565b60405180910390fd5b92915050565b610d8c611b50565b73ffffffffffffffffffffffffffffffffffffffff16610daa611392565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613a03565b60405180910390fd5b80600c8190555050565b610e12611b50565b73ffffffffffffffffffffffffffffffffffffffff16610e30611392565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613a03565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed1573d6000803e3d6000fd5b5050565b610ef083838360405180602001604052806000815250611778565b505050565b610efd611b50565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611392565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613a03565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fac91906137d6565b60206040518083038186803b158015610fc457600080fd5b505afa158015610fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffc9190613252565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161103992919061383d565b602060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108b9190613128565b505050565b600061109a610a55565b82106110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613903565b60405180910390fd5b819050919050565b6110eb611b50565b73ffffffffffffffffffffffffffffffffffffffff16611109611392565b73ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690613a03565b60405180910390fd5b80600b9080519060200190611175929190612cd3565b5050565b6000611184826121ef565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f7906139c3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461128790613f3a565b80601f01602080910402602001604051908101604052809291908181526020018280546112b390613f3a565b80156113005780601f106112d557610100808354040283529160200191611300565b820191906000526020600020905b8154815290600101906020018083116112e357829003601f168201915b5050505050905090565b611312611b50565b73ffffffffffffffffffffffffffffffffffffffff16611330611392565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613a03565b60405180910390fd5b61139060006123f2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113cb90613f3a565b80601f01602080910402602001604051908101604052809291908181526020018280546113f790613f3a565b80156114445780601f1061141957610100808354040283529160200191611444565b820191906000526020600020905b81548152906001019060200180831161142757829003601f168201915b5050505050905090565b60026009541415611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b90613b23565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff166114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613b63565b60405180910390fd5b660aa87bee538000813481836115019190613d6a565b14611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890613ae3565b60405180910390fd5b82600c548161154e610a55565b6115589190613ce3565b1115611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613923565b60405180910390fd5b8360148111156115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613963565b60405180910390fd5b6115e833866124b8565b50505050600160098190555050565b6115ff611b50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490613a23565b60405180910390fd5b806006600061167a611b50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611727611b50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176c9190613866565b60405180910390a35050565b611783848484611c0a565b61178f848484846124d6565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613a83565b60405180910390fd5b50505050565b601481565b60606117e482611b43565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90613983565b60405180910390fd5b600b61183a6001846118359190613ce3565b61266d565b60405160200161184b92919061379c565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611909611b50565b73ffffffffffffffffffffffffffffffffffffffff16611927611392565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e4906138c3565b60405180910390fd5b6119f6816123f2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ac457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b2c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b3c5750611b3b826127ce565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c15826121ef565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c3c611b50565b73ffffffffffffffffffffffffffffffffffffffff161480611c985750611c61611b50565b73ffffffffffffffffffffffffffffffffffffffff16611c80846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cb45750611cb38260000151611cae611b50565b61186d565b5b905080611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90613a43565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f906139e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613943565b60405180910390fd5b611de58585856001612838565b611df56000848460000151611b58565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e639190613dc4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f079190613c9d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461200d9190613ce3565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121535761208381611b43565b15612152576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121bb868686600161283e565b505050505050565b600081836121d19190613d6a565b905092915050565b600081836121e79190613d39565b905092915050565b6121f7612d59565b61220082611b43565b61223f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612236906138e3565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106122a35760017f0000000000000000000000000000000000000000000000000000000000000064846122969190613df8565b6122a09190613ce3565b90505b60008390505b8181106123b1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461239d578093505050506123ed565b5080806123a990613f10565b9150506122a9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490613b43565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124d2828260405180602001604052806000815250612844565b5050565b60006124f78473ffffffffffffffffffffffffffffffffffffffff16612cc0565b15612660578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612520611b50565b8786866040518563ffffffff1660e01b815260040161254294939291906137f1565b602060405180830381600087803b15801561255c57600080fd5b505af192505050801561258d57506040513d601f19601f8201168201806040525081019061258a9190613182565b60015b612610573d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50600081511415612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90613a83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612665565b600190505b949350505050565b606060008214156126b5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127c9565b600082905060005b600082146126e75780806126d090613f9d565b915050600a826126e09190613d39565b91506126bd565b60008167ffffffffffffffff811115612703576127026140d3565b5b6040519080825280601f01601f1916602001820160405280156127355781602001600182028036833780820191505090505b5090505b600085146127c25760018261274e9190613df8565b9150600a8561275d9190613fe6565b60306127699190613ce3565b60f81b81838151811061277f5761277e6140a4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127bb9190613d39565b9450612739565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190613ac3565b60405180910390fd5b6128c381611b43565b15612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90613aa3565b60405180910390fd5b6129106000858386612838565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a0d9190613c9d565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a349190613c9d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ca357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c4360008884886124d6565b612c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7990613a83565b60405180910390fd5b8180612c8d90613f9d565b9250508080612c9b90613f9d565b915050612bd2565b5080600081905550612cb8600087858861283e565b505050505050565b600080823b905060008111915050919050565b828054612cdf90613f3a565b90600052602060002090601f016020900481019282612d015760008555612d48565b82601f10612d1a57805160ff1916838001178555612d48565b82800160010185558215612d48579182015b82811115612d47578251825591602001919060010190612d2c565b5b509050612d559190612d93565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612dac576000816000905550600101612d94565b5090565b6000612dc3612dbe84613be3565b613bbe565b905082815260208101848484011115612ddf57612dde614107565b5b612dea848285613ece565b509392505050565b6000612e05612e0084613c14565b613bbe565b905082815260208101848484011115612e2157612e20614107565b5b612e2c848285613ece565b509392505050565b600081359050612e43816147b1565b92915050565b600081359050612e58816147c8565b92915050565b600081519050612e6d816147c8565b92915050565b600081359050612e82816147df565b92915050565b600081519050612e97816147df565b92915050565b600082601f830112612eb257612eb1614102565b5b8135612ec2848260208601612db0565b91505092915050565b600081359050612eda816147f6565b92915050565b600082601f830112612ef557612ef4614102565b5b8135612f05848260208601612df2565b91505092915050565b600081359050612f1d8161480d565b92915050565b600081519050612f328161480d565b92915050565b600060208284031215612f4e57612f4d614111565b5b6000612f5c84828501612e34565b91505092915050565b60008060408385031215612f7c57612f7b614111565b5b6000612f8a85828601612e34565b9250506020612f9b85828601612e34565b9150509250929050565b600080600060608486031215612fbe57612fbd614111565b5b6000612fcc86828701612e34565b9350506020612fdd86828701612e34565b9250506040612fee86828701612f0e565b9150509250925092565b6000806000806080858703121561301257613011614111565b5b600061302087828801612e34565b945050602061303187828801612e34565b935050604061304287828801612f0e565b925050606085013567ffffffffffffffff8111156130635761306261410c565b5b61306f87828801612e9d565b91505092959194509250565b6000806040838503121561309257613091614111565b5b60006130a085828601612e34565b92505060206130b185828601612e49565b9150509250929050565b600080604083850312156130d2576130d1614111565b5b60006130e085828601612e34565b92505060206130f185828601612f0e565b9150509250929050565b60006020828403121561311157613110614111565b5b600061311f84828501612e49565b91505092915050565b60006020828403121561313e5761313d614111565b5b600061314c84828501612e5e565b91505092915050565b60006020828403121561316b5761316a614111565b5b600061317984828501612e73565b91505092915050565b60006020828403121561319857613197614111565b5b60006131a684828501612e88565b91505092915050565b6000602082840312156131c5576131c4614111565b5b60006131d384828501612ecb565b91505092915050565b6000602082840312156131f2576131f1614111565b5b600082013567ffffffffffffffff8111156132105761320f61410c565b5b61321c84828501612ee0565b91505092915050565b60006020828403121561323b5761323a614111565b5b600061324984828501612f0e565b91505092915050565b60006020828403121561326857613267614111565b5b600061327684828501612f23565b91505092915050565b6000806040838503121561329657613295614111565b5b60006132a485828601612f0e565b92505060206132b585828601612f0e565b9150509250929050565b6132c881613e2c565b82525050565b6132d781613e3e565b82525050565b60006132e882613c5a565b6132f28185613c70565b9350613302818560208601613edd565b61330b81614116565b840191505092915050565b600061332182613c65565b61332b8185613c81565b935061333b818560208601613edd565b61334481614116565b840191505092915050565b600061335a82613c65565b6133648185613c92565b9350613374818560208601613edd565b80840191505092915050565b6000815461338d81613f3a565b6133978186613c92565b945060018216600081146133b257600181146133c3576133f6565b60ff198316865281860193506133f6565b6133cc85613c45565b60005b838110156133ee578154818901526001820191506020810190506133cf565b838801955050505b50505092915050565b600061340c602283613c81565b915061341782614127565b604082019050919050565b600061342f602683613c81565b915061343a82614176565b604082019050919050565b6000613452602a83613c81565b915061345d826141c5565b604082019050919050565b6000613475602383613c81565b915061348082614214565b604082019050919050565b6000613498602283613c81565b91506134a382614263565b604082019050919050565b60006134bb602583613c81565b91506134c6826142b2565b604082019050919050565b60006134de602283613c81565b91506134e982614301565b604082019050919050565b6000613501601183613c81565b915061350c82614350565b602082019050919050565b6000613524603983613c81565b915061352f82614379565b604082019050919050565b6000613547602b83613c81565b9150613552826143c8565b604082019050919050565b600061356a602683613c81565b915061357582614417565b604082019050919050565b600061358d602083613c81565b915061359882614466565b602082019050919050565b60006135b0601a83613c81565b91506135bb8261448f565b602082019050919050565b60006135d3603283613c81565b91506135de826144b8565b604082019050919050565b60006135f6602283613c81565b915061360182614507565b604082019050919050565b6000613619600083613c92565b915061362482614556565b600082019050919050565b600061363c603383613c81565b915061364782614559565b604082019050919050565b600061365f601d83613c81565b915061366a826145a8565b602082019050919050565b6000613682602183613c81565b915061368d826145d1565b604082019050919050565b60006136a5601883613c81565b91506136b082614620565b602082019050919050565b60006136c8602e83613c81565b91506136d382614649565b604082019050919050565b60006136eb601f83613c81565b91506136f682614698565b602082019050919050565b600061370e602f83613c81565b9150613719826146c1565b604082019050919050565b6000613731601783613c81565b915061373c82614710565b602082019050919050565b6000613754602d83613c81565b915061375f82614739565b604082019050919050565b6000613777600183613c92565b915061378282614788565b600182019050919050565b61379681613ec4565b82525050565b60006137a88285613380565b91506137b38261376a565b91506137bf828461334f565b91506137ca8261360c565b91508190509392505050565b60006020820190506137eb60008301846132bf565b92915050565b600060808201905061380660008301876132bf565b61381360208301866132bf565b613820604083018561378d565b818103606083015261383281846132dd565b905095945050505050565b600060408201905061385260008301856132bf565b61385f602083018461378d565b9392505050565b600060208201905061387b60008301846132ce565b92915050565b6000602082019050818103600083015261389b8184613316565b905092915050565b600060208201905081810360008301526138bc816133ff565b9050919050565b600060208201905081810360008301526138dc81613422565b9050919050565b600060208201905081810360008301526138fc81613445565b9050919050565b6000602082019050818103600083015261391c81613468565b9050919050565b6000602082019050818103600083015261393c8161348b565b9050919050565b6000602082019050818103600083015261395c816134ae565b9050919050565b6000602082019050818103600083015261397c816134d1565b9050919050565b6000602082019050818103600083015261399c816134f4565b9050919050565b600060208201905081810360008301526139bc81613517565b9050919050565b600060208201905081810360008301526139dc8161353a565b9050919050565b600060208201905081810360008301526139fc8161355d565b9050919050565b60006020820190508181036000830152613a1c81613580565b9050919050565b60006020820190508181036000830152613a3c816135a3565b9050919050565b60006020820190508181036000830152613a5c816135c6565b9050919050565b60006020820190508181036000830152613a7c816135e9565b9050919050565b60006020820190508181036000830152613a9c8161362f565b9050919050565b60006020820190508181036000830152613abc81613652565b9050919050565b60006020820190508181036000830152613adc81613675565b9050919050565b60006020820190508181036000830152613afc81613698565b9050919050565b60006020820190508181036000830152613b1c816136bb565b9050919050565b60006020820190508181036000830152613b3c816136de565b9050919050565b60006020820190508181036000830152613b5c81613701565b9050919050565b60006020820190508181036000830152613b7c81613724565b9050919050565b60006020820190508181036000830152613b9c81613747565b9050919050565b6000602082019050613bb8600083018461378d565b92915050565b6000613bc8613bd9565b9050613bd48282613f6c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bfe57613bfd6140d3565b5b613c0782614116565b9050602081019050919050565b600067ffffffffffffffff821115613c2f57613c2e6140d3565b5b613c3882614116565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ca882613e88565b9150613cb383613e88565b9250826fffffffffffffffffffffffffffffffff03821115613cd857613cd7614017565b5b828201905092915050565b6000613cee82613ec4565b9150613cf983613ec4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2e57613d2d614017565b5b828201905092915050565b6000613d4482613ec4565b9150613d4f83613ec4565b925082613d5f57613d5e614046565b5b828204905092915050565b6000613d7582613ec4565b9150613d8083613ec4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db957613db8614017565b5b828202905092915050565b6000613dcf82613e88565b9150613dda83613e88565b925082821015613ded57613dec614017565b5b828203905092915050565b6000613e0382613ec4565b9150613e0e83613ec4565b925082821015613e2157613e20614017565b5b828203905092915050565b6000613e3782613ea4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613e8182613e2c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efb578082015181840152602081019050613ee0565b83811115613f0a576000848401525b50505050565b6000613f1b82613ec4565b91506000821415613f2f57613f2e614017565b5b600182039050919050565b60006002820490506001821680613f5257607f821691505b60208210811415613f6657613f65614075565b5b50919050565b613f7582614116565b810181811067ffffffffffffffff82111715613f9457613f936140d3565b5b80604052505050565b6000613fa882613ec4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fdb57613fda614017565b5b600182019050919050565b6000613ff182613ec4565b9150613ffc83613ec4565b92508261400c5761400b614046565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6147ba81613e2c565b81146147c557600080fd5b50565b6147d181613e3e565b81146147dc57600080fd5b50565b6147e881613e4a565b81146147f357600080fd5b50565b6147ff81613e76565b811461480a57600080fd5b50565b61481681613ec4565b811461482157600080fd5b5056fea2646970667358221220424f924b7b4c0308e9bd376cbc6bf2185389d33e8249729d671bf552604312ba64736f6c63430008070033

Deployed Bytecode Sourcemap

55022:4050:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58020:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44205:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55397:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45730:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45293:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41040:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55459:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46580:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57267:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58751:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41671:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57172:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57437:143;;;;;;;;;;;;;:::i;:::-;;46785:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57588:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41203:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57058:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44028:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42905:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56894:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19063:103;;;;;;;;;;;;;:::i;:::-;;18412:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44360:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56500:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45998:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47005:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55305:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58383:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55357:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51423:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46335:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19321:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58020:292;58168:4;58225:26;58210:41;;;:11;:41;;;;:94;;;;58268:36;58292:11;58268:23;:36::i;:::-;58210:94;58190:114;;58020:292;;;:::o;44205:94::-;44259:13;44288:5;44281:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44205:94;:::o;55397:55::-;55441:11;55397:55;:::o;45730:204::-;45798:7;45822:16;45830:7;45822;:16::i;:::-;45814:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45904:15;:24;45920:7;45904:24;;;;;;;;;;;;;;;;;;;;;45897:31;;45730:204;;;:::o;45293:379::-;45362:13;45378:24;45394:7;45378:15;:24::i;:::-;45362:40;;45423:5;45417:11;;:2;:11;;;;45409:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45508:5;45492:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45517:37;45534:5;45541:12;:10;:12::i;:::-;45517:16;:37::i;:::-;45492:62;45476:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45638:28;45647:2;45651:7;45660:5;45638:8;:28::i;:::-;45355:317;45293:379;;:::o;41040:94::-;41093:7;41116:12;;41109:19;;41040:94;:::o;55459:37::-;;;;;;;;;;;;;:::o;46580:142::-;46688:28;46698:4;46704:2;46708:7;46688:9;:28::i;:::-;46580:142;;;:::o;57267:158::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57398:19:::1;57377:18;;:40;;;;;;;;;;;;;;;;;;57267:158:::0;:::o;58751:318::-;58876:16;58894:21;58941:16;58949:7;58941;:16::i;:::-;58933:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59008:4;59015:45;59028:26;59041:9;59052:1;59028:12;:26::i;:::-;59056:3;59015:12;:45::i;:::-;58992:69;;;;58751:318;;;;;:::o;41671:744::-;41780:7;41815:16;41825:5;41815:9;:16::i;:::-;41807:5;:24;41799:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41877:22;41902:13;:11;:13::i;:::-;41877:38;;41922:19;41952:25;42002:9;41997:350;42021:14;42017:1;:18;41997:350;;;42051:31;42085:11;:14;42097:1;42085:14;;;;;;;;;;;42051:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42138:1;42112:28;;:9;:14;;;:28;;;42108:89;;42173:9;:14;;;42153:34;;42108:89;42230:5;42209:26;;:17;:26;;;42205:135;;;42267:5;42252:11;:20;42248:59;;;42294:1;42287:8;;;;;;;;;42248:59;42317:13;;;;;:::i;:::-;;;;42205:135;42042:305;42037:3;;;;;:::i;:::-;;;;41997:350;;;;42353:56;;;;;;;;;;:::i;:::-;;;;;;;;41671:744;;;;;:::o;57172:87::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57247:4:::1;57235:9;:16;;;;57172:87:::0;:::o;57437:143::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57485:15:::1;57503:21;57485:39;;57543:10;57535:28;;:37;57564:7;57535:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57474:106;57437:143::o:0;46785:157::-;46897:39;46914:4;46920:2;46924:7;46897:39;;;;;;;;;;;;:16;:39::i;:::-;46785:157;;;:::o;57588:168::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57654:15:::1;57672:5;:15;;;57696:4;57672:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57654:48;;57713:5;:14;;;57728:10;57740:7;57713:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57643:113;57588:168:::0;:::o;41203:177::-;41270:7;41302:13;:11;:13::i;:::-;41294:5;:21;41286:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41369:5;41362:12;;41203:177;;;:::o;57058:100::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57142:8:::1;57132:7;:18;;;;;;;;;;;;:::i;:::-;;57058:100:::0;:::o;44028:118::-;44092:7;44115:20;44127:7;44115:11;:20::i;:::-;:25;;;44108:32;;44028:118;;;:::o;42905:211::-;42969:7;43010:1;42993:19;;:5;:19;;;;42985:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43082:12;:19;43095:5;43082:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43074:36;;43067:43;;42905:211;;;:::o;56894:93::-;56939:13;56972:7;56965:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56894:93;:::o;19063:103::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19128:30:::1;19155:1;19128:18;:30::i;:::-;19063:103::o:0;18412:87::-;18458:7;18485:6;;;;;;;;;;;18478:13;;18412:87;:::o;44360:98::-;44416:13;44445:7;44438:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44360:98;:::o;56500:321::-;10341:1;10939:7;;:19;;10931:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10341:1;11072:7;:18;;;;55626::::1;;;;;;;;;;;55618:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55441:11:::2;56666:14;56346:9;56327:14;56319:5;:22;;;;:::i;:::-;56318:37;56296:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56703:14:::3;56037:9;;56002:14;55986:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;55964:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;56742:14:::4;55348:2;55784:14;:34;;55762:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56776:37:::5;56786:10;56798:14;56776:9;:37::i;:::-;56119:1:::4;56418::::3;55683::::2;;10297::::0;11251:7;:22;;;;56500:321;:::o;45998:274::-;46101:12;:10;:12::i;:::-;46089:24;;:8;:24;;;;46081:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46198:8;46153:18;:32;46172:12;:10;:12::i;:::-;46153:32;;;;;;;;;;;;;;;:42;46186:8;46153:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46247:8;46218:48;;46233:12;:10;:12::i;:::-;46218:48;;;46257:8;46218:48;;;;;;:::i;:::-;;;;;;;;45998:274;;:::o;47005:311::-;47142:28;47152:4;47158:2;47162:7;47142:9;:28::i;:::-;47193:48;47216:4;47222:2;47226:7;47235:5;47193:22;:48::i;:::-;47177:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47005:311;;;;:::o;55305:45::-;55348:2;55305:45;:::o;58383:302::-;58501:13;58540:16;58548:7;58540;:16::i;:::-;58532:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58635:7;58649:22;58658:1;58650:7;:9;;;;:::i;:::-;58649:20;:22::i;:::-;58618:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58591:86;;58383:302;;;:::o;55357:31::-;;;;:::o;51423:43::-;;;;:::o;46335:186::-;46457:4;46480:18;:25;46499:5;46480:25;;;;;;;;;;;;;;;:35;46506:8;46480:35;;;;;;;;;;;;;;;;;;;;;;;;;46473:42;;46335:186;;;;:::o;19321:201::-;18643:12;:10;:12::i;:::-;18632:23;;:7;:5;:7::i;:::-;:23;;;18624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19430:1:::1;19410:22;;:8;:22;;;;19402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19486:28;19505:8;19486:18;:28::i;:::-;19321:201:::0;:::o;42479:370::-;42606:4;42651:25;42636:40;;;:11;:40;;;;:99;;;;42702:33;42687:48;;;:11;:48;;;;42636:99;:160;;;;42761:35;42746:50;;;:11;:50;;;;42636:160;:207;;;;42807:36;42831:11;42807:23;:36::i;:::-;42636:207;42622:221;;42479:370;;;:::o;47555:105::-;47612:4;47642:12;;47632:7;:22;47625:29;;47555:105;;;:::o;17136:98::-;17189:7;17216:10;17209:17;;17136:98;:::o;51245:172::-;51369:2;51342:15;:24;51358:7;51342:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51403:7;51399:2;51383:28;;51392:5;51383:28;;;;;;;;;;;;51245:172;;;:::o;49610:1529::-;49707:35;49745:20;49757:7;49745:11;:20::i;:::-;49707:58;;49774:22;49816:13;:18;;;49800:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49869:12;:10;:12::i;:::-;49845:36;;:20;49857:7;49845:11;:20::i;:::-;:36;;;49800:81;:142;;;;49892:50;49909:13;:18;;;49929:12;:10;:12::i;:::-;49892:16;:50::i;:::-;49800:142;49774:169;;49968:17;49952:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50100:4;50078:26;;:13;:18;;;:26;;;50062:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50189:1;50175:16;;:2;:16;;;;50167:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50242:43;50264:4;50270:2;50274:7;50283:1;50242:21;:43::i;:::-;50342:49;50359:1;50363:7;50372:13;:18;;;50342:8;:49::i;:::-;50430:1;50400:12;:18;50413:4;50400:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50466:1;50438:12;:16;50451:2;50438:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50497:43;;;;;;;;50512:2;50497:43;;;;;;50523:15;50497:43;;;;;50474:11;:20;50486:7;50474:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50768:19;50800:1;50790:7;:11;;;;:::i;:::-;50768:33;;50853:1;50812:43;;:11;:24;50824:11;50812:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50808:236;;;50870:20;50878:11;50870:7;:20::i;:::-;50866:171;;;50930:97;;;;;;;;50957:13;:18;;;50930:97;;;;;;50988:13;:28;;;50930:97;;;;;50903:11;:24;50915:11;50903:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50866:171;50808:236;51076:7;51072:2;51057:27;;51066:4;51057:27;;;;;;;;;;;;51091:42;51112:4;51118:2;51122:7;51131:1;51091:20;:42::i;:::-;49700:1439;;;49610:1529;;;:::o;3637:98::-;3695:7;3726:1;3722;:5;;;;:::i;:::-;3715:12;;3637:98;;;;:::o;4036:::-;4094:7;4125:1;4121;:5;;;;:::i;:::-;4114:12;;4036:98;;;;:::o;43368:606::-;43444:21;;:::i;:::-;43485:16;43493:7;43485;:16::i;:::-;43477:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43557:26;43605:12;43594:7;:23;43590:93;;43674:1;43659:12;43649:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43628:47;;43590:93;43696:12;43711:7;43696:22;;43691:212;43728:18;43720:4;:26;43691:212;;43765:31;43799:11;:17;43811:4;43799:17;;;;;;;;;;;43765:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43855:1;43829:28;;:9;:14;;;:28;;;43825:71;;43877:9;43870:16;;;;;;;43825:71;43756:147;43748:6;;;;;:::i;:::-;;;;43691:212;;;;43911:57;;;;;;;;;;:::i;:::-;;;;;;;;43368:606;;;;:::o;19682:191::-;19756:16;19775:6;;;;;;;;;;;19756:25;;19801:8;19792:6;;:17;;;;;;;;;;;;;;;;;;19856:8;19825:40;;19846:8;19825:40;;;;;;;;;;;;19745:128;19682:191;:::o;47666:98::-;47731:27;47741:2;47745:8;47731:27;;;;;;;;;;;;:9;:27::i;:::-;47666:98;;:::o;52960:690::-;53097:4;53114:15;:2;:13;;;:15::i;:::-;53110:535;;;53169:2;53153:36;;;53190:12;:10;:12::i;:::-;53204:4;53210:7;53219:5;53153:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53140:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53401:1;53384:6;:13;:18;53380:215;;;53417:61;;;;;;;;;;:::i;:::-;;;;;;;;53380:215;53563:6;53557:13;53548:6;53544:2;53540:15;53533:38;53140:464;53285:45;;;53275:55;;;:6;:55;;;;53268:62;;;;;53110:535;53633:4;53626:11;;52960:690;;;;;;;:::o;14698:723::-;14754:13;14984:1;14975:5;:10;14971:53;;;15002:10;;;;;;;;;;;;;;;;;;;;;14971:53;15034:12;15049:5;15034:20;;15065:14;15090:78;15105:1;15097:4;:9;15090:78;;15123:8;;;;;:::i;:::-;;;;15154:2;15146:10;;;;;:::i;:::-;;;15090:78;;;15178:19;15210:6;15200:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15178:39;;15228:154;15244:1;15235:5;:10;15228:154;;15272:1;15262:11;;;;;:::i;:::-;;;15339:2;15331:5;:10;;;;:::i;:::-;15318:2;:24;;;;:::i;:::-;15305:39;;15288:6;15295;15288:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15368:2;15359:11;;;;;:::i;:::-;;;15228:154;;;15406:6;15392:21;;;;;14698:723;;;;:::o;31812:157::-;31897:4;31936:25;31921:40;;;:11;:40;;;;31914:47;;31812:157;;;:::o;54112:141::-;;;;;:::o;54639:140::-;;;;;:::o;48103:1275::-;48208:20;48231:12;;48208:35;;48272:1;48258:16;;:2;:16;;;;48250:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48449:21;48457:12;48449:7;:21::i;:::-;48448:22;48440:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48594:61;48624:1;48628:2;48632:12;48646:8;48594:21;:61::i;:::-;48664:30;48697:12;:16;48710:2;48697:16;;;;;;;;;;;;;;;48664:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48739:119;;;;;;;;48789:8;48759:11;:19;;;:39;;;;:::i;:::-;48739:119;;;;;;48842:8;48807:11;:24;;;:44;;;;:::i;:::-;48739:119;;;;;48720:12;:16;48733:2;48720:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48893:43;;;;;;;;48908:2;48893:43;;;;;;48919:15;48893:43;;;;;48865:11;:25;48877:12;48865:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48945:20;48968:12;48945:35;;48994:9;48989:281;49013:8;49009:1;:12;48989:281;;;49067:12;49063:2;49042:38;;49059:1;49042:38;;;;;;;;;;;;49107:59;49138:1;49142:2;49146:12;49160:5;49107:22;:59::i;:::-;49089:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49248:14;;;;;:::i;:::-;;;;49023:3;;;;;:::i;:::-;;;;48989:281;;;;49293:12;49278;:27;;;;49312:60;49341:1;49345:2;49349:12;49363:8;49312:20;:60::i;:::-;48201:1177;;;48103:1275;;;:::o;20700:387::-;20760:4;20968:12;21035:7;21023:20;21015:28;;21078:1;21071:4;:8;21064:15;;;20700:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:323::-;6141:6;6190:2;6178:9;6169:7;6165:23;6161:32;6158:119;;;6196:79;;:::i;:::-;6158:119;6316:1;6341:50;6383:7;6374:6;6363:9;6359:22;6341:50;:::i;:::-;6331:60;;6287:114;6085:323;;;;:::o;6414:345::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:61;6734:7;6725:6;6714:9;6710:22;6681:61;:::i;:::-;6671:71;;6627:125;6414:345;;;;:::o;6765:327::-;6823:6;6872:2;6860:9;6851:7;6847:23;6843:32;6840:119;;;6878:79;;:::i;:::-;6840:119;6998:1;7023:52;7067:7;7058:6;7047:9;7043:22;7023:52;:::i;:::-;7013:62;;6969:116;6765:327;;;;:::o;7098:349::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7313:127;7098:349;;;;:::o;7453:357::-;7526:6;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7701:1;7726:67;7785:7;7776:6;7765:9;7761:22;7726:67;:::i;:::-;7716:77;;7672:131;7453:357;;;;:::o;7816:509::-;7885:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:119;;;7940:79;;:::i;:::-;7902:119;8088:1;8077:9;8073:17;8060:31;8118:18;8110:6;8107:30;8104:117;;;8140:79;;:::i;:::-;8104:117;8245:63;8300:7;8291:6;8280:9;8276:22;8245:63;:::i;:::-;8235:73;;8031:287;7816:509;;;;:::o;8331:329::-;8390:6;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8331:329;;;;:::o;8666:351::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8911:1;8936:64;8992:7;8983:6;8972:9;8968:22;8936:64;:::i;:::-;8926:74;;8882:128;8666:351;;;;:::o;9023:474::-;9091:6;9099;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9401:2;9427:53;9472:7;9463:6;9452:9;9448:22;9427:53;:::i;:::-;9417:63;;9372:118;9023:474;;;;;:::o;9503:118::-;9590:24;9608:5;9590:24;:::i;:::-;9585:3;9578:37;9503:118;;:::o;9627:109::-;9708:21;9723:5;9708:21;:::i;:::-;9703:3;9696:34;9627:109;;:::o;9742:360::-;9828:3;9856:38;9888:5;9856:38;:::i;:::-;9910:70;9973:6;9968:3;9910:70;:::i;:::-;9903:77;;9989:52;10034:6;10029:3;10022:4;10015:5;10011:16;9989:52;:::i;:::-;10066:29;10088:6;10066:29;:::i;:::-;10061:3;10057:39;10050:46;;9832:270;9742:360;;;;:::o;10108:364::-;10196:3;10224:39;10257:5;10224:39;:::i;:::-;10279:71;10343:6;10338:3;10279:71;:::i;:::-;10272:78;;10359:52;10404:6;10399:3;10392:4;10385:5;10381:16;10359:52;:::i;:::-;10436:29;10458:6;10436:29;:::i;:::-;10431:3;10427:39;10420:46;;10200:272;10108:364;;;;:::o;10478:377::-;10584:3;10612:39;10645:5;10612:39;:::i;:::-;10667:89;10749:6;10744:3;10667:89;:::i;:::-;10660:96;;10765:52;10810:6;10805:3;10798:4;10791:5;10787:16;10765:52;:::i;:::-;10842:6;10837:3;10833:16;10826:23;;10588:267;10478:377;;;;:::o;10885:845::-;10988:3;11025:5;11019:12;11054:36;11080:9;11054:36;:::i;:::-;11106:89;11188:6;11183:3;11106:89;:::i;:::-;11099:96;;11226:1;11215:9;11211:17;11242:1;11237:137;;;;11388:1;11383:341;;;;11204:520;;11237:137;11321:4;11317:9;11306;11302:25;11297:3;11290:38;11357:6;11352:3;11348:16;11341:23;;11237:137;;11383:341;11450:38;11482:5;11450:38;:::i;:::-;11510:1;11524:154;11538:6;11535:1;11532:13;11524:154;;;11612:7;11606:14;11602:1;11597:3;11593:11;11586:35;11662:1;11653:7;11649:15;11638:26;;11560:4;11557:1;11553:12;11548:17;;11524:154;;;11707:6;11702:3;11698:16;11691:23;;11390:334;;11204:520;;10992:738;;10885:845;;;;:::o;11736:366::-;11878:3;11899:67;11963:2;11958:3;11899:67;:::i;:::-;11892:74;;11975:93;12064:3;11975:93;:::i;:::-;12093:2;12088:3;12084:12;12077:19;;11736:366;;;:::o;12108:::-;12250:3;12271:67;12335:2;12330:3;12271:67;:::i;:::-;12264:74;;12347:93;12436:3;12347:93;:::i;:::-;12465:2;12460:3;12456:12;12449:19;;12108:366;;;:::o;12480:::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:::-;12994:3;13015:67;13079:2;13074:3;13015:67;:::i;:::-;13008:74;;13091:93;13180:3;13091:93;:::i;:::-;13209:2;13204:3;13200:12;13193:19;;12852:366;;;:::o;13224:::-;13366:3;13387:67;13451:2;13446:3;13387:67;:::i;:::-;13380:74;;13463:93;13552:3;13463:93;:::i;:::-;13581:2;13576:3;13572:12;13565:19;;13224:366;;;:::o;13596:::-;13738:3;13759:67;13823:2;13818:3;13759:67;:::i;:::-;13752:74;;13835:93;13924:3;13835:93;:::i;:::-;13953:2;13948:3;13944:12;13937:19;;13596:366;;;:::o;13968:::-;14110:3;14131:67;14195:2;14190:3;14131:67;:::i;:::-;14124:74;;14207:93;14296:3;14207:93;:::i;:::-;14325:2;14320:3;14316:12;14309:19;;13968:366;;;:::o;14340:::-;14482:3;14503:67;14567:2;14562:3;14503:67;:::i;:::-;14496:74;;14579:93;14668:3;14579:93;:::i;:::-;14697:2;14692:3;14688:12;14681:19;;14340:366;;;:::o;14712:::-;14854:3;14875:67;14939:2;14934:3;14875:67;:::i;:::-;14868:74;;14951:93;15040:3;14951:93;:::i;:::-;15069:2;15064:3;15060:12;15053:19;;14712:366;;;:::o;15084:::-;15226:3;15247:67;15311:2;15306:3;15247:67;:::i;:::-;15240:74;;15323:93;15412:3;15323:93;:::i;:::-;15441:2;15436:3;15432:12;15425:19;;15084:366;;;:::o;15456:::-;15598:3;15619:67;15683:2;15678:3;15619:67;:::i;:::-;15612:74;;15695:93;15784:3;15695:93;:::i;:::-;15813:2;15808:3;15804:12;15797:19;;15456:366;;;:::o;15828:::-;15970:3;15991:67;16055:2;16050:3;15991:67;:::i;:::-;15984:74;;16067:93;16156:3;16067:93;:::i;:::-;16185:2;16180:3;16176:12;16169:19;;15828:366;;;:::o;16200:::-;16342:3;16363:67;16427:2;16422:3;16363:67;:::i;:::-;16356:74;;16439:93;16528:3;16439:93;:::i;:::-;16557:2;16552:3;16548:12;16541:19;;16200:366;;;:::o;16572:::-;16714:3;16735:67;16799:2;16794:3;16735:67;:::i;:::-;16728:74;;16811:93;16900:3;16811:93;:::i;:::-;16929:2;16924:3;16920:12;16913:19;;16572:366;;;:::o;16944:::-;17086:3;17107:67;17171:2;17166:3;17107:67;:::i;:::-;17100:74;;17183:93;17272:3;17183:93;:::i;:::-;17301:2;17296:3;17292:12;17285:19;;16944:366;;;:::o;17316:400::-;17476:3;17497:84;17579:1;17574:3;17497:84;:::i;:::-;17490:91;;17590:93;17679:3;17590:93;:::i;:::-;17708:1;17703:3;17699:11;17692:18;;17316:400;;;:::o;17722:366::-;17864:3;17885:67;17949:2;17944:3;17885:67;:::i;:::-;17878:74;;17961:93;18050:3;17961:93;:::i;:::-;18079:2;18074:3;18070:12;18063:19;;17722:366;;;:::o;18094:::-;18236:3;18257:67;18321:2;18316:3;18257:67;:::i;:::-;18250:74;;18333:93;18422:3;18333:93;:::i;:::-;18451:2;18446:3;18442:12;18435:19;;18094:366;;;:::o;18466:::-;18608:3;18629:67;18693:2;18688:3;18629:67;:::i;:::-;18622:74;;18705:93;18794:3;18705:93;:::i;:::-;18823:2;18818:3;18814:12;18807:19;;18466:366;;;:::o;18838:::-;18980:3;19001:67;19065:2;19060:3;19001:67;:::i;:::-;18994:74;;19077:93;19166:3;19077:93;:::i;:::-;19195:2;19190:3;19186:12;19179:19;;18838:366;;;:::o;19210:::-;19352:3;19373:67;19437:2;19432:3;19373:67;:::i;:::-;19366:74;;19449:93;19538:3;19449:93;:::i;:::-;19567:2;19562:3;19558:12;19551:19;;19210:366;;;:::o;19582:::-;19724:3;19745:67;19809:2;19804:3;19745:67;:::i;:::-;19738:74;;19821:93;19910:3;19821:93;:::i;:::-;19939:2;19934:3;19930:12;19923:19;;19582:366;;;:::o;19954:::-;20096:3;20117:67;20181:2;20176:3;20117:67;:::i;:::-;20110:74;;20193:93;20282:3;20193:93;:::i;:::-;20311:2;20306:3;20302:12;20295:19;;19954:366;;;:::o;20326:::-;20468:3;20489:67;20553:2;20548:3;20489:67;:::i;:::-;20482:74;;20565:93;20654:3;20565:93;:::i;:::-;20683:2;20678:3;20674:12;20667:19;;20326:366;;;:::o;20698:::-;20840:3;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20937:93;21026:3;20937:93;:::i;:::-;21055:2;21050:3;21046:12;21039:19;;20698:366;;;:::o;21070:400::-;21230:3;21251:84;21333:1;21328:3;21251:84;:::i;:::-;21244:91;;21344:93;21433:3;21344:93;:::i;:::-;21462:1;21457:3;21453:11;21446:18;;21070:400;;;:::o;21476:118::-;21563:24;21581:5;21563:24;:::i;:::-;21558:3;21551:37;21476:118;;:::o;21600:961::-;21979:3;22001:92;22089:3;22080:6;22001:92;:::i;:::-;21994:99;;22110:148;22254:3;22110:148;:::i;:::-;22103:155;;22275:95;22366:3;22357:6;22275:95;:::i;:::-;22268:102;;22387:148;22531:3;22387:148;:::i;:::-;22380:155;;22552:3;22545:10;;21600:961;;;;;:::o;22567:222::-;22660:4;22698:2;22687:9;22683:18;22675:26;;22711:71;22779:1;22768:9;22764:17;22755:6;22711:71;:::i;:::-;22567:222;;;;:::o;22795:640::-;22990:4;23028:3;23017:9;23013:19;23005:27;;23042:71;23110:1;23099:9;23095:17;23086:6;23042:71;:::i;:::-;23123:72;23191:2;23180:9;23176:18;23167:6;23123:72;:::i;:::-;23205;23273:2;23262:9;23258:18;23249:6;23205:72;:::i;:::-;23324:9;23318:4;23314:20;23309:2;23298:9;23294:18;23287:48;23352:76;23423:4;23414:6;23352:76;:::i;:::-;23344:84;;22795:640;;;;;;;:::o;23441:332::-;23562:4;23600:2;23589:9;23585:18;23577:26;;23613:71;23681:1;23670:9;23666:17;23657:6;23613:71;:::i;:::-;23694:72;23762:2;23751:9;23747:18;23738:6;23694:72;:::i;:::-;23441:332;;;;;:::o;23779:210::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23917:65;23979:1;23968:9;23964:17;23955:6;23917:65;:::i;:::-;23779:210;;;;:::o;23995:313::-;24108:4;24146:2;24135:9;24131:18;24123:26;;24195:9;24189:4;24185:20;24181:1;24170:9;24166:17;24159:47;24223:78;24296:4;24287:6;24223:78;:::i;:::-;24215:86;;23995:313;;;;:::o;24314:419::-;24480:4;24518:2;24507:9;24503:18;24495:26;;24567:9;24561:4;24557:20;24553:1;24542:9;24538:17;24531:47;24595:131;24721:4;24595:131;:::i;:::-;24587:139;;24314:419;;;:::o;24739:::-;24905:4;24943:2;24932:9;24928:18;24920:26;;24992:9;24986:4;24982:20;24978:1;24967:9;24963:17;24956:47;25020:131;25146:4;25020:131;:::i;:::-;25012:139;;24739:419;;;:::o;25164:::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:::-;25755:4;25793:2;25782:9;25778:18;25770:26;;25842:9;25836:4;25832:20;25828:1;25817:9;25813:17;25806:47;25870:131;25996:4;25870:131;:::i;:::-;25862:139;;25589:419;;;:::o;26014:::-;26180:4;26218:2;26207:9;26203:18;26195:26;;26267:9;26261:4;26257:20;26253:1;26242:9;26238:17;26231:47;26295:131;26421:4;26295:131;:::i;:::-;26287:139;;26014:419;;;:::o;26439:::-;26605:4;26643:2;26632:9;26628:18;26620:26;;26692:9;26686:4;26682:20;26678:1;26667:9;26663:17;26656:47;26720:131;26846:4;26720:131;:::i;:::-;26712:139;;26439:419;;;:::o;26864:::-;27030:4;27068:2;27057:9;27053:18;27045:26;;27117:9;27111:4;27107:20;27103:1;27092:9;27088:17;27081:47;27145:131;27271:4;27145:131;:::i;:::-;27137:139;;26864:419;;;:::o;27289:::-;27455:4;27493:2;27482:9;27478:18;27470:26;;27542:9;27536:4;27532:20;27528:1;27517:9;27513:17;27506:47;27570:131;27696:4;27570:131;:::i;:::-;27562:139;;27289:419;;;:::o;27714:::-;27880:4;27918:2;27907:9;27903:18;27895:26;;27967:9;27961:4;27957:20;27953:1;27942:9;27938:17;27931:47;27995:131;28121:4;27995:131;:::i;:::-;27987:139;;27714:419;;;:::o;28139:::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28392:9;28386:4;28382:20;28378:1;28367:9;28363:17;28356:47;28420:131;28546:4;28420:131;:::i;:::-;28412:139;;28139:419;;;:::o;28564:::-;28730:4;28768:2;28757:9;28753:18;28745:26;;28817:9;28811:4;28807:20;28803:1;28792:9;28788:17;28781:47;28845:131;28971:4;28845:131;:::i;:::-;28837:139;;28564:419;;;:::o;28989:::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:::-;29580:4;29618:2;29607:9;29603:18;29595:26;;29667:9;29661:4;29657:20;29653:1;29642:9;29638:17;29631:47;29695:131;29821:4;29695:131;:::i;:::-;29687:139;;29414:419;;;:::o;29839:::-;30005:4;30043:2;30032:9;30028:18;30020:26;;30092:9;30086:4;30082:20;30078:1;30067:9;30063:17;30056:47;30120:131;30246:4;30120:131;:::i;:::-;30112:139;;29839:419;;;:::o;30264:::-;30430:4;30468:2;30457:9;30453:18;30445:26;;30517:9;30511:4;30507:20;30503:1;30492:9;30488:17;30481:47;30545:131;30671:4;30545:131;:::i;:::-;30537:139;;30264:419;;;:::o;30689:::-;30855:4;30893:2;30882:9;30878:18;30870:26;;30942:9;30936:4;30932:20;30928:1;30917:9;30913:17;30906:47;30970:131;31096:4;30970:131;:::i;:::-;30962:139;;30689:419;;;:::o;31114:::-;31280:4;31318:2;31307:9;31303:18;31295:26;;31367:9;31361:4;31357:20;31353:1;31342:9;31338:17;31331:47;31395:131;31521:4;31395:131;:::i;:::-;31387:139;;31114:419;;;:::o;31539:::-;31705:4;31743:2;31732:9;31728:18;31720:26;;31792:9;31786:4;31782:20;31778:1;31767:9;31763:17;31756:47;31820:131;31946:4;31820:131;:::i;:::-;31812:139;;31539:419;;;:::o;31964:::-;32130:4;32168:2;32157:9;32153:18;32145:26;;32217:9;32211:4;32207:20;32203:1;32192:9;32188:17;32181:47;32245:131;32371:4;32245:131;:::i;:::-;32237:139;;31964:419;;;:::o;32389:::-;32555:4;32593:2;32582:9;32578:18;32570:26;;32642:9;32636:4;32632:20;32628:1;32617:9;32613:17;32606:47;32670:131;32796:4;32670:131;:::i;:::-;32662:139;;32389:419;;;:::o;32814:::-;32980:4;33018:2;33007:9;33003:18;32995:26;;33067:9;33061:4;33057:20;33053:1;33042:9;33038:17;33031:47;33095:131;33221:4;33095:131;:::i;:::-;33087:139;;32814:419;;;:::o;33239:::-;33405:4;33443:2;33432:9;33428:18;33420:26;;33492:9;33486:4;33482:20;33478:1;33467:9;33463:17;33456:47;33520:131;33646:4;33520:131;:::i;:::-;33512:139;;33239:419;;;:::o;33664:::-;33830:4;33868:2;33857:9;33853:18;33845:26;;33917:9;33911:4;33907:20;33903:1;33892:9;33888:17;33881:47;33945:131;34071:4;33945:131;:::i;:::-;33937:139;;33664:419;;;:::o;34089:::-;34255:4;34293:2;34282:9;34278:18;34270:26;;34342:9;34336:4;34332:20;34328:1;34317:9;34313:17;34306:47;34370:131;34496:4;34370:131;:::i;:::-;34362:139;;34089:419;;;:::o;34514:222::-;34607:4;34645:2;34634:9;34630:18;34622:26;;34658:71;34726:1;34715:9;34711:17;34702:6;34658:71;:::i;:::-;34514:222;;;;:::o;34742:129::-;34776:6;34803:20;;:::i;:::-;34793:30;;34832:33;34860:4;34852:6;34832:33;:::i;:::-;34742:129;;;:::o;34877:75::-;34910:6;34943:2;34937:9;34927:19;;34877:75;:::o;34958:307::-;35019:4;35109:18;35101:6;35098:30;35095:56;;;35131:18;;:::i;:::-;35095:56;35169:29;35191:6;35169:29;:::i;:::-;35161:37;;35253:4;35247;35243:15;35235:23;;34958:307;;;:::o;35271:308::-;35333:4;35423:18;35415:6;35412:30;35409:56;;;35445:18;;:::i;:::-;35409:56;35483:29;35505:6;35483:29;:::i;:::-;35475:37;;35567:4;35561;35557:15;35549:23;;35271:308;;;:::o;35585:141::-;35634:4;35657:3;35649:11;;35680:3;35677:1;35670:14;35714:4;35711:1;35701:18;35693:26;;35585:141;;;:::o;35732:98::-;35783:6;35817:5;35811:12;35801:22;;35732:98;;;:::o;35836:99::-;35888:6;35922:5;35916:12;35906:22;;35836:99;;;:::o;35941:168::-;36024:11;36058:6;36053:3;36046:19;36098:4;36093:3;36089:14;36074:29;;35941:168;;;;:::o;36115:169::-;36199:11;36233:6;36228:3;36221:19;36273:4;36268:3;36264:14;36249:29;;36115:169;;;;:::o;36290:148::-;36392:11;36429:3;36414:18;;36290:148;;;;:::o;36444:273::-;36484:3;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36659:1;36623:34;36619:42;36616:1;36613:49;36610:75;;;36665:18;;:::i;:::-;36610:75;36709:1;36706;36702:9;36695:16;;36444:273;;;;:::o;36723:305::-;36763:3;36782:20;36800:1;36782:20;:::i;:::-;36777:25;;36816:20;36834:1;36816:20;:::i;:::-;36811:25;;36970:1;36902:66;36898:74;36895:1;36892:81;36889:107;;;36976:18;;:::i;:::-;36889:107;37020:1;37017;37013:9;37006:16;;36723:305;;;;:::o;37034:185::-;37074:1;37091:20;37109:1;37091:20;:::i;:::-;37086:25;;37125:20;37143:1;37125:20;:::i;:::-;37120:25;;37164:1;37154:35;;37169:18;;:::i;:::-;37154:35;37211:1;37208;37204:9;37199:14;;37034:185;;;;:::o;37225:348::-;37265:7;37288:20;37306:1;37288:20;:::i;:::-;37283:25;;37322:20;37340:1;37322:20;:::i;:::-;37317:25;;37510:1;37442:66;37438:74;37435:1;37432:81;37427:1;37420:9;37413:17;37409:105;37406:131;;;37517:18;;:::i;:::-;37406:131;37565:1;37562;37558:9;37547:20;;37225:348;;;;:::o;37579:191::-;37619:4;37639:20;37657:1;37639:20;:::i;:::-;37634:25;;37673:20;37691:1;37673:20;:::i;:::-;37668:25;;37712:1;37709;37706:8;37703:34;;;37717:18;;:::i;:::-;37703:34;37762:1;37759;37755:9;37747:17;;37579:191;;;;:::o;37776:::-;37816:4;37836:20;37854:1;37836:20;:::i;:::-;37831:25;;37870:20;37888:1;37870:20;:::i;:::-;37865:25;;37909:1;37906;37903:8;37900:34;;;37914:18;;:::i;:::-;37900:34;37959:1;37956;37952:9;37944:17;;37776:191;;;;:::o;37973:96::-;38010:7;38039:24;38057:5;38039:24;:::i;:::-;38028:35;;37973:96;;;:::o;38075:90::-;38109:7;38152:5;38145:13;38138:21;38127:32;;38075:90;;;:::o;38171:149::-;38207:7;38247:66;38240:5;38236:78;38225:89;;38171:149;;;:::o;38326:110::-;38377:7;38406:24;38424:5;38406:24;:::i;:::-;38395:35;;38326:110;;;:::o;38442:118::-;38479:7;38519:34;38512:5;38508:46;38497:57;;38442:118;;;:::o;38566:126::-;38603:7;38643:42;38636:5;38632:54;38621:65;;38566:126;;;:::o;38698:77::-;38735:7;38764:5;38753:16;;38698:77;;;:::o;38781:154::-;38865:6;38860:3;38855;38842:30;38927:1;38918:6;38913:3;38909:16;38902:27;38781:154;;;:::o;38941:307::-;39009:1;39019:113;39033:6;39030:1;39027:13;39019:113;;;39118:1;39113:3;39109:11;39103:18;39099:1;39094:3;39090:11;39083:39;39055:2;39052:1;39048:10;39043:15;;39019:113;;;39150:6;39147:1;39144:13;39141:101;;;39230:1;39221:6;39216:3;39212:16;39205:27;39141:101;38990:258;38941:307;;;:::o;39254:171::-;39293:3;39316:24;39334:5;39316:24;:::i;:::-;39307:33;;39362:4;39355:5;39352:15;39349:41;;;39370:18;;:::i;:::-;39349:41;39417:1;39410:5;39406:13;39399:20;;39254:171;;;:::o;39431:320::-;39475:6;39512:1;39506:4;39502:12;39492:22;;39559:1;39553:4;39549:12;39580:18;39570:81;;39636:4;39628:6;39624:17;39614:27;;39570:81;39698:2;39690:6;39687:14;39667:18;39664:38;39661:84;;;39717:18;;:::i;:::-;39661:84;39482:269;39431:320;;;:::o;39757:281::-;39840:27;39862:4;39840:27;:::i;:::-;39832:6;39828:40;39970:6;39958:10;39955:22;39934:18;39922:10;39919:34;39916:62;39913:88;;;39981:18;;:::i;:::-;39913:88;40021:10;40017:2;40010:22;39800:238;39757:281;;:::o;40044:233::-;40083:3;40106:24;40124:5;40106:24;:::i;:::-;40097:33;;40152:66;40145:5;40142:77;40139:103;;;40222:18;;:::i;:::-;40139:103;40269:1;40262:5;40258:13;40251:20;;40044:233;;;:::o;40283:176::-;40315:1;40332:20;40350:1;40332:20;:::i;:::-;40327:25;;40366:20;40384:1;40366:20;:::i;:::-;40361:25;;40405:1;40395:35;;40410:18;;:::i;:::-;40395:35;40451:1;40448;40444:9;40439:14;;40283:176;;;;:::o;40465:180::-;40513:77;40510:1;40503:88;40610:4;40607:1;40600:15;40634:4;40631:1;40624:15;40651:180;40699:77;40696:1;40689:88;40796:4;40793:1;40786:15;40820:4;40817:1;40810:15;40837:180;40885:77;40882:1;40875:88;40982:4;40979:1;40972:15;41006:4;41003:1;40996:15;41023:180;41071:77;41068:1;41061:88;41168:4;41165:1;41158:15;41192:4;41189:1;41182:15;41209:180;41257:77;41254:1;41247:88;41354:4;41351:1;41344:15;41378:4;41375:1;41368:15;41395:117;41504:1;41501;41494:12;41518:117;41627:1;41624;41617:12;41641:117;41750:1;41747;41740:12;41764:117;41873:1;41870;41863:12;41887:102;41928:6;41979:2;41975:7;41970:2;41963:5;41959:14;41955:28;41945:38;;41887:102;;;:::o;41995:221::-;42135:34;42131:1;42123:6;42119:14;42112:58;42204:4;42199:2;42191:6;42187:15;42180:29;41995:221;:::o;42222:225::-;42362:34;42358:1;42350:6;42346:14;42339:58;42431:8;42426:2;42418:6;42414:15;42407:33;42222:225;:::o;42453:229::-;42593:34;42589:1;42581:6;42577:14;42570:58;42662:12;42657:2;42649:6;42645:15;42638:37;42453:229;:::o;42688:222::-;42828:34;42824:1;42816:6;42812:14;42805:58;42897:5;42892:2;42884:6;42880:15;42873:30;42688:222;:::o;42916:221::-;43056:34;43052:1;43044:6;43040:14;43033:58;43125:4;43120:2;43112:6;43108:15;43101:29;42916:221;:::o;43143:224::-;43283:34;43279:1;43271:6;43267:14;43260:58;43352:7;43347:2;43339:6;43335:15;43328:32;43143:224;:::o;43373:221::-;43513:34;43509:1;43501:6;43497:14;43490:58;43582:4;43577:2;43569:6;43565:15;43558:29;43373:221;:::o;43600:167::-;43740:19;43736:1;43728:6;43724:14;43717:43;43600:167;:::o;43773:244::-;43913:34;43909:1;43901:6;43897:14;43890:58;43982:27;43977:2;43969:6;43965:15;43958:52;43773:244;:::o;44023:230::-;44163:34;44159:1;44151:6;44147:14;44140:58;44232:13;44227:2;44219:6;44215:15;44208:38;44023:230;:::o;44259:225::-;44399:34;44395:1;44387:6;44383:14;44376:58;44468:8;44463:2;44455:6;44451:15;44444:33;44259:225;:::o;44490:182::-;44630:34;44626:1;44618:6;44614:14;44607:58;44490:182;:::o;44678:176::-;44818:28;44814:1;44806:6;44802:14;44795:52;44678:176;:::o;44860:237::-;45000:34;44996:1;44988:6;44984:14;44977:58;45069:20;45064:2;45056:6;45052:15;45045:45;44860:237;:::o;45103:221::-;45243:34;45239:1;45231:6;45227:14;45220:58;45312:4;45307:2;45299:6;45295:15;45288:29;45103:221;:::o;45330:114::-;;:::o;45450:238::-;45590:34;45586:1;45578:6;45574:14;45567:58;45659:21;45654:2;45646:6;45642:15;45635:46;45450:238;:::o;45694:179::-;45834:31;45830:1;45822:6;45818:14;45811:55;45694:179;:::o;45879:220::-;46019:34;46015:1;46007:6;46003:14;45996:58;46088:3;46083:2;46075:6;46071:15;46064:28;45879:220;:::o;46105:174::-;46245:26;46241:1;46233:6;46229:14;46222:50;46105:174;:::o;46285:233::-;46425:34;46421:1;46413:6;46409:14;46402:58;46494:16;46489:2;46481:6;46477:15;46470:41;46285:233;:::o;46524:181::-;46664:33;46660:1;46652:6;46648:14;46641:57;46524:181;:::o;46711:234::-;46851:34;46847:1;46839:6;46835:14;46828:58;46920:17;46915:2;46907:6;46903:15;46896:42;46711:234;:::o;46951:173::-;47091:25;47087:1;47079:6;47075:14;47068:49;46951:173;:::o;47130:232::-;47270:34;47266:1;47258:6;47254:14;47247:58;47339:15;47334:2;47326:6;47322:15;47315:40;47130:232;:::o;47368:151::-;47508:3;47504:1;47496:6;47492:14;47485:27;47368:151;:::o;47525:122::-;47598:24;47616:5;47598:24;:::i;:::-;47591:5;47588:35;47578:63;;47637:1;47634;47627:12;47578:63;47525:122;:::o;47653:116::-;47723:21;47738:5;47723:21;:::i;:::-;47716:5;47713:32;47703:60;;47759:1;47756;47749:12;47703:60;47653:116;:::o;47775:120::-;47847:23;47864:5;47847:23;:::i;:::-;47840:5;47837:34;47827:62;;47885:1;47882;47875:12;47827:62;47775:120;:::o;47901:150::-;47988:38;48020:5;47988:38;:::i;:::-;47981:5;47978:49;47968:77;;48041:1;48038;48031:12;47968:77;47901:150;:::o;48057:122::-;48130:24;48148:5;48130:24;:::i;:::-;48123:5;48120:35;48110:63;;48169:1;48166;48159:12;48110:63;48057:122;:::o

Swarm Source

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