ETH Price: $3,433.12 (+7.55%)
Gas: 15 Gwei

Token

Luminal Genesis (LUMINAL)
 

Overview

Max Total Supply

444 LUMINAL

Holders

225

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LUMINAL
0x0ec8249AeaCd3f32B05EaAa0A28d092b1182e9e8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Luminal Genesis is a collection of 444 alien worlds by established web3 artist, nprussell. This NFT acts as a FREE mint pass to Luminal Universe (an upcoming 1444 PFP collection, which completes the Luminal collection). Holding a Luminal Genesis NFT grants you a FREE mint pass to all of nprussell's future work.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LuminalGenesis

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

// 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;
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

// 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;
        }
    }
}

pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
    }
}

pragma solidity ^0.8.7;

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) 
        public 
        view 
        virtual 
        override 
        returns (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

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

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.7;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
    }
}



pragma solidity ^0.8.11;
pragma abicoder v2;

contract LuminalGenesis is ERC721Enumerable, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  
  bool public saleIsActive = false;
  uint256 public tokenPrice = 20000000000000000;
  
  uint public constant MAX_TOKEN_PER_TXN = 2;
  
  uint256 public constant MAX_TOKENS = 445;
  uint public tokenReserve = 14;
  address public proxyRegistryAddress;
  mapping(address => uint256) private allowance;
  string public baseURI;
    
  constructor() ERC721("Luminal Genesis", "LUMINAL") {
    setBaseURI("https://blam.io/api/luminal-genesis/lm/");
    proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
  }

  function updateTokenPrice(uint256 newPrice) public onlyOwner {
    require(!saleIsActive, "Sale must be inactive to change token price");
    tokenPrice = newPrice;
  }

  
  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0);

    address owner = payable(_msgSender());
    address payoutAddress1 = payable(0xAc01B61D659bD72b120DB7c5289BBFc020771943);
    uint256 payoutPayment1 = balance.mul(2).div(100);
    address payoutAddress2 = payable(0x8fc1F1F48cBB2e4A0f1dfeB9e6019606b307C3c4);
    uint256 payoutPayment2 = balance.mul(3).div(100);
    
    (bool success1, ) = payoutAddress1.call{value: payoutPayment1}("");
    require(success1, "Failed to send.");
    
    (bool success2, ) = payoutAddress2.call{value: payoutPayment2}("");
    require(success2, "Failed to send.");
    
    (bool ownerSuccess, ) = owner.call{value: address(this).balance}("");
    require(ownerSuccess, "Failed to send to Owner.");
  }
  
  function reserveTokens(address _to, uint256 _reserveAmount) public onlyOwner {        
    uint supply = totalSupply();
    require(_reserveAmount > 0 && _reserveAmount <= tokenReserve, "Not enough reserve left for team");
    for (uint i = 0; i < _reserveAmount; i++) {
        _safeMint(_to, supply + i);
    }
    tokenReserve = tokenReserve.sub(_reserveAmount);
  }
  
  function setBaseURI(string memory _baseURI) public onlyOwner {
    baseURI = _baseURI;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }
  
  function mintToken(uint numberOfTokens) public payable {
    require(allowance[_msgSender()] < 1, "You have already reached the max number of mints with this wallet.");
    require(saleIsActive, "Sale must be active to mint");
    require(numberOfTokens < MAX_TOKEN_PER_TXN, "The max mint per transaction is 1");
    require(totalSupply().add(numberOfTokens) < MAX_TOKENS, "Purchase would exceed max supply");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether value sent is not correct");
    
    for(uint i; i < numberOfTokens; i++) {
      _safeMint(_msgSender(), totalSupply());
    }
    
    allowance[_msgSender()] += numberOfTokens;
  }
  
  function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
  }

  function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
    OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(_owner)) == operator) return true;

    return super.isApprovedForAll(_owner, operator);
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff1916905566470de4df820000600855600e6009553480156200002b57600080fd5b50604080518082018252600f81526e4c756d696e616c2047656e6573697360881b6020808301918252835180850190945260078452661315535253905360ca1b9084015281519192916200008291600091620001db565b50805162000098906001906020840190620001db565b505050620000b5620000af6200010d60201b60201c565b62000111565b6001600681905550620000e1604051806060016040528060278152602001620026f16027913962000163565b600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055620002be565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d790600c906020840190620001db565b5050565b828054620001e99062000281565b90600052602060002090601f0160209004810192826200020d576000855562000258565b82601f106200022857805160ff191683800117855562000258565b8280016001018555821562000258579182015b82811115620002585782518255916020019190600101906200023b565b50620002669291506200026a565b5090565b5b808211156200026657600081556001016200026b565b600181811c908216806200029657607f821691505b60208210811415620002b857634e487b7160e01b600052602260045260246000fd5b50919050565b61242380620002ce6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063c634d032116100a0578063d26ea6c01161006f578063d26ea6c01461053e578063e985e9c51461055e578063eb8d24441461057e578063f2fde38b14610598578063f47c84c5146105b857600080fd5b8063c634d032146104d5578063c87b56dd146104e8578063cbcb317114610508578063cd7c03261461051e57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461046257806395d89b4114610480578063a22cb46514610495578063b88d4fde146104b557600080fd5b806370a08231146103f7578063715018a61461041757806378cf19e91461042c5780637ff9b5961461044c57600080fd5b80633ccfd60b11610185578063634da63a11610154578063634da63a1461038d5780636352211e146103a2578063676c0d77146103c25780636c0360eb146103e257600080fd5b80633ccfd60b1461031857806342842e0e1461032d5780634f6ccce71461034d57806355f804b31461036d57600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c35780632f745c59146102e357806334918dfd1461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d81565b6105ce565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6105f9565b60405161021f9190611df6565b34801561025657600080fd5b5061026a610265366004611e09565b61068b565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611e37565b610718565b005b3480156102b057600080fd5b506002545b60405190815260200161021f565b3480156102cf57600080fd5b506102a26102de366004611e63565b61082e565b3480156102ef57600080fd5b506102b56102fe366004611e37565b61085f565b34801561030f57600080fd5b506102a2610912565b34801561032457600080fd5b506102a2610950565b34801561033957600080fd5b506102a2610348366004611e63565b610bb6565b34801561035957600080fd5b506102b5610368366004611e09565b610bd1565b34801561037957600080fd5b506102a2610388366004611f30565b610c3e565b34801561039957600080fd5b506102b5600281565b3480156103ae57600080fd5b5061026a6103bd366004611e09565b610c7f565b3480156103ce57600080fd5b506102a26103dd366004611e09565b610d0b565b3480156103ee57600080fd5b5061023d610da1565b34801561040357600080fd5b506102b5610412366004611f79565b610e2f565b34801561042357600080fd5b506102a2610efd565b34801561043857600080fd5b506102a2610447366004611e37565b610f33565b34801561045857600080fd5b506102b560085481565b34801561046e57600080fd5b506005546001600160a01b031661026a565b34801561048c57600080fd5b5061023d61100e565b3480156104a157600080fd5b506102a26104b0366004611f96565b61101d565b3480156104c157600080fd5b506102a26104d0366004611fd4565b6110e2565b6102a26104e3366004611e09565b61111a565b3480156104f457600080fd5b5061023d610503366004611e09565b611365565b34801561051457600080fd5b506102b560095481565b34801561052a57600080fd5b50600a5461026a906001600160a01b031681565b34801561054a57600080fd5b506102a2610559366004611f79565b6113e6565b34801561056a57600080fd5b50610213610579366004612054565b611432565b34801561058a57600080fd5b506007546102139060ff1681565b3480156105a457600080fd5b506102a26105b3366004611f79565b6114f3565b3480156105c457600080fd5b506102b56101bd81565b60006001600160e01b0319821663780e9d6360e01b14806105f357506105f38261158e565b92915050565b60606000805461060890612082565b80601f016020809104026020016040519081016040528092919081815260200182805461063490612082565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000610696826115de565b6106fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061072382610c7f565b9050806001600160a01b0316836001600160a01b031614156107915760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f3565b336001600160a01b03821614806107ad57506107ad8133611432565b61081f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f3565b6108298383611628565b505050565b6108383382611696565b6108545760405162461bcd60e51b81526004016106f3906120bd565b610829838383611758565b600061086a83610e2f565b82106108885760405162461bcd60e51b81526004016106f39061210e565b6000805b6002548110156108f957600281815481106108a9576108a9612159565b6000918252602090912001546001600160a01b03868116911614156108e757838214156108d95791506105f39050565b816108e381612185565b9250505b806108f181612185565b91505061088c565b5060405162461bcd60e51b81526004016106f39061210e565b6005546001600160a01b0316331461093c5760405162461bcd60e51b81526004016106f3906121a0565b6007805460ff19811660ff90911615179055565b6005546001600160a01b0316331461097a5760405162461bcd60e51b81526004016106f3906121a0565b478061098557600080fd5b3373ac01b61d659bd72b120db7c5289bbfc02077194360006109b360646109ad8660026118ae565b906118c1565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c460006109dc60646109ad8860036118ae565b90506000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610a2b576040519150601f19603f3d011682016040523d82523d6000602084013e610a30565b606091505b5050905080610a735760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016106f3565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610ac0576040519150601f19603f3d011682016040523d82523d6000602084013e610ac5565b606091505b5050905080610b085760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016106f3565b6000876001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b55576040519150601f19603f3d011682016040523d82523d6000602084013e610b5a565b606091505b5050905080610bab5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e000000000000000060448201526064016106f3565b505050505050505050565b610829838383604051806020016040528060008152506110e2565b6002546000908210610c3a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106f3565b5090565b6005546001600160a01b03163314610c685760405162461bcd60e51b81526004016106f3906121a0565b8051610c7b90600c906020840190611cdb565b5050565b60008060028381548110610c9557610c95612159565b6000918252602090912001546001600160a01b03169050806105f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f3565b6005546001600160a01b03163314610d355760405162461bcd60e51b81526004016106f3906121a0565b60075460ff1615610d9c5760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b60648201526084016106f3565b600855565b600c8054610dae90612082565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda90612082565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b505050505081565b60006001600160a01b038216610e9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f3565b6000805b600254811015610ef65760028181548110610ebb57610ebb612159565b6000918252602090912001546001600160a01b0385811691161415610ee657610ee382612185565b91505b610eef81612185565b9050610e9e565b5092915050565b6005546001600160a01b03163314610f275760405162461bcd60e51b81526004016106f3906121a0565b610f3160006118cd565b565b6005546001600160a01b03163314610f5d5760405162461bcd60e51b81526004016106f3906121a0565b6000610f6860025490565b9050600082118015610f7c57506009548211155b610fc85760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016106f3565b60005b82811015610ff857610fe684610fe183856121d5565b61191f565b80610ff081612185565b915050610fcb565b506009546110069083611939565b600955505050565b60606001805461060890612082565b6001600160a01b0382163314156110765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ec3383611696565b6111085760405162461bcd60e51b81526004016106f3906120bd565b61111484848484611945565b50505050565b336000908152600b60205260409020546001116111aa5760405162461bcd60e51b815260206004820152604260248201527f596f75206861766520616c7265616479207265616368656420746865206d617860448201527f206e756d626572206f66206d696e7473207769746820746869732077616c6c656064820152613a1760f11b608482015260a4016106f3565b60075460ff166111fc5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106f3565b600281106112565760405162461bcd60e51b815260206004820152602160248201527f546865206d6178206d696e7420706572207472616e73616374696f6e206973206044820152603160f81b60648201526084016106f3565b6101bd61126c8261126660025490565b90611978565b106112b95760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106f3565b6008546112c690826118ae565b34146113145760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106f3565b60005b8181101561133d5761132b3360025461191f565b8061133581612185565b915050611317565b50336000908152600b60205260408120805483929061135d9084906121d5565b909155505050565b6060611370826115de565b6113b45760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106f3565b600c6113bf83611984565b6040516020016113d0929190612209565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146114105760405162461bcd60e51b81526004016106f3906121a0565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a891906122b0565b6001600160a01b031614156114c15760019150506105f3565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b0316331461151d5760405162461bcd60e51b81526004016106f3906121a0565b6001600160a01b0381166115825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f3565b61158b816118cd565b50565b60006001600160e01b031982166380ac58cd60e01b14806115bf57506001600160e01b03198216635b5e139f60e01b145b806105f357506301ffc9a760e01b6001600160e01b03198316146105f3565b600254600090821080156105f3575060006001600160a01b03166002838154811061160b5761160b612159565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165d82610c7f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116a1826115de565b6117025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f3565b600061170d83610c7f565b9050806001600160a01b0316846001600160a01b031614806117485750836001600160a01b031661173d8461068b565b6001600160a01b0316145b806114eb57506114eb8185611432565b826001600160a01b031661176b82610c7f565b6001600160a01b0316146117d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f3565b6001600160a01b0382166118355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f3565b611840600082611628565b816002828154811061185457611854612159565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006118ba82846122cd565b9392505050565b60006118ba8284612302565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c7b828260405180602001604052806000815250611a82565b60006118ba8284612316565b611950848484611758565b61195c84848484611ab5565b6111145760405162461bcd60e51b81526004016106f39061232d565b60006118ba82846121d5565b6060816119a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119d257806119bc81612185565b91506119cb9050600a83612302565b91506119ac565b60008167ffffffffffffffff8111156119ed576119ed611ea4565b6040519080825280601f01601f191660200182016040528015611a17576020820181803683370190505b5090505b84156114eb57611a2c600183612316565b9150611a39600a8661237f565b611a449060306121d5565b60f81b818381518110611a5957611a59612159565b60200101906001600160f81b031916908160001a905350611a7b600a86612302565b9450611a1b565b611a8c8383611bb3565b611a996000848484611ab5565b6108295760405162461bcd60e51b81526004016106f39061232d565b60006001600160a01b0384163b15611ba857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af9903390899088908890600401612393565b6020604051808303816000875af1925050508015611b34575060408051601f3d908101601f19168201909252611b31918101906123d0565b60015b611b8e573d808015611b62576040519150601f19603f3d011682016040523d82523d6000602084013e611b67565b606091505b508051611b865760405162461bcd60e51b81526004016106f39061232d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114eb565b506001949350505050565b6001600160a01b038216611c095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f3565b611c12816115de565b15611c5f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ce790612082565b90600052602060002090601f016020900481019282611d095760008555611d4f565b82601f10611d2257805160ff1916838001178555611d4f565b82800160010185558215611d4f579182015b82811115611d4f578251825591602001919060010190611d34565b50610c3a9291505b80821115610c3a5760008155600101611d57565b6001600160e01b03198116811461158b57600080fd5b600060208284031215611d9357600080fd5b81356118ba81611d6b565b60005b83811015611db9578181015183820152602001611da1565b838111156111145750506000910152565b60008151808452611de2816020860160208601611d9e565b601f01601f19169290920160200192915050565b6020815260006118ba6020830184611dca565b600060208284031215611e1b57600080fd5b5035919050565b6001600160a01b038116811461158b57600080fd5b60008060408385031215611e4a57600080fd5b8235611e5581611e22565b946020939093013593505050565b600080600060608486031215611e7857600080fd5b8335611e8381611e22565b92506020840135611e9381611e22565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ed557611ed5611ea4565b604051601f8501601f19908116603f01168101908282118183101715611efd57611efd611ea4565b81604052809350858152868686011115611f1657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f4257600080fd5b813567ffffffffffffffff811115611f5957600080fd5b8201601f81018413611f6a57600080fd5b6114eb84823560208401611eba565b600060208284031215611f8b57600080fd5b81356118ba81611e22565b60008060408385031215611fa957600080fd5b8235611fb481611e22565b915060208301358015158114611fc957600080fd5b809150509250929050565b60008060008060808587031215611fea57600080fd5b8435611ff581611e22565b9350602085013561200581611e22565b925060408501359150606085013567ffffffffffffffff81111561202857600080fd5b8501601f8101871361203957600080fd5b61204887823560208401611eba565b91505092959194509250565b6000806040838503121561206757600080fd5b823561207281611e22565b91506020830135611fc981611e22565b600181811c9082168061209657607f821691505b602082108114156120b757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121995761219961216f565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121e8576121e861216f565b500190565b600081516121ff818560208601611d9e565b9290920192915050565b600080845481600182811c91508083168061222557607f831692505b602080841082141561224557634e487b7160e01b86526022600452602486fd5b818015612259576001811461226a57612297565b60ff19861689528489019650612297565b60008b81526020902060005b8681101561228f5781548b820152908501908301612276565b505084890196505b5050505050506122a781856121ed565b95945050505050565b6000602082840312156122c257600080fd5b81516118ba81611e22565b60008160001904831182151516156122e7576122e761216f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612311576123116122ec565b500490565b6000828210156123285761232861216f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261238e5761238e6122ec565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c690830184611dca565b9695505050505050565b6000602082840312156123e257600080fd5b81516118ba81611d6b56fea26469706673582212207078ca31f8632a881d4f3ea121b824b8339c00ffd1a2c887294a6d8c1157587864736f6c634300080b003368747470733a2f2f626c616d2e696f2f6170692f6c756d696e616c2d67656e657369732f6c6d2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063c634d032116100a0578063d26ea6c01161006f578063d26ea6c01461053e578063e985e9c51461055e578063eb8d24441461057e578063f2fde38b14610598578063f47c84c5146105b857600080fd5b8063c634d032146104d5578063c87b56dd146104e8578063cbcb317114610508578063cd7c03261461051e57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461046257806395d89b4114610480578063a22cb46514610495578063b88d4fde146104b557600080fd5b806370a08231146103f7578063715018a61461041757806378cf19e91461042c5780637ff9b5961461044c57600080fd5b80633ccfd60b11610185578063634da63a11610154578063634da63a1461038d5780636352211e146103a2578063676c0d77146103c25780636c0360eb146103e257600080fd5b80633ccfd60b1461031857806342842e0e1461032d5780634f6ccce71461034d57806355f804b31461036d57600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c35780632f745c59146102e357806334918dfd1461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d81565b6105ce565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6105f9565b60405161021f9190611df6565b34801561025657600080fd5b5061026a610265366004611e09565b61068b565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611e37565b610718565b005b3480156102b057600080fd5b506002545b60405190815260200161021f565b3480156102cf57600080fd5b506102a26102de366004611e63565b61082e565b3480156102ef57600080fd5b506102b56102fe366004611e37565b61085f565b34801561030f57600080fd5b506102a2610912565b34801561032457600080fd5b506102a2610950565b34801561033957600080fd5b506102a2610348366004611e63565b610bb6565b34801561035957600080fd5b506102b5610368366004611e09565b610bd1565b34801561037957600080fd5b506102a2610388366004611f30565b610c3e565b34801561039957600080fd5b506102b5600281565b3480156103ae57600080fd5b5061026a6103bd366004611e09565b610c7f565b3480156103ce57600080fd5b506102a26103dd366004611e09565b610d0b565b3480156103ee57600080fd5b5061023d610da1565b34801561040357600080fd5b506102b5610412366004611f79565b610e2f565b34801561042357600080fd5b506102a2610efd565b34801561043857600080fd5b506102a2610447366004611e37565b610f33565b34801561045857600080fd5b506102b560085481565b34801561046e57600080fd5b506005546001600160a01b031661026a565b34801561048c57600080fd5b5061023d61100e565b3480156104a157600080fd5b506102a26104b0366004611f96565b61101d565b3480156104c157600080fd5b506102a26104d0366004611fd4565b6110e2565b6102a26104e3366004611e09565b61111a565b3480156104f457600080fd5b5061023d610503366004611e09565b611365565b34801561051457600080fd5b506102b560095481565b34801561052a57600080fd5b50600a5461026a906001600160a01b031681565b34801561054a57600080fd5b506102a2610559366004611f79565b6113e6565b34801561056a57600080fd5b50610213610579366004612054565b611432565b34801561058a57600080fd5b506007546102139060ff1681565b3480156105a457600080fd5b506102a26105b3366004611f79565b6114f3565b3480156105c457600080fd5b506102b56101bd81565b60006001600160e01b0319821663780e9d6360e01b14806105f357506105f38261158e565b92915050565b60606000805461060890612082565b80601f016020809104026020016040519081016040528092919081815260200182805461063490612082565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000610696826115de565b6106fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061072382610c7f565b9050806001600160a01b0316836001600160a01b031614156107915760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f3565b336001600160a01b03821614806107ad57506107ad8133611432565b61081f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f3565b6108298383611628565b505050565b6108383382611696565b6108545760405162461bcd60e51b81526004016106f3906120bd565b610829838383611758565b600061086a83610e2f565b82106108885760405162461bcd60e51b81526004016106f39061210e565b6000805b6002548110156108f957600281815481106108a9576108a9612159565b6000918252602090912001546001600160a01b03868116911614156108e757838214156108d95791506105f39050565b816108e381612185565b9250505b806108f181612185565b91505061088c565b5060405162461bcd60e51b81526004016106f39061210e565b6005546001600160a01b0316331461093c5760405162461bcd60e51b81526004016106f3906121a0565b6007805460ff19811660ff90911615179055565b6005546001600160a01b0316331461097a5760405162461bcd60e51b81526004016106f3906121a0565b478061098557600080fd5b3373ac01b61d659bd72b120db7c5289bbfc02077194360006109b360646109ad8660026118ae565b906118c1565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c460006109dc60646109ad8860036118ae565b90506000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610a2b576040519150601f19603f3d011682016040523d82523d6000602084013e610a30565b606091505b5050905080610a735760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016106f3565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610ac0576040519150601f19603f3d011682016040523d82523d6000602084013e610ac5565b606091505b5050905080610b085760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b60448201526064016106f3565b6000876001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b55576040519150601f19603f3d011682016040523d82523d6000602084013e610b5a565b606091505b5050905080610bab5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e000000000000000060448201526064016106f3565b505050505050505050565b610829838383604051806020016040528060008152506110e2565b6002546000908210610c3a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106f3565b5090565b6005546001600160a01b03163314610c685760405162461bcd60e51b81526004016106f3906121a0565b8051610c7b90600c906020840190611cdb565b5050565b60008060028381548110610c9557610c95612159565b6000918252602090912001546001600160a01b03169050806105f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f3565b6005546001600160a01b03163314610d355760405162461bcd60e51b81526004016106f3906121a0565b60075460ff1615610d9c5760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b60648201526084016106f3565b600855565b600c8054610dae90612082565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda90612082565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b505050505081565b60006001600160a01b038216610e9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f3565b6000805b600254811015610ef65760028181548110610ebb57610ebb612159565b6000918252602090912001546001600160a01b0385811691161415610ee657610ee382612185565b91505b610eef81612185565b9050610e9e565b5092915050565b6005546001600160a01b03163314610f275760405162461bcd60e51b81526004016106f3906121a0565b610f3160006118cd565b565b6005546001600160a01b03163314610f5d5760405162461bcd60e51b81526004016106f3906121a0565b6000610f6860025490565b9050600082118015610f7c57506009548211155b610fc85760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016106f3565b60005b82811015610ff857610fe684610fe183856121d5565b61191f565b80610ff081612185565b915050610fcb565b506009546110069083611939565b600955505050565b60606001805461060890612082565b6001600160a01b0382163314156110765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ec3383611696565b6111085760405162461bcd60e51b81526004016106f3906120bd565b61111484848484611945565b50505050565b336000908152600b60205260409020546001116111aa5760405162461bcd60e51b815260206004820152604260248201527f596f75206861766520616c7265616479207265616368656420746865206d617860448201527f206e756d626572206f66206d696e7473207769746820746869732077616c6c656064820152613a1760f11b608482015260a4016106f3565b60075460ff166111fc5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106f3565b600281106112565760405162461bcd60e51b815260206004820152602160248201527f546865206d6178206d696e7420706572207472616e73616374696f6e206973206044820152603160f81b60648201526084016106f3565b6101bd61126c8261126660025490565b90611978565b106112b95760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106f3565b6008546112c690826118ae565b34146113145760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106f3565b60005b8181101561133d5761132b3360025461191f565b8061133581612185565b915050611317565b50336000908152600b60205260408120805483929061135d9084906121d5565b909155505050565b6060611370826115de565b6113b45760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106f3565b600c6113bf83611984565b6040516020016113d0929190612209565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146114105760405162461bcd60e51b81526004016106f3906121a0565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a891906122b0565b6001600160a01b031614156114c15760019150506105f3565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b0316331461151d5760405162461bcd60e51b81526004016106f3906121a0565b6001600160a01b0381166115825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f3565b61158b816118cd565b50565b60006001600160e01b031982166380ac58cd60e01b14806115bf57506001600160e01b03198216635b5e139f60e01b145b806105f357506301ffc9a760e01b6001600160e01b03198316146105f3565b600254600090821080156105f3575060006001600160a01b03166002838154811061160b5761160b612159565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165d82610c7f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116a1826115de565b6117025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f3565b600061170d83610c7f565b9050806001600160a01b0316846001600160a01b031614806117485750836001600160a01b031661173d8461068b565b6001600160a01b0316145b806114eb57506114eb8185611432565b826001600160a01b031661176b82610c7f565b6001600160a01b0316146117d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f3565b6001600160a01b0382166118355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f3565b611840600082611628565b816002828154811061185457611854612159565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006118ba82846122cd565b9392505050565b60006118ba8284612302565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c7b828260405180602001604052806000815250611a82565b60006118ba8284612316565b611950848484611758565b61195c84848484611ab5565b6111145760405162461bcd60e51b81526004016106f39061232d565b60006118ba82846121d5565b6060816119a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119d257806119bc81612185565b91506119cb9050600a83612302565b91506119ac565b60008167ffffffffffffffff8111156119ed576119ed611ea4565b6040519080825280601f01601f191660200182016040528015611a17576020820181803683370190505b5090505b84156114eb57611a2c600183612316565b9150611a39600a8661237f565b611a449060306121d5565b60f81b818381518110611a5957611a59612159565b60200101906001600160f81b031916908160001a905350611a7b600a86612302565b9450611a1b565b611a8c8383611bb3565b611a996000848484611ab5565b6108295760405162461bcd60e51b81526004016106f39061232d565b60006001600160a01b0384163b15611ba857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611af9903390899088908890600401612393565b6020604051808303816000875af1925050508015611b34575060408051601f3d908101601f19168201909252611b31918101906123d0565b60015b611b8e573d808015611b62576040519150601f19603f3d011682016040523d82523d6000602084013e611b67565b606091505b508051611b865760405162461bcd60e51b81526004016106f39061232d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114eb565b506001949350505050565b6001600160a01b038216611c095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f3565b611c12816115de565b15611c5f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ce790612082565b90600052602060002090601f016020900481019282611d095760008555611d4f565b82601f10611d2257805160ff1916838001178555611d4f565b82800160010185558215611d4f579182015b82811115611d4f578251825591602001919060010190611d34565b50610c3a9291505b80821115610c3a5760008155600101611d57565b6001600160e01b03198116811461158b57600080fd5b600060208284031215611d9357600080fd5b81356118ba81611d6b565b60005b83811015611db9578181015183820152602001611da1565b838111156111145750506000910152565b60008151808452611de2816020860160208601611d9e565b601f01601f19169290920160200192915050565b6020815260006118ba6020830184611dca565b600060208284031215611e1b57600080fd5b5035919050565b6001600160a01b038116811461158b57600080fd5b60008060408385031215611e4a57600080fd5b8235611e5581611e22565b946020939093013593505050565b600080600060608486031215611e7857600080fd5b8335611e8381611e22565b92506020840135611e9381611e22565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ed557611ed5611ea4565b604051601f8501601f19908116603f01168101908282118183101715611efd57611efd611ea4565b81604052809350858152868686011115611f1657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f4257600080fd5b813567ffffffffffffffff811115611f5957600080fd5b8201601f81018413611f6a57600080fd5b6114eb84823560208401611eba565b600060208284031215611f8b57600080fd5b81356118ba81611e22565b60008060408385031215611fa957600080fd5b8235611fb481611e22565b915060208301358015158114611fc957600080fd5b809150509250929050565b60008060008060808587031215611fea57600080fd5b8435611ff581611e22565b9350602085013561200581611e22565b925060408501359150606085013567ffffffffffffffff81111561202857600080fd5b8501601f8101871361203957600080fd5b61204887823560208401611eba565b91505092959194509250565b6000806040838503121561206757600080fd5b823561207281611e22565b91506020830135611fc981611e22565b600181811c9082168061209657607f821691505b602082108114156120b757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121995761219961216f565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121e8576121e861216f565b500190565b600081516121ff818560208601611d9e565b9290920192915050565b600080845481600182811c91508083168061222557607f831692505b602080841082141561224557634e487b7160e01b86526022600452602486fd5b818015612259576001811461226a57612297565b60ff19861689528489019650612297565b60008b81526020902060005b8681101561228f5781548b820152908501908301612276565b505084890196505b5050505050506122a781856121ed565b95945050505050565b6000602082840312156122c257600080fd5b81516118ba81611e22565b60008160001904831182151516156122e7576122e761216f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612311576123116122ec565b500490565b6000828210156123285761232861216f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261238e5761238e6122ec565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c690830184611dca565b9695505050505050565b6000602082840312156123e257600080fd5b81516118ba81611d6b56fea26469706673582212207078ca31f8632a881d4f3ea121b824b8339c00ffd1a2c887294a6d8c1157587864736f6c634300080b0033

