ETH Price: $2,873.29 (-9.23%)
Gas: 11 Gwei

Token

Survive (SURVIVE)
 

Overview

Max Total Supply

20,637.60637026238 SURVIVE

Holders

103

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Survive

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-21
*/

// 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/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/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: @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/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/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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
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 internal _currentIndex;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; 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++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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 Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *w
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = 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);
    }

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                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: @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: contracts/Unity.sol



pragma solidity ^0.8.4;





contract Unity is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;
    // Addressess
    address public signerRole;
    address private address1;
    address private address2;
    address private address3;
    // Sales configs
    uint256 public maxPerAddressPreSale = 2;
    uint256 public maxPerAddressPublic = 3;
    uint256 public reserved = 150;
    uint256 public maxSupply = 4999;
    uint256 public cost = 0.115 ether;
    uint256 public maxBatchSize = 3;
    // Timeframes
    uint256 public preSaleWindowOpens = 1645801200;
    uint256 public preSaleWindowCloses  = 1645974000;
    uint256 public publicWindowOpens = 1645975800;
    uint256 public publicWindowCloses = 1648416562;
    uint256 public ogWindowOpens = 1645866000;
    // Metadata uris
    string public unrevealedURI;
    string public baseURI;
    // State variables
    bool public paused = false;
    bool public revealed = false;
    // Amount minted at phases
    mapping(address => uint256) public preSaleMintedBalance;
    mapping(address => uint256) public publicSaleMintedBalance;
    mapping(address => uint256) public ogs;
    
    constructor(
    string memory _unrevealedURI,
    address _signerRole,
    address _address1,
    address _address2,
    address _address3
    ) ERC721A("55Unity", "55Unity") {
        unrevealedURI = _unrevealedURI;
        signerRole = _signerRole;
        address1 = _address1;
        address2 = _address2;
        address3 = _address3;
        //1645801200
        //1645974000
        //1645975800
        //1646062200

        //Og 1645866000
    }

    // Modifiers
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require(isValidAccessMessage(msg.sender, _v, _r, _s), "Invalid singature for address calling the function, account not in presale.");
        _;
    }

    // Mint functions ( Presale, public, giveaways)
    function mintPreSale(uint256 quantity, uint8 _v, bytes32 _r, bytes32 _s) external payable onlyValidAccess(_v, _r, _s) {
        require(block.timestamp >= preSaleWindowOpens && block.timestamp <= preSaleWindowCloses, "Presale: purchase window closed.");
        // OGs in the last 6 hours have one more to mint.
        if(ogs[msg.sender] == 1 && (preSaleMintedBalance[msg.sender] + quantity) > maxPerAddressPreSale){
            require(block.timestamp >= ogWindowOpens, "OG are only allowed to mint their plus one in the last 6 hours.");
        }
        require(preSaleMintedBalance[msg.sender] + quantity <= (maxPerAddressPreSale + ogs[msg.sender]), "You can only mint 2 (3) tokens during presale (OG role has one more).");
       
        preSaleMintedBalance[msg.sender] += quantity;
        mint(quantity);
    }

    function mintPublicSale(uint256 quantity) external payable {
        require(block.timestamp >= publicWindowOpens && block.timestamp <= publicWindowCloses, "Public sale: purchase window closed.");
        require(publicSaleMintedBalance[msg.sender] + quantity <= maxPerAddressPublic, "You can only mint 3 tokens during public sale.");
        
        publicSaleMintedBalance[msg.sender] += quantity;
        mint(quantity);
    }

    function mint(uint256 quantity) private {
        require(tx.origin == msg.sender, "No bots allowed.");
        require(totalSupply() + quantity <= maxSupply, "This amount of tokens would surpass the max supply (4999).");
        require(msg.value >= cost * quantity, "Invalid purchase, the amount of eth sent is insufficient to process the mint.");
        require(quantity <= maxBatchSize, "You're only allowed to mint 3 tokens at a time.");
        require(!paused, "Minting not available, the contract is paused.");

        _safeMint(msg.sender, quantity);
    }

    function giveaway(address to, uint256 quantity) external onlyOwner {
        require(quantity <= reserved, "This amount exceeds reserved supply. 100" );
        require(totalSupply() + quantity <= maxSupply, "This amount of tokens would surpass the max supply (4999).");

        _safeMint(to, quantity);
        reserved -= quantity;
    }
    
    // Uri token functions
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token.");    
        
        if(revealed == false) {
            return unrevealedURI;
        }

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

    function setBaseURI(string calldata _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }
    
    function setUnrevealedURI(string calldata _unrevealedURI) external onlyOwner {
        unrevealedURI = _unrevealedURI;
    }

    function reveal(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
        revealed = true;
    }

    // Functions to change contract settings
    function setMaxSupply( uint256 _newReservedSupply, uint256 _maxPublicSupply) external onlyOwner {
        maxSupply = _maxPublicSupply;
        reserved = _newReservedSupply;
    }
    
    function pause(bool _state) external onlyOwner {
        paused = _state;
    }
    
    function setWindows(uint256 _preSaleWindowOpens, uint256 _preSaleWindowCloses, uint256 _publicWindowOpens, uint256 _publicWindowCloses)  external onlyOwner {
        preSaleWindowOpens = _preSaleWindowOpens;
        preSaleWindowCloses= _preSaleWindowCloses;
        publicWindowOpens = _publicWindowOpens;
        publicWindowCloses = _publicWindowCloses;
    }

    function setOGWindow(uint256 _OGWindowOpens)  external onlyOwner{
        ogWindowOpens = _OGWindowOpens;
    }

    function setMaxEarly(uint256 _maxTxEarly) external onlyOwner {
        maxPerAddressPreSale = _maxTxEarly;
    }

    function setMaxPublic(uint256 _maxTxPublic) external onlyOwner {
        maxPerAddressPublic = _maxTxPublic;
    }

    function setMaxTxs(uint256 _maxPerTx) external onlyOwner {
        maxBatchSize = _maxPerTx;
    }

    function setOgs(address[] calldata _ogs) external onlyOwner {
        for (uint256 i; i < _ogs.length; i++) {
            ogs[_ogs[i]] = 1;
        }
    }

    function newCost(uint256 _newCost) external onlyOwner {
        // Important to set value in wei
        cost = _newCost;
    }

    // WL signature, only users allowed.
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(this, _add));
        return signerRole == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        
        return tokenIds;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        uint256 amount1 = address(this).balance / 100 * 20;
        uint256 amount2 = address(this).balance / 100 * 30;
        uint256 amount3 = address(this).balance / 100 * 50;

        (bool success, ) = address1.call{value: amount1}("");
        (success, ) = address2.call{value: amount2}("");
        (success, ) = address3.call{value: amount3}("");
        require(success, "Transfer failed.");
    }

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/survive.sol

pragma solidity ^0.8.4;






