ETH Price: $1,814.45 (+1.72%)

Token

Career Babies (CB)
 

Overview

Max Total Supply

95 CB

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
galleryw.eth
Balance
1 CB
0x95b6875082cb7d04a78f850e64b97a93abf7d72c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CareerBabies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-29
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;


library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/LowGas.sol



pragma solidity ^0.8.0;

contract CareerBabies is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private supply;
  string public uriPrefix = "ipfs://Qmby2Vj9DwxhtjYqnVynCUgWJ1qhvPTbzsEMjRC8dxqEbv/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri; 
  uint256 public preSaleWalletLimit = 5;
  uint256 public publicSaleWalletLimit = 5;
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 5500;
  uint256 public maxMintAmountPerTx = 5;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;

  constructor() ERC721("Career Babies", "CB") {
    setHiddenMetadataUri("ipfs://QmZ1V3PyvrAH4qqyd7wATNt9a5pSAbPfrMKADk7HDegjfe/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    
    if (onlyWhitelisted == true){
        require(isWhitelisted(msg.sender), "You are not whitelisted");
        uint256 ownerMintedCount = balanceOf(msg.sender);
        require(
            ownerMintedCount + _mintAmount <= preSaleWalletLimit,
            "Max NFT mint limit reached. Try minting in public sale"
        );
    }
    if (onlyWhitelisted == false){
        // uint256 ownerMintedCount = balanceOf[msg.sender];
        require(
            balanceOf(msg.sender) + _mintAmount <= publicSaleWalletLimit,
            "Max NFT mint limit reached. Try minting in next sale"
        );
    }
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
    
  }
  // Owner quota for the team and giveaways
  function ownerMint(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
    
  }

  function isWhitelisted(address _user) public view returns (bool){
      for (uint256 i=0; i < whitelistedAddresses.length; i++)
        if (whitelistedAddresses[i] == _user) {
            return true;
        }
        return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setPrivateSaleWalletLimit(uint256 _PrivateSaleWalletLimit) public onlyOwner {
    preSaleWalletLimit = _PrivateSaleWalletLimit;
  }

  function setPublicSaleWalletLimit(uint256 _PublicSaleWalletLimit) public onlyOwner {
    publicSaleWalletLimit = _PublicSaleWalletLimit;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
      onlyWhitelisted = _state;
  }

  function whitelistUsers(address[] calldata _users) public onlyOwner {
      delete whitelistedAddresses;
      whitelistedAddresses = _users;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

API
[{"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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PrivateSaleWalletLimit","type":"uint256"}],"name":"setPrivateSaleWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PublicSaleWalletLimit","type":"uint256"}],"name":"setPublicSaleWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062002b5b60a039805162000029916008916020909101906200020d565b5060408051808201909152600580825264173539b7b760d91b602090920191825262000058916009916200020d565b506005600b819055600c81905566b1a2bc2ec50000600d5561157c600e55600f556010805462ffffff191690553480156200009257600080fd5b50604080518082018252600d81526c4361726565722042616269657360981b60208083019182528351808501909452600284526121a160f11b908401528151919291620000e2916000916200020d565b508051620000f89060019060208401906200020d565b505050620001156200010f6200013f60201b60201c565b62000143565b6200013960405180608001604052806041815260200162002b1a6041913962000195565b620002f0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020990600a9060208401906200020d565b5050565b8280546200021b90620002b3565b90600052602060002090601f0160209004810192826200023f57600085556200028a565b82601f106200025a57805160ff19168380011785556200028a565b828001600101855582156200028a579182015b828111156200028a5782518255916020019190600101906200026d565b50620002989291506200029c565b5090565b5b808211156200029857600081556001016200029d565b600181811c90821680620002c857607f821691505b60208210811415620002ea57634e487b7160e01b600052602260045260246000fd5b50919050565b61281a80620003006000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb0114610718578063e0a808531461072e578063e985e9c51461074e578063edec5f2714610797578063f2fde38b146107b7578063f6a44ead146107d757600080fd5b8063a45ba8e714610663578063b071401b14610678578063b88d4fde14610698578063ba4e5c49146106b8578063c87b56dd146106d8578063d52c57e0146106f857600080fd5b80638da5cb5b116101135780638da5cb5b146105c757806394354fd0146105e557806395d89b41146105fb5780639c70b51214610610578063a0712d6814610630578063a22cb4651461064357600080fd5b80636352211e146105325780636fac6e5c1461055257806370a0823114610572578063715018a6146105925780637ec4a659146105a757600080fd5b80633ccfd60b116101e85780634fdd43cb116101ac5780634fdd43cb1461049957806351830227146104b95780635503a0e8146104d85780635618dc49146104ed5780635c975abb1461050357806362b99ad41461051d57600080fd5b80633ccfd60b1461040157806342842e0e14610416578063438b63001461043657806344a0d68a1461046357806345dcdd591461048357600080fd5b806316ba10e01161023a57806316ba10e01461034c57806316c38b3c1461036c57806318160ddd1461038c57806323b872dd146103a15780633af32abf146103c15780633c952764146103e157600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806313faede614610328575b600080fd5b34801561028357600080fd5b50610297610292366004612363565b6107f7565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610849565b6040516102a39190612593565b3480156102da57600080fd5b506102ee6102e93660046123e6565b6108db565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506103266103213660046122a9565b610975565b005b34801561033457600080fd5b5061033e600d5481565b6040519081526020016102a3565b34801561035857600080fd5b5061032661036736600461239d565b610a8b565b34801561037857600080fd5b50610326610387366004612348565b610acc565b34801561039857600080fd5b5061033e610b09565b3480156103ad57600080fd5b506103266103bc3660046121c7565b610b19565b3480156103cd57600080fd5b506102976103dc366004612179565b610b4a565b3480156103ed57600080fd5b506103266103fc366004612348565b610bb4565b34801561040d57600080fd5b50610326610bfa565b34801561042257600080fd5b506103266104313660046121c7565b610c98565b34801561044257600080fd5b50610456610451366004612179565b610cb3565b6040516102a3919061254f565b34801561046f57600080fd5b5061032661047e3660046123e6565b610d94565b34801561048f57600080fd5b5061033e600c5481565b3480156104a557600080fd5b506103266104b436600461239d565b610dc3565b3480156104c557600080fd5b5060105461029790610100900460ff1681565b3480156104e457600080fd5b506102c1610e00565b3480156104f957600080fd5b5061033e600b5481565b34801561050f57600080fd5b506010546102979060ff1681565b34801561052957600080fd5b506102c1610e8e565b34801561053e57600080fd5b506102ee61054d3660046123e6565b610e9b565b34801561055e57600080fd5b5061032661056d3660046123e6565b610f12565b34801561057e57600080fd5b5061033e61058d366004612179565b610f41565b34801561059e57600080fd5b50610326610fc8565b3480156105b357600080fd5b506103266105c236600461239d565b610ffe565b3480156105d357600080fd5b506006546001600160a01b03166102ee565b3480156105f157600080fd5b5061033e600f5481565b34801561060757600080fd5b506102c161103b565b34801561061c57600080fd5b506010546102979062010000900460ff1681565b61032661063e3660046123e6565b61104a565b34801561064f57600080fd5b5061032661065e36600461227f565b611333565b34801561066f57600080fd5b506102c161133e565b34801561068457600080fd5b506103266106933660046123e6565b61134b565b3480156106a457600080fd5b506103266106b3366004612203565b61137a565b3480156106c457600080fd5b506102ee6106d33660046123e6565b6113b2565b3480156106e457600080fd5b506102c16106f33660046123e6565b6113dc565b34801561070457600080fd5b506103266107133660046123ff565b61155b565b34801561072457600080fd5b5061033e600e5481565b34801561073a57600080fd5b50610326610749366004612348565b611641565b34801561075a57600080fd5b50610297610769366004612194565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a357600080fd5b506103266107b23660046122d3565b611685565b3480156107c357600080fd5b506103266107d2366004612179565b6116c7565b3480156107e357600080fd5b506103266107f23660046123e6565b61175f565b60006001600160e01b031982166380ac58cd60e01b148061082857506001600160e01b03198216635b5e139f60e01b145b8061084357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108589061270c565b80601f01602080910402602001604051908101604052809291908181526020018280546108849061270c565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061098082610e9b565b9050806001600160a01b0316836001600160a01b031614156109ee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610950565b336001600160a01b0382161480610a0a5750610a0a8133610769565b610a7c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610950565b610a86838361178e565b505050565b6006546001600160a01b03163314610ab55760405162461bcd60e51b8152600401610950906125f8565b8051610ac8906009906020840190611fcd565b5050565b6006546001600160a01b03163314610af65760405162461bcd60e51b8152600401610950906125f8565b6010805460ff1916911515919091179055565b6000610b1460075490565b905090565b610b2333826117fc565b610b3f5760405162461bcd60e51b81526004016109509061262d565b610a868383836118f3565b6000805b601154811015610bab57826001600160a01b031660118281548110610b7557610b756127a2565b6000918252602090912001546001600160a01b03161415610b995750600192915050565b80610ba381612747565b915050610b4e565b50600092915050565b6006546001600160a01b03163314610bde5760405162461bcd60e51b8152600401610950906125f8565b60108054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610c245760405162461bcd60e51b8152600401610950906125f8565b6000610c386006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c82576040519150601f19603f3d011682016040523d82523d6000602084013e610c87565b606091505b5050905080610c9557600080fd5b50565b610a868383836040518060200160405280600081525061137a565b60606000610cc083610f41565b905060008167ffffffffffffffff811115610cdd57610cdd6127b8565b604051908082528060200260200182016040528015610d06578160200160208202803683370190505b509050600160005b8381108015610d1f5750600e548211155b15610d8a576000610d2f83610e9b565b9050866001600160a01b0316816001600160a01b03161415610d775782848381518110610d5e57610d5e6127a2565b602090810291909101015281610d7381612747565b9250505b82610d8181612747565b93505050610d0e565b5090949350505050565b6006546001600160a01b03163314610dbe5760405162461bcd60e51b8152600401610950906125f8565b600d55565b6006546001600160a01b03163314610ded5760405162461bcd60e51b8152600401610950906125f8565b8051610ac890600a906020840190611fcd565b60098054610e0d9061270c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e399061270c565b8015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b505050505081565b60088054610e0d9061270c565b6000818152600260205260408120546001600160a01b0316806108435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610950565b6006546001600160a01b03163314610f3c5760405162461bcd60e51b8152600401610950906125f8565b600c55565b60006001600160a01b038216610fac5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610950565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ff25760405162461bcd60e51b8152600401610950906125f8565b610ffc6000611a93565b565b6006546001600160a01b031633146110285760405162461bcd60e51b8152600401610950906125f8565b8051610ac8906008906020840190611fcd565b6060600180546108589061270c565b8060008111801561105d5750600f548111155b6110a05760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610950565b600e54816110ad60075490565b6110b7919061267e565b11156110fc5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610950565b60105460ff161561114f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610950565b60105462010000900460ff161515600114156112445761116e33610b4a565b6111ba5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610950565b60006111c533610f41565b600b549091506111d5848361267e565b11156112425760405162461bcd60e51b815260206004820152603660248201527f4d6178204e4654206d696e74206c696d697420726561636865642e20547279206044820152756d696e74696e6720696e207075626c69632073616c6560501b6064820152608401610950565b505b60105462010000900460ff166112d657600c548261126133610f41565b61126b919061267e565b11156112d65760405162461bcd60e51b815260206004820152603460248201527f4d6178204e4654206d696e74206c696d697420726561636865642e20547279206044820152736d696e74696e6720696e206e6578742073616c6560601b6064820152608401610950565b81600d546112e491906126aa565b3410156113295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610950565b610ac83383611ae5565b610ac8338383611b22565b600a8054610e0d9061270c565b6006546001600160a01b031633146113755760405162461bcd60e51b8152600401610950906125f8565b600f55565b61138433836117fc565b6113a05760405162461bcd60e51b81526004016109509061262d565b6113ac84848484611bf1565b50505050565b601181815481106113c257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b031661145b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610950565b601054610100900460ff166114fc57600a80546114779061270c565b80601f01602080910402602001604051908101604052809291908181526020018280546114a39061270c565b80156114f05780601f106114c5576101008083540402835291602001916114f0565b820191906000526020600020905b8154815290600101906020018083116114d357829003601f168201915b50505050509050919050565b6000611506611c24565b905060008151116115265760405180602001604052806000815250611554565b8061153084611c33565b60096040516020016115449392919061244e565b6040516020818303038152906040525b9392505050565b8160008111801561156e5750600f548111155b6115b15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610950565b600e54816115be60075490565b6115c8919061267e565b111561160d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610950565b6006546001600160a01b031633146116375760405162461bcd60e51b8152600401610950906125f8565b610a868284611ae5565b6006546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610950906125f8565b601080549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146116af5760405162461bcd60e51b8152600401610950906125f8565b6116bb60116000612051565b610a866011838361206f565b6006546001600160a01b031633146116f15760405162461bcd60e51b8152600401610950906125f8565b6001600160a01b0381166117565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610950565b610c9581611a93565b6006546001600160a01b031633146117895760405162461bcd60e51b8152600401610950906125f8565b600b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c382610e9b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610950565b600061188083610e9b565b9050806001600160a01b0316846001600160a01b031614806118bb5750836001600160a01b03166118b0846108db565b6001600160a01b0316145b806118eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661190682610e9b565b6001600160a01b03161461196e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610950565b6001600160a01b0382166119d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610950565b6119db60008261178e565b6001600160a01b0383166000908152600360205260408120805460019290611a049084906126c9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a3290849061267e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a8657611afe600780546001019055565b611b1083611b0b60075490565b611d31565b80611b1a81612747565b915050611ae8565b816001600160a01b0316836001600160a01b03161415611b845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610950565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bfc8484846118f3565b611c0884848484611d4b565b6113ac5760405162461bcd60e51b8152600401610950906125a6565b6060600880546108589061270c565b606081611c575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c815780611c6b81612747565b9150611c7a9050600a83612696565b9150611c5b565b60008167ffffffffffffffff811115611c9c57611c9c6127b8565b6040519080825280601f01601f191660200182016040528015611cc6576020820181803683370190505b5090505b84156118eb57611cdb6001836126c9565b9150611ce8600a86612762565b611cf390603061267e565b60f81b818381518110611d0857611d086127a2565b60200101906001600160f81b031916908160001a905350611d2a600a86612696565b9450611cca565b610ac8828260405180602001604052806000815250611e58565b60006001600160a01b0384163b15611e4d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8f903390899088908890600401612512565b602060405180830381600087803b158015611da957600080fd5b505af1925050508015611dd9575060408051601f3d908101601f19168201909252611dd691810190612380565b60015b611e33573d808015611e07576040519150601f19603f3d011682016040523d82523d6000602084013e611e0c565b606091505b508051611e2b5760405162461bcd60e51b8152600401610950906125a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118eb565b506001949350505050565b611e628383611e8b565b611e6f6000848484611d4b565b610a865760405162461bcd60e51b8152600401610950906125a6565b6001600160a01b038216611ee15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610950565b6000818152600260205260409020546001600160a01b031615611f465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610950565b6001600160a01b0382166000908152600360205260408120805460019290611f6f90849061267e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fd99061270c565b90600052602060002090601f016020900481019282611ffb5760008555612041565b82601f1061201457805160ff1916838001178555612041565b82800160010185558215612041579182015b82811115612041578251825591602001919060010190612026565b5061204d9291506120c2565b5090565b5080546000825590600052602060002090810190610c9591906120c2565b828054828255906000526020600020908101928215612041579160200282015b828111156120415781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061208f565b5b8082111561204d57600081556001016120c3565b600067ffffffffffffffff808411156120f2576120f26127b8565b604051601f8501601f19908116603f0116810190828211818310171561211a5761211a6127b8565b8160405280935085815286868601111561213357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461216457600080fd5b919050565b8035801515811461216457600080fd5b60006020828403121561218b57600080fd5b6115548261214d565b600080604083850312156121a757600080fd5b6121b08361214d565b91506121be6020840161214d565b90509250929050565b6000806000606084860312156121dc57600080fd5b6121e58461214d565b92506121f36020850161214d565b9150604084013590509250925092565b6000806000806080858703121561221957600080fd5b6122228561214d565b93506122306020860161214d565b925060408501359150606085013567ffffffffffffffff81111561225357600080fd5b8501601f8101871361226457600080fd5b612273878235602084016120d7565b91505092959194509250565b6000806040838503121561229257600080fd5b61229b8361214d565b91506121be60208401612169565b600080604083850312156122bc57600080fd5b6122c58361214d565b946020939093013593505050565b600080602083850312156122e657600080fd5b823567ffffffffffffffff808211156122fe57600080fd5b818501915085601f83011261231257600080fd5b81358181111561232157600080fd5b8660208260051b850101111561233657600080fd5b60209290920196919550909350505050565b60006020828403121561235a57600080fd5b61155482612169565b60006020828403121561237557600080fd5b8135611554816127ce565b60006020828403121561239257600080fd5b8151611554816127ce565b6000602082840312156123af57600080fd5b813567ffffffffffffffff8111156123c657600080fd5b8201601f810184136123d757600080fd5b6118eb848235602084016120d7565b6000602082840312156123f857600080fd5b5035919050565b6000806040838503121561241257600080fd5b823591506121be6020840161214d565b6000815180845261243a8160208601602086016126e0565b601f01601f19169290920160200192915050565b6000845160206124618285838a016126e0565b8551918401916124748184848a016126e0565b8554920191600090600181811c908083168061249157607f831692505b8583108114156124af57634e487b7160e01b85526022600452602485fd5b8080156124c357600181146124d457612501565b60ff19851688528388019550612501565b60008b81526020902060005b858110156124f95781548a8201529084019088016124e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254590830184612422565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125875783518352928401929184019160010161256b565b50909695505050505050565b6020815260006115546020830184612422565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561269157612691612776565b500190565b6000826126a5576126a561278c565b500490565b60008160001904831182151516156126c4576126c4612776565b500290565b6000828210156126db576126db612776565b500390565b60005b838110156126fb5781810151838201526020016126e3565b838111156113ac5750506000910152565b600181811c9082168061272057607f821691505b6020821081141561274157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561275b5761275b612776565b5060010190565b6000826127715761277161278c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9557600080fdfea2646970667358221220ecffeb33f7edaae9ae9cc2d509791534c2ec98926ca51a3d0f8970bc8115bb2764736f6c63430008070033697066733a2f2f516d5a3156335079767241483471717964377741544e74396135705341625066724d4b41446b37484465676a66652f68696464656e2e6a736f6e697066733a2f2f516d627932566a3944777868746a59716e56796e435567574a317168765054627a73454d6a5243386478714562762f

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb0114610718578063e0a808531461072e578063e985e9c51461074e578063edec5f2714610797578063f2fde38b146107b7578063f6a44ead146107d757600080fd5b8063a45ba8e714610663578063b071401b14610678578063b88d4fde14610698578063ba4e5c49146106b8578063c87b56dd146106d8578063d52c57e0146106f857600080fd5b80638da5cb5b116101135780638da5cb5b146105c757806394354fd0146105e557806395d89b41146105fb5780639c70b51214610610578063a0712d6814610630578063a22cb4651461064357600080fd5b80636352211e146105325780636fac6e5c1461055257806370a0823114610572578063715018a6146105925780637ec4a659146105a757600080fd5b80633ccfd60b116101e85780634fdd43cb116101ac5780634fdd43cb1461049957806351830227146104b95780635503a0e8146104d85780635618dc49146104ed5780635c975abb1461050357806362b99ad41461051d57600080fd5b80633ccfd60b1461040157806342842e0e14610416578063438b63001461043657806344a0d68a1461046357806345dcdd591461048357600080fd5b806316ba10e01161023a57806316ba10e01461034c57806316c38b3c1461036c57806318160ddd1461038c57806323b872dd146103a15780633af32abf146103c15780633c952764146103e157600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806313faede614610328575b600080fd5b34801561028357600080fd5b50610297610292366004612363565b6107f7565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610849565b6040516102a39190612593565b3480156102da57600080fd5b506102ee6102e93660046123e6565b6108db565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506103266103213660046122a9565b610975565b005b34801561033457600080fd5b5061033e600d5481565b6040519081526020016102a3565b34801561035857600080fd5b5061032661036736600461239d565b610a8b565b34801561037857600080fd5b50610326610387366004612348565b610acc565b34801561039857600080fd5b5061033e610b09565b3480156103ad57600080fd5b506103266103bc3660046121c7565b610b19565b3480156103cd57600080fd5b506102976103dc366004612179565b610b4a565b3480156103ed57600080fd5b506103266103fc366004612348565b610bb4565b34801561040d57600080fd5b50610326610bfa565b34801561042257600080fd5b506103266104313660046121c7565b610c98565b34801561044257600080fd5b50610456610451366004612179565b610cb3565b6040516102a3919061254f565b34801561046f57600080fd5b5061032661047e3660046123e6565b610d94565b34801561048f57600080fd5b5061033e600c5481565b3480156104a557600080fd5b506103266104b436600461239d565b610dc3565b3480156104c557600080fd5b5060105461029790610100900460ff1681565b3480156104e457600080fd5b506102c1610e00565b3480156104f957600080fd5b5061033e600b5481565b34801561050f57600080fd5b506010546102979060ff1681565b34801561052957600080fd5b506102c1610e8e565b34801561053e57600080fd5b506102ee61054d3660046123e6565b610e9b565b34801561055e57600080fd5b5061032661056d3660046123e6565b610f12565b34801561057e57600080fd5b5061033e61058d366004612179565b610f41565b34801561059e57600080fd5b50610326610fc8565b3480156105b357600080fd5b506103266105c236600461239d565b610ffe565b3480156105d357600080fd5b506006546001600160a01b03166102ee565b3480156105f157600080fd5b5061033e600f5481565b34801561060757600080fd5b506102c161103b565b34801561061c57600080fd5b506010546102979062010000900460ff1681565b61032661063e3660046123e6565b61104a565b34801561064f57600080fd5b5061032661065e36600461227f565b611333565b34801561066f57600080fd5b506102c161133e565b34801561068457600080fd5b506103266106933660046123e6565b61134b565b3480156106a457600080fd5b506103266106b3366004612203565b61137a565b3480156106c457600080fd5b506102ee6106d33660046123e6565b6113b2565b3480156106e457600080fd5b506102c16106f33660046123e6565b6113dc565b34801561070457600080fd5b506103266107133660046123ff565b61155b565b34801561072457600080fd5b5061033e600e5481565b34801561073a57600080fd5b50610326610749366004612348565b611641565b34801561075a57600080fd5b50610297610769366004612194565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a357600080fd5b506103266107b23660046122d3565b611685565b3480156107c357600080fd5b506103266107d2366004612179565b6116c7565b3480156107e357600080fd5b506103266107f23660046123e6565b61175f565b60006001600160e01b031982166380ac58cd60e01b148061082857506001600160e01b03198216635b5e139f60e01b145b8061084357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108589061270c565b80601f01602080910402602001604051908101604052809291908181526020018280546108849061270c565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061098082610e9b565b9050806001600160a01b0316836001600160a01b031614156109ee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610950565b336001600160a01b0382161480610a0a5750610a0a8133610769565b610a7c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610950565b610a86838361178e565b505050565b6006546001600160a01b03163314610ab55760405162461bcd60e51b8152600401610950906125f8565b8051610ac8906009906020840190611fcd565b5050565b6006546001600160a01b03163314610af65760405162461bcd60e51b8152600401610950906125f8565b6010805460ff1916911515919091179055565b6000610b1460075490565b905090565b610b2333826117fc565b610b3f5760405162461bcd60e51b81526004016109509061262d565b610a868383836118f3565b6000805b601154811015610bab57826001600160a01b031660118281548110610b7557610b756127a2565b6000918252602090912001546001600160a01b03161415610b995750600192915050565b80610ba381612747565b915050610b4e565b50600092915050565b6006546001600160a01b03163314610bde5760405162461bcd60e51b8152600401610950906125f8565b60108054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610c245760405162461bcd60e51b8152600401610950906125f8565b6000610c386006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c82576040519150601f19603f3d011682016040523d82523d6000602084013e610c87565b606091505b5050905080610c9557600080fd5b50565b610a868383836040518060200160405280600081525061137a565b60606000610cc083610f41565b905060008167ffffffffffffffff811115610cdd57610cdd6127b8565b604051908082528060200260200182016040528015610d06578160200160208202803683370190505b509050600160005b8381108015610d1f5750600e548211155b15610d8a576000610d2f83610e9b565b9050866001600160a01b0316816001600160a01b03161415610d775782848381518110610d5e57610d5e6127a2565b602090810291909101015281610d7381612747565b9250505b82610d8181612747565b93505050610d0e565b5090949350505050565b6006546001600160a01b03163314610dbe5760405162461bcd60e51b8152600401610950906125f8565b600d55565b6006546001600160a01b03163314610ded5760405162461bcd60e51b8152600401610950906125f8565b8051610ac890600a906020840190611fcd565b60098054610e0d9061270c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e399061270c565b8015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b505050505081565b60088054610e0d9061270c565b6000818152600260205260408120546001600160a01b0316806108435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610950565b6006546001600160a01b03163314610f3c5760405162461bcd60e51b8152600401610950906125f8565b600c55565b60006001600160a01b038216610fac5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610950565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ff25760405162461bcd60e51b8152600401610950906125f8565b610ffc6000611a93565b565b6006546001600160a01b031633146110285760405162461bcd60e51b8152600401610950906125f8565b8051610ac8906008906020840190611fcd565b6060600180546108589061270c565b8060008111801561105d5750600f548111155b6110a05760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610950565b600e54816110ad60075490565b6110b7919061267e565b11156110fc5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610950565b60105460ff161561114f5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610950565b60105462010000900460ff161515600114156112445761116e33610b4a565b6111ba5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610950565b60006111c533610f41565b600b549091506111d5848361267e565b11156112425760405162461bcd60e51b815260206004820152603660248201527f4d6178204e4654206d696e74206c696d697420726561636865642e20547279206044820152756d696e74696e6720696e207075626c69632073616c6560501b6064820152608401610950565b505b60105462010000900460ff166112d657600c548261126133610f41565b61126b919061267e565b11156112d65760405162461bcd60e51b815260206004820152603460248201527f4d6178204e4654206d696e74206c696d697420726561636865642e20547279206044820152736d696e74696e6720696e206e6578742073616c6560601b6064820152608401610950565b81600d546112e491906126aa565b3410156113295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610950565b610ac83383611ae5565b610ac8338383611b22565b600a8054610e0d9061270c565b6006546001600160a01b031633146113755760405162461bcd60e51b8152600401610950906125f8565b600f55565b61138433836117fc565b6113a05760405162461bcd60e51b81526004016109509061262d565b6113ac84848484611bf1565b50505050565b601181815481106113c257600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b031661145b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610950565b601054610100900460ff166114fc57600a80546114779061270c565b80601f01602080910402602001604051908101604052809291908181526020018280546114a39061270c565b80156114f05780601f106114c5576101008083540402835291602001916114f0565b820191906000526020600020905b8154815290600101906020018083116114d357829003601f168201915b50505050509050919050565b6000611506611c24565b905060008151116115265760405180602001604052806000815250611554565b8061153084611c33565b60096040516020016115449392919061244e565b6040516020818303038152906040525b9392505050565b8160008111801561156e5750600f548111155b6115b15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610950565b600e54816115be60075490565b6115c8919061267e565b111561160d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610950565b6006546001600160a01b031633146116375760405162461bcd60e51b8152600401610950906125f8565b610a868284611ae5565b6006546001600160a01b0316331461166b5760405162461bcd60e51b8152600401610950906125f8565b601080549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146116af5760405162461bcd60e51b8152600401610950906125f8565b6116bb60116000612051565b610a866011838361206f565b6006546001600160a01b031633146116f15760405162461bcd60e51b8152600401610950906125f8565b6001600160a01b0381166117565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610950565b610c9581611a93565b6006546001600160a01b031633146117895760405162461bcd60e51b8152600401610950906125f8565b600b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c382610e9b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610950565b600061188083610e9b565b9050806001600160a01b0316846001600160a01b031614806118bb5750836001600160a01b03166118b0846108db565b6001600160a01b0316145b806118eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661190682610e9b565b6001600160a01b03161461196e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610950565b6001600160a01b0382166119d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610950565b6119db60008261178e565b6001600160a01b0383166000908152600360205260408120805460019290611a049084906126c9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a3290849061267e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a8657611afe600780546001019055565b611b1083611b0b60075490565b611d31565b80611b1a81612747565b915050611ae8565b816001600160a01b0316836001600160a01b03161415611b845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610950565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bfc8484846118f3565b611c0884848484611d4b565b6113ac5760405162461bcd60e51b8152600401610950906125a6565b6060600880546108589061270c565b606081611c575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c815780611c6b81612747565b9150611c7a9050600a83612696565b9150611c5b565b60008167ffffffffffffffff811115611c9c57611c9c6127b8565b6040519080825280601f01601f191660200182016040528015611cc6576020820181803683370190505b5090505b84156118eb57611cdb6001836126c9565b9150611ce8600a86612762565b611cf390603061267e565b60f81b818381518110611d0857611d086127a2565b60200101906001600160f81b031916908160001a905350611d2a600a86612696565b9450611cca565b610ac8828260405180602001604052806000815250611e58565b60006001600160a01b0384163b15611e4d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8f903390899088908890600401612512565b602060405180830381600087803b158015611da957600080fd5b505af1925050508015611dd9575060408051601f3d908101601f19168201909252611dd691810190612380565b60015b611e33573d808015611e07576040519150601f19603f3d011682016040523d82523d6000602084013e611e0c565b606091505b508051611e2b5760405162461bcd60e51b8152600401610950906125a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118eb565b506001949350505050565b611e628383611e8b565b611e6f6000848484611d4b565b610a865760405162461bcd60e51b8152600401610950906125a6565b6001600160a01b038216611ee15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610950565b6000818152600260205260409020546001600160a01b031615611f465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610950565b6001600160a01b0382166000908152600360205260408120805460019290611f6f90849061267e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fd99061270c565b90600052602060002090601f016020900481019282611ffb5760008555612041565b82601f1061201457805160ff1916838001178555612041565b82800160010185558215612041579182015b82811115612041578251825591602001919060010190612026565b5061204d9291506120c2565b5090565b5080546000825590600052602060002090810190610c9591906120c2565b828054828255906000526020600020908101928215612041579160200282015b828111156120415781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061208f565b5b8082111561204d57600081556001016120c3565b600067ffffffffffffffff808411156120f2576120f26127b8565b604051601f8501601f19908116603f0116810190828211818310171561211a5761211a6127b8565b8160405280935085815286868601111561213357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461216457600080fd5b919050565b8035801515811461216457600080fd5b60006020828403121561218b57600080fd5b6115548261214d565b600080604083850312156121a757600080fd5b6121b08361214d565b91506121be6020840161214d565b90509250929050565b6000806000606084860312156121dc57600080fd5b6121e58461214d565b92506121f36020850161214d565b9150604084013590509250925092565b6000806000806080858703121561221957600080fd5b6122228561214d565b93506122306020860161214d565b925060408501359150606085013567ffffffffffffffff81111561225357600080fd5b8501601f8101871361226457600080fd5b612273878235602084016120d7565b91505092959194509250565b6000806040838503121561229257600080fd5b61229b8361214d565b91506121be60208401612169565b600080604083850312156122bc57600080fd5b6122c58361214d565b946020939093013593505050565b600080602083850312156122e657600080fd5b823567ffffffffffffffff808211156122fe57600080fd5b818501915085601f83011261231257600080fd5b81358181111561232157600080fd5b8660208260051b850101111561233657600080fd5b60209290920196919550909350505050565b60006020828403121561235a57600080fd5b61155482612169565b60006020828403121561237557600080fd5b8135611554816127ce565b60006020828403121561239257600080fd5b8151611554816127ce565b6000602082840312156123af57600080fd5b813567ffffffffffffffff8111156123c657600080fd5b8201601f810184136123d757600080fd5b6118eb848235602084016120d7565b6000602082840312156123f857600080fd5b5035919050565b6000806040838503121561241257600080fd5b823591506121be6020840161214d565b6000815180845261243a8160208601602086016126e0565b601f01601f19169290920160200192915050565b6000845160206124618285838a016126e0565b8551918401916124748184848a016126e0565b8554920191600090600181811c908083168061249157607f831692505b8583108114156124af57634e487b7160e01b85526022600452602485fd5b8080156124c357600181146124d457612501565b60ff19851688528388019550612501565b60008b81526020902060005b858110156124f95781548a8201529084019088016124e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254590830184612422565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125875783518352928401929184019160010161256b565b50909695505050505050565b6020815260006115546020830184612422565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561269157612691612776565b500190565b6000826126a5576126a561278c565b500490565b60008160001904831182151516156126c4576126c4612776565b500290565b6000828210156126db576126db612776565b500390565b60005b838110156126fb5781810151838201526020016126e3565b838111156113ac5750506000910152565b600181811c9082168061272057607f821691505b6020821081141561274157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561275b5761275b612776565b5060010190565b6000826127715761277161278c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9557600080fdfea2646970667358221220ecffeb33f7edaae9ae9cc2d509791534c2ec98926ca51a3d0f8970bc8115bb2764736f6c63430008070033

Deployed Bytecode Sourcemap

37428:5389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24924:305;;;;;;;;;;-1:-1:-1;24924:305:0;;;;;:::i;:::-;;:::i;:::-;;;8686:14:1;;8679:22;8661:41;;8649:2;8634:18;24924:305:0;;;;;;;;25869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27428:221::-;;;;;;;;;;-1:-1:-1;27428:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7347:32:1;;;7329:51;;7317:2;7302:18;27428:221:0;7183:203:1;26951:411:0;;;;;;;;;;-1:-1:-1;26951:411:0;;;;;:::i;:::-;;:::i;:::-;;37829:32;;;;;;;;;;;;;;;;;;;18059:25:1;;;18047:2;18032:18;37829:32:0;17913:177:1;41899:100:0;;;;;;;;;;-1:-1:-1;41899:100:0;;;;;:::i;:::-;;:::i;42262:77::-;;;;;;;;;;-1:-1:-1;42262:77:0;;;;;:::i;:::-;;:::i;38484:89::-;;;;;;;;;;;;;:::i;28178:339::-;;;;;;;;;;-1:-1:-1;28178:339:0;;;;;:::i;:::-;;:::i;39667:242::-;;;;;;;;;;-1:-1:-1;39667:242:0;;;;;:::i;:::-;;:::i;42005:97::-;;;;;;;;;;-1:-1:-1;42005:97:0;;;;;:::i;:::-;;:::i;42345:149::-;;;;;;;;;;;;;:::i;28588:185::-;;;;;;;;;;-1:-1:-1;28588:185:0;;;;;:::i;:::-;;:::i;39915:635::-;;;;;;;;;;-1:-1:-1;39915:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41143:74::-;;;;;;;;;;-1:-1:-1;41143:74:0;;;;;:::i;:::-;;:::i;37784:40::-;;;;;;;;;;;;;;;;41655:132;;;;;;;;;;-1:-1:-1;41655:132:0;;;;;:::i;:::-;;:::i;37975:28::-;;;;;;;;;;-1:-1:-1;37975:28:0;;;;;;;;;;;37667:33;;;;;;;;;;;;;:::i;37742:37::-;;;;;;;;;;;;;;;;37944:26;;;;;;;;;;-1:-1:-1;37944:26:0;;;;;;;;37580:82;;;;;;;;;;;;;:::i;25563:239::-;;;;;;;;;;-1:-1:-1;25563:239:0;;;;;:::i;:::-;;:::i;41507:142::-;;;;;;;;;;-1:-1:-1;41507:142:0;;;;;:::i;:::-;;:::i;25293:208::-;;;;;;;;;;-1:-1:-1;25293:208:0;;;;;:::i;:::-;;:::i;5912:103::-;;;;;;;;;;;;;:::i;41793:100::-;;;;;;;;;;-1:-1:-1;41793:100:0;;;;;:::i;:::-;;:::i;5261:87::-;;;;;;;;;;-1:-1:-1;5334:6:0;;-1:-1:-1;;;;;5334:6:0;5261:87;;37902:37;;;;;;;;;;;;;;;;26038:104;;;;;;;;;;;;;:::i;38008:35::-;;;;;;;;;;-1:-1:-1;38008:35:0;;;;;;;;;;;38579:877;;;;;;:::i;:::-;;:::i;27721:155::-;;;;;;;;;;-1:-1:-1;27721:155:0;;;;;:::i;:::-;;:::i;37705:31::-;;;;;;;;;;;;;:::i;41223:130::-;;;;;;;;;;-1:-1:-1;41223:130:0;;;;;:::i;:::-;;:::i;28844:328::-;;;;;;;;;;-1:-1:-1;28844:328:0;;;;;:::i;:::-;;:::i;38048:37::-;;;;;;;;;;-1:-1:-1;38048:37:0;;;;;:::i;:::-;;:::i;40556:494::-;;;;;;;;;;-1:-1:-1;40556:494:0;;;;;:::i;:::-;;:::i;39505:156::-;;;;;;;;;;-1:-1:-1;39505:156:0;;;;;:::i;:::-;;:::i;37866:31::-;;;;;;;;;;;;;;;;41056:81;;;;;;;;;;-1:-1:-1;41056:81:0;;;;;:::i;:::-;;:::i;27947:164::-;;;;;;;;;;-1:-1:-1;27947:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28068:25:0;;;28044:4;28068:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27947:164;42108:148;;;;;;;;;;-1:-1:-1;42108:148:0;;;;;:::i;:::-;;:::i;6170:201::-;;;;;;;;;;-1:-1:-1;6170:201:0;;;;;:::i;:::-;;:::i;41359:142::-;;;;;;;;;;-1:-1:-1;41359:142:0;;;;;:::i;:::-;;:::i;24924:305::-;25026:4;-1:-1:-1;;;;;;25063:40:0;;-1:-1:-1;;;25063:40:0;;:105;;-1:-1:-1;;;;;;;25120:48:0;;-1:-1:-1;;;25120:48:0;25063:105;:158;;;-1:-1:-1;;;;;;;;;;17802:40:0;;;25185:36;25043:178;24924:305;-1:-1:-1;;24924:305:0:o;25869:100::-;25923:13;25956:5;25949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25869:100;:::o;27428:221::-;27504:7;30771:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30771:16:0;27524:73;;;;-1:-1:-1;;;27524:73:0;;14225:2:1;27524:73:0;;;14207:21:1;14264:2;14244:18;;;14237:30;14303:34;14283:18;;;14276:62;-1:-1:-1;;;14354:18:1;;;14347:42;14406:19;;27524:73:0;;;;;;;;;-1:-1:-1;27617:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27617:24:0;;27428:221::o;26951:411::-;27032:13;27048:23;27063:7;27048:14;:23::i;:::-;27032:39;;27096:5;-1:-1:-1;;;;;27090:11:0;:2;-1:-1:-1;;;;;27090:11:0;;;27082:57;;;;-1:-1:-1;;;27082:57:0;;16177:2:1;27082:57:0;;;16159:21:1;16216:2;16196:18;;;16189:30;16255:34;16235:18;;;16228:62;-1:-1:-1;;;16306:18:1;;;16299:31;16347:19;;27082:57:0;15975:397:1;27082:57:0;4065:10;-1:-1:-1;;;;;27174:21:0;;;;:62;;-1:-1:-1;27199:37:0;27216:5;4065:10;27947:164;:::i;27199:37::-;27152:168;;;;-1:-1:-1;;;27152:168:0;;12266:2:1;27152:168:0;;;12248:21:1;12305:2;12285:18;;;12278:30;12344:34;12324:18;;;12317:62;12415:26;12395:18;;;12388:54;12459:19;;27152:168:0;12064:420:1;27152:168:0;27333:21;27342:2;27346:7;27333:8;:21::i;:::-;27021:341;26951:411;;:::o;41899:100::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41971:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41899:100:::0;:::o;42262:77::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;42318:6:::1;:15:::0;;-1:-1:-1;;42318:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42262:77::o;38484:89::-;38528:7;38551:16;:6;681:14;;589:114;38551:16;38544:23;;38484:89;:::o;28178:339::-;28373:41;4065:10;28406:7;28373:18;:41::i;:::-;28365:103;;;;-1:-1:-1;;;28365:103:0;;;;;;;:::i;:::-;28481:28;28491:4;28497:2;28501:7;28481:9;:28::i;39667:242::-;39726:4;;39740:141;39762:20;:27;39758:31;;39740:141;;;39836:5;-1:-1:-1;;;;;39809:32:0;:20;39830:1;39809:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;39809:23:0;:32;39805:76;;;-1:-1:-1;39865:4:0;;39667:242;-1:-1:-1;;39667:242:0:o;39805:76::-;39791:3;;;;:::i;:::-;;;;39740:141;;;-1:-1:-1;39898:5:0;;39667:242;-1:-1:-1;;39667:242:0:o;42005:97::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;42072:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;42072:24:0;;::::1;::::0;;;::::1;::::0;;42005:97::o;42345:149::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;42396:7:::1;42417;5334:6:::0;;-1:-1:-1;;;;;5334:6:0;;5261:87;42417:7:::1;-1:-1:-1::0;;;;;42409:21:0::1;42438;42409:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42395:69;;;42479:2;42471:11;;;::::0;::::1;;42382:112;42345:149::o:0;28588:185::-;28726:39;28743:4;28749:2;28753:7;28726:39;;;;;;;;;;;;:16;:39::i;39915:635::-;39990:16;40018:23;40044:17;40054:6;40044:9;:17::i;:::-;40018:43;;40068:30;40115:15;40101:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40101:30:0;-1:-1:-1;40068:63:0;-1:-1:-1;40163:1:0;40138:22;40207:309;40232:15;40214;:33;:64;;;;;40269:9;;40251:14;:27;;40214:64;40207:309;;;40289:25;40317:23;40325:14;40317:7;:23::i;:::-;40289:51;;40376:6;-1:-1:-1;;;;;40355:27:0;:17;-1:-1:-1;;;;;40355:27:0;;40351:131;;;40428:14;40395:13;40409:15;40395:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40455:17;;;;:::i;:::-;;;;40351:131;40492:16;;;;:::i;:::-;;;;40280:236;40207:309;;;-1:-1:-1;40531:13:0;;39915:635;-1:-1:-1;;;;39915:635:0:o;41143:74::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41199:4:::1;:12:::0;41143:74::o;41655:132::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41743:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;37667:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37580:82::-;;;;;;;:::i;25563:239::-;25635:7;25671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25671:16:0;25706:19;25698:73;;;;-1:-1:-1;;;25698:73:0;;13102:2:1;25698:73:0;;;13084:21:1;13141:2;13121:18;;;13114:30;13180:34;13160:18;;;13153:62;-1:-1:-1;;;13231:18:1;;;13224:39;13280:19;;25698:73:0;12900:405:1;41507:142:0;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41597:21:::1;:46:::0;41507:142::o;25293:208::-;25365:7;-1:-1:-1;;;;;25393:19:0;;25385:74;;;;-1:-1:-1;;;25385:74:0;;12691:2:1;25385:74:0;;;12673:21:1;12730:2;12710:18;;;12703:30;12769:34;12749:18;;;12742:62;-1:-1:-1;;;12820:18:1;;;12813:40;12870:19;;25385:74:0;12489:406:1;25385:74:0;-1:-1:-1;;;;;;25477:16:0;;;;;:9;:16;;;;;;;25293:208::o;5912:103::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;5977:30:::1;6004:1;5977:18;:30::i;:::-;5912:103::o:0;41793:100::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41865:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26038:104::-:0;26094:13;26127:7;26120:14;;;;;:::i;38579:877::-;38644:11;38318:1;38304:11;:15;:52;;;;;38338:18;;38323:11;:33;;38304:52;38296:85;;;;-1:-1:-1;;;38296:85:0;;10745:2:1;38296:85:0;;;10727:21:1;10784:2;10764:18;;;10757:30;-1:-1:-1;;;10803:18:1;;;10796:50;10863:18;;38296:85:0;10543:344:1;38296:85:0;38430:9;;38415:11;38396:16;:6;681:14;;589:114;38396:16;:30;;;;:::i;:::-;:43;;38388:76;;;;-1:-1:-1;;;38388:76:0;;17000:2:1;38388:76:0;;;16982:21:1;17039:2;17019:18;;;17012:30;-1:-1:-1;;;17058:18:1;;;17051:50;17118:18;;38388:76:0;16798:344:1;38388:76:0;38673:6:::1;::::0;::::1;;38672:7;38664:43;;;::::0;-1:-1:-1;;;38664:43:0;;14999:2:1;38664:43:0::1;::::0;::::1;14981:21:1::0;15038:2;15018:18;;;15011:30;15077:25;15057:18;;;15050:53;15120:18;;38664:43:0::1;14797:347:1::0;38664:43:0::1;38724:15;::::0;;;::::1;;;:23;;38743:4;38724:23;38720:334;;;38767:25;38781:10;38767:13;:25::i;:::-;38759:61;;;::::0;-1:-1:-1;;;38759:61:0;;13873:2:1;38759:61:0::1;::::0;::::1;13855:21:1::0;13912:2;13892:18;;;13885:30;13951:25;13931:18;;;13924:53;13994:18;;38759:61:0::1;13671:347:1::0;38759:61:0::1;38831:24;38858:21;38868:10;38858:9;:21::i;:::-;38946:18;::::0;38831:48;;-1:-1:-1;38912:30:0::1;38931:11:::0;38831:48;38912:30:::1;:::i;:::-;:52;;38890:156;;;::::0;-1:-1:-1;;;38890:156:0;;9139:2:1;38890:156:0::1;::::0;::::1;9121:21:1::0;9178:2;9158:18;;;9151:30;9217:34;9197:18;;;9190:62;-1:-1:-1;;;9268:18:1;;;9261:52;9330:19;;38890:156:0::1;8937:418:1::0;38890:156:0::1;38748:306;38720:334;39064:15;::::0;;;::::1;;;39060:272;;39223:21;;39208:11;39184:21;39194:10;39184:9;:21::i;:::-;:35;;;;:::i;:::-;:60;;39162:162;;;::::0;-1:-1:-1;;;39162:162:0;;16579:2:1;39162:162:0::1;::::0;::::1;16561:21:1::0;16618:2;16598:18;;;16591:30;16657:34;16637:18;;;16630:62;-1:-1:-1;;;16708:18:1;;;16701:50;16768:19;;39162:162:0::1;16377:416:1::0;39162:162:0::1;39366:11;39359:4;;:18;;;;:::i;:::-;39346:9;:31;;39338:63;;;::::0;-1:-1:-1;;;39338:63:0;;17767:2:1;39338:63:0::1;::::0;::::1;17749:21:1::0;17806:2;17786:18;;;17779:30;-1:-1:-1;;;17825:18:1;;;17818:49;17884:18;;39338:63:0::1;17565:343:1::0;39338:63:0::1;39410:34;39420:10;39432:11;39410:9;:34::i;27721:155::-:0;27816:52;4065:10;27849:8;27859;27816:18;:52::i;37705:31::-;;;;;;;:::i;41223:130::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41307:18:::1;:40:::0;41223:130::o;28844:328::-;29019:41;4065:10;29052:7;29019:18;:41::i;:::-;29011:103;;;;-1:-1:-1;;;29011:103:0;;;;;;;:::i;:::-;29125:39;29139:4;29145:2;29149:7;29158:5;29125:13;:39::i;:::-;28844:328;;;;:::o;38048:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38048:37:0;;-1:-1:-1;38048:37:0;:::o;40556:494::-;30747:4;30771:16;;;:7;:16;;;;;;40655:13;;-1:-1:-1;;;;;30771:16:0;40680:98;;;;-1:-1:-1;;;40680:98:0;;15761:2:1;40680:98:0;;;15743:21:1;15800:2;15780:18;;;15773:30;15839:34;15819:18;;;15812:62;-1:-1:-1;;;15890:18:1;;;15883:45;15945:19;;40680:98:0;15559:411:1;40680:98:0;40791:8;;;;;;;40787:64;;40826:17;40819:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40556:494;;;:::o;40787:64::-;40859:28;40890:10;:8;:10::i;:::-;40859:41;;40945:1;40920:14;40914:28;:32;:130;;;;;;;;;;;;;;;;;40982:14;40998:19;:8;:17;:19::i;:::-;41019:9;40965:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40914:130;40907:137;40556:494;-1:-1:-1;;;40556:494:0:o;39505:156::-;39586:11;38318:1;38304:11;:15;:52;;;;;38338:18;;38323:11;:33;;38304:52;38296:85;;;;-1:-1:-1;;;38296:85:0;;10745:2:1;38296:85:0;;;10727:21:1;10784:2;10764:18;;;10757:30;-1:-1:-1;;;10803:18:1;;;10796:50;10863:18;;38296:85:0;10543:344:1;38296:85:0;38430:9;;38415:11;38396:16;:6;681:14;;589:114;38396:16;:30;;;;:::i;:::-;:43;;38388:76;;;;-1:-1:-1;;;38388:76:0;;17000:2:1;38388:76:0;;;16982:21:1;17039:2;17019:18;;;17012:30;-1:-1:-1;;;17058:18:1;;;17051:50;17118:18;;38388:76:0;16798:344:1;38388:76:0;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23:::1;5473:68;;;;-1:-1:-1::0;;;5473:68:0::1;;;;;;;:::i;:::-;39616:33:::2;39626:9;39637:11;39616:9;:33::i;41056:81::-:0;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41114:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;41114:17:0;;::::1;::::0;;;::::1;::::0;;41056:81::o;42108:148::-;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;42185:27:::1;42192:20;;42185:27;:::i;:::-;42221:29;:20;42244:6:::0;;42221:29:::1;:::i;6170:201::-:0;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6259:22:0;::::1;6251:73;;;::::0;-1:-1:-1;;;6251:73:0;;9981:2:1;6251:73:0::1;::::0;::::1;9963:21:1::0;10020:2;10000:18;;;9993:30;10059:34;10039:18;;;10032:62;-1:-1:-1;;;10110:18:1;;;10103:36;10156:19;;6251:73:0::1;9779:402:1::0;6251:73:0::1;6335:28;6354:8;6335:18;:28::i;41359:142::-:0;5334:6;;-1:-1:-1;;;;;5334:6:0;4065:10;5481:23;5473:68;;;;-1:-1:-1;;;5473:68:0;;;;;;;:::i;:::-;41451:18:::1;:44:::0;41359:142::o;34664:174::-;34739:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34739:29:0;-1:-1:-1;;;;;34739:29:0;;;;;;;;:24;;34793:23;34739:24;34793:14;:23::i;:::-;-1:-1:-1;;;;;34784:46:0;;;;;;;;;;;34664:174;;:::o;30976:348::-;31069:4;30771:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30771:16:0;31086:73;;;;-1:-1:-1;;;31086:73:0;;11853:2:1;31086:73:0;;;11835:21:1;11892:2;11872:18;;;11865:30;11931:34;11911:18;;;11904:62;-1:-1:-1;;;11982:18:1;;;11975:42;12034:19;;31086:73:0;11651:408:1;31086:73:0;31170:13;31186:23;31201:7;31186:14;:23::i;:::-;31170:39;;31239:5;-1:-1:-1;;;;;31228:16:0;:7;-1:-1:-1;;;;;31228:16:0;;:51;;;;31272:7;-1:-1:-1;;;;;31248:31:0;:20;31260:7;31248:11;:20::i;:::-;-1:-1:-1;;;;;31248:31:0;;31228:51;:87;;;-1:-1:-1;;;;;;28068:25:0;;;28044:4;28068:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31283:32;31220:96;30976:348;-1:-1:-1;;;;30976:348:0:o;33968:578::-;34127:4;-1:-1:-1;;;;;34100:31:0;:23;34115:7;34100:14;:23::i;:::-;-1:-1:-1;;;;;34100:31:0;;34092:85;;;;-1:-1:-1;;;34092:85:0;;15351:2:1;34092:85:0;;;15333:21:1;15390:2;15370:18;;;15363:30;15429:34;15409:18;;;15402:62;-1:-1:-1;;;15480:18:1;;;15473:39;15529:19;;34092:85:0;15149:405:1;34092:85:0;-1:-1:-1;;;;;34196:16:0;;34188:65;;;;-1:-1:-1;;;34188:65:0;;11094:2:1;34188:65:0;;;11076:21:1;11133:2;11113:18;;;11106:30;11172:34;11152:18;;;11145:62;-1:-1:-1;;;11223:18:1;;;11216:34;11267:19;;34188:65:0;10892:400:1;34188:65:0;34370:29;34387:1;34391:7;34370:8;:29::i;:::-;-1:-1:-1;;;;;34412:15:0;;;;;;:9;:15;;;;;:20;;34431:1;;34412:15;:20;;34431:1;;34412:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34443:13:0;;;;;;:9;:13;;;;;:18;;34460:1;;34443:13;:18;;34460:1;;34443:18;:::i;:::-;;;;-1:-1:-1;;34472:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34472:21:0;-1:-1:-1;;;;;34472:21:0;;;;;;;;;34511:27;;34472:16;;34511:27;;;;;;;33968:578;;;:::o;6531:191::-;6624:6;;;-1:-1:-1;;;;;6641:17:0;;;-1:-1:-1;;;;;;6641:17:0;;;;;;;6674:40;;6624:6;;;6641:17;6624:6;;6674:40;;6605:16;;6674:40;6594:128;6531:191;:::o;42500:204::-;42580:9;42575:124;42599:11;42595:1;:15;42575:124;;;42626:18;:6;800:19;;818:1;800:19;;;711:127;42626:18;42653:38;42663:9;42674:16;:6;681:14;;589:114;42674:16;42653:9;:38::i;:::-;42612:3;;;;:::i;:::-;;;;42575:124;;34980:315;35135:8;-1:-1:-1;;;;;35126:17:0;:5;-1:-1:-1;;;;;35126:17:0;;;35118:55;;;;-1:-1:-1;;;35118:55:0;;11499:2:1;35118:55:0;;;11481:21:1;11538:2;11518:18;;;11511:30;11577:27;11557:18;;;11550:55;11622:18;;35118:55:0;11297:349:1;35118:55:0;-1:-1:-1;;;;;35184:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35184:46:0;;;;;;;;;;35246:41;;8661::1;;;35246::0;;8634:18:1;35246:41:0;;;;;;;34980:315;;;:::o;30054:::-;30211:28;30221:4;30227:2;30231:7;30211:9;:28::i;:::-;30258:48;30281:4;30287:2;30291:7;30300:5;30258:22;:48::i;:::-;30250:111;;;;-1:-1:-1;;;30250:111:0;;;;;;;:::i;42710:104::-;42770:13;42799:9;42792:16;;;;;:::i;1547:723::-;1603:13;1824:10;1820:53;;-1:-1:-1;;1851:10:0;;;;;;;;;;;;-1:-1:-1;;;1851:10:0;;;;;1547:723::o;1820:53::-;1898:5;1883:12;1939:78;1946:9;;1939:78;;1972:8;;;;:::i;:::-;;-1:-1:-1;1995:10:0;;-1:-1:-1;2003:2:0;1995:10;;:::i;:::-;;;1939:78;;;2027:19;2059:6;2049:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2049:17:0;;2027:39;;2077:154;2084:10;;2077:154;;2111:11;2121:1;2111:11;;:::i;:::-;;-1:-1:-1;2180:10:0;2188:2;2180:5;:10;:::i;:::-;2167:24;;:2;:24;:::i;:::-;2154:39;;2137:6;2144;2137:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2137:56:0;;;;;;;;-1:-1:-1;2208:11:0;2217:2;2208:11;;:::i;:::-;;;2077:154;;31666:110;31742:26;31752:2;31756:7;31742:26;;;;;;;;;;;;:9;:26::i;35860:799::-;36015:4;-1:-1:-1;;;;;36036:13:0;;7872:20;7920:8;36032:620;;36072:72;;-1:-1:-1;;;36072:72:0;;-1:-1:-1;;;;;36072:36:0;;;;;:72;;4065:10;;36123:4;;36129:7;;36138:5;;36072:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36072:72:0;;;;;;;;-1:-1:-1;;36072:72:0;;;;;;;;;;;;:::i;:::-;;;36068:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36314:13:0;;36310:272;;36357:60;;-1:-1:-1;;;36357:60:0;;;;;;;:::i;36310:272::-;36532:6;36526:13;36517:6;36513:2;36509:15;36502:38;36068:529;-1:-1:-1;;;;;;36195:51:0;-1:-1:-1;;;36195:51:0;;-1:-1:-1;36188:58:0;;36032:620;-1:-1:-1;36636:4:0;35860:799;;;;;;:::o;32003:321::-;32133:18;32139:2;32143:7;32133:5;:18::i;:::-;32184:54;32215:1;32219:2;32223:7;32232:5;32184:22;:54::i;:::-;32162:154;;;;-1:-1:-1;;;32162:154:0;;;;;;;:::i;32660:382::-;-1:-1:-1;;;;;32740:16:0;;32732:61;;;;-1:-1:-1;;;32732:61:0;;13512:2:1;32732:61:0;;;13494:21:1;;;13531:18;;;13524:30;13590:34;13570:18;;;13563:62;13642:18;;32732:61:0;13310:356:1;32732:61:0;30747:4;30771:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30771:16:0;:30;32804:58;;;;-1:-1:-1;;;32804:58:0;;10388:2:1;32804:58:0;;;10370:21:1;10427:2;10407:18;;;10400:30;10466;10446:18;;;10439:58;10514:18;;32804:58:0;10186:352:1;32804:58:0;-1:-1:-1;;;;;32933:13:0;;;;;;:9;:13;;;;;:18;;32950:1;;32933:13;:18;;32950:1;;32933:18;:::i;:::-;;;;-1:-1:-1;;32962:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32962:21:0;-1:-1:-1;;;;;32962:21:0;;;;;;;;33001:33;;32962:16;;;33001:33;;32962:16;;33001:33;32660:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:254::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;5101:9;5088:23;5078:33;;5130:38;5164:2;5153:9;5149:18;5130:38;:::i;5179:257::-;5220:3;5258:5;5252:12;5285:6;5280:3;5273:19;5301:63;5357:6;5350:4;5345:3;5341:14;5334:4;5327:5;5323:16;5301:63;:::i;:::-;5418:2;5397:15;-1:-1:-1;;5393:29:1;5384:39;;;;5425:4;5380:50;;5179:257;-1:-1:-1;;5179:257:1:o;5441:1527::-;5665:3;5703:6;5697:13;5729:4;5742:51;5786:6;5781:3;5776:2;5768:6;5764:15;5742:51;:::i;:::-;5856:13;;5815:16;;;;5878:55;5856:13;5815:16;5900:15;;;5878:55;:::i;:::-;6022:13;;5955:20;;;5995:1;;6082;6104:18;;;;6157;;;;6184:93;;6262:4;6252:8;6248:19;6236:31;;6184:93;6325:2;6315:8;6312:16;6292:18;6289:40;6286:167;;;-1:-1:-1;;;6352:33:1;;6408:4;6405:1;6398:15;6438:4;6359:3;6426:17;6286:167;6469:18;6496:110;;;;6620:1;6615:328;;;;6462:481;;6496:110;-1:-1:-1;;6531:24:1;;6517:39;;6576:20;;;;-1:-1:-1;6496:110:1;;6615:328;18168:1;18161:14;;;18205:4;18192:18;;6710:1;6724:169;6738:8;6735:1;6732:15;6724:169;;;6820:14;;6805:13;;;6798:37;6863:16;;;;6755:10;;6724:169;;;6728:3;;6924:8;6917:5;6913:20;6906:27;;6462:481;-1:-1:-1;6959:3:1;;5441:1527;-1:-1:-1;;;;;;;;;;;5441:1527:1:o;7391:488::-;-1:-1:-1;;;;;7660:15:1;;;7642:34;;7712:15;;7707:2;7692:18;;7685:43;7759:2;7744:18;;7737:34;;;7807:3;7802:2;7787:18;;7780:31;;;7585:4;;7828:45;;7853:19;;7845:6;7828:45;:::i;:::-;7820:53;7391:488;-1:-1:-1;;;;;;7391:488:1:o;7884:632::-;8055:2;8107:21;;;8177:13;;8080:18;;;8199:22;;;8026:4;;8055:2;8278:15;;;;8252:2;8237:18;;;8026:4;8321:169;8335:6;8332:1;8329:13;8321:169;;;8396:13;;8384:26;;8465:15;;;;8430:12;;;;8357:1;8350:9;8321:169;;;-1:-1:-1;8507:3:1;;7884:632;-1:-1:-1;;;;;;7884:632:1:o;8713:219::-;8862:2;8851:9;8844:21;8825:4;8882:44;8922:2;8911:9;8907:18;8899:6;8882:44;:::i;9360:414::-;9562:2;9544:21;;;9601:2;9581:18;;;9574:30;9640:34;9635:2;9620:18;;9613:62;-1:-1:-1;;;9706:2:1;9691:18;;9684:48;9764:3;9749:19;;9360:414::o;14436:356::-;14638:2;14620:21;;;14657:18;;;14650:30;14716:34;14711:2;14696:18;;14689:62;14783:2;14768:18;;14436:356::o;17147:413::-;17349:2;17331:21;;;17388:2;17368:18;;;17361:30;17427:34;17422:2;17407:18;;17400:62;-1:-1:-1;;;17493:2:1;17478:18;;17471:47;17550:3;17535:19;;17147:413::o;18221:128::-;18261:3;18292:1;18288:6;18285:1;18282:13;18279:39;;;18298:18;;:::i;:::-;-1:-1:-1;18334:9:1;;18221:128::o;18354:120::-;18394:1;18420;18410:35;;18425:18;;:::i;:::-;-1:-1:-1;18459:9:1;;18354:120::o;18479:168::-;18519:7;18585:1;18581;18577:6;18573:14;18570:1;18567:21;18562:1;18555:9;18548:17;18544:45;18541:71;;;18592:18;;:::i;:::-;-1:-1:-1;18632:9:1;;18479:168::o;18652:125::-;18692:4;18720:1;18717;18714:8;18711:34;;;18725:18;;:::i;:::-;-1:-1:-1;18762:9:1;;18652:125::o;18782:258::-;18854:1;18864:113;18878:6;18875:1;18872:13;18864:113;;;18954:11;;;18948:18;18935:11;;;18928:39;18900:2;18893:10;18864:113;;;18995:6;18992:1;18989:13;18986:48;;;-1:-1:-1;;19030:1:1;19012:16;;19005:27;18782:258::o;19045:380::-;19124:1;19120:12;;;;19167;;;19188:61;;19242:4;19234:6;19230:17;19220:27;;19188:61;19295:2;19287:6;19284:14;19264:18;19261:38;19258:161;;;19341:10;19336:3;19332:20;19329:1;19322:31;19376:4;19373:1;19366:15;19404:4;19401:1;19394:15;19258:161;;19045:380;;;:::o;19430:135::-;19469:3;-1:-1:-1;;19490:17:1;;19487:43;;;19510:18;;:::i;:::-;-1:-1:-1;19557:1:1;19546:13;;19430:135::o;19570:112::-;19602:1;19628;19618:35;;19633:18;;:::i;:::-;-1:-1:-1;19667:9:1;;19570:112::o;19687:127::-;19748:10;19743:3;19739:20;19736:1;19729:31;19779:4;19776:1;19769:15;19803:4;19800:1;19793:15;19819:127;19880:10;19875:3;19871:20;19868:1;19861:31;19911:4;19908:1;19901:15;19935:4;19932:1;19925:15;19951:127;20012:10;20007:3;20003:20;20000:1;19993:31;20043:4;20040:1;20033:15;20067:4;20064:1;20057:15;20083:127;20144:10;20139:3;20135:20;20132:1;20125:31;20175:4;20172:1;20165:15;20199:4;20196:1;20189:15;20215:131;-1:-1:-1;;;;;;20289:32:1;;20279:43;;20269:71;;20336:1;20333;20326:12

Swarm Source

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