Deployed Bytecode Sourcemap

39327:3602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35530:224;;;;;;;;;;-1:-1:-1;35530:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35530:224:0;;;;;;;;24147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24959:308::-;;;;;;;;;;-1:-1:-1;24959:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24959:308:0;1550:203:1;24482:411:0;;;;;;;;;;-1:-1:-1;24482:411:0;;;;;:::i;:::-;;:::i;:::-;;35830:110;;;;;;;;;;-1:-1:-1;35918:7:0;:14;35830:110;;;2360:25:1;;;2348:2;2333:18;35830:110:0;2214:177:1;26018:376:0;;;;;;;;;;-1:-1:-1;26018:376:0;;;;;:::i;:::-;;:::i;36306:490::-;;;;;;;;;;-1:-1:-1;36306:490:0;;;;;:::i;:::-;;:::i;41474:83::-;;;;;;;;;;;;;:::i;40165:819::-;;;;;;;;;;;;;:::i;26465:185::-;;;;;;;;;;-1:-1:-1;26465:185:0;;;;;:::i;:::-;;:::i;36017:205::-;;;;;;;;;;-1:-1:-1;36017:205:0;;;;;:::i;:::-;;:::i;41376:92::-;;;;;;;;;;-1:-1:-1;41376:92:0;;;;;:::i;:::-;;:::i;39528:42::-;;;;;;;;;;;;39569:1;39528:42;;23754:326;;;;;;;;;;-1:-1:-1;23754:326:0;;;;;:::i;:::-;;:::i;39984:171::-;;;;;;;;;;-1:-1:-1;39984:171:0;;;;;:::i;:::-;;:::i;39748:21::-;;;;;;;;;;;;;:::i;23300:392::-;;;;;;;;;;-1:-1:-1;23300:392:0;;;;;:::i;:::-;;:::i;38457:103::-;;;;;;;;;;;;;:::i;40992:376::-;;;;;;;;;;-1:-1:-1;40992:376:0;;;;;:::i;:::-;;:::i;39474:45::-;;;;;;;;;;;;;;;;37806:87;;;;;;;;;;-1:-1:-1;37879:6:0;;-1:-1:-1;;;;;37879:6:0;37806:87;;24316:104;;;;;;;;;;;;;:::i;25339:327::-;;;;;;;;;;-1:-1:-1;25339:327:0;;;;;:::i;:::-;;:::i;26721:365::-;;;;;;;;;;-1:-1:-1;26721:365:0;;;;;:::i;:::-;;:::i;41565:670::-;;;;;;:::i;:::-;;:::i;42389:213::-;;;;;;;;;;-1:-1:-1;42389:213:0;;;;;:::i;:::-;;:::i;39624:29::-;;;;;;;;;;;;;;;;39658:35;;;;;;;;;;-1:-1:-1;39658:35:0;;;;-1:-1:-1;;;;;39658:35:0;;;42243:140;;;;;;;;;;-1:-1:-1;42243:140:0;;;;;:::i;:::-;;:::i;42608:318::-;;;;;;;;;;-1:-1:-1;42608:318:0;;;;;:::i;:::-;;:::i;39437:32::-;;;;;;;;;;-1:-1:-1;39437:32:0;;;;;;;;38715:201;;;;;;;;;;-1:-1:-1;38715:201:0;;;;;:::i;:::-;;:::i;39579:40::-;;;;;;;;;;;;39616:3;39579:40;;35530:224;35632:4;-1:-1:-1;;;;;;35656:50:0;;-1:-1:-1;;;35656:50:0;;:90;;;35710:36;35734:11;35710:23;:36::i;:::-;35649:97;35530:224;-1:-1:-1;;35530:224:0:o;24147:100::-;24201:13;24234:5;24227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147:100;:::o;24959:308::-;25080:7;25127:16;25135:7;25127;:16::i;:::-;25105:110;;;;-1:-1:-1;;;25105:110:0;;6535:2:1;25105:110:0;;;6517:21:1;6574:2;6554:18;;;6547:30;6613:34;6593:18;;;6586:62;-1:-1:-1;;;6664:18:1;;;6657:42;6716:19;;25105:110:0;;;;;;;;;-1:-1:-1;25235:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25235:24:0;;24959:308::o;24482:411::-;24563:13;24579:23;24594:7;24579:14;:23::i;:::-;24563:39;;24627:5;-1:-1:-1;;;;;24621:11:0;:2;-1:-1:-1;;;;;24621:11:0;;;24613:57;;;;-1:-1:-1;;;24613:57:0;;6948:2:1;24613:57:0;;;6930:21:1;6987:2;6967:18;;;6960:30;7026:34;7006:18;;;6999:62;-1:-1:-1;;;7077:18:1;;;7070:31;7118:19;;24613:57:0;6746:397:1;24613:57:0;738:10;-1:-1:-1;;;;;24705:21:0;;;;:62;;-1:-1:-1;24730:37:0;24747:5;738:10;42608:318;:::i;24730:37::-;24683:168;;;;-1:-1:-1;;;24683:168:0;;7350:2:1;24683:168:0;;;7332:21:1;7389:2;7369:18;;;7362:30;7428:34;7408:18;;;7401:62;7499:26;7479:18;;;7472:54;7543:19;;24683:168:0;7148:420:1;24683:168:0;24864:21;24873:2;24877:7;24864:8;:21::i;:::-;24552:341;24482:411;;:::o;26018:376::-;26227:41;738:10;26260:7;26227:18;:41::i;:::-;26205:140;;;;-1:-1:-1;;;26205:140:0;;;;;;;:::i;:::-;26358:28;26368:4;26374:2;26378:7;26358:9;:28::i;36306:490::-;36403:15;36447:16;36457:5;36447:9;:16::i;:::-;36439:5;:24;36431:80;;;;-1:-1:-1;;;36431:80:0;;;;;;;:::i;:::-;36524:10;36549:6;36545:178;36561:7;:14;36557:18;;36545:178;;;36608:7;36616:1;36608:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36599:19:0;;;36608:10;;36599:19;36596:116;;;36650:5;36641;:14;36638:58;;;36664:1;-1:-1:-1;36657:8:0;;-1:-1:-1;36657:8:0;36638:58;36689:7;;;;:::i;:::-;;;;36638:58;36577:3;;;;:::i;:::-;;;;36545:178;;;;36735:53;;-1:-1:-1;;;36735:53:0;;;;;;;:::i;41474:83::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;41539:12:::1;::::0;;-1:-1:-1;;41523:28:0;::::1;41539:12;::::0;;::::1;41538:13;41523:28;::::0;;41474:83::o;40165:819::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;40227:21:::1;40263:11:::0;40255:20:::1;;;::::0;::::1;;738:10:::0;40361:42:::1;40284:13;40436:23;40455:3;40436:14;:7:::0;40448:1:::1;40436:11;:14::i;:::-;:18:::0;::::1;:23::i;:::-;40411:48:::0;-1:-1:-1;40499:42:0::1;40466:22;40574:23;40593:3;40574:14;:7:::0;40586:1:::1;40574:11;:14::i;:23::-;40549:48;;40611:13;40630:14;-1:-1:-1::0;;;;;40630:19:0::1;40657:14;40630:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40610:66;;;40691:8;40683:36;;;::::0;-1:-1:-1;;;40683:36:0;;9580:2:1;40683:36:0::1;::::0;::::1;9562:21:1::0;9619:2;9599:18;;;9592:30;-1:-1:-1;;;9638:18:1;;;9631:45;9693:18;;40683:36:0::1;9378:339:1::0;40683:36:0::1;40733:13;40752:14;-1:-1:-1::0;;;;;40752:19:0::1;40779:14;40752:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40732:66;;;40813:8;40805:36;;;::::0;-1:-1:-1;;;40805:36:0;;9580:2:1;40805:36:0::1;::::0;::::1;9562:21:1::0;9619:2;9599:18;;;9592:30;-1:-1:-1;;;9638:18:1;;;9631:45;9693:18;;40805:36:0::1;9378:339:1::0;40805:36:0::1;40855:17;40878:5;-1:-1:-1::0;;;;;40878:10:0::1;40896:21;40878:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40854:68;;;40937:12;40929:49;;;::::0;-1:-1:-1;;;40929:49:0;;9924:2:1;40929:49:0::1;::::0;::::1;9906:21:1::0;9963:2;9943:18;;;9936:30;10002:26;9982:18;;;9975:54;10046:18;;40929:49:0::1;9722:348:1::0;40929:49:0::1;40202:782;;;;;;;;;40165:819::o:0;26465:185::-;26603:39;26620:4;26626:2;26630:7;26603:39;;;;;;;;;;;;:16;:39::i;36017:205::-;36128:7;:14;36092:7;;36120:22;;36112:79;;;;-1:-1:-1;;;36112:79:0;;10277:2:1;36112:79:0;;;10259:21:1;10316:2;10296:18;;;10289:30;10355:34;10335:18;;;10328:62;-1:-1:-1;;;10406:18:1;;;10399:42;10458:19;;36112:79:0;10075:408:1;36112:79:0;-1:-1:-1;36209:5:0;36017:205::o;41376:92::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;41444:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41376:92:::0;:::o;23754:326::-;23871:7;23896:13;23912:7;23920;23912:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23912:16:0;;-1:-1:-1;23961:19:0;23939:110;;;;-1:-1:-1;;;23939:110:0;;10690:2:1;23939:110:0;;;10672:21:1;10729:2;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;-1:-1:-1;;;10819:18:1;;;10812:39;10868:19;;23939:110:0;10488:405:1;39984:171:0;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;40061:12:::1;::::0;::::1;;40060:13;40052:69;;;::::0;-1:-1:-1;;;40052:69:0;;11100:2:1;40052:69:0::1;::::0;::::1;11082:21:1::0;11139:2;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;-1:-1:-1;;;11229:18:1;;;11222:41;11280:19;;40052:69:0::1;10898:407:1::0;40052:69:0::1;40128:10;:21:::0;39984:171::o;39748:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23300:392::-;23422:4;-1:-1:-1;;;;;23453:19:0;;23445:74;;;;-1:-1:-1;;;23445:74:0;;11512:2:1;23445:74:0;;;11494:21:1;11551:2;11531:18;;;11524:30;11590:34;11570:18;;;11563:62;-1:-1:-1;;;11641:18:1;;;11634:40;11691:19;;23445:74:0;11310:406:1;23445:74:0;23532:10;23558:6;23553:109;23570:7;:14;23566:18;;23553:109;;;23617:7;23625:1;23617:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23608:19:0;;;23617:10;;23608:19;23604:46;;;23643:7;;;:::i;:::-;;;23604:46;23586:3;;;:::i;:::-;;;23553:109;;;-1:-1:-1;23679:5:0;23300:392;-1:-1:-1;;23300:392:0:o;38457:103::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;38522:30:::1;38549:1;38522:18;:30::i;:::-;38457:103::o:0;40992:376::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;41084:11:::1;41098:13;35918:7:::0;:14;;35830:110;41098:13:::1;41084:27;;41143:1;41126:14;:18;:52;;;;;41166:12;;41148:14;:30;;41126:52;41118:97;;;::::0;-1:-1:-1;;;41118:97:0;;11923:2:1;41118:97:0::1;::::0;::::1;11905:21:1::0;;;11942:18;;;11935:30;12001:34;11981:18;;;11974:62;12053:18;;41118:97:0::1;11721:356:1::0;41118:97:0::1;41227:6;41222:87;41243:14;41239:1;:18;41222:87;;;41275:26;41285:3:::0;41290:10:::1;41299:1:::0;41290:6;:10:::1;:::i;:::-;41275:9;:26::i;:::-;41259:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41222:87;;;-1:-1:-1::0;41330:12:0::1;::::0;:32:::1;::::0;41347:14;41330:16:::1;:32::i;:::-;41315:12;:47:::0;-1:-1:-1;;;40992:376:0:o;24316:104::-;24372:13;24405:7;24398:14;;;;;:::i;25339:327::-;-1:-1:-1;;;;;25474:24:0;;738:10;25474:24;;25466:62;;;;-1:-1:-1;;;25466:62:0;;12417:2:1;25466:62:0;;;12399:21:1;12456:2;12436:18;;;12429:30;12495:27;12475:18;;;12468:55;12540:18;;25466:62:0;12215:349:1;25466:62:0;738:10;25541:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25541:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25541:53:0;;;;;;;;;;25610:48;;540:41:1;;;25541:42:0;;738:10;25610:48;;513:18:1;25610:48:0;;;;;;;25339:327;;:::o;26721:365::-;26910:41;738:10;26943:7;26910:18;:41::i;:::-;26888:140;;;;-1:-1:-1;;;26888:140:0;;;;;;;:::i;:::-;27039:39;27053:4;27059:2;27063:7;27072:5;27039:13;:39::i;:::-;26721:365;;;;:::o;41565:670::-;738:10;41635:23;;;;:9;:23;;;;;;41661:1;-1:-1:-1;41627:106:0;;;;-1:-1:-1;;;41627:106:0;;12771:2:1;41627:106:0;;;12753:21:1;12810:2;12790:18;;;12783:30;12849:34;12829:18;;;12822:62;12920:34;12900:18;;;12893:62;-1:-1:-1;;;12971:19:1;;;12964:33;13014:19;;41627:106:0;12569:470:1;41627:106:0;41748:12;;;;41740:52;;;;-1:-1:-1;;;41740:52:0;;13246:2:1;41740:52:0;;;13228:21:1;13285:2;13265:18;;;13258:30;13324:29;13304:18;;;13297:57;13371:18;;41740:52:0;13044:351:1;41740:52:0;39569:1;41807:14;:34;41799:80;;;;-1:-1:-1;;;41799:80:0;;13602:2:1;41799:80:0;;;13584:21:1;13641:2;13621:18;;;13614:30;13680:34;13660:18;;;13653:62;-1:-1:-1;;;13731:18:1;;;13724:31;13772:19;;41799:80:0;13400:397:1;41799:80:0;39616:3;41894:33;41912:14;41894:13;35918:7;:14;;35830:110;41894:13;:17;;:33::i;:::-;:46;41886:91;;;;-1:-1:-1;;;41886:91:0;;14004:2:1;41886:91:0;;;13986:21:1;;;14023:18;;;14016:30;14082:34;14062:18;;;14055:62;14134:18;;41886:91:0;13802:356:1;41886:91:0;42005:10;;:30;;42020:14;42005;:30::i;:::-;41992:9;:43;41984:87;;;;-1:-1:-1;;;41984:87:0;;14365:2:1;41984:87:0;;;14347:21:1;14404:2;14384:18;;;14377:30;14443:33;14423:18;;;14416:61;14494:18;;41984:87:0;14163:355:1;41984:87:0;42088:6;42084:92;42100:14;42096:1;:18;42084:92;;;42130:38;738:10;35918:7;:14;41275:9:::1;:26::i;42130:38::-:0;42116:3;;;;:::i;:::-;;;;42084:92;;;-1:-1:-1;738:10:0;42188:23;;;;:9;:23;;;;;:41;;42215:14;;42188:23;:41;;42215:14;;42188:41;:::i;:::-;;;;-1:-1:-1;;;41565:670:0:o;42389:213::-;42448:13;42478:17;42486:8;42478:7;:17::i;:::-;42470:51;;;;-1:-1:-1;;;42470:51:0;;14725:2:1;42470:51:0;;;14707:21:1;14764:2;14744:18;;;14737:30;-1:-1:-1;;;14783:18:1;;;14776:51;14844:18;;42470:51:0;14523:345:1;42470:51:0;42559:7;42568:26;42585:8;42568:16;:26::i;:::-;42542:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42528:68;;42389:213;;;:::o;42243:140::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;42333:20:::1;:44:::0;;-1:-1:-1;;;;;;42333:44:0::1;-1:-1:-1::0;;;;;42333:44:0;;;::::1;::::0;;;::::1;::::0;;42243:140::o;42608:318::-;42769:20;;42809:29;;-1:-1:-1;;;42809:29:0;;-1:-1:-1;;;;;1714:32:1;;;42809:29:0;;;1696:51:1;42698:4:0;;42769:20;;;42801:50;;;;42769:20;;42809:21;;1669:18:1;;42809:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42801:50:0;;42797:67;;;42860:4;42853:11;;;;;42797:67;-1:-1:-1;;;;;25908:25:0;;;25879:4;25908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42880:40;42873:47;42608:318;-1:-1:-1;;;;42608:318:0:o;38715:201::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38804:22:0;::::1;38796:73;;;::::0;-1:-1:-1;;;38796:73:0;;16855:2:1;38796:73:0::1;::::0;::::1;16837:21:1::0;16894:2;16874:18;;;16867:30;16933:34;16913:18;;;16906:62;-1:-1:-1;;;16984:18:1;;;16977:36;17030:19;;38796:73:0::1;16653:402:1::0;38796:73:0::1;38880:28;38899:8;38880:18;:28::i;:::-;38715:201:::0;:::o;22881:355::-;23028:4;-1:-1:-1;;;;;;23070:40:0;;-1:-1:-1;;;23070:40:0;;:105;;-1:-1:-1;;;;;;;23127:48:0;;-1:-1:-1;;;23127:48:0;23070:105;:158;;;-1:-1:-1;;;;;;;;;;12787:40:0;;;23192:36;12678:157;28633:155;28732:7;:14;28698:4;;28722:24;;:58;;;;;28778:1;-1:-1:-1;;;;;28750:30:0;:7;28758;28750:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28750:16:0;:30;;28715:65;28633:155;-1:-1:-1;;28633:155:0:o;32658:174::-;32733:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32733:29:0;-1:-1:-1;;;;;32733:29:0;;;;;;;;:24;;32787:23;32733:24;32787:14;:23::i;:::-;-1:-1:-1;;;;;32778:46:0;;;;;;;;;;;32658:174;;:::o;28955:452::-;29084:4;29128:16;29136:7;29128;:16::i;:::-;29106:110;;;;-1:-1:-1;;;29106:110:0;;17262:2:1;29106:110:0;;;17244:21:1;17301:2;17281:18;;;17274:30;17340:34;17320:18;;;17313:62;-1:-1:-1;;;17391:18:1;;;17384:42;17443:19;;29106:110:0;17060:408:1;29106:110:0;29227:13;29243:23;29258:7;29243:14;:23::i;:::-;29227:39;;29296:5;-1:-1:-1;;;;;29285:16:0;:7;-1:-1:-1;;;;;29285:16:0;;:64;;;;29342:7;-1:-1:-1;;;;;29318:31:0;:20;29330:7;29318:11;:20::i;:::-;-1:-1:-1;;;;;29318:31:0;;29285:64;:113;;;;29366:32;29383:5;29390:7;29366:16;:32::i;31987:553::-;32160:4;-1:-1:-1;;;;;32133:31:0;:23;32148:7;32133:14;:23::i;:::-;-1:-1:-1;;;;;32133:31:0;;32111:122;;;;-1:-1:-1;;;32111:122:0;;17675:2:1;32111:122:0;;;17657:21:1;17714:2;17694:18;;;17687:30;17753:34;17733:18;;;17726:62;-1:-1:-1;;;17804:18:1;;;17797:39;17853:19;;32111:122:0;17473:405:1;32111:122:0;-1:-1:-1;;;;;32252:16:0;;32244:65;;;;-1:-1:-1;;;32244:65:0;;18085:2:1;32244:65:0;;;18067:21:1;18124:2;18104:18;;;18097:30;18163:34;18143:18;;;18136:62;-1:-1:-1;;;18214:18:1;;;18207:34;18258:19;;32244:65:0;17883:400:1;32244:65:0;32426:29;32443:1;32447:7;32426:8;:29::i;:::-;32485:2;32466:7;32474;32466:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;32466:21:0;-1:-1:-1;;;;;32466:21:0;;;;;;32505:27;;32524:7;;32505:27;;;;;;;;;;32466:16;32505:27;31987:553;;;:::o;16380:98::-;16438:7;16465:5;16469:1;16465;:5;:::i;:::-;16458:12;16380:98;-1:-1:-1;;;16380:98:0:o;16779:::-;16837:7;16864:5;16868:1;16864;:5;:::i;39076:191::-;39169:6;;;-1:-1:-1;;;;;39186:17:0;;;-1:-1:-1;;;;;;39186:17:0;;;;;;;39219:40;;39169:6;;;39186:17;39169:6;;39219:40;;39150:16;;39219:40;39139:128;39076:191;:::o;29749:110::-;29825:26;29835:2;29839:7;29825:26;;;;;;;;;;;;:9;:26::i;16023:98::-;16081:7;16108:5;16112:1;16108;:5;:::i;27968:352::-;28125:28;28135:4;28141:2;28145:7;28125:9;:28::i;:::-;28186:48;28209:4;28215:2;28219:7;28228:5;28186:22;:48::i;:::-;28164:148;;;;-1:-1:-1;;;28164:148:0;;;;;;;:::i;15642:98::-;15700:7;15727:5;15731:1;15727;:5;:::i;20366:723::-;20422:13;20643:10;20639:53;;-1:-1:-1;;20670:10:0;;;;;;;;;;;;-1:-1:-1;;;20670:10:0;;;;;20366:723::o;20639:53::-;20717:5;20702:12;20758:78;20765:9;;20758:78;;20791:8;;;;:::i;:::-;;-1:-1:-1;20814:10:0;;-1:-1:-1;20822:2:0;20814:10;;:::i;:::-;;;20758:78;;;20846:19;20878:6;20868:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20868:17:0;;20846:39;;20896:154;20903:10;;20896:154;;20930:11;20940:1;20930:11;;:::i;:::-;;-1:-1:-1;20999:10:0;21007:2;20999:5;:10;:::i;:::-;20986:24;;:2;:24;:::i;:::-;20973:39;;20956:6;20963;20956:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20956:56:0;;;;;;;;-1:-1:-1;21027:11:0;21036:2;21027:11;;:::i;:::-;;;20896:154;;30086:321;30216:18;30222:2;30226:7;30216:5;:18::i;:::-;30267:54;30298:1;30302:2;30306:7;30315:5;30267:22;:54::i;:::-;30245:154;;;;-1:-1:-1;;;30245:154:0;;;;;;;:::i;33397:980::-;33552:4;-1:-1:-1;;;;;33573:13:0;;19986:20;20034:8;33569:801;;33626:175;;-1:-1:-1;;;33626:175:0;;-1:-1:-1;;;;;33626:36:0;;;;;:175;;738:10;;33720:4;;33747:7;;33777:5;;33626:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33626:175:0;;;;;;;;-1:-1:-1;;33626:175:0;;;;;;;;;;;;:::i;:::-;;;33605:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33984:13:0;;33980:320;;34027:108;;-1:-1:-1;;;34027:108:0;;;;;;;:::i;33980:320::-;34250:6;34244:13;34235:6;34231:2;34227:15;34220:38;33605:710;-1:-1:-1;;;;;;33865:51:0;-1:-1:-1;;;33865:51:0;;-1:-1:-1;33858:58:0;;33569:801;-1:-1:-1;34354:4:0;33397:980;;;;;;:::o;30743:346::-;-1:-1:-1;;;;;30823:16:0;;30815:61;;;;-1:-1:-1;;;30815:61:0;;20345:2:1;30815:61:0;;;20327:21:1;;;20364:18;;;20357:30;20423:34;20403:18;;;20396:62;20475:18;;30815:61:0;20143:356:1;30815:61:0;30896:16;30904:7;30896;:16::i;:::-;30895:17;30887:58;;;;-1:-1:-1;;;30887:58:0;;20706:2:1;30887:58:0;;;20688:21:1;20745:2;20725:18;;;20718:30;20784;20764:18;;;20757:58;20832:18;;30887:58:0;20504:352:1;30887:58:0;31014:7;:16;;;;;;;-1:-1:-1;31014:16:0;;;;;;;-1:-1:-1;;;;;;31014:16:0;-1:-1:-1;;;;;31014:16:0;;;;;;;;31048:33;;31073:7;;-1:-1:-1;31048:33:0;;-1:-1:-1;;31048:33:0;30743:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:632;3054:5;3084:18;3125:2;3117:6;3114:14;3111:40;;;3131:18;;:::i;:::-;3206:2;3200:9;3174:2;3260:15;;-1:-1:-1;;3256:24:1;;;3282:2;3252:33;3248:42;3236:55;;;3306:18;;;3326:22;;;3303:46;3300:72;;;3352:18;;:::i;:::-;3392:10;3388:2;3381:22;3421:6;3412:15;;3451:6;3443;3436:22;3491:3;3482:6;3477:3;3473:16;3470:25;3467:45;;;3508:1;3505;3498:12;3467:45;3558:6;3553:3;3546:4;3538:6;3534:17;3521:44;3613:1;3606:4;3597:6;3589;3585:19;3581:30;3574:41;;;;2989:632;;;;;:::o;3626:451::-;3695:6;3748:2;3736:9;3727:7;3723:23;3719:32;3716:52;;;3764:1;3761;3754:12;3716:52;3804:9;3791:23;3837:18;3829:6;3826:30;3823:50;;;3869:1;3866;3859:12;3823:50;3892:22;;3945:4;3937:13;;3933:27;-1:-1:-1;3923:55:1;;3974:1;3971;3964:12;3923:55;3997:74;4063:7;4058:2;4045:16;4040:2;4036;4032:11;3997:74;:::i;4082:247::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4249:9;4236:23;4268:31;4293:5;4268:31;:::i;4334:416::-;4399:6;4407;4460:2;4448:9;4439:7;4435:23;4431:32;4428:52;;;4476:1;4473;4466:12;4428:52;4515:9;4502:23;4534:31;4559:5;4534:31;:::i;:::-;4584:5;-1:-1:-1;4641:2:1;4626:18;;4613:32;4683:15;;4676:23;4664:36;;4654:64;;4714:1;4711;4704:12;4654:64;4737:7;4727:17;;;4334:416;;;;;:::o;4755:795::-;4850:6;4858;4866;4874;4927:3;4915:9;4906:7;4902:23;4898:33;4895:53;;;4944:1;4941;4934:12;4895:53;4983:9;4970:23;5002:31;5027:5;5002:31;:::i;:::-;5052:5;-1:-1:-1;5109:2:1;5094:18;;5081:32;5122:33;5081:32;5122:33;:::i;:::-;5174:7;-1:-1:-1;5228:2:1;5213:18;;5200:32;;-1:-1:-1;5283:2:1;5268:18;;5255:32;5310:18;5299:30;;5296:50;;;5342:1;5339;5332:12;5296:50;5365:22;;5418:4;5410:13;;5406:27;-1:-1:-1;5396:55:1;;5447:1;5444;5437:12;5396:55;5470:74;5536:7;5531:2;5518:16;5513:2;5509;5505:11;5470:74;:::i;:::-;5460:84;;;4755:795;;;;;;;:::o;5555:388::-;5623:6;5631;5684:2;5672:9;5663:7;5659:23;5655:32;5652:52;;;5700:1;5697;5690:12;5652:52;5739:9;5726:23;5758:31;5783:5;5758:31;:::i;:::-;5808:5;-1:-1:-1;5865:2:1;5850:18;;5837:32;5878:33;5837:32;5878:33;:::i;5948:380::-;6027:1;6023:12;;;;6070;;;6091:61;;6145:4;6137:6;6133:17;6123:27;;6091:61;6198:2;6190:6;6187:14;6167:18;6164:38;6161:161;;;6244:10;6239:3;6235:20;6232:1;6225:31;6279:4;6276:1;6269:15;6307:4;6304:1;6297:15;6161:161;;5948:380;;;:::o;7573:413::-;7775:2;7757:21;;;7814:2;7794:18;;;7787:30;7853:34;7848:2;7833:18;;7826:62;-1:-1:-1;;;7919:2:1;7904:18;;7897:47;7976:3;7961:19;;7573:413::o;7991:407::-;8193:2;8175:21;;;8232:2;8212:18;;;8205:30;8271:34;8266:2;8251:18;;8244:62;-1:-1:-1;;;8337:2:1;8322:18;;8315:41;8388:3;8373:19;;7991:407::o;8403:127::-;8464:10;8459:3;8455:20;8452:1;8445:31;8495:4;8492:1;8485:15;8519:4;8516:1;8509:15;8535:127;8596:10;8591:3;8587:20;8584:1;8577:31;8627:4;8624:1;8617:15;8651:4;8648:1;8641:15;8667:135;8706:3;-1:-1:-1;;8727:17:1;;8724:43;;;8747:18;;:::i;:::-;-1:-1:-1;8794:1:1;8783:13;;8667:135::o;8807:356::-;9009:2;8991:21;;;9028:18;;;9021:30;9087:34;9082:2;9067:18;;9060:62;9154:2;9139:18;;8807:356::o;12082:128::-;12122:3;12153:1;12149:6;12146:1;12143:13;12140:39;;;12159:18;;:::i;:::-;-1:-1:-1;12195:9:1;;12082:128::o;14999:185::-;15041:3;15079:5;15073:12;15094:52;15139:6;15134:3;15127:4;15120:5;15116:16;15094:52;:::i;:::-;15162:16;;;;;14999:185;-1:-1:-1;;14999:185:1:o;15189:1174::-;15365:3;15394:1;15427:6;15421:13;15457:3;15479:1;15507:9;15503:2;15499:18;15489:28;;15567:2;15556:9;15552:18;15589;15579:61;;15633:4;15625:6;15621:17;15611:27;;15579:61;15659:2;15707;15699:6;15696:14;15676:18;15673:38;15670:165;;;-1:-1:-1;;;15734:33:1;;15790:4;15787:1;15780:15;15820:4;15741:3;15808:17;15670:165;15851:18;15878:104;;;;15996:1;15991:320;;;;15844:467;;15878:104;-1:-1:-1;;15911:24:1;;15899:37;;15956:16;;;;-1:-1:-1;15878:104:1;;15991:320;14946:1;14939:14;;;14983:4;14970:18;;16086:1;16100:165;16114:6;16111:1;16108:13;16100:165;;;16192:14;;16179:11;;;16172:35;16235:16;;;;16129:10;;16100:165;;;16104:3;;16294:6;16289:3;16285:16;16278:23;;15844:467;;;;;;;16327:30;16353:3;16345:6;16327:30;:::i;:::-;16320:37;15189:1174;-1:-1:-1;;;;;15189:1174:1:o;16368:280::-;16467:6;16520:2;16508:9;16499:7;16495:23;16491:32;16488:52;;;16536:1;16533;16526:12;16488:52;16568:9;16562:16;16587:31;16612:5;16587:31;:::i;18288:168::-;18328:7;18394:1;18390;18386:6;18382:14;18379:1;18376:21;18371:1;18364:9;18357:17;18353:45;18350:71;;;18401:18;;:::i;:::-;-1:-1:-1;18441:9:1;;18288:168::o;18461:127::-;18522:10;18517:3;18513:20;18510:1;18503:31;18553:4;18550:1;18543:15;18577:4;18574:1;18567:15;18593:120;18633:1;18659;18649:35;;18664:18;;:::i;:::-;-1:-1:-1;18698:9:1;;18593:120::o;18718:125::-;18758:4;18786:1;18783;18780:8;18777:34;;;18791:18;;:::i;:::-;-1:-1:-1;18828:9:1;;18718:125::o;18848:414::-;19050:2;19032:21;;;19089:2;19069:18;;;19062:30;19128:34;19123:2;19108:18;;19101:62;-1:-1:-1;;;19194:2:1;19179:18;;19172:48;19252:3;19237:19;;18848:414::o;19267:112::-;19299:1;19325;19315:35;;19330:18;;:::i;:::-;-1:-1:-1;19364:9:1;;19267:112::o;19384:500::-;-1:-1:-1;;;;;19653:15:1;;;19635:34;;19705:15;;19700:2;19685:18;;19678:43;19752:2;19737:18;;19730:34;;;19800:3;19795:2;19780:18;;19773:31;;;19578:4;;19821:57;;19858:19;;19850:6;19821:57;:::i;:::-;19813:65;19384:500;-1:-1:-1;;;;;;19384:500:1:o;19889:249::-;19958:6;20011:2;19999:9;19990:7;19986:23;19982:32;19979:52;;;20027:1;20024;20017:12;19979:52;20059:9;20053:16;20078:30;20102:5;20078:30;:::i

Swarm Source

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