contract Survive is ERC20, Ownable {
    using SafeMath for uint256;
    address public signerRole;
    address public toxicContract;
    address public gameContract;

    uint256 public baseRate = 0.01140410959 ether; // Rate per hour

    mapping(address => uint256) public stakedBalance;
    mapping(address => uint256) public lastUpdate;

    bool public paused = false;

    Unity unity;

    constructor(address _unity, address _signerRole) ERC20("Survive", "SURVIVE") {
        unity = Unity(_unity);
        signerRole = _signerRole;
    }
    
    modifier isPaused() {
        require(!paused, "Minting not available, the contract is paused.");
        _;
    }

    function claim() external isPaused {
        require(lastUpdate[msg.sender] > 0, "User needs to update staked balance first, please choose in our website.");

        mint();

        lastUpdate[msg.sender] = block.timestamp;

        if(stakedBalance[msg.sender] > unity.balanceOf(msg.sender)) {
            stakedBalance[msg.sender] = unity.balanceOf(msg.sender);
        }
    }

    function stake(uint16 amount) external isPaused {
        require(unity.balanceOf(msg.sender) >= amount, "You can only add tokens that you have. ");
        // Mint already available tokens before changing stake numbers 
        mint();

        stakedBalance[msg.sender] = amount;
        lastUpdate[msg.sender] = block.timestamp;
    }

    function mint() private isPaused {
        require(tx.origin == msg.sender, "No bots allowed.");

        uint256 hrs = (block.timestamp - lastUpdate[msg.sender]) / 60 / 60;
        uint256 available = (baseRate * getBalance(msg.sender)) * hrs;

        _mint(msg.sender, available);
    }

    function claimToxic(address _to, uint256 amount) external isPaused {
        require(msg.sender == toxicContract, "Only toxic contract can call this function.");

        _mint(_to, amount);
    }   

    function claimGame(address _to, uint256 amount) external isPaused {
        require(msg.sender == gameContract, "Only game contract can call this function.");

        _mint(_to, amount);
    } 

    function getTotalClaimable(address _user) external view returns(uint256) {
        if(lastUpdate[_user] == 0){
            return 0;
        }

        uint256 hrs = (block.timestamp - lastUpdate[_user]) / 60 / 60;
		uint256 available = (baseRate * getBalance(_user)) * hrs;
        
		return available;
	}

    function getBalance(address _user) private view returns (uint256) {
        uint256 balanceConsidered = stakedBalance[_user];

        if(balanceConsidered > unity.balanceOf(_user)){
            balanceConsidered = unity.balanceOf(_user);
        }

        return balanceConsidered;
    }
    
    function burn(uint256 _amount) external isPaused {
        require(balanceOf(msg.sender) >= _amount, "Sender needs to have enough tokens to burn.");
        
		_burn(msg.sender, _amount);
	}

    function flipPause(bool _state) external onlyOwner {
        paused = _state;
    }

    function changeClaimRate(uint256 _baseRate) external onlyOwner {
        baseRate = _baseRate;
    }

    function setToxicContract(address _toxicContract) external onlyOwner {
        toxicContract = _toxicContract;
    }

    function setGameContract(address _gameContract) external onlyOwner {
        gameContract = _gameContract;
    }

    function setLastUpdated(uint256 time) external {
        require(msg.sender == signerRole, "Only signer can change this.");
        lastUpdate[msg.sender] = time;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_unity","type":"address"},{"internalType":"address","name":"_signerRole","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baseRate","type":"uint256"}],"name":"changeClaimRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimToxic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"flipPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gameContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gameContract","type":"address"}],"name":"setGameContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setLastUpdated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toxicContract","type":"address"}],"name":"setToxicContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerRole","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toxicContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662883fa2d1771806009556000600c60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b50604051620039b0380380620039b083398181016040528101906200005d91906200033c565b6040518060400160405280600781526020017f53757276697665000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f53555256495645000000000000000000000000000000000000000000000000008152508160039080519060200190620000e192919062000275565b508060049080519060200190620000fa92919062000275565b5050506200011d62000111620001a760201b60201c565b620001af60201b60201c565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200043b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028390620003b7565b90600052602060002090601f016020900481019282620002a75760008555620002f3565b82601f10620002c257805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f2578251825591602001919060010190620002d5565b5b50905062000302919062000306565b5090565b5b808211156200032157600081600090555060010162000307565b5090565b600081519050620003368162000421565b92915050565b600080604083850312156200035657620003556200041c565b5b6000620003668582860162000325565b9250506020620003798582860162000325565b9150509250929050565b6000620003908262000397565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003d057607f821691505b60208210811415620003e757620003e6620003ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200042c8162000383565b81146200043857600080fd5b50565b613565806200044b6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063602172671161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146105a9578063e273d845146105d9578063f2fde38b146105f5578063fbc2f69d14610611576101f0565b8063a9059cbb1461050f578063bf12a1e61461053f578063cb03fb1e1461055b578063d3f330091461058b576101f0565b806379fc46c0116100de57806379fc46c0146104875780638da5cb5b146104a357806395d89b41146104c1578063a457c2d7146104df576101f0565b806360217267146103ff5780636c2d481f1461042f57806370a082311461044d578063715018a61461047d576101f0565b8063368f18621161018757806342966c681161015657806342966c681461039f5780634e71d92d146103bb5780635c975abb146103c55780635d98f66a146103e3576101f0565b8063368f186214610319578063395093511461033557806339e015d214610365578063405ebd4d14610383576101f0565b806323b872dd116101c357806323b872dd1461027f578063267e8ab6146102af5780632f57ee41146102df578063313ce567146102fb576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd146102435780631f68f20a14610261575b600080fd5b6101fd61062d565b60405161020a91906129cb565b60405180910390f35b61022d60048036038101906102289190612570565b6106bf565b60405161023a91906129b0565b60405180910390f35b61024b6106e2565b6040516102589190612c6d565b60405180910390f35b6102696106ec565b6040516102769190612c6d565b60405180910390f35b6102996004803603810190610294919061251d565b6106f2565b6040516102a691906129b0565b60405180910390f35b6102c960048036038101906102c491906124b0565b610721565b6040516102d69190612c6d565b60405180910390f35b6102f960048036038101906102f491906125dd565b610809565b005b6103036109e1565b6040516103109190612c88565b60405180910390f35b610333600480360381019061032e919061260a565b6109ea565b005b61034f600480360381019061034a9190612570565b610ac1565b60405161035c91906129b0565b60405180910390f35b61036d610b6b565b60405161037a9190612995565b60405180910390f35b61039d600480360381019061039891906124b0565b610b91565b005b6103b960048036038101906103b4919061260a565b610c51565b005b6103c3610cf9565b005b6103cd610ff9565b6040516103da91906129b0565b60405180910390f35b6103fd60048036038101906103f89190612570565b61100c565b005b610419600480360381019061041491906124b0565b6110fa565b6040516104269190612c6d565b60405180910390f35b610437611112565b6040516104449190612995565b60405180910390f35b610467600480360381019061046291906124b0565b611138565b6040516104749190612c6d565b60405180910390f35b610485611180565b005b6104a1600480360381019061049c91906124b0565b611208565b005b6104ab6112c8565b6040516104b89190612995565b60405180910390f35b6104c96112f2565b6040516104d691906129cb565b60405180910390f35b6104f960048036038101906104f49190612570565b611384565b60405161050691906129b0565b60405180910390f35b61052960048036038101906105249190612570565b61146e565b60405161053691906129b0565b60405180910390f35b61055960048036038101906105549190612570565b611491565b005b610575600480360381019061057091906124b0565b61157f565b6040516105829190612c6d565b60405180910390f35b610593611597565b6040516105a09190612995565b60405180910390f35b6105c360048036038101906105be91906124dd565b6115bd565b6040516105d09190612c6d565b60405180910390f35b6105f360048036038101906105ee919061260a565b611644565b005b61060f600480360381019061060a91906124b0565b6116ca565b005b61062b600480360381019061062691906125b0565b6117c2565b005b60606003805461063c90612e6a565b80601f016020809104026020016040519081016040528092919081815260200182805461066890612e6a565b80156106b55780601f1061068a576101008083540402835291602001916106b5565b820191906000526020600020905b81548152906001019060200180831161069857829003601f168201915b5050505050905090565b6000806106ca61185b565b90506106d7818585611863565b600191505092915050565b6000600254905090565b60095481565b6000806106fd61185b565b905061070a858285611a2e565b610715858585611aba565b60019150509392505050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156107735760009050610804565b6000603c80600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054426107c39190612da0565b6107cd9190612d15565b6107d79190612d15565b90506000816107e585611d3b565b6009546107f29190612d46565b6107fc9190612d46565b905080925050505b919050565b600c60009054906101000a900460ff1615610859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085090612b8d565b60405180910390fd5b8061ffff16600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016108b99190612995565b60206040518083038186803b1580156108d157600080fd5b505afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612637565b101561094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190612a8d565b60405180910390fd5b610952611ee9565b8061ffff16600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190612a2d565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080610acc61185b565b9050610b60818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5b9190612cbf565b611863565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b9961185b565b73ffffffffffffffffffffffffffffffffffffffff16610bb76112c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490612b6d565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900460ff1615610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612b8d565b60405180910390fd5b80610cab33611138565b1015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612b0d565b60405180910390fd5b610cf63382612040565b50565b600c60009054906101000a900460ff1615610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612b8d565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612b4d565b60405180910390fd5b610dd3611ee9565b42600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610e729190612995565b60206040518083038186803b158015610e8a57600080fd5b505afa158015610e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec29190612637565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610ff757600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610f639190612995565b60206040518083038186803b158015610f7b57600080fd5b505afa158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb39190612637565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b565b600c60009054906101000a900460ff1681565b600c60009054906101000a900460ff161561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390612b8d565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612aed565b60405180910390fd5b6110f68282612217565b5050565b600a6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118861185b565b73ffffffffffffffffffffffffffffffffffffffff166111a66112c8565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612b6d565b60405180910390fd5b6112066000612377565b565b61121061185b565b73ffffffffffffffffffffffffffffffffffffffff1661122e6112c8565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612b6d565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461130190612e6a565b80601f016020809104026020016040519081016040528092919081815260200182805461132d90612e6a565b801561137a5780601f1061134f5761010080835404028352916020019161137a565b820191906000526020600020905b81548152906001019060200180831161135d57829003601f168201915b5050505050905090565b60008061138f61185b565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90612c2d565b60405180910390fd5b6114628286868403611863565b60019250505092915050565b60008061147961185b565b9050611486818585611aba565b600191505092915050565b600c60009054906101000a900460ff16156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612b8d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890612b2d565b60405180910390fd5b61157b8282612217565b5050565b600b6020528060005260406000206000915090505481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61164c61185b565b73ffffffffffffffffffffffffffffffffffffffff1661166a6112c8565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790612b6d565b60405180910390fd5b8060098190555050565b6116d261185b565b73ffffffffffffffffffffffffffffffffffffffff166116f06112c8565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612b6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90612a4d565b60405180910390fd5b6117bf81612377565b50565b6117ca61185b565b73ffffffffffffffffffffffffffffffffffffffff166117e86112c8565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590612b6d565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90612c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90612a6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a219190612c6d565b60405180910390a3505050565b6000611a3a84846115bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ab45781811015611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90612aad565b60405180910390fd5b611ab38484848403611863565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190612bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906129ed565b60405180910390fd5b611ba583838361243d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290612acd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbe9190612cbf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d229190612c6d565b60405180910390a3611d35848484612442565b50505050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611ddb9190612995565b60206040518083038186803b158015611df357600080fd5b505afa158015611e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2b9190612637565b811115611ee057600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611e8d9190612995565b60206040518083038186803b158015611ea557600080fd5b505afa158015611eb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edd9190612637565b90505b80915050919050565b600c60009054906101000a900460ff1615611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090612b8d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90612bcd565b60405180910390fd5b6000603c80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611ff79190612da0565b6120019190612d15565b61200b9190612d15565b905060008161201933611d3b565b6009546120269190612d46565b6120309190612d46565b905061203c3382612217565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790612bad565b60405180910390fd5b6120bc8260008361243d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990612a0d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121999190612da0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121fe9190612c6d565b60405180910390a361221283600084612442565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90612c4d565b60405180910390fd5b6122936000838361243d565b80600260008282546122a59190612cbf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fa9190612cbf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161235f9190612c6d565b60405180910390a361237360008383612442565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050612456816134d3565b92915050565b60008135905061246b816134ea565b92915050565b60008135905061248081613501565b92915050565b60008135905061249581613518565b92915050565b6000815190506124aa81613518565b92915050565b6000602082840312156124c6576124c5612f29565b5b60006124d484828501612447565b91505092915050565b600080604083850312156124f4576124f3612f29565b5b600061250285828601612447565b925050602061251385828601612447565b9150509250929050565b60008060006060848603121561253657612535612f29565b5b600061254486828701612447565b935050602061255586828701612447565b925050604061256686828701612486565b9150509250925092565b6000806040838503121561258757612586612f29565b5b600061259585828601612447565b92505060206125a685828601612486565b9150509250929050565b6000602082840312156125c6576125c5612f29565b5b60006125d48482850161245c565b91505092915050565b6000602082840312156125f3576125f2612f29565b5b600061260184828501612471565b91505092915050565b6000602082840312156126205761261f612f29565b5b600061262e84828501612486565b91505092915050565b60006020828403121561264d5761264c612f29565b5b600061265b8482850161249b565b91505092915050565b61266d81612dd4565b82525050565b61267c81612de6565b82525050565b600061268d82612ca3565b6126978185612cae565b93506126a7818560208601612e37565b6126b081612f2e565b840191505092915050565b60006126c8602383612cae565b91506126d382612f3f565b604082019050919050565b60006126eb602283612cae565b91506126f682612f8e565b604082019050919050565b600061270e601c83612cae565b915061271982612fdd565b602082019050919050565b6000612731602683612cae565b915061273c82613006565b604082019050919050565b6000612754602283612cae565b915061275f82613055565b604082019050919050565b6000612777602783612cae565b9150612782826130a4565b604082019050919050565b600061279a601d83612cae565b91506127a5826130f3565b602082019050919050565b60006127bd602683612cae565b91506127c88261311c565b604082019050919050565b60006127e0602a83612cae565b91506127eb8261316b565b604082019050919050565b6000612803602b83612cae565b915061280e826131ba565b604082019050919050565b6000612826602b83612cae565b915061283182613209565b604082019050919050565b6000612849604883612cae565b915061285482613258565b606082019050919050565b600061286c602083612cae565b9150612877826132cd565b602082019050919050565b600061288f602e83612cae565b915061289a826132f6565b604082019050919050565b60006128b2602183612cae565b91506128bd82613345565b604082019050919050565b60006128d5601083612cae565b91506128e082613394565b602082019050919050565b60006128f8602583612cae565b9150612903826133bd565b604082019050919050565b600061291b602483612cae565b91506129268261340c565b604082019050919050565b600061293e602583612cae565b91506129498261345b565b604082019050919050565b6000612961601f83612cae565b915061296c826134aa565b602082019050919050565b61298081612e20565b82525050565b61298f81612e2a565b82525050565b60006020820190506129aa6000830184612664565b92915050565b60006020820190506129c56000830184612673565b92915050565b600060208201905081810360008301526129e58184612682565b905092915050565b60006020820190508181036000830152612a06816126bb565b9050919050565b60006020820190508181036000830152612a26816126de565b9050919050565b60006020820190508181036000830152612a4681612701565b9050919050565b60006020820190508181036000830152612a6681612724565b9050919050565b60006020820190508181036000830152612a8681612747565b9050919050565b60006020820190508181036000830152612aa68161276a565b9050919050565b60006020820190508181036000830152612ac68161278d565b9050919050565b60006020820190508181036000830152612ae6816127b0565b9050919050565b60006020820190508181036000830152612b06816127d3565b9050919050565b60006020820190508181036000830152612b26816127f6565b9050919050565b60006020820190508181036000830152612b4681612819565b9050919050565b60006020820190508181036000830152612b668161283c565b9050919050565b60006020820190508181036000830152612b868161285f565b9050919050565b60006020820190508181036000830152612ba681612882565b9050919050565b60006020820190508181036000830152612bc6816128a5565b9050919050565b60006020820190508181036000830152612be6816128c8565b9050919050565b60006020820190508181036000830152612c06816128eb565b9050919050565b60006020820190508181036000830152612c268161290e565b9050919050565b60006020820190508181036000830152612c4681612931565b9050919050565b60006020820190508181036000830152612c6681612954565b9050919050565b6000602082019050612c826000830184612977565b92915050565b6000602082019050612c9d6000830184612986565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612cca82612e20565b9150612cd583612e20565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0a57612d09612e9c565b5b828201905092915050565b6000612d2082612e20565b9150612d2b83612e20565b925082612d3b57612d3a612ecb565b5b828204905092915050565b6000612d5182612e20565b9150612d5c83612e20565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d9557612d94612e9c565b5b828202905092915050565b6000612dab82612e20565b9150612db683612e20565b925082821015612dc957612dc8612e9c565b5b828203905092915050565b6000612ddf82612e00565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e55578082015181840152602081019050612e3a565b83811115612e64576000848401525b50505050565b60006002820490506001821680612e8257607f821691505b60208210811415612e9657612e95612efa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79207369676e65722063616e206368616e676520746869732e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c792061646420746f6b656e73207468617420796f7560008201527f20686176652e2000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792067616d6520636f6e74726163742063616e2063616c6c207468697360008201527f2066756e6374696f6e2e00000000000000000000000000000000000000000000602082015250565b7f53656e646572206e6565647320746f206861766520656e6f75676820746f6b6560008201527f6e7320746f206275726e2e000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920746f78696320636f6e74726163742063616e2063616c6c2074686960008201527f732066756e6374696f6e2e000000000000000000000000000000000000000000602082015250565b7f55736572206e6565647320746f20757064617465207374616b65642062616c6160008201527f6e63652066697273742c20706c656173652063686f6f736520696e206f75722060208201527f776562736974652e000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206e6f7420617661696c61626c652c2074686520636f6e747260008201527f616374206973207061757365642e000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20626f747320616c6c6f7765642e00000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6134dc81612dd4565b81146134e757600080fd5b50565b6134f381612de6565b81146134fe57600080fd5b50565b61350a81612df2565b811461351557600080fd5b50565b61352181612e20565b811461352c57600080fd5b5056fea2646970667358221220254fbe7e85e43e514ed31eb8702853aa1f858bc3dff869c68dbc905d1634709a64736f6c63430008070033000000000000000000000000d8723058f2b456484e3cde4ccfaea903116fa9e4000000000000000000000000a65aae78edef916d4102ba7b5672068c0d35fbff

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063602172671161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146105a9578063e273d845146105d9578063f2fde38b146105f5578063fbc2f69d14610611576101f0565b8063a9059cbb1461050f578063bf12a1e61461053f578063cb03fb1e1461055b578063d3f330091461058b576101f0565b806379fc46c0116100de57806379fc46c0146104875780638da5cb5b146104a357806395d89b41146104c1578063a457c2d7146104df576101f0565b806360217267146103ff5780636c2d481f1461042f57806370a082311461044d578063715018a61461047d576101f0565b8063368f18621161018757806342966c681161015657806342966c681461039f5780634e71d92d146103bb5780635c975abb146103c55780635d98f66a146103e3576101f0565b8063368f186214610319578063395093511461033557806339e015d214610365578063405ebd4d14610383576101f0565b806323b872dd116101c357806323b872dd1461027f578063267e8ab6146102af5780632f57ee41146102df578063313ce567146102fb576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd146102435780631f68f20a14610261575b600080fd5b6101fd61062d565b60405161020a91906129cb565b60405180910390f35b61022d60048036038101906102289190612570565b6106bf565b60405161023a91906129b0565b60405180910390f35b61024b6106e2565b6040516102589190612c6d565b60405180910390f35b6102696106ec565b6040516102769190612c6d565b60405180910390f35b6102996004803603810190610294919061251d565b6106f2565b6040516102a691906129b0565b60405180910390f35b6102c960048036038101906102c491906124b0565b610721565b6040516102d69190612c6d565b60405180910390f35b6102f960048036038101906102f491906125dd565b610809565b005b6103036109e1565b6040516103109190612c88565b60405180910390f35b610333600480360381019061032e919061260a565b6109ea565b005b61034f600480360381019061034a9190612570565b610ac1565b60405161035c91906129b0565b60405180910390f35b61036d610b6b565b60405161037a9190612995565b60405180910390f35b61039d600480360381019061039891906124b0565b610b91565b005b6103b960048036038101906103b4919061260a565b610c51565b005b6103c3610cf9565b005b6103cd610ff9565b6040516103da91906129b0565b60405180910390f35b6103fd60048036038101906103f89190612570565b61100c565b005b610419600480360381019061041491906124b0565b6110fa565b6040516104269190612c6d565b60405180910390f35b610437611112565b6040516104449190612995565b60405180910390f35b610467600480360381019061046291906124b0565b611138565b6040516104749190612c6d565b60405180910390f35b610485611180565b005b6104a1600480360381019061049c91906124b0565b611208565b005b6104ab6112c8565b6040516104b89190612995565b60405180910390f35b6104c96112f2565b6040516104d691906129cb565b60405180910390f35b6104f960048036038101906104f49190612570565b611384565b60405161050691906129b0565b60405180910390f35b61052960048036038101906105249190612570565b61146e565b60405161053691906129b0565b60405180910390f35b61055960048036038101906105549190612570565b611491565b005b610575600480360381019061057091906124b0565b61157f565b6040516105829190612c6d565b60405180910390f35b610593611597565b6040516105a09190612995565b60405180910390f35b6105c360048036038101906105be91906124dd565b6115bd565b6040516105d09190612c6d565b60405180910390f35b6105f360048036038101906105ee919061260a565b611644565b005b61060f600480360381019061060a91906124b0565b6116ca565b005b61062b600480360381019061062691906125b0565b6117c2565b005b60606003805461063c90612e6a565b80601f016020809104026020016040519081016040528092919081815260200182805461066890612e6a565b80156106b55780601f1061068a576101008083540402835291602001916106b5565b820191906000526020600020905b81548152906001019060200180831161069857829003601f168201915b5050505050905090565b6000806106ca61185b565b90506106d7818585611863565b600191505092915050565b6000600254905090565b60095481565b6000806106fd61185b565b905061070a858285611a2e565b610715858585611aba565b60019150509392505050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156107735760009050610804565b6000603c80600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054426107c39190612da0565b6107cd9190612d15565b6107d79190612d15565b90506000816107e585611d3b565b6009546107f29190612d46565b6107fc9190612d46565b905080925050505b919050565b600c60009054906101000a900460ff1615610859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085090612b8d565b60405180910390fd5b8061ffff16600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016108b99190612995565b60206040518083038186803b1580156108d157600080fd5b505afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612637565b101561094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190612a8d565b60405180910390fd5b610952611ee9565b8061ffff16600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190612a2d565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080610acc61185b565b9050610b60818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b5b9190612cbf565b611863565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b9961185b565b73ffffffffffffffffffffffffffffffffffffffff16610bb76112c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490612b6d565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900460ff1615610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612b8d565b60405180910390fd5b80610cab33611138565b1015610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612b0d565b60405180910390fd5b610cf63382612040565b50565b600c60009054906101000a900460ff1615610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612b8d565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612b4d565b60405180910390fd5b610dd3611ee9565b42600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610e729190612995565b60206040518083038186803b158015610e8a57600080fd5b505afa158015610e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec29190612637565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610ff757600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610f639190612995565b60206040518083038186803b158015610f7b57600080fd5b505afa158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb39190612637565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b565b600c60009054906101000a900460ff1681565b600c60009054906101000a900460ff161561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390612b8d565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e390612aed565b60405180910390fd5b6110f68282612217565b5050565b600a6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118861185b565b73ffffffffffffffffffffffffffffffffffffffff166111a66112c8565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612b6d565b60405180910390fd5b6112066000612377565b565b61121061185b565b73ffffffffffffffffffffffffffffffffffffffff1661122e6112c8565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612b6d565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461130190612e6a565b80601f016020809104026020016040519081016040528092919081815260200182805461132d90612e6a565b801561137a5780601f1061134f5761010080835404028352916020019161137a565b820191906000526020600020905b81548152906001019060200180831161135d57829003601f168201915b5050505050905090565b60008061138f61185b565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90612c2d565b60405180910390fd5b6114628286868403611863565b60019250505092915050565b60008061147961185b565b9050611486818585611aba565b600191505092915050565b600c60009054906101000a900460ff16156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612b8d565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890612b2d565b60405180910390fd5b61157b8282612217565b5050565b600b6020528060005260406000206000915090505481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61164c61185b565b73ffffffffffffffffffffffffffffffffffffffff1661166a6112c8565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790612b6d565b60405180910390fd5b8060098190555050565b6116d261185b565b73ffffffffffffffffffffffffffffffffffffffff166116f06112c8565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612b6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90612a4d565b60405180910390fd5b6117bf81612377565b50565b6117ca61185b565b73ffffffffffffffffffffffffffffffffffffffff166117e86112c8565b73ffffffffffffffffffffffffffffffffffffffff161461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590612b6d565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90612c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90612a6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a219190612c6d565b60405180910390a3505050565b6000611a3a84846115bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ab45781811015611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90612aad565b60405180910390fd5b611ab38484848403611863565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190612bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906129ed565b60405180910390fd5b611ba583838361243d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290612acd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbe9190612cbf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d229190612c6d565b60405180910390a3611d35848484612442565b50505050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611ddb9190612995565b60206040518083038186803b158015611df357600080fd5b505afa158015611e07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2b9190612637565b811115611ee057600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611e8d9190612995565b60206040518083038186803b158015611ea557600080fd5b505afa158015611eb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edd9190612637565b90505b80915050919050565b600c60009054906101000a900460ff1615611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090612b8d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90612bcd565b60405180910390fd5b6000603c80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611ff79190612da0565b6120019190612d15565b61200b9190612d15565b905060008161201933611d3b565b6009546120269190612d46565b6120309190612d46565b905061203c3382612217565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790612bad565b60405180910390fd5b6120bc8260008361243d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990612a0d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121999190612da0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121fe9190612c6d565b60405180910390a361221283600084612442565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90612c4d565b60405180910390fd5b6122936000838361243d565b80600260008282546122a59190612cbf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fa9190612cbf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161235f9190612c6d565b60405180910390a361237360008383612442565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050612456816134d3565b92915050565b60008135905061246b816134ea565b92915050565b60008135905061248081613501565b92915050565b60008135905061249581613518565b92915050565b6000815190506124aa81613518565b92915050565b6000602082840312156124c6576124c5612f29565b5b60006124d484828501612447565b91505092915050565b600080604083850312156124f4576124f3612f29565b5b600061250285828601612447565b925050602061251385828601612447565b9150509250929050565b60008060006060848603121561253657612535612f29565b5b600061254486828701612447565b935050602061255586828701612447565b925050604061256686828701612486565b9150509250925092565b6000806040838503121561258757612586612f29565b5b600061259585828601612447565b92505060206125a685828601612486565b9150509250929050565b6000602082840312156125c6576125c5612f29565b5b60006125d48482850161245c565b91505092915050565b6000602082840312156125f3576125f2612f29565b5b600061260184828501612471565b91505092915050565b6000602082840312156126205761261f612f29565b5b600061262e84828501612486565b91505092915050565b60006020828403121561264d5761264c612f29565b5b600061265b8482850161249b565b91505092915050565b61266d81612dd4565b82525050565b61267c81612de6565b82525050565b600061268d82612ca3565b6126978185612cae565b93506126a7818560208601612e37565b6126b081612f2e565b840191505092915050565b60006126c8602383612cae565b91506126d382612f3f565b604082019050919050565b60006126eb602283612cae565b91506126f682612f8e565b604082019050919050565b600061270e601c83612cae565b915061271982612fdd565b602082019050919050565b6000612731602683612cae565b915061273c82613006565b604082019050919050565b6000612754602283612cae565b915061275f82613055565b604082019050919050565b6000612777602783612cae565b9150612782826130a4565b604082019050919050565b600061279a601d83612cae565b91506127a5826130f3565b602082019050919050565b60006127bd602683612cae565b91506127c88261311c565b604082019050919050565b60006127e0602a83612cae565b91506127eb8261316b565b604082019050919050565b6000612803602b83612cae565b915061280e826131ba565b604082019050919050565b6000612826602b83612cae565b915061283182613209565b604082019050919050565b6000612849604883612cae565b915061285482613258565b606082019050919050565b600061286c602083612cae565b9150612877826132cd565b602082019050919050565b600061288f602e83612cae565b915061289a826132f6565b604082019050919050565b60006128b2602183612cae565b91506128bd82613345565b604082019050919050565b60006128d5601083612cae565b91506128e082613394565b602082019050919050565b60006128f8602583612cae565b9150612903826133bd565b604082019050919050565b600061291b602483612cae565b91506129268261340c565b604082019050919050565b600061293e602583612cae565b91506129498261345b565b604082019050919050565b6000612961601f83612cae565b915061296c826134aa565b602082019050919050565b61298081612e20565b82525050565b61298f81612e2a565b82525050565b60006020820190506129aa6000830184612664565b92915050565b60006020820190506129c56000830184612673565b92915050565b600060208201905081810360008301526129e58184612682565b905092915050565b60006020820190508181036000830152612a06816126bb565b9050919050565b60006020820190508181036000830152612a26816126de565b9050919050565b60006020820190508181036000830152612a4681612701565b9050919050565b60006020820190508181036000830152612a6681612724565b9050919050565b60006020820190508181036000830152612a8681612747565b9050919050565b60006020820190508181036000830152612aa68161276a565b9050919050565b60006020820190508181036000830152612ac68161278d565b9050919050565b60006020820190508181036000830152612ae6816127b0565b9050919050565b60006020820190508181036000830152612b06816127d3565b9050919050565b60006020820190508181036000830152612b26816127f6565b9050919050565b60006020820190508181036000830152612b4681612819565b9050919050565b60006020820190508181036000830152612b668161283c565b9050919050565b60006020820190508181036000830152612b868161285f565b9050919050565b60006020820190508181036000830152612ba681612882565b9050919050565b60006020820190508181036000830152612bc6816128a5565b9050919050565b60006020820190508181036000830152612be6816128c8565b9050919050565b60006020820190508181036000830152612c06816128eb565b9050919050565b60006020820190508181036000830152612c268161290e565b9050919050565b60006020820190508181036000830152612c4681612931565b9050919050565b60006020820190508181036000830152612c6681612954565b9050919050565b6000602082019050612c826000830184612977565b92915050565b6000602082019050612c9d6000830184612986565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612cca82612e20565b9150612cd583612e20565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0a57612d09612e9c565b5b828201905092915050565b6000612d2082612e20565b9150612d2b83612e20565b925082612d3b57612d3a612ecb565b5b828204905092915050565b6000612d5182612e20565b9150612d5c83612e20565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d9557612d94612e9c565b5b828202905092915050565b6000612dab82612e20565b9150612db683612e20565b925082821015612dc957612dc8612e9c565b5b828203905092915050565b6000612ddf82612e00565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e55578082015181840152602081019050612e3a565b83811115612e64576000848401525b50505050565b60006002820490506001821680612e8257607f821691505b60208210811415612e9657612e95612efa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79207369676e65722063616e206368616e676520746869732e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c792061646420746f6b656e73207468617420796f7560008201527f20686176652e2000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792067616d6520636f6e74726163742063616e2063616c6c207468697360008201527f2066756e6374696f6e2e00000000000000000000000000000000000000000000602082015250565b7f53656e646572206e6565647320746f206861766520656e6f75676820746f6b6560008201527f6e7320746f206275726e2e000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920746f78696320636f6e74726163742063616e2063616c6c2074686960008201527f732066756e6374696f6e2e000000000000000000000000000000000000000000602082015250565b7f55736572206e6565647320746f20757064617465207374616b65642062616c6160008201527f6e63652066697273742c20706c656173652063686f6f736520696e206f75722060208201527f776562736974652e000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206e6f7420617661696c61626c652c2074686520636f6e747260008201527f616374206973207061757365642e000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20626f747320616c6c6f7765642e00000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6134dc81612dd4565b81146134e757600080fd5b50565b6134f381612de6565b81146134fe57600080fd5b50565b61350a81612df2565b811461351557600080fd5b50565b61352181612e20565b811461352c57600080fd5b5056fea2646970667358221220254fbe7e85e43e514ed31eb8702853aa1f858bc3dff869c68dbc905d1634709a64736f6c63430008070033

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

000000000000000000000000d8723058f2b456484e3cde4ccfaea903116fa9e4000000000000000000000000a65aae78edef916d4102ba7b5672068c0d35fbff

-----Decoded View---------------
Arg [0] : _unity (address): 0xD8723058f2B456484E3cdE4ccfaeA903116fA9e4
Arg [1] : _signerRole (address): 0xA65aae78EdEF916d4102BA7b5672068C0D35fbff

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d8723058f2b456484e3cde4ccfaea903116fa9e4
Arg [1] : 000000000000000000000000a65aae78edef916d4102ba7b5672068c0d35fbff


Deployed Bytecode Sourcemap

74383:3633:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63517:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65868:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64637:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74561:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66649:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76557:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75484:344;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64479:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77842:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67353:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74490:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77720:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77189:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75085:391;;;:::i;:::-;;74741:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76351:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74632:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74458:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64808:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49220:103;;;:::i;:::-;;77594:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48569:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63736:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68096:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65141:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76140:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74687:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74525:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65397:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77484:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49478:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77391:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63517:100;63571:13;63604:5;63597:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63517:100;:::o;65868:201::-;65951:4;65968:13;65984:12;:10;:12::i;:::-;65968:28;;66007:32;66016:5;66023:7;66032:6;66007:8;:32::i;:::-;66057:4;66050:11;;;65868:201;;;;:::o;64637:108::-;64698:7;64725:12;;64718:19;;64637:108;:::o;74561:45::-;;;;:::o;66649:295::-;66780:4;66797:15;66815:12;:10;:12::i;:::-;66797:30;;66838:38;66854:4;66860:7;66869:6;66838:15;:38::i;:::-;66887:27;66897:4;66903:2;66907:6;66887:9;:27::i;:::-;66932:4;66925:11;;;66649:295;;;;;:::o;76557:315::-;76621:7;76665:1;76644:10;:17;76655:5;76644:17;;;;;;;;;;;;;;;;:22;76641:61;;;76689:1;76682:8;;;;76641:61;76714:11;76773:2;76768;76747:10;:17;76758:5;76747:17;;;;;;;;;;;;;;;;76729:15;:35;;;;:::i;:::-;76728:42;;;;:::i;:::-;:47;;;;:::i;:::-;76714:61;;76780:17;76833:3;76812:17;76823:5;76812:10;:17::i;:::-;76801:8;;:28;;;;:::i;:::-;76800:36;;;;:::i;:::-;76780:56;;76858:9;76851:16;;;;76557:315;;;;:::o;75484:344::-;75000:6;;;;;;;;;;;74999:7;74991:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;75582:6:::1;75551:37;;:5;;;;;;;;;;;:15;;;75567:10;75551:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;75543:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;75716:6;:4;:6::i;:::-;75763;75735:34;;:13;:25;75749:10;75735:25;;;;;;;;;;;;;;;:34;;;;75805:15;75780:10;:22;75791:10;75780:22;;;;;;;;;;;;;;;:40;;;;75484:344:::0;:::o;64479:93::-;64537:5;64562:2;64555:9;;64479:93;:::o;77842:171::-;77922:10;;;;;;;;;;;77908:24;;:10;:24;;;77900:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;78001:4;77976:10;:22;77987:10;77976:22;;;;;;;;;;;;;;;:29;;;;77842:171;:::o;67353:240::-;67441:4;67458:13;67474:12;:10;:12::i;:::-;67458:28;;67497:66;67506:5;67513:7;67552:10;67522:11;:18;67534:5;67522:18;;;;;;;;;;;;;;;:27;67541:7;67522:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;67497:8;:66::i;:::-;67581:4;67574:11;;;67353:240;;;;:::o;74490:28::-;;;;;;;;;;;;;:::o;77720:114::-;48800:12;:10;:12::i;:::-;48789:23;;:7;:5;:7::i;:::-;:23;;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77813:13:::1;77798:12;;:28;;;;;;;;;;;;;;;;;;77720:114:::0;:::o;77189:194::-;75000:6;;;;;;;;;;;74999:7;74991:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;77282:7:::1;77257:21;77267:10;77257:9;:21::i;:::-;:32;;77249:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;77352:26;77358:10;77370:7;77352:5;:26::i;:::-;77189:194:::0;:::o;75085:391::-;75000:6;;;;;;;;;;;74999:7;74991:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;75164:1:::1;75139:10;:22;75150:10;75139:22;;;;;;;;;;;;;;;;:26;75131:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;75255:6;:4;:6::i;:::-;75299:15;75274:10;:22;75285:10;75274:22;;;;;;;;;;;;;;;:40;;;;75358:5;;;;;;;;;;;:15;;;75374:10;75358:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75330:13;:25;75344:10;75330:25;;;;;;;;;;;;;;;;:55;75327:142;;;75430:5;;;;;;;;;;;:15;;;75446:10;75430:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75402:13;:25;75416:10;75402:25;;;;;;;;;;;;;;;:55;;;;75327:142;75085:391::o:0;74741:26::-;;;;;;;;;;;;;:::o;76351:197::-;75000:6;;;;;;;;;;;74999:7;74991:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;76450:12:::1;;;;;;;;;;;76436:26;;:10;:26;;;76428:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;76522:18;76528:3;76533:6;76522:5;:18::i;:::-;76351:197:::0;;:::o;74632:48::-;;;;;;;;;;;;;;;;;:::o;74458:25::-;;;;;;;;;;;;;:::o;64808:127::-;64882:7;64909:9;:18;64919:7;64909:18;;;;;;;;;;;;;;;;64902:25;;64808:127;;;:::o;49220:103::-;48800:12;:10;:12::i;:::-;48789:23;;:7;:5;:7::i;:::-;:23;;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49285:30:::1;49312:1;49285:18;:30::i;:::-;49220:103::o:0;77594:118::-;48800:12;:10;:12::i;:::-;48789:23;;:7;:5;:7::i;:::-;:23;;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77690:14:::1;77674:13;;:30;;;;;;;;;;;;;;;;;;77594:118:::0;:::o;48569:87::-;48615:7;48642:6;;;;;;;;;;;48635:13;;48569:87;:::o;63736:104::-;63792:13;63825:7;63818:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63736:104;:::o;68096:438::-;68189:4;68206:13;68222:12;:10;:12::i;:::-;68206:28;;68245:24;68272:11;:18;68284:5;68272:18;;;;;;;;;;;;;;;:27;68291:7;68272:27;;;;;;;;;;;;;;;;68245:54;;68338:15;68318:16;:35;;68310:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;68431:60;68440:5;68447:7;68475:15;68456:16;:34;68431:8;:60::i;:::-;68522:4;68515:11;;;;68096:438;;;;:::o;65141:193::-;65220:4;65237:13;65253:12;:10;:12::i;:::-;65237:28;;65276;65286:5;65293:2;65297:6;65276:9;:28::i;:::-;65322:4;65315:11;;;65141:193;;;;:::o;76140:200::-;75000:6;;;;;;;;;;;74999:7;74991:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;76240:13:::1;;;;;;;;;;;76226:27;;:10;:27;;;76218:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;76314:18;76320:3;76325:6;76314:5;:18::i;:::-;76140:200:::0;;:::o;74687:45::-;;;;;;;;;;;;;;;;;:::o;74525:27::-;;;;;;;;;;;;;:::o;65397:151::-;65486:7;65513:11;:18;65525:5;65513:18;;;;;;;;;;;;;;;:27;65532:7;65513:27;;;;;;;;;;;;;;;;65506:34;;65397:151;;;;:::o;77484:102::-;48800:12;:10;:12::i;:::-;48789:23;;:7;:5;:7::i;:::-;:23;;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77569:9:::1;77558:8;:20;;;;77484:102:::0;:::o;49478:201::-;48800:12;:10;:12::i;:::-;48789:23;;:7;:5;:7::i;:::-;:23;;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49587:1:::1;49567:22;;:8;:22;;;;49559:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49643:28;49662:8;49643:18;:28::i;:::-;49478:201:::0;:::o;77391:85::-;48800:12;:10;:12::i;:::-;48789:23;;:7;:5;:7::i;:::-;:23;;;48781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77462:6:::1;77453;;:15;;;;;;;;;;;;;;;;;;77391:85:::0;:::o;30465:98::-;30518:7;30545:10;30538:17;;30465:98;:::o;71732:380::-;71885:1;71868:19;;:5;:19;;;;71860:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71966:1;71947:21;;:7;:21;;;;71939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72050:6;72020:11;:18;72032:5;72020:18;;;;;;;;;;;;;;;:27;72039:7;72020:27;;;;;;;;;;;;;;;:36;;;;72088:7;72072:32;;72081:5;72072:32;;;72097:6;72072:32;;;;;;:::i;:::-;;;;;;;;71732:380;;;:::o;72399:453::-;72534:24;72561:25;72571:5;72578:7;72561:9;:25::i;:::-;72534:52;;72621:17;72601:16;:37;72597:248;;72683:6;72663:16;:26;;72655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72767:51;72776:5;72783:7;72811:6;72792:16;:25;72767:8;:51::i;:::-;72597:248;72523:329;72399:453;;;:::o;69013:671::-;69160:1;69144:18;;:4;:18;;;;69136:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69237:1;69223:16;;:2;:16;;;;69215:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;69292:38;69313:4;69319:2;69323:6;69292:20;:38::i;:::-;69343:19;69365:9;:15;69375:4;69365:15;;;;;;;;;;;;;;;;69343:37;;69414:6;69399:11;:21;;69391:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;69531:6;69517:11;:20;69499:9;:15;69509:4;69499:15;;;;;;;;;;;;;;;:38;;;;69576:6;69559:9;:13;69569:2;69559:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;69615:2;69600:26;;69609:4;69600:26;;;69619:6;69600:26;;;;;;:::i;:::-;;;;;;;;69639:37;69659:4;69665:2;69669:6;69639:19;:37::i;:::-;69125:559;69013:671;;;:::o;76880:297::-;76937:7;76957:25;76985:13;:20;76999:5;76985:20;;;;;;;;;;;;;;;;76957:48;;77041:5;;;;;;;;;;;:15;;;77057:5;77041:22;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77021:17;:42;77018:115;;;77099:5;;;;;;;;;;;:15;;;77115:5;77099:22;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77079:42;;77018:115;77152:17;77145:24;;;76880:297;;;:::o;75836:296::-;75000:6;;;;;;;;;;;74999:7;74991:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;75901:10:::1;75888:23;;:9;:23;;;75880:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;75945:11;76009:2;76004::::0;75978:10:::1;:22;75989:10;75978:22;;;;;;;;;;;;;;;;75960:15;:40;;;;:::i;:::-;75959:47;;;;:::i;:::-;:52;;;;:::i;:::-;75945:66;;76022:17;76080:3;76054:22;76065:10;76054;:22::i;:::-;76043:8;;:33;;;;:::i;:::-;76042:41;;;;:::i;:::-;76022:61;;76096:28;76102:10;76114:9;76096:5;:28::i;:::-;75869:263;;75836:296::o:0;70703:591::-;70806:1;70787:21;;:7;:21;;;;70779:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;70859:49;70880:7;70897:1;70901:6;70859:20;:49::i;:::-;70921:22;70946:9;:18;70956:7;70946:18;;;;;;;;;;;;;;;;70921:43;;71001:6;70983:14;:24;;70975:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;71120:6;71103:14;:23;71082:9;:18;71092:7;71082:18;;;;;;;;;;;;;;;:44;;;;71164:6;71148:12;;:22;;;;;;;:::i;:::-;;;;;;;;71214:1;71188:37;;71197:7;71188:37;;;71218:6;71188:37;;;;;;:::i;:::-;;;;;;;;71238:48;71258:7;71275:1;71279:6;71238:19;:48::i;:::-;70768:526;70703:591;;:::o;69971:399::-;70074:1;70055:21;;:7;:21;;;;70047:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70125:49;70154:1;70158:7;70167:6;70125:20;:49::i;:::-;70203:6;70187:12;;:22;;;;;;;:::i;:::-;;;;;;;;70242:6;70220:9;:18;70230:7;70220:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;70285:7;70264:37;;70281:1;70264:37;;;70294:6;70264:37;;;;;;:::i;:::-;;;;;;;;70314:48;70342:1;70346:7;70355:6;70314:19;:48::i;:::-;69971:399;;:::o;49839:191::-;49913:16;49932:6;;;;;;;;;;;49913:25;;49958:8;49949:6;;:17;;;;;;;;;;;;;;;;;;50013:8;49982:40;;50003:8;49982:40;;;;;;;;;;;;49902:128;49839:191;:::o;73452:125::-;;;;:::o;74181:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:137::-;336:5;374:6;361:20;352:29;;390:32;416:5;390:32;:::i;:::-;291:137;;;;:::o;434:139::-;480:5;518:6;505:20;496:29;;534:33;561:5;534:33;:::i;:::-;434:139;;;;:::o;579:143::-;636:5;667:6;661:13;652:22;;683:33;710:5;683:33;:::i;:::-;579:143;;;;:::o;728:329::-;787:6;836:2;824:9;815:7;811:23;807:32;804:119;;;842:79;;:::i;:::-;804:119;962:1;987:53;1032:7;1023:6;1012:9;1008:22;987:53;:::i;:::-;977:63;;933:117;728:329;;;;:::o;1063:474::-;1131:6;1139;1188:2;1176:9;1167:7;1163:23;1159:32;1156:119;;;1194:79;;:::i;:::-;1156:119;1314:1;1339:53;1384:7;1375:6;1364:9;1360:22;1339:53;:::i;:::-;1329:63;;1285:117;1441:2;1467:53;1512:7;1503:6;1492:9;1488:22;1467:53;:::i;:::-;1457:63;;1412:118;1063:474;;;;;:::o;1543:619::-;1620:6;1628;1636;1685:2;1673:9;1664:7;1660:23;1656:32;1653:119;;;1691:79;;:::i;:::-;1653:119;1811:1;1836:53;1881:7;1872:6;1861:9;1857:22;1836:53;:::i;:::-;1826:63;;1782:117;1938:2;1964:53;2009:7;2000:6;1989:9;1985:22;1964:53;:::i;:::-;1954:63;;1909:118;2066:2;2092:53;2137:7;2128:6;2117:9;2113:22;2092:53;:::i;:::-;2082:63;;2037:118;1543:619;;;;;:::o;2168:474::-;2236:6;2244;2293:2;2281:9;2272:7;2268:23;2264:32;2261:119;;;2299:79;;:::i;:::-;2261:119;2419:1;2444:53;2489:7;2480:6;2469:9;2465:22;2444:53;:::i;:::-;2434:63;;2390:117;2546:2;2572:53;2617:7;2608:6;2597:9;2593:22;2572:53;:::i;:::-;2562:63;;2517:118;2168:474;;;;;:::o;2648:323::-;2704:6;2753:2;2741:9;2732:7;2728:23;2724:32;2721:119;;;2759:79;;:::i;:::-;2721:119;2879:1;2904:50;2946:7;2937:6;2926:9;2922:22;2904:50;:::i;:::-;2894:60;;2850:114;2648:323;;;;:::o;2977:327::-;3035:6;3084:2;3072:9;3063:7;3059:23;3055:32;3052:119;;;3090:79;;:::i;:::-;3052:119;3210:1;3235:52;3279:7;3270:6;3259:9;3255:22;3235:52;:::i;:::-;3225:62;;3181:116;2977:327;;;;:::o;3310:329::-;3369:6;3418:2;3406:9;3397:7;3393:23;3389:32;3386:119;;;3424:79;;:::i;:::-;3386:119;3544:1;3569:53;3614:7;3605:6;3594:9;3590:22;3569:53;:::i;:::-;3559:63;;3515:117;3310:329;;;;:::o;3645:351::-;3715:6;3764:2;3752:9;3743:7;3739:23;3735:32;3732:119;;;3770:79;;:::i;:::-;3732:119;3890:1;3915:64;3971:7;3962:6;3951:9;3947:22;3915:64;:::i;:::-;3905:74;;3861:128;3645:351;;;;:::o;4002:118::-;4089:24;4107:5;4089:24;:::i;:::-;4084:3;4077:37;4002:118;;:::o;4126:109::-;4207:21;4222:5;4207:21;:::i;:::-;4202:3;4195:34;4126:109;;:::o;4241:364::-;4329:3;4357:39;4390:5;4357:39;:::i;:::-;4412:71;4476:6;4471:3;4412:71;:::i;:::-;4405:78;;4492:52;4537:6;4532:3;4525:4;4518:5;4514:16;4492:52;:::i;:::-;4569:29;4591:6;4569:29;:::i;:::-;4564:3;4560:39;4553:46;;4333:272;4241:364;;;;:::o;4611:366::-;4753:3;4774:67;4838:2;4833:3;4774:67;:::i;:::-;4767:74;;4850:93;4939:3;4850:93;:::i;:::-;4968:2;4963:3;4959:12;4952:19;;4611:366;;;:::o;4983:::-;5125:3;5146:67;5210:2;5205:3;5146:67;:::i;:::-;5139:74;;5222:93;5311:3;5222:93;:::i;:::-;5340:2;5335:3;5331:12;5324:19;;4983:366;;;:::o;5355:::-;5497:3;5518:67;5582:2;5577:3;5518:67;:::i;:::-;5511:74;;5594:93;5683:3;5594:93;:::i;:::-;5712:2;5707:3;5703:12;5696:19;;5355:366;;;:::o;5727:::-;5869:3;5890:67;5954:2;5949:3;5890:67;:::i;:::-;5883:74;;5966:93;6055:3;5966:93;:::i;:::-;6084:2;6079:3;6075:12;6068:19;;5727:366;;;:::o;6099:::-;6241:3;6262:67;6326:2;6321:3;6262:67;:::i;:::-;6255:74;;6338:93;6427:3;6338:93;:::i;:::-;6456:2;6451:3;6447:12;6440:19;;6099:366;;;:::o;6471:::-;6613:3;6634:67;6698:2;6693:3;6634:67;:::i;:::-;6627:74;;6710:93;6799:3;6710:93;:::i;:::-;6828:2;6823:3;6819:12;6812:19;;6471:366;;;:::o;6843:::-;6985:3;7006:67;7070:2;7065:3;7006:67;:::i;:::-;6999:74;;7082:93;7171:3;7082:93;:::i;:::-;7200:2;7195:3;7191:12;7184:19;;6843:366;;;:::o;7215:::-;7357:3;7378:67;7442:2;7437:3;7378:67;:::i;:::-;7371:74;;7454:93;7543:3;7454:93;:::i;:::-;7572:2;7567:3;7563:12;7556:19;;7215:366;;;:::o;7587:::-;7729:3;7750:67;7814:2;7809:3;7750:67;:::i;:::-;7743:74;;7826:93;7915:3;7826:93;:::i;:::-;7944:2;7939:3;7935:12;7928:19;;7587:366;;;:::o;7959:::-;8101:3;8122:67;8186:2;8181:3;8122:67;:::i;:::-;8115:74;;8198:93;8287:3;8198:93;:::i;:::-;8316:2;8311:3;8307:12;8300:19;;7959:366;;;:::o;8331:::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:118::-;12138:24;12156:5;12138:24;:::i;:::-;12133:3;12126:37;12051:118;;:::o;12175:112::-;12258:22;12274:5;12258:22;:::i;:::-;12253:3;12246:35;12175:112;;:::o;12293:222::-;12386:4;12424:2;12413:9;12409:18;12401:26;;12437:71;12505:1;12494:9;12490:17;12481:6;12437:71;:::i;:::-;12293:222;;;;:::o;12521:210::-;12608:4;12646:2;12635:9;12631:18;12623:26;;12659:65;12721:1;12710:9;12706:17;12697:6;12659:65;:::i;:::-;12521:210;;;;:::o;12737:313::-;12850:4;12888:2;12877:9;12873:18;12865:26;;12937:9;12931:4;12927:20;12923:1;12912:9;12908:17;12901:47;12965:78;13038:4;13029:6;12965:78;:::i;:::-;12957:86;;12737:313;;;;:::o;13056:419::-;13222:4;13260:2;13249:9;13245:18;13237:26;;13309:9;13303:4;13299:20;13295:1;13284:9;13280:17;13273:47;13337:131;13463:4;13337:131;:::i;:::-;13329:139;;13056:419;;;:::o;13481:::-;13647:4;13685:2;13674:9;13670:18;13662:26;;13734:9;13728:4;13724:20;13720:1;13709:9;13705:17;13698:47;13762:131;13888:4;13762:131;:::i;:::-;13754:139;;13481:419;;;:::o;13906:::-;14072:4;14110:2;14099:9;14095:18;14087:26;;14159:9;14153:4;14149:20;14145:1;14134:9;14130:17;14123:47;14187:131;14313:4;14187:131;:::i;:::-;14179:139;;13906:419;;;:::o;14331:::-;14497:4;14535:2;14524:9;14520:18;14512:26;;14584:9;14578:4;14574:20;14570:1;14559:9;14555:17;14548:47;14612:131;14738:4;14612:131;:::i;:::-;14604:139;;14331:419;;;:::o;14756:::-;14922:4;14960:2;14949:9;14945:18;14937:26;;15009:9;15003:4;14999:20;14995:1;14984:9;14980:17;14973:47;15037:131;15163:4;15037:131;:::i;:::-;15029:139;;14756:419;;;:::o;15181:::-;15347:4;15385:2;15374:9;15370:18;15362:26;;15434:9;15428:4;15424:20;15420:1;15409:9;15405:17;15398:47;15462:131;15588:4;15462:131;:::i;:::-;15454:139;;15181:419;;;:::o;15606:::-;15772:4;15810:2;15799:9;15795:18;15787:26;;15859:9;15853:4;15849:20;15845:1;15834:9;15830:17;15823:47;15887:131;16013:4;15887:131;:::i;:::-;15879:139;;15606:419;;;:::o;16031:::-;16197:4;16235:2;16224:9;16220:18;16212:26;;16284:9;16278:4;16274:20;16270:1;16259:9;16255:17;16248:47;16312:131;16438:4;16312:131;:::i;:::-;16304:139;;16031:419;;;:::o;16456:::-;16622:4;16660:2;16649:9;16645:18;16637:26;;16709:9;16703:4;16699:20;16695:1;16684:9;16680:17;16673:47;16737:131;16863:4;16737:131;:::i;:::-;16729:139;;16456:419;;;:::o;16881:::-;17047:4;17085:2;17074:9;17070:18;17062:26;;17134:9;17128:4;17124:20;17120:1;17109:9;17105:17;17098:47;17162:131;17288:4;17162:131;:::i;:::-;17154:139;;16881:419;;;:::o;17306:::-;17472:4;17510:2;17499:9;17495:18;17487:26;;17559:9;17553:4;17549:20;17545:1;17534:9;17530:17;17523:47;17587:131;17713:4;17587:131;:::i;:::-;17579:139;;17306:419;;;:::o;17731:::-;17897:4;17935:2;17924:9;17920:18;17912:26;;17984:9;17978:4;17974:20;17970:1;17959:9;17955:17;17948:47;18012:131;18138:4;18012:131;:::i;:::-;18004:139;;17731:419;;;:::o;18156:::-;18322:4;18360:2;18349:9;18345:18;18337:26;;18409:9;18403:4;18399:20;18395:1;18384:9;18380:17;18373:47;18437:131;18563:4;18437:131;:::i;:::-;18429:139;;18156:419;;;:::o;18581:::-;18747:4;18785:2;18774:9;18770:18;18762:26;;18834:9;18828:4;18824:20;18820:1;18809:9;18805:17;18798:47;18862:131;18988:4;18862:131;:::i;:::-;18854:139;;18581:419;;;:::o;19006:::-;19172:4;19210:2;19199:9;19195:18;19187:26;;19259:9;19253:4;19249:20;19245:1;19234:9;19230:17;19223:47;19287:131;19413:4;19287:131;:::i;:::-;19279:139;;19006:419;;;:::o;19431:::-;19597:4;19635:2;19624:9;19620:18;19612:26;;19684:9;19678:4;19674:20;19670:1;19659:9;19655:17;19648:47;19712:131;19838:4;19712:131;:::i;:::-;19704:139;;19431:419;;;:::o;19856:::-;20022:4;20060:2;20049:9;20045:18;20037:26;;20109:9;20103:4;20099:20;20095:1;20084:9;20080:17;20073:47;20137:131;20263:4;20137:131;:::i;:::-;20129:139;;19856:419;;;:::o;20281:::-;20447:4;20485:2;20474:9;20470:18;20462:26;;20534:9;20528:4;20524:20;20520:1;20509:9;20505:17;20498:47;20562:131;20688:4;20562:131;:::i;:::-;20554:139;;20281:419;;;:::o;20706:::-;20872:4;20910:2;20899:9;20895:18;20887:26;;20959:9;20953:4;20949:20;20945:1;20934:9;20930:17;20923:47;20987:131;21113:4;20987:131;:::i;:::-;20979:139;;20706:419;;;:::o;21131:::-;21297:4;21335:2;21324:9;21320:18;21312:26;;21384:9;21378:4;21374:20;21370:1;21359:9;21355:17;21348:47;21412:131;21538:4;21412:131;:::i;:::-;21404:139;;21131:419;;;:::o;21556:222::-;21649:4;21687:2;21676:9;21672:18;21664:26;;21700:71;21768:1;21757:9;21753:17;21744:6;21700:71;:::i;:::-;21556:222;;;;:::o;21784:214::-;21873:4;21911:2;21900:9;21896:18;21888:26;;21924:67;21988:1;21977:9;21973:17;21964:6;21924:67;:::i;:::-;21784:214;;;;:::o;22085:99::-;22137:6;22171:5;22165:12;22155:22;;22085:99;;;:::o;22190:169::-;22274:11;22308:6;22303:3;22296:19;22348:4;22343:3;22339:14;22324:29;;22190:169;;;;:::o;22365:305::-;22405:3;22424:20;22442:1;22424:20;:::i;:::-;22419:25;;22458:20;22476:1;22458:20;:::i;:::-;22453:25;;22612:1;22544:66;22540:74;22537:1;22534:81;22531:107;;;22618:18;;:::i;:::-;22531:107;22662:1;22659;22655:9;22648:16;;22365:305;;;;:::o;22676:185::-;22716:1;22733:20;22751:1;22733:20;:::i;:::-;22728:25;;22767:20;22785:1;22767:20;:::i;:::-;22762:25;;22806:1;22796:35;;22811:18;;:::i;:::-;22796:35;22853:1;22850;22846:9;22841:14;;22676:185;;;;:::o;22867:348::-;22907:7;22930:20;22948:1;22930:20;:::i;:::-;22925:25;;22964:20;22982:1;22964:20;:::i;:::-;22959:25;;23152:1;23084:66;23080:74;23077:1;23074:81;23069:1;23062:9;23055:17;23051:105;23048:131;;;23159:18;;:::i;:::-;23048:131;23207:1;23204;23200:9;23189:20;;22867:348;;;;:::o;23221:191::-;23261:4;23281:20;23299:1;23281:20;:::i;:::-;23276:25;;23315:20;23333:1;23315:20;:::i;:::-;23310:25;;23354:1;23351;23348:8;23345:34;;;23359:18;;:::i;:::-;23345:34;23404:1;23401;23397:9;23389:17;;23221:191;;;;:::o;23418:96::-;23455:7;23484:24;23502:5;23484:24;:::i;:::-;23473:35;;23418:96;;;:::o;23520:90::-;23554:7;23597:5;23590:13;23583:21;23572:32;;23520:90;;;:::o;23616:89::-;23652:7;23692:6;23685:5;23681:18;23670:29;;23616:89;;;:::o;23711:126::-;23748:7;23788:42;23781:5;23777:54;23766:65;;23711:126;;;:::o;23843:77::-;23880:7;23909:5;23898:16;;23843:77;;;:::o;23926:86::-;23961:7;24001:4;23994:5;23990:16;23979:27;;23926:86;;;:::o;24018:307::-;24086:1;24096:113;24110:6;24107:1;24104:13;24096:113;;;24195:1;24190:3;24186:11;24180:18;24176:1;24171:3;24167:11;24160:39;24132:2;24129:1;24125:10;24120:15;;24096:113;;;24227:6;24224:1;24221:13;24218:101;;;24307:1;24298:6;24293:3;24289:16;24282:27;24218:101;24067:258;24018:307;;;:::o;24331:320::-;24375:6;24412:1;24406:4;24402:12;24392:22;;24459:1;24453:4;24449:12;24480:18;24470:81;;24536:4;24528:6;24524:17;24514:27;;24470:81;24598:2;24590:6;24587:14;24567:18;24564:38;24561:84;;;24617:18;;:::i;:::-;24561:84;24382:269;24331:320;;;:::o;24657:180::-;24705:77;24702:1;24695:88;24802:4;24799:1;24792:15;24826:4;24823:1;24816:15;24843:180;24891:77;24888:1;24881:88;24988:4;24985:1;24978:15;25012:4;25009:1;25002:15;25029:180;25077:77;25074:1;25067:88;25174:4;25171:1;25164:15;25198:4;25195:1;25188:15;25338:117;25447:1;25444;25437:12;25461:102;25502:6;25553:2;25549:7;25544:2;25537:5;25533:14;25529:28;25519:38;;25461:102;;;:::o;25569:222::-;25709:34;25705:1;25697:6;25693:14;25686:58;25778:5;25773:2;25765:6;25761:15;25754:30;25569:222;:::o;25797:221::-;25937:34;25933:1;25925:6;25921:14;25914:58;26006:4;26001:2;25993:6;25989:15;25982:29;25797:221;:::o;26024:178::-;26164:30;26160:1;26152:6;26148:14;26141:54;26024:178;:::o;26208:225::-;26348:34;26344:1;26336:6;26332:14;26325:58;26417:8;26412:2;26404:6;26400:15;26393:33;26208:225;:::o;26439:221::-;26579:34;26575:1;26567:6;26563:14;26556:58;26648:4;26643:2;26635:6;26631:15;26624:29;26439:221;:::o;26666:226::-;26806:34;26802:1;26794:6;26790:14;26783:58;26875:9;26870:2;26862:6;26858:15;26851:34;26666:226;:::o;26898:179::-;27038:31;27034:1;27026:6;27022:14;27015:55;26898:179;:::o;27083:225::-;27223:34;27219:1;27211:6;27207:14;27200:58;27292:8;27287:2;27279:6;27275:15;27268:33;27083:225;:::o;27314:229::-;27454:34;27450:1;27442:6;27438:14;27431:58;27523:12;27518:2;27510:6;27506:15;27499:37;27314:229;:::o;27549:230::-;27689:34;27685:1;27677:6;27673:14;27666:58;27758:13;27753:2;27745:6;27741:15;27734:38;27549:230;:::o;27785:::-;27925:34;27921:1;27913:6;27909:14;27902:58;27994:13;27989:2;27981:6;27977:15;27970:38;27785:230;:::o;28021:296::-;28161:34;28157:1;28149:6;28145:14;28138:58;28230:34;28225:2;28217:6;28213:15;28206:59;28299:10;28294:2;28286:6;28282:15;28275:35;28021:296;:::o;28323:182::-;28463:34;28459:1;28451:6;28447:14;28440:58;28323:182;:::o;28511:233::-;28651:34;28647:1;28639:6;28635:14;28628:58;28720:16;28715:2;28707:6;28703:15;28696:41;28511:233;:::o;28750:220::-;28890:34;28886:1;28878:6;28874:14;28867:58;28959:3;28954:2;28946:6;28942:15;28935:28;28750:220;:::o;28976:166::-;29116:18;29112:1;29104:6;29100:14;29093:42;28976:166;:::o;29148:224::-;29288:34;29284:1;29276:6;29272:14;29265:58;29357:7;29352:2;29344:6;29340:15;29333:32;29148:224;:::o;29378:223::-;29518:34;29514:1;29506:6;29502:14;29495:58;29587:6;29582:2;29574:6;29570:15;29563:31;29378:223;:::o;29607:224::-;29747:34;29743:1;29735:6;29731:14;29724:58;29816:7;29811:2;29803:6;29799:15;29792:32;29607:224;:::o;29837:181::-;29977:33;29973:1;29965:6;29961:14;29954:57;29837:181;:::o;30024:122::-;30097:24;30115:5;30097:24;:::i;:::-;30090:5;30087:35;30077:63;;30136:1;30133;30126:12;30077:63;30024:122;:::o;30152:116::-;30222:21;30237:5;30222:21;:::i;:::-;30215:5;30212:32;30202:60;;30258:1;30255;30248:12;30202:60;30152:116;:::o;30274:120::-;30346:23;30363:5;30346:23;:::i;:::-;30339:5;30336:34;30326:62;;30384:1;30381;30374:12;30326:62;30274:120;:::o;30400:122::-;30473:24;30491:5;30473:24;:::i;:::-;30466:5;30463:35;30453:63;;30512:1;30509;30502:12;30453:63;30400:122;:::o

Swarm Source

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