ETH Price: $3,331.80 (-1.85%)
Gas: 40 Gwei

Token

The Forgotten Cult Oracles (TFCO)
 

Overview

Max Total Supply

3,390 TFCO

Holders

802

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Oracles

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
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;
    }
}
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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }
    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
pragma solidity ^0.8.0;
/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);
    uint256 private _totalShares;
    uint256 private _totalReleased;
    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;
    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }
    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }
    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }
    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }
    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }
    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }
    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }
    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }
    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}
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);
}
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;
}
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);
}
pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
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);
}
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);
            }
        }
    }
}
pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }
    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
pragma solidity ^0.8.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;
    }
}
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
pragma solidity ^0.8.0;
contract Delegated is Ownable{
  mapping(address => bool) internal _delegates;
  constructor(){
    _delegates[owner()] = true;
  }
  modifier onlyDelegates {
    require(_delegates[msg.sender], "Invalid delegate" );
    _;
  }
  //onlyOwner
  function isDelegate( address addr ) external view onlyOwner returns ( bool ){
    return _delegates[addr];
  }
  function setDelegate( address addr, bool isDelegate_ ) external onlyOwner{
    _delegates[addr] = isDelegate_;
  }
}
pragma solidity ^0.8.0;
abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    // Token name
    string private _name;
    // Token symbol
    string private _symbol;
    // Mapping from token ID to owner address
    address[] internal _owners;
    // 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");

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

        delete length;
        return count;
    }
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721B.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

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

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721B.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        emit Transfer(from, to, tokenId);
    }
    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721B.ownerOf(tokenId), to, tokenId);
    }
    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
pragma solidity ^0.8.0;
/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721EnumerableB is ERC721B, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < ERC721B.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        uint count;
        uint length = _owners.length;
        for( uint i; i < length; ++i ){
            if( owner == _owners[i] ){
                if( count == index ){
                    delete count;
                    delete length;
                    return i;
                }
                else
                    ++count;
            }
        }

        delete count;
        delete length;
        require(false, "ERC721Enumerable: owner index out of bounds");
    }
    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721EnumerableB.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return index;
    }
}
pragma solidity ^0.8.0;
//▄▄▄▄▄ ▄ .▄▄▄▄ .    ·▄▄▄      ▄▄▄   ▄▄ •       ▄▄▄▄▄▄▄▄▄▄▄▄▄ . ▐ ▄      ▄▄· ▄• ▄▌▄▄▌  ▄▄▄▄▄
//•██  ██▪▐█▀▄.▀·    ▐▄▄·▪     ▀▄ █·▐█ ▀ ▪▪     •██  •██  ▀▄.▀·•█▌▐█    ▐█ ▌▪█▪██▌██•  •██  
// ▐█.▪██▀▐█▐▀▀▪▄    ██▪  ▄█▀▄ ▐▀▀▄ ▄█ ▀█▄ ▄█▀▄  ▐█.▪ ▐█.▪▐▀▀▪▄▐█▐▐▌    ██ ▄▄█▌▐█▌██▪   ▐█.▪
// ▐█▌·██▌▐▀▐█▄▄▌    ██▌.▐█▌.▐▌▐█•█▌▐█▄▪▐█▐█▌.▐▌ ▐█▌· ▐█▌·▐█▄▄▌██▐█▌    ▐███▌▐█▄█▌▐█▌▐▌ ▐█▌·
// ▀▀▀ ▀▀▀ · ▀▀▀     ▀▀▀  ▀█▄▀▪.▀  ▀·▀▀▀▀  ▀█▄▀▪ ▀▀▀  ▀▀▀  ▀▀▀ ▀▀ █▪    ·▀▀▀  ▀▀▀ .▀▀▀  ▀▀▀ 
//Ánthrōpos métron...Man is the measure of all things
contract TFCContract {
    function ownerOf(uint256 tokenId) public view virtual returns (address) {}
}
contract Oracles is Delegated, ERC721EnumerableB, PaymentSplitter {
  using Strings for uint;
  TFCContract tfcContract;
  uint public MAX_SUPPLY = 3333;
  bool public isActive   = false;
  bool public isClaimActive = true;
  uint public maxSummon   = 5;
  uint public price      = 0.015 ether;
  string private _baseTokenURI = '';
  string private _tokenURISuffix = '';
  mapping(address => uint[]) private _balances;
  mapping (uint256 => bool) public claimed;
  address[] private addressList = [0x5058B704C352980ece01720cE7A5a1b49469A460];
  uint[] private shareList = [100];
  constructor(address tfcAddress)
    Delegated()
    ERC721B("The Forgotten Cult Oracles", "TFCO")
    PaymentSplitter(addressList, shareList)  {
        tfcContract = TFCContract(tfcAddress);
  }
  //external
  fallback() external payable {}
  // public minting
	function Summon (uint quantity) external payable {
	uint256 s = totalSupply();
	require(isActive, "Public Minting is Closed" );
	require(quantity > 0, "What" );
	require(quantity <= maxSummon, "Don't be greedy" );
	require(s + quantity <= MAX_SUPPLY, "Max Supply has been hit" );
	require(msg.value >= price * quantity);
	for (uint256 i = 0; i < quantity; ++i) {
	_safeMint(msg.sender, s + i, "");
	}
	delete s;
  }
    // Claim
    function isDeityClaimed(uint256 deityId) public view returns (bool) {
        require(deityId < 3332 && deityId > 0, "Invalid Deity id");
        return claimed[deityId];
    }
    function DeityFreeClaim(uint256[] calldata deityIds) external {
        uint256 supply = totalSupply();
        require(isClaimActive, 'Claim not active');

        for (uint256 i = 0; i < deityIds.length; i++) {
            require(tfcContract.ownerOf(deityIds[i]) == msg.sender, "Not the Deity owner");
            require(claimed[deityIds[i]] == false, 'Deity already used');
        }

        for (uint256 i = 0; i < deityIds.length; i++) {
            // Start index at 0
            claimed[deityIds[i]] = true;
            _mint(msg.sender, supply + i + 0);
        }
    }
    function toggleClaimActive() external onlyOwner {
        isClaimActive = !isClaimActive;
    }
  //external delegated
  function setActive(bool isActive_) external onlyDelegates{
    if( isActive != isActive_ )
      isActive = isActive_;
  }
  function setSummon (uint maxOrder_) external onlyDelegates{
    if( maxSummon != maxOrder_ )
      maxSummon = maxOrder_;
  }
  function setPrice(uint price_ ) external onlyDelegates{
    if( price != price_ )
      price = price_;
  }
  function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix) external onlyDelegates{
    _baseTokenURI = _newBaseURI;
    _tokenURISuffix = _newSuffix;
  }
  //external owner
  function setMaxSupply(uint maxSupply) external onlyOwner{
    if( MAX_SUPPLY != maxSupply ){
      require(maxSupply >= totalSupply(), "Specified supply is lower than current balance" );
      MAX_SUPPLY = maxSupply;
    }
      }
   function withdraw() external onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
	require(success);
	}  
  //public
  function balanceOf(address owner) public view virtual override returns (uint256) {
    require(owner != address(0), "ERC721: balance query for the zero address");
    return _balances[owner].length;
  }
  function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
    require(index < ERC721B.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
    return _balances[owner][index];
  }
  function tokenURI(uint tokenId) external view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), _tokenURISuffix));
  }
  //internal
  function _beforeTokenTransfer(
      address from,
      address to,
      uint256 tokenId
  ) internal override virtual {
    address zero = address(0);
    if( from != zero || to == zero ){
      //find this token and remove it
      uint length = _balances[from].length;
      for( uint i; i < length; ++i ){
        if( _balances[from][i] == tokenId ){
          _balances[from][i] = _balances[from][length - 1];
          _balances[from].pop();
          break;
        }
      }
      delete length;
    }
    if( from == zero || to != zero ){
      _balances[to].push( tokenId );
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tfcAddress","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint256[]","name":"deityIds","type":"uint256[]"}],"name":"DeityFreeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Summon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"deityId","type":"uint256"}],"name":"isDeityClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSummon","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive_","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxOrder_","type":"uint256"}],"name":"setSummon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"toggleClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

610d05600d55600e805461ffff19166101001790556005600f5566354a6ba7a1800060105560a060408190526000608081905262000040916011916200060e565b5060408051602081019182905260009081905262000061916012916200060e565b506040805160208101909152735058b704c352980ece01720ce7a5a1b49469a4608152620000949060159060016200069d565b50604080516020810190915260648152620000b4906016906001620006f5565b50348015620000c257600080fd5b506040516200341738038062003417833981016040819052620000e5916200074f565b60158054806020026020016040519081016040528092919081815260200182805480156200013d57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200011e575b505050505060168054806020026020016040519081016040528092919081815260200182805480156200019057602002820191906000526020600020905b8154815260200190600101908083116200017b575b50505050506040518060400160405280601a81526020017f54686520466f72676f7474656e2043756c74204f7261636c6573000000000000815250604051806040016040528060048152602001635446434f60e01b81525062000202620001fc620003cc60201b60201c565b620003d0565b60018060006200021a6000546001600160a01b031690565b6001600160a01b03168152602080820192909252604001600020805460ff19169215159290921790915582516200025891600291908501906200060e565b5080516200026e9060039060208401906200060e565b5050508051825114620002e35760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003365760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002da565b60005b8251811015620003a2576200038d8382815181106200035c576200035c62000781565b602002602001015183838151811062000379576200037962000781565b60200260200101516200042060201b60201c565b806200039981620007ad565b91505062000339565b5050600c80546001600160a01b0319166001600160a01b0393909316929092179091555062000823565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200048d5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002da565b60008111620004df5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002da565b6001600160a01b038216600090815260096020526040902054156200055b5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002da565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091556000908152600960205260409020819055600754620005c5908290620007cb565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200061c90620007e6565b90600052602060002090601f0160209004810192826200064057600085556200068b565b82601f106200065b57805160ff19168380011785556200068b565b828001600101855582156200068b579182015b828111156200068b5782518255916020019190600101906200066e565b506200069992915062000738565b5090565b8280548282559060005260206000209081019282156200068b579160200282015b828111156200068b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006be565b8280548282559060005260206000209081019282156200068b579160200282015b828111156200068b578251829060ff1690559160200191906001019062000716565b5b8082111562000699576000815560010162000739565b6000602082840312156200076257600080fd5b81516001600160a01b03811681146200077a57600080fd5b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620007c457620007c462000797565b5060010190565b60008219821115620007e157620007e162000797565b500190565b600181811c90821680620007fb57607f821691505b602082108114156200081d57634e487b7160e01b600052602260045260246000fd5b50919050565b612be480620008336000396000f3fe6080604052600436106102485760003560e01c80636f8b44b011610138578063acec338a116100b0578063ce7c2ac211610077578063ce7c2ac214610719578063dbe7e3bd1461074f578063e33b7de31461077f578063e985e9c514610794578063ec6fa412146107dd578063f2fde38b146107f057005b8063acec338a1461068e578063b88d4fde146106ae578063b91774aa146106ce578063b99bace8146106e4578063c87b56dd146106f957005b80638da5cb5b116100ff5780638da5cb5b146105cf57806391b7f5ed146105ed57806395d89b411461060d5780639852595c14610622578063a035b1fe14610658578063a22cb4651461066e57005b80636f8b44b01461053b57806370a082311461055b578063715018a61461057b5780637fc27803146105905780638b83209b146105af57005b80632f745c59116101cb57806342842e0e1161019257806342842e0e1461047b5780634a994eef1461049b5780634f6ccce7146104bb5780636352211e146104db5780636790a9de146104fb57806368714d441461051b57005b80632f745c59146103fb57806332cb6b0c1461041b57806337f3e493146104315780633a98ef39146104515780633ccfd60b1461046657005b806318160ddd1161020f57806318160ddd1461036257806319165587146103815780631e4c9a67146103a157806322f3e2d4146103c157806323b872dd146103db57005b806301ffc9a71461029357806306fdde03146102c857806307779627146102ea578063081812fc1461030a578063095ea7b31461034257005b36610291577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561029f57600080fd5b506102b36102ae3660046123fa565b610810565b60405190151581526020015b60405180910390f35b3480156102d457600080fd5b506102dd61083b565b6040516102bf9190612476565b3480156102f657600080fd5b506102b361030536600461249e565b6108cd565b34801561031657600080fd5b5061032a6103253660046124bb565b610924565b6040516001600160a01b0390911681526020016102bf565b34801561034e57600080fd5b5061029161035d3660046124d4565b6109ac565b34801561036e57600080fd5b506004545b6040519081526020016102bf565b34801561038d57600080fd5b5061029161039c36600461249e565b610ac2565b3480156103ad57600080fd5b506102916103bc366004612500565b610c93565b3480156103cd57600080fd5b50600e546102b39060ff1681565b3480156103e757600080fd5b506102916103f6366004612575565b610ee5565b34801561040757600080fd5b506103736104163660046124d4565b610f16565b34801561042757600080fd5b50610373600d5481565b34801561043d57600080fd5b506102b361044c3660046124bb565b610fc0565b34801561045d57600080fd5b50600754610373565b34801561047257600080fd5b50610291611028565b34801561048757600080fd5b50610291610496366004612575565b6110aa565b3480156104a757600080fd5b506102916104b63660046125c6565b6110c5565b3480156104c757600080fd5b506103736104d63660046124bb565b61111a565b3480156104e757600080fd5b5061032a6104f63660046124bb565b61118c565b34801561050757600080fd5b50610291610516366004612644565b611218565b34801561052757600080fd5b506102916105363660046124bb565b611267565b34801561054757600080fd5b506102916105563660046124bb565b6112a4565b34801561056757600080fd5b5061037361057636600461249e565b611345565b34801561058757600080fd5b50610291611389565b34801561059c57600080fd5b50600e546102b390610100900460ff1681565b3480156105bb57600080fd5b5061032a6105ca3660046124bb565b6113bf565b3480156105db57600080fd5b506000546001600160a01b031661032a565b3480156105f957600080fd5b506102916106083660046124bb565b6113ef565b34801561061957600080fd5b506102dd61142c565b34801561062e57600080fd5b5061037361063d36600461249e565b6001600160a01b03166000908152600a602052604090205490565b34801561066457600080fd5b5061037360105481565b34801561067a57600080fd5b506102916106893660046125c6565b61143b565b34801561069a57600080fd5b506102916106a93660046126b0565b611500565b3480156106ba57600080fd5b506102916106c93660046126e1565b611552565b3480156106da57600080fd5b50610373600f5481565b3480156106f057600080fd5b50610291611584565b34801561070557600080fd5b506102dd6107143660046124bb565b6115cb565b34801561072557600080fd5b5061037361073436600461249e565b6001600160a01b031660009081526009602052604090205490565b34801561075b57600080fd5b506102b361076a3660046124bb565b60146020526000908152604090205460ff1681565b34801561078b57600080fd5b50600854610373565b3480156107a057600080fd5b506102b36107af3660046127c1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102916107eb3660046124bb565b61166f565b3480156107fc57600080fd5b5061029161080b36600461249e565b6117ff565b60006001600160e01b0319821663780e9d6360e01b1480610835575061083582611897565b92915050565b60606002805461084a906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610876906127fa565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b600080546001600160a01b031633146109015760405162461bcd60e51b81526004016108f890612835565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b600061092f826118e7565b6109905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f8565b506000908152600560205260409020546001600160a01b031690565b60006109b78261118c565b9050806001600160a01b0316836001600160a01b03161415610a255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f8565b336001600160a01b0382161480610a415750610a4181336107af565b610ab35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f8565b610abd8383611931565b505050565b6001600160a01b038116600090815260096020526040902054610b365760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016108f8565b600060085447610b469190612880565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610b7d9085612898565b610b8791906128cd565b610b9191906128e1565b905080610bf45760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016108f8565b6001600160a01b0383166000908152600a6020526040902054610c18908290612880565b6001600160a01b0384166000908152600a6020526040902055600854610c3f908290612880565b600855610c4c838261199f565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6000610c9e60045490565b600e54909150610100900460ff16610ceb5760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064016108f8565b60005b82811015610e6357600c5433906001600160a01b0316636352211e868685818110610d1b57610d1b6128f8565b905060200201356040518263ffffffff1660e01b8152600401610d4091815260200190565b60206040518083038186803b158015610d5857600080fd5b505afa158015610d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d90919061290e565b6001600160a01b031614610ddc5760405162461bcd60e51b81526020600482015260136024820152722737ba103a3432902232b4ba3c9037bbb732b960691b60448201526064016108f8565b60146000858584818110610df257610df26128f8565b602090810292909201358352508101919091526040016000205460ff1615610e515760405162461bcd60e51b815260206004820152601260248201527111195a5d1e48185b1c9958591e481d5cd95960721b60448201526064016108f8565b80610e5b8161292b565b915050610cee565b5060005b82811015610edf57600160146000868685818110610e8757610e876128f8565b60209081029290920135835250810191909152604001600020805460ff1916911515919091179055610ecd33610ebd8385612880565b610ec8906000612880565b611ab8565b80610ed78161292b565b915050610e67565b50505050565b610eef3382611bec565b610f0b5760405162461bcd60e51b81526004016108f890612946565b610abd838383611cd6565b6000610f2183611e37565b8210610f835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108f8565b6001600160a01b0383166000908152601360205260409020805483908110610fad57610fad6128f8565b9060005260206000200154905092915050565b6000610d0482108015610fd35750600082115b6110125760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a590811195a5d1e481a5960821b60448201526064016108f8565b5060009081526014602052604090205460ff1690565b6000546001600160a01b031633146110525760405162461bcd60e51b81526004016108f890612835565b604051600090339047908381818185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110a757600080fd5b50565b610abd83838360405180602001604052806000815250611552565b6000546001600160a01b031633146110ef5760405162461bcd60e51b81526004016108f890612835565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b600061112560045490565b82106111885760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108f8565b5090565b600080600483815481106111a2576111a26128f8565b6000918252602090912001546001600160a01b03169050806108355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f8565b3360009081526001602052604090205460ff166112475760405162461bcd60e51b81526004016108f890612997565b61125360118585612354565b5061126060128383612354565b5050505050565b3360009081526001602052604090205460ff166112965760405162461bcd60e51b81526004016108f890612997565b80600f54146110a757600f55565b6000546001600160a01b031633146112ce5760405162461bcd60e51b81526004016108f890612835565b80600d54146110a7576004548110156113405760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b60648201526084016108f8565b600d55565b60006001600160a01b03821661136d5760405162461bcd60e51b81526004016108f8906129c1565b506001600160a01b031660009081526013602052604090205490565b6000546001600160a01b031633146113b35760405162461bcd60e51b81526004016108f890612835565b6113bd6000611ec6565b565b6000600b82815481106113d4576113d46128f8565b6000918252602090912001546001600160a01b031692915050565b3360009081526001602052604090205460ff1661141e5760405162461bcd60e51b81526004016108f890612997565b80601054146110a757601055565b60606003805461084a906127fa565b6001600160a01b0382163314156114945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3360009081526001602052604090205460ff1661152f5760405162461bcd60e51b81526004016108f890612997565b600e5460ff161515811515146110a757600e805482151560ff1990911617905550565b61155c3383611bec565b6115785760405162461bcd60e51b81526004016108f890612946565b610edf84848484611f16565b6000546001600160a01b031633146115ae5760405162461bcd60e51b81526004016108f890612835565b600e805461ff001981166101009182900460ff1615909102179055565b60606115d6826118e7565b61163a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f8565b601161164583611f49565b601260405160200161165993929190612aa5565b6040516020818303038152906040529050919050565b600061167a60045490565b600e5490915060ff166116cf5760405162461bcd60e51b815260206004820152601860248201527f5075626c6963204d696e74696e6720697320436c6f736564000000000000000060448201526064016108f8565b600082116117085760405162461bcd60e51b81526004016108f89060208082526004908201526315da185d60e21b604082015260600190565b600f5482111561174c5760405162461bcd60e51b815260206004820152600f60248201526e446f6e27742062652067726565647960881b60448201526064016108f8565b600d546117598383612880565b11156117a75760405162461bcd60e51b815260206004820152601760248201527f4d617820537570706c7920686173206265656e2068697400000000000000000060448201526064016108f8565b816010546117b59190612898565b3410156117c157600080fd5b60005b82811015610abd576117ef336117da8385612880565b60405180602001604052806000815250612047565b6117f88161292b565b90506117c4565b6000546001600160a01b031633146118295760405162461bcd60e51b81526004016108f890612835565b6001600160a01b03811661188e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b6110a781611ec6565b60006001600160e01b031982166380ac58cd60e01b14806118c857506001600160e01b03198216635b5e139f60e01b145b8061083557506301ffc9a760e01b6001600160e01b0319831614610835565b60045460009082108015610835575060006001600160a01b031660048381548110611914576119146128f8565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119668261118c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156119ef5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108f8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a3c576040519150601f19603f3d011682016040523d82523d6000602084013e611a41565b606091505b5050905080610abd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108f8565b6001600160a01b038216611b0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f8565b611b17816118e7565b15611b645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f8565b611b706000838361207a565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611bf7826118e7565b611c585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f8565b6000611c638361118c565b9050806001600160a01b0316846001600160a01b03161480611c9e5750836001600160a01b0316611c9384610924565b6001600160a01b0316145b80611cce57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ce98261118c565b6001600160a01b031614611d515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f8565b6001600160a01b038216611db35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f8565b611dbe83838361207a565b611dc9600082611931565b8160048281548110611ddd57611ddd6128f8565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006001600160a01b038216611e5f5760405162461bcd60e51b81526004016108f8906129c1565b600454600090815b81811015611ebd5760048181548110611e8257611e826128f8565b6000918252602090912001546001600160a01b0386811691161415611ead57611eaa8361292b565b92505b611eb68161292b565b9050611e67565b50909392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611f21848484611cd6565b611f2d84848484612247565b610edf5760405162461bcd60e51b81526004016108f890612ad8565b606081611f6d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f975780611f818161292b565b9150611f909050600a836128cd565b9150611f71565b60008167ffffffffffffffff811115611fb257611fb26126cb565b6040519080825280601f01601f191660200182016040528015611fdc576020820181803683370190505b5090505b8415611cce57611ff16001836128e1565b9150611ffe600a86612b2a565b612009906030612880565b60f81b81838151811061201e5761201e6128f8565b60200101906001600160f81b031916908160001a905350612040600a866128cd565b9450611fe0565b6120518383611ab8565b61205e6000848484612247565b610abd5760405162461bcd60e51b81526004016108f890612ad8565b60006001600160a01b0384161515806120a45750806001600160a01b0316836001600160a01b0316145b156121e1576001600160a01b038416600090815260136020526040812054905b818110156121de576001600160a01b03861660009081526013602052604090208054859190839081106120f9576120f96128f8565b906000526020600020015414156121ce576001600160a01b038616600090815260136020526040902061212d6001846128e1565b8154811061213d5761213d6128f8565b906000526020600020015460136000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061217e5761217e6128f8565b60009182526020808320909101929092556001600160a01b03881681526013909152604090208054806121b3576121b3612b3e565b600190038181906000526020600020016000905590556121de565b6121d78161292b565b90506120c4565b50505b806001600160a01b0316846001600160a01b031614806122135750806001600160a01b0316836001600160a01b031614155b15610edf57506001600160a01b03919091166000908152601360209081526040822080546001810182559083529120015550565b60006001600160a01b0384163b1561234957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061228b903390899088908890600401612b54565b602060405180830381600087803b1580156122a557600080fd5b505af19250505080156122d5575060408051601f3d908101601f191682019092526122d291810190612b91565b60015b61232f573d808015612303576040519150601f19603f3d011682016040523d82523d6000602084013e612308565b606091505b5080516123275760405162461bcd60e51b81526004016108f890612ad8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cce565b506001949350505050565b828054612360906127fa565b90600052602060002090601f01602090048101928261238257600085556123c8565b82601f1061239b5782800160ff198235161785556123c8565b828001600101855582156123c8579182015b828111156123c85782358255916020019190600101906123ad565b506111889291505b8082111561118857600081556001016123d0565b6001600160e01b0319811681146110a757600080fd5b60006020828403121561240c57600080fd5b8135612417816123e4565b9392505050565b60005b83811015612439578181015183820152602001612421565b83811115610edf5750506000910152565b6000815180845261246281602086016020860161241e565b601f01601f19169290920160200192915050565b602081526000612417602083018461244a565b6001600160a01b03811681146110a757600080fd5b6000602082840312156124b057600080fd5b813561241781612489565b6000602082840312156124cd57600080fd5b5035919050565b600080604083850312156124e757600080fd5b82356124f281612489565b946020939093013593505050565b6000806020838503121561251357600080fd5b823567ffffffffffffffff8082111561252b57600080fd5b818501915085601f83011261253f57600080fd5b81358181111561254e57600080fd5b8660208260051b850101111561256357600080fd5b60209290920196919550909350505050565b60008060006060848603121561258a57600080fd5b833561259581612489565b925060208401356125a581612489565b929592945050506040919091013590565b8035801515811461091f57600080fd5b600080604083850312156125d957600080fd5b82356125e481612489565b91506125f2602084016125b6565b90509250929050565b60008083601f84011261260d57600080fd5b50813567ffffffffffffffff81111561262557600080fd5b60208301915083602082850101111561263d57600080fd5b9250929050565b6000806000806040858703121561265a57600080fd5b843567ffffffffffffffff8082111561267257600080fd5b61267e888389016125fb565b9096509450602087013591508082111561269757600080fd5b506126a4878288016125fb565b95989497509550505050565b6000602082840312156126c257600080fd5b612417826125b6565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156126f757600080fd5b843561270281612489565b9350602085013561271281612489565b925060408501359150606085013567ffffffffffffffff8082111561273657600080fd5b818701915087601f83011261274a57600080fd5b81358181111561275c5761275c6126cb565b604051601f8201601f19908116603f01168101908382118183101715612784576127846126cb565b816040528281528a602084870101111561279d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156127d457600080fd5b82356127df81612489565b915060208301356127ef81612489565b809150509250929050565b600181811c9082168061280e57607f821691505b6020821081141561282f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128935761289361286a565b500190565b60008160001904831182151516156128b2576128b261286a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826128dc576128dc6128b7565b500490565b6000828210156128f3576128f361286a565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561292057600080fd5b815161241781612489565b600060001982141561293f5761293f61286a565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b8054600090600181811c9080831680612a2557607f831692505b6020808410821415612a4757634e487b7160e01b600052602260045260246000fd5b818015612a5b5760018114612a6c57612a99565b60ff19861689528489019650612a99565b60008881526020902060005b86811015612a915781548b820152908501908301612a78565b505084890196505b50505050505092915050565b6000612ab18286612a0b565b8451612ac181836020890161241e565b612acd81830186612a0b565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b3957612b396128b7565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b879083018461244a565b9695505050505050565b600060208284031215612ba357600080fd5b8151612417816123e456fea26469706673582212206bb9196b39ce101ca46e8617df38d6218980ee0e65e03566a91cabea9dd2662564736f6c63430008090033000000000000000000000000625d9e54d4346bc8c1b377e8bfcabb64bbb8dc89

Deployed Bytecode

0x6080604052600436106102485760003560e01c80636f8b44b011610138578063acec338a116100b0578063ce7c2ac211610077578063ce7c2ac214610719578063dbe7e3bd1461074f578063e33b7de31461077f578063e985e9c514610794578063ec6fa412146107dd578063f2fde38b146107f057005b8063acec338a1461068e578063b88d4fde146106ae578063b91774aa146106ce578063b99bace8146106e4578063c87b56dd146106f957005b80638da5cb5b116100ff5780638da5cb5b146105cf57806391b7f5ed146105ed57806395d89b411461060d5780639852595c14610622578063a035b1fe14610658578063a22cb4651461066e57005b80636f8b44b01461053b57806370a082311461055b578063715018a61461057b5780637fc27803146105905780638b83209b146105af57005b80632f745c59116101cb57806342842e0e1161019257806342842e0e1461047b5780634a994eef1461049b5780634f6ccce7146104bb5780636352211e146104db5780636790a9de146104fb57806368714d441461051b57005b80632f745c59146103fb57806332cb6b0c1461041b57806337f3e493146104315780633a98ef39146104515780633ccfd60b1461046657005b806318160ddd1161020f57806318160ddd1461036257806319165587146103815780631e4c9a67146103a157806322f3e2d4146103c157806323b872dd146103db57005b806301ffc9a71461029357806306fdde03146102c857806307779627146102ea578063081812fc1461030a578063095ea7b31461034257005b36610291577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561029f57600080fd5b506102b36102ae3660046123fa565b610810565b60405190151581526020015b60405180910390f35b3480156102d457600080fd5b506102dd61083b565b6040516102bf9190612476565b3480156102f657600080fd5b506102b361030536600461249e565b6108cd565b34801561031657600080fd5b5061032a6103253660046124bb565b610924565b6040516001600160a01b0390911681526020016102bf565b34801561034e57600080fd5b5061029161035d3660046124d4565b6109ac565b34801561036e57600080fd5b506004545b6040519081526020016102bf565b34801561038d57600080fd5b5061029161039c36600461249e565b610ac2565b3480156103ad57600080fd5b506102916103bc366004612500565b610c93565b3480156103cd57600080fd5b50600e546102b39060ff1681565b3480156103e757600080fd5b506102916103f6366004612575565b610ee5565b34801561040757600080fd5b506103736104163660046124d4565b610f16565b34801561042757600080fd5b50610373600d5481565b34801561043d57600080fd5b506102b361044c3660046124bb565b610fc0565b34801561045d57600080fd5b50600754610373565b34801561047257600080fd5b50610291611028565b34801561048757600080fd5b50610291610496366004612575565b6110aa565b3480156104a757600080fd5b506102916104b63660046125c6565b6110c5565b3480156104c757600080fd5b506103736104d63660046124bb565b61111a565b3480156104e757600080fd5b5061032a6104f63660046124bb565b61118c565b34801561050757600080fd5b50610291610516366004612644565b611218565b34801561052757600080fd5b506102916105363660046124bb565b611267565b34801561054757600080fd5b506102916105563660046124bb565b6112a4565b34801561056757600080fd5b5061037361057636600461249e565b611345565b34801561058757600080fd5b50610291611389565b34801561059c57600080fd5b50600e546102b390610100900460ff1681565b3480156105bb57600080fd5b5061032a6105ca3660046124bb565b6113bf565b3480156105db57600080fd5b506000546001600160a01b031661032a565b3480156105f957600080fd5b506102916106083660046124bb565b6113ef565b34801561061957600080fd5b506102dd61142c565b34801561062e57600080fd5b5061037361063d36600461249e565b6001600160a01b03166000908152600a602052604090205490565b34801561066457600080fd5b5061037360105481565b34801561067a57600080fd5b506102916106893660046125c6565b61143b565b34801561069a57600080fd5b506102916106a93660046126b0565b611500565b3480156106ba57600080fd5b506102916106c93660046126e1565b611552565b3480156106da57600080fd5b50610373600f5481565b3480156106f057600080fd5b50610291611584565b34801561070557600080fd5b506102dd6107143660046124bb565b6115cb565b34801561072557600080fd5b5061037361073436600461249e565b6001600160a01b031660009081526009602052604090205490565b34801561075b57600080fd5b506102b361076a3660046124bb565b60146020526000908152604090205460ff1681565b34801561078b57600080fd5b50600854610373565b3480156107a057600080fd5b506102b36107af3660046127c1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102916107eb3660046124bb565b61166f565b3480156107fc57600080fd5b5061029161080b36600461249e565b6117ff565b60006001600160e01b0319821663780e9d6360e01b1480610835575061083582611897565b92915050565b60606002805461084a906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610876906127fa565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b600080546001600160a01b031633146109015760405162461bcd60e51b81526004016108f890612835565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b600061092f826118e7565b6109905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f8565b506000908152600560205260409020546001600160a01b031690565b60006109b78261118c565b9050806001600160a01b0316836001600160a01b03161415610a255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f8565b336001600160a01b0382161480610a415750610a4181336107af565b610ab35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f8565b610abd8383611931565b505050565b6001600160a01b038116600090815260096020526040902054610b365760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016108f8565b600060085447610b469190612880565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610b7d9085612898565b610b8791906128cd565b610b9191906128e1565b905080610bf45760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016108f8565b6001600160a01b0383166000908152600a6020526040902054610c18908290612880565b6001600160a01b0384166000908152600a6020526040902055600854610c3f908290612880565b600855610c4c838261199f565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6000610c9e60045490565b600e54909150610100900460ff16610ceb5760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064016108f8565b60005b82811015610e6357600c5433906001600160a01b0316636352211e868685818110610d1b57610d1b6128f8565b905060200201356040518263ffffffff1660e01b8152600401610d4091815260200190565b60206040518083038186803b158015610d5857600080fd5b505afa158015610d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d90919061290e565b6001600160a01b031614610ddc5760405162461bcd60e51b81526020600482015260136024820152722737ba103a3432902232b4ba3c9037bbb732b960691b60448201526064016108f8565b60146000858584818110610df257610df26128f8565b602090810292909201358352508101919091526040016000205460ff1615610e515760405162461bcd60e51b815260206004820152601260248201527111195a5d1e48185b1c9958591e481d5cd95960721b60448201526064016108f8565b80610e5b8161292b565b915050610cee565b5060005b82811015610edf57600160146000868685818110610e8757610e876128f8565b60209081029290920135835250810191909152604001600020805460ff1916911515919091179055610ecd33610ebd8385612880565b610ec8906000612880565b611ab8565b80610ed78161292b565b915050610e67565b50505050565b610eef3382611bec565b610f0b5760405162461bcd60e51b81526004016108f890612946565b610abd838383611cd6565b6000610f2183611e37565b8210610f835760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108f8565b6001600160a01b0383166000908152601360205260409020805483908110610fad57610fad6128f8565b9060005260206000200154905092915050565b6000610d0482108015610fd35750600082115b6110125760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a590811195a5d1e481a5960821b60448201526064016108f8565b5060009081526014602052604090205460ff1690565b6000546001600160a01b031633146110525760405162461bcd60e51b81526004016108f890612835565b604051600090339047908381818185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110a757600080fd5b50565b610abd83838360405180602001604052806000815250611552565b6000546001600160a01b031633146110ef5760405162461bcd60e51b81526004016108f890612835565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b600061112560045490565b82106111885760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108f8565b5090565b600080600483815481106111a2576111a26128f8565b6000918252602090912001546001600160a01b03169050806108355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f8565b3360009081526001602052604090205460ff166112475760405162461bcd60e51b81526004016108f890612997565b61125360118585612354565b5061126060128383612354565b5050505050565b3360009081526001602052604090205460ff166112965760405162461bcd60e51b81526004016108f890612997565b80600f54146110a757600f55565b6000546001600160a01b031633146112ce5760405162461bcd60e51b81526004016108f890612835565b80600d54146110a7576004548110156113405760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b60648201526084016108f8565b600d55565b60006001600160a01b03821661136d5760405162461bcd60e51b81526004016108f8906129c1565b506001600160a01b031660009081526013602052604090205490565b6000546001600160a01b031633146113b35760405162461bcd60e51b81526004016108f890612835565b6113bd6000611ec6565b565b6000600b82815481106113d4576113d46128f8565b6000918252602090912001546001600160a01b031692915050565b3360009081526001602052604090205460ff1661141e5760405162461bcd60e51b81526004016108f890612997565b80601054146110a757601055565b60606003805461084a906127fa565b6001600160a01b0382163314156114945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3360009081526001602052604090205460ff1661152f5760405162461bcd60e51b81526004016108f890612997565b600e5460ff161515811515146110a757600e805482151560ff1990911617905550565b61155c3383611bec565b6115785760405162461bcd60e51b81526004016108f890612946565b610edf84848484611f16565b6000546001600160a01b031633146115ae5760405162461bcd60e51b81526004016108f890612835565b600e805461ff001981166101009182900460ff1615909102179055565b60606115d6826118e7565b61163a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f8565b601161164583611f49565b601260405160200161165993929190612aa5565b6040516020818303038152906040529050919050565b600061167a60045490565b600e5490915060ff166116cf5760405162461bcd60e51b815260206004820152601860248201527f5075626c6963204d696e74696e6720697320436c6f736564000000000000000060448201526064016108f8565b600082116117085760405162461bcd60e51b81526004016108f89060208082526004908201526315da185d60e21b604082015260600190565b600f5482111561174c5760405162461bcd60e51b815260206004820152600f60248201526e446f6e27742062652067726565647960881b60448201526064016108f8565b600d546117598383612880565b11156117a75760405162461bcd60e51b815260206004820152601760248201527f4d617820537570706c7920686173206265656e2068697400000000000000000060448201526064016108f8565b816010546117b59190612898565b3410156117c157600080fd5b60005b82811015610abd576117ef336117da8385612880565b60405180602001604052806000815250612047565b6117f88161292b565b90506117c4565b6000546001600160a01b031633146118295760405162461bcd60e51b81526004016108f890612835565b6001600160a01b03811661188e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b6110a781611ec6565b60006001600160e01b031982166380ac58cd60e01b14806118c857506001600160e01b03198216635b5e139f60e01b145b8061083557506301ffc9a760e01b6001600160e01b0319831614610835565b60045460009082108015610835575060006001600160a01b031660048381548110611914576119146128f8565b6000918252602090912001546001600160a01b0316141592915050565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119668261118c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156119ef5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108f8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a3c576040519150601f19603f3d011682016040523d82523d6000602084013e611a41565b606091505b5050905080610abd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108f8565b6001600160a01b038216611b0e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f8565b611b17816118e7565b15611b645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f8565b611b706000838361207a565b6004805460018101825560009182527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611bf7826118e7565b611c585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f8565b6000611c638361118c565b9050806001600160a01b0316846001600160a01b03161480611c9e5750836001600160a01b0316611c9384610924565b6001600160a01b0316145b80611cce57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ce98261118c565b6001600160a01b031614611d515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f8565b6001600160a01b038216611db35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f8565b611dbe83838361207a565b611dc9600082611931565b8160048281548110611ddd57611ddd6128f8565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006001600160a01b038216611e5f5760405162461bcd60e51b81526004016108f8906129c1565b600454600090815b81811015611ebd5760048181548110611e8257611e826128f8565b6000918252602090912001546001600160a01b0386811691161415611ead57611eaa8361292b565b92505b611eb68161292b565b9050611e67565b50909392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611f21848484611cd6565b611f2d84848484612247565b610edf5760405162461bcd60e51b81526004016108f890612ad8565b606081611f6d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f975780611f818161292b565b9150611f909050600a836128cd565b9150611f71565b60008167ffffffffffffffff811115611fb257611fb26126cb565b6040519080825280601f01601f191660200182016040528015611fdc576020820181803683370190505b5090505b8415611cce57611ff16001836128e1565b9150611ffe600a86612b2a565b612009906030612880565b60f81b81838151811061201e5761201e6128f8565b60200101906001600160f81b031916908160001a905350612040600a866128cd565b9450611fe0565b6120518383611ab8565b61205e6000848484612247565b610abd5760405162461bcd60e51b81526004016108f890612ad8565b60006001600160a01b0384161515806120a45750806001600160a01b0316836001600160a01b0316145b156121e1576001600160a01b038416600090815260136020526040812054905b818110156121de576001600160a01b03861660009081526013602052604090208054859190839081106120f9576120f96128f8565b906000526020600020015414156121ce576001600160a01b038616600090815260136020526040902061212d6001846128e1565b8154811061213d5761213d6128f8565b906000526020600020015460136000886001600160a01b03166001600160a01b03168152602001908152602001600020828154811061217e5761217e6128f8565b60009182526020808320909101929092556001600160a01b03881681526013909152604090208054806121b3576121b3612b3e565b600190038181906000526020600020016000905590556121de565b6121d78161292b565b90506120c4565b50505b806001600160a01b0316846001600160a01b031614806122135750806001600160a01b0316836001600160a01b031614155b15610edf57506001600160a01b03919091166000908152601360209081526040822080546001810182559083529120015550565b60006001600160a01b0384163b1561234957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061228b903390899088908890600401612b54565b602060405180830381600087803b1580156122a557600080fd5b505af19250505080156122d5575060408051601f3d908101601f191682019092526122d291810190612b91565b60015b61232f573d808015612303576040519150601f19603f3d011682016040523d82523d6000602084013e612308565b606091505b5080516123275760405162461bcd60e51b81526004016108f890612ad8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cce565b506001949350505050565b828054612360906127fa565b90600052602060002090601f01602090048101928261238257600085556123c8565b82601f1061239b5782800160ff198235161785556123c8565b828001600101855582156123c8579182015b828111156123c85782358255916020019190600101906123ad565b506111889291505b8082111561118857600081556001016123d0565b6001600160e01b0319811681146110a757600080fd5b60006020828403121561240c57600080fd5b8135612417816123e4565b9392505050565b60005b83811015612439578181015183820152602001612421565b83811115610edf5750506000910152565b6000815180845261246281602086016020860161241e565b601f01601f19169290920160200192915050565b602081526000612417602083018461244a565b6001600160a01b03811681146110a757600080fd5b6000602082840312156124b057600080fd5b813561241781612489565b6000602082840312156124cd57600080fd5b5035919050565b600080604083850312156124e757600080fd5b82356124f281612489565b946020939093013593505050565b6000806020838503121561251357600080fd5b823567ffffffffffffffff8082111561252b57600080fd5b818501915085601f83011261253f57600080fd5b81358181111561254e57600080fd5b8660208260051b850101111561256357600080fd5b60209290920196919550909350505050565b60008060006060848603121561258a57600080fd5b833561259581612489565b925060208401356125a581612489565b929592945050506040919091013590565b8035801515811461091f57600080fd5b600080604083850312156125d957600080fd5b82356125e481612489565b91506125f2602084016125b6565b90509250929050565b60008083601f84011261260d57600080fd5b50813567ffffffffffffffff81111561262557600080fd5b60208301915083602082850101111561263d57600080fd5b9250929050565b6000806000806040858703121561265a57600080fd5b843567ffffffffffffffff8082111561267257600080fd5b61267e888389016125fb565b9096509450602087013591508082111561269757600080fd5b506126a4878288016125fb565b95989497509550505050565b6000602082840312156126c257600080fd5b612417826125b6565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156126f757600080fd5b843561270281612489565b9350602085013561271281612489565b925060408501359150606085013567ffffffffffffffff8082111561273657600080fd5b818701915087601f83011261274a57600080fd5b81358181111561275c5761275c6126cb565b604051601f8201601f19908116603f01168101908382118183101715612784576127846126cb565b816040528281528a602084870101111561279d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156127d457600080fd5b82356127df81612489565b915060208301356127ef81612489565b809150509250929050565b600181811c9082168061280e57607f821691505b6020821081141561282f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128935761289361286a565b500190565b60008160001904831182151516156128b2576128b261286a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826128dc576128dc6128b7565b500490565b6000828210156128f3576128f361286a565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561292057600080fd5b815161241781612489565b600060001982141561293f5761293f61286a565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b8054600090600181811c9080831680612a2557607f831692505b6020808410821415612a4757634e487b7160e01b600052602260045260246000fd5b818015612a5b5760018114612a6c57612a99565b60ff19861689528489019650612a99565b60008881526020902060005b86811015612a915781548b820152908501908301612a78565b505084890196505b50505050505092915050565b6000612ab18286612a0b565b8451612ac181836020890161241e565b612acd81830186612a0b565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612b3957612b396128b7565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b879083018461244a565b9695505050505050565b600060208284031215612ba357600080fd5b8151612417816123e456fea26469706673582212206bb9196b39ce101ca46e8617df38d6218980ee0e65e03566a91cabea9dd2662564736f6c63430008090033

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

000000000000000000000000625d9e54d4346bc8c1b377e8bfcabb64bbb8dc89

-----Decoded View---------------
Arg [0] : tfcAddress (address): 0x625D9e54d4346BC8c1b377e8bfCaBb64Bbb8dC89

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000625d9e54d4346bc8c1b377e8bfcabb64bbb8dc89


Deployed Bytecode Sourcemap

49677:4569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5580:40;678:10;5580:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;5610:9:0;270:2:1;255:18;;248:34;161:18;5580:40:0;;;;;;;49677:4569;;;46914:225;;;;;;;;;;-1:-1:-1;46914:225:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;46914:225:0;;;;;;;;36247:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34011:112::-;;;;;;;;;;-1:-1:-1;34011:112:0;;;;;:::i;:::-;;:::i;37054:221::-;;;;;;;;;;-1:-1:-1;37054:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2359:32:1;;;2341:51;;2329:2;2314:18;37054:221:0;2195:203:1;36578:412:0;;;;;;;;;;-1:-1:-1;36578:412:0;;;;;:::i;:::-;;:::i;48016:110::-;;;;;;;;;;-1:-1:-1;48104:7:0;:14;48016:110;;;2869:25:1;;;2857:2;2842:18;48016:110:0;2723:177:1;6774:613:0;;;;;;;;;;-1:-1:-1;6774:613:0;;;;;:::i;:::-;;:::i;51175:595::-;;;;;;;;;;-1:-1:-1;51175:595:0;;;;;:::i;:::-;;:::i;49837:30::-;;;;;;;;;;-1:-1:-1;49837:30:0;;;;;;;;37938:339;;;;;;;;;;-1:-1:-1;37938:339:0;;;;;:::i;:::-;;:::i;53086:252::-;;;;;;;;;;-1:-1:-1;53086:252:0;;;;;:::i;:::-;;:::i;49803:29::-;;;;;;;;;;;;;;;;50990:179;;;;;;;;;;-1:-1:-1;50990:179:0;;;;;:::i;:::-;;:::i;5709:91::-;;;;;;;;;;-1:-1:-1;5780:12:0;;5709:91;;52714:145;;;;;;;;;;;;;:::i;38346:185::-;;;;;;;;;;-1:-1:-1;38346:185:0;;;;;:::i;:::-;;:::i;34127:116::-;;;;;;;;;;-1:-1:-1;34127:116:0;;;;;:::i;:::-;;:::i;48201:222::-;;;;;;;;;;-1:-1:-1;48201:222:0;;;;;:::i;:::-;;:::i;35943:239::-;;;;;;;;;;-1:-1:-1;35943:239:0;;;;;:::i;:::-;;:::i;52276:174::-;;;;;;;;;;-1:-1:-1;52276:174:0;;;;;:::i;:::-;;:::i;52030:128::-;;;;;;;;;;-1:-1:-1;52030:128:0;;;;;:::i;:::-;;:::i;52474:235::-;;;;;;;;;;-1:-1:-1;52474:235:0;;;;;:::i;:::-;;:::i;52877:205::-;;;;;;;;;;-1:-1:-1;52877:205:0;;;;;:::i;:::-;;:::i;2386:94::-;;;;;;;;;;;;;:::i;49872:32::-;;;;;;;;;;-1:-1:-1;49872:32:0;;;;;;;;;;;6476:100;;;;;;;;;;-1:-1:-1;6476:100:0;;;;;:::i;:::-;;:::i;1739:87::-;;;;;;;;;;-1:-1:-1;1785:7:0;1812:6;-1:-1:-1;;;;;1812:6:0;1739:87;;52162:110;;;;;;;;;;-1:-1:-1;52162:110:0;;;;;:::i;:::-;;:::i;36414:104::-;;;;;;;;;;;;;:::i;6278:109::-;;;;;;;;;;-1:-1:-1;6278:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;6361:18:0;6334:7;6361:18;;;:9;:18;;;;;;;6278:109;49941:36;;;;;;;;;;;;;;;;37345:295;;;;;;;;;;-1:-1:-1;37345:295:0;;;;;:::i;:::-;;:::i;51901:125::-;;;;;;;;;;-1:-1:-1;51901:125:0;;;;;:::i;:::-;;:::i;38602:328::-;;;;;;;;;;-1:-1:-1;38602:328:0;;;;;:::i;:::-;;:::i;49909:27::-;;;;;;;;;;;;;;;;51776:97;;;;;;;;;;;;;:::i;53342:266::-;;;;;;;;;;-1:-1:-1;53342:266:0;;;;;:::i;:::-;;:::i;6076:105::-;;;;;;;;;;-1:-1:-1;6076:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;6157:16:0;6130:7;6157:16;;;:7;:16;;;;;;;6076:105;50109:40;;;;;;;;;;-1:-1:-1;50109:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5892:95;;;;;;;;;;-1:-1:-1;5965:14:0;;5892:95;;37709:164;;;;;;;;;;-1:-1:-1;37709:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37830:25:0;;;37806:4;37830:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37709:164;50544:426;;;;;;:::i;:::-;;:::i;2633:192::-;;;;;;;;;;-1:-1:-1;2633:192:0;;;;;:::i;:::-;;:::i;46914:225::-;47017:4;-1:-1:-1;;;;;;47041:50:0;;-1:-1:-1;;;47041:50:0;;:90;;;47095:36;47119:11;47095:23;:36::i;:::-;47034:97;46914:225;-1:-1:-1;;46914:225:0:o;36247:100::-;36301:13;36334:5;36327:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36247:100;:::o;34011:112::-;34081:4;1812:6;;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;34101:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;2028:1;34011:112:::0;;;:::o;37054:221::-;37130:7;37158:16;37166:7;37158;:16::i;:::-;37150:73;;;;-1:-1:-1;;;37150:73:0;;8739:2:1;37150:73:0;;;8721:21:1;8778:2;8758:18;;;8751:30;8817:34;8797:18;;;8790:62;-1:-1:-1;;;8868:18:1;;;8861:42;8920:19;;37150:73:0;8537:408:1;37150:73:0;-1:-1:-1;37243:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37243:24:0;;37054:221::o;36578:412::-;36659:13;36675:24;36691:7;36675:15;:24::i;:::-;36659:40;;36724:5;-1:-1:-1;;;;;36718:11:0;:2;-1:-1:-1;;;;;36718:11:0;;;36710:57;;;;-1:-1:-1;;;36710:57:0;;9152:2:1;36710:57:0;;;9134:21:1;9191:2;9171:18;;;9164:30;9230:34;9210:18;;;9203:62;-1:-1:-1;;;9281:18:1;;;9274:31;9322:19;;36710:57:0;8950:397:1;36710:57:0;678:10;-1:-1:-1;;;;;36802:21:0;;;;:62;;-1:-1:-1;36827:37:0;36844:5;678:10;37709:164;:::i;36827:37::-;36780:168;;;;-1:-1:-1;;;36780:168:0;;9554:2:1;36780:168:0;;;9536:21:1;9593:2;9573:18;;;9566:30;9632:34;9612:18;;;9605:62;9703:26;9683:18;;;9676:54;9747:19;;36780:168:0;9352:420:1;36780:168:0;36961:21;36970:2;36974:7;36961:8;:21::i;:::-;36648:342;36578:412;;:::o;6774:613::-;-1:-1:-1;;;;;6850:16:0;;6869:1;6850:16;;;:7;:16;;;;;;6842:71;;;;-1:-1:-1;;;6842:71:0;;9979:2:1;6842:71:0;;;9961:21:1;10018:2;9998:18;;;9991:30;10057:34;10037:18;;;10030:62;-1:-1:-1;;;10108:18:1;;;10101:36;10154:19;;6842:71:0;9777:402:1;6842:71:0;6926:21;6974:14;;6950:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;7069:18:0;;6999:15;7069:18;;;:9;:18;;;;;;;;;7054:12;;7034:7;:16;;;;;;;6926:62;;-1:-1:-1;6999:15:0;;7018:32;;6926:62;7018:32;:::i;:::-;7017:49;;;;:::i;:::-;:70;;;;:::i;:::-;6999:88;-1:-1:-1;7108:12:0;7100:68;;;;-1:-1:-1;;;7100:68:0;;11211:2:1;7100:68:0;;;11193:21:1;11250:2;11230:18;;;11223:30;11289:34;11269:18;;;11262:62;-1:-1:-1;;;11340:18:1;;;11333:41;11391:19;;7100:68:0;11009:407:1;7100:68:0;-1:-1:-1;;;;;7202:18:0;;;;;;:9;:18;;;;;;:28;;7223:7;;7202:28;:::i;:::-;-1:-1:-1;;;;;7181:18:0;;;;;;:9;:18;;;;;:49;7258:14;;:24;;7275:7;;7258:24;:::i;:::-;7241:14;:41;7295:35;7313:7;7322;7295:17;:35::i;:::-;7346:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;7346:33:0;;161:18:1;7346:33:0;;;;;;;6831:556;;6774:613;:::o;51175:595::-;51248:14;51265:13;48104:7;:14;;48016:110;51265:13;51297;;51248:30;;-1:-1:-1;51297:13:0;;;;;51289:42;;;;-1:-1:-1;;;51289:42:0;;11910:2:1;51289:42:0;;;11892:21:1;11949:2;11929:18;;;11922:30;-1:-1:-1;;;11968:18:1;;;11961:46;12024:18;;51289:42:0;11708:340:1;51289:42:0;51349:9;51344:226;51364:19;;;51344:226;;;51413:11;;51449:10;;-1:-1:-1;;;;;51413:11:0;:19;51433:8;;51442:1;51433:11;;;;;;;:::i;:::-;;;;;;;51413:32;;;;;;;;;;;;;2869:25:1;;2857:2;2842:18;;2723:177;51413:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51413:46:0;;51405:78;;;;-1:-1:-1;;;51405:78:0;;12643:2:1;51405:78:0;;;12625:21:1;12682:2;12662:18;;;12655:30;-1:-1:-1;;;12701:18:1;;;12694:49;12760:18;;51405:78:0;12441:343:1;51405:78:0;51506:7;:20;51514:8;;51523:1;51514:11;;;;;;;:::i;:::-;;;;;;;;;;51506:20;;-1:-1:-1;51506:20:0;;;;;;;;-1:-1:-1;51506:20:0;;;;:29;51498:60;;;;-1:-1:-1;;;51498:60:0;;12991:2:1;51498:60:0;;;12973:21:1;13030:2;13010:18;;;13003:30;-1:-1:-1;;;13049:18:1;;;13042:48;13107:18;;51498:60:0;12789:342:1;51498:60:0;51385:3;;;;:::i;:::-;;;;51344:226;;;;51587:9;51582:181;51602:19;;;51582:181;;;51699:4;51676:7;:20;51684:8;;51693:1;51684:11;;;;;;;:::i;:::-;;;;;;;;;;51676:20;;-1:-1:-1;51676:20:0;;;;;;;;-1:-1:-1;51676:20:0;:27;;-1:-1:-1;;51676:27:0;;;;;;;;;;51718:33;51724:10;51736;51745:1;51736:6;:10;:::i;:::-;:14;;51749:1;51736:14;:::i;:::-;51718:5;:33::i;:::-;51623:3;;;;:::i;:::-;;;;51582:181;;;;51237:533;51175:595;;:::o;37938:339::-;38133:41;678:10;38166:7;38133:18;:41::i;:::-;38125:103;;;;-1:-1:-1;;;38125:103:0;;;;;;;:::i;:::-;38241:28;38251:4;38257:2;38261:7;38241:9;:28::i;53086:252::-;53183:15;53223:24;53241:5;53223:17;:24::i;:::-;53215:5;:32;53207:88;;;;-1:-1:-1;;;53207:88:0;;13896:2:1;53207:88:0;;;13878:21:1;13935:2;13915:18;;;13908:30;13974:34;13954:18;;;13947:62;-1:-1:-1;;;14025:18:1;;;14018:41;14076:19;;53207:88:0;13694:407:1;53207:88:0;-1:-1:-1;;;;;53309:16:0;;;;;;:9;:16;;;;;:23;;53326:5;;53309:23;;;;;;:::i;:::-;;;;;;;;;53302:30;;53086:252;;;;:::o;50990:179::-;51052:4;51087;51077:7;:14;:29;;;;;51105:1;51095:7;:11;51077:29;51069:58;;;;-1:-1:-1;;;51069:58:0;;14308:2:1;51069:58:0;;;14290:21:1;14347:2;14327:18;;;14320:30;-1:-1:-1;;;14366:18:1;;;14359:46;14422:18;;51069:58:0;14106:340:1;51069:58:0;-1:-1:-1;51145:16:0;;;;:7;:16;;;;;;;;;50990:179::o;52714:145::-;1785:7;1812:6;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;52776:58:::1;::::0;52758:12:::1;::::0;52784:10:::1;::::0;52808:21:::1;::::0;52758:12;52776:58;52758:12;52776:58;52808:21;52784:10;52776:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52757:77;;;52846:7;52838:16;;;::::0;::::1;;52753:106;52714:145::o:0;38346:185::-;38484:39;38501:4;38507:2;38511:7;38484:39;;;;;;;;;;;;:16;:39::i;34127:116::-;1785:7;1812:6;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34207:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:30;;-1:-1:-1;;34207:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34127:116::o;48201:222::-;48276:7;48312:31;48104:7;:14;;48016:110;48312:31;48304:5;:39;48296:96;;;;-1:-1:-1;;;48296:96:0;;14863:2:1;48296:96:0;;;14845:21:1;14902:2;14882:18;;;14875:30;14941:34;14921:18;;;14914:62;-1:-1:-1;;;14992:18:1;;;14985:42;15044:19;;48296:96:0;14661:408:1;48296:96:0;-1:-1:-1;48410:5:0;48201:222::o;35943:239::-;36015:7;36035:13;36051:7;36059;36051:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36051:16:0;;-1:-1:-1;36086:19:0;36078:73;;;;-1:-1:-1;;;36078:73:0;;15276:2:1;36078:73:0;;;15258:21:1;15315:2;15295:18;;;15288:30;15354:34;15334:18;;;15327:62;-1:-1:-1;;;15405:18:1;;;15398:39;15454:19;;36078:73:0;15074:405:1;52276:174:0;33945:10;33934:22;;;;:10;:22;;;;;;;;33926:52;;;;-1:-1:-1;;;33926:52:0;;;;;;;:::i;:::-;52382:27:::1;:13;52398:11:::0;;52382:27:::1;:::i;:::-;-1:-1:-1::0;52416:28:0::1;:15;52434:10:::0;;52416:28:::1;:::i;:::-;;52276:174:::0;;;;:::o;52030:128::-;33945:10;33934:22;;;;:10;:22;;;;;;;;33926:52;;;;-1:-1:-1;;;33926:52:0;;;;;;;:::i;:::-;52112:9:::1;52099;;:22;52095:57;;52131:9;:21:::0;52030:128::o;52474:235::-;1785:7;1812:6;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;52555:9:::1;52541:10;;:23;52537:163;;48104:7:::0;:14;52583:9:::1;:26;;52575:86;;;::::0;-1:-1:-1;;;52575:86:0;;16031:2:1;52575:86:0::1;::::0;::::1;16013:21:1::0;16070:2;16050:18;;;16043:30;16109:34;16089:18;;;16082:62;-1:-1:-1;;;16160:18:1;;;16153:44;16214:19;;52575:86:0::1;15829:410:1::0;52575:86:0::1;52670:10;:22:::0;52474:235::o;52877:205::-;52949:7;-1:-1:-1;;;;;52973:19:0;;52965:74;;;;-1:-1:-1;;;52965:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;53053:16:0;;;;;:9;:16;;;;;:23;;52877:205::o;2386:94::-;1785:7;1812:6;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;2451:21:::1;2469:1;2451:9;:21::i;:::-;2386:94::o:0;6476:100::-;6527:7;6554;6562:5;6554:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6554:14:0;;6476:100;-1:-1:-1;;6476:100:0:o;52162:110::-;33945:10;33934:22;;;;:10;:22;;;;;;;;33926:52;;;;-1:-1:-1;;;33926:52:0;;;;;;;:::i;:::-;52236:6:::1;52227:5;;:15;52223:43;;52252:5;:14:::0;52162:110::o;36414:104::-;36470:13;36503:7;36496:14;;;;;:::i;37345:295::-;-1:-1:-1;;;;;37448:24:0;;678:10;37448:24;;37440:62;;;;-1:-1:-1;;;37440:62:0;;16857:2:1;37440:62:0;;;16839:21:1;16896:2;16876:18;;;16869:30;16935:27;16915:18;;;16908:55;16980:18;;37440:62:0;16655:349:1;37440:62:0;678:10;37515:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37515:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37515:53:0;;;;;;;;;;37584:48;;819:41:1;;;37515:42:0;;678:10;37584:48;;792:18:1;37584:48:0;;;;;;;37345:295;;:::o;51901:125::-;33945:10;33934:22;;;;:10;:22;;;;;;;;33926:52;;;;-1:-1:-1;;;33926:52:0;;;;;;;:::i;:::-;51969:8:::1;::::0;::::1;;:21;;::::0;::::1;;;51965:55;;52000:8;:20:::0;;;::::1;;-1:-1:-1::0;;52000:20:0;;::::1;;::::0;;51901:125;:::o;38602:328::-;38777:41;678:10;38810:7;38777:18;:41::i;:::-;38769:103;;;;-1:-1:-1;;;38769:103:0;;;;;;;:::i;:::-;38883:39;38897:4;38903:2;38907:7;38916:5;38883:13;:39::i;51776:97::-;1785:7;1812:6;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;51852:13:::1;::::0;;-1:-1:-1;;51835:30:0;::::1;51852:13;::::0;;;::::1;;;51851:14;51835:30:::0;;::::1;;::::0;;51776:97::o;53342:266::-;53414:13;53444:16;53452:7;53444;:16::i;:::-;53436:76;;;;-1:-1:-1;;;53436:76:0;;17211:2:1;53436:76:0;;;17193:21:1;17250:2;17230:18;;;17223:30;17289:34;17269:18;;;17262:62;-1:-1:-1;;;17340:18:1;;;17333:45;17395:19;;53436:76:0;17009:411:1;53436:76:0;53550:13;53565:18;:7;:16;:18::i;:::-;53585:15;53533:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53519:83;;53342:266;;;:::o;50544:426::-;50597:9;50609:13;48104:7;:14;;48016:110;50609:13;50634:8;;50597:25;;-1:-1:-1;50634:8:0;;50626:46;;;;-1:-1:-1;;;50626:46:0;;19192:2:1;50626:46:0;;;19174:21:1;19231:2;19211:18;;;19204:30;19270:26;19250:18;;;19243:54;19314:18;;50626:46:0;18990:348:1;50626:46:0;50695:1;50684:8;:12;50676:30;;;;-1:-1:-1;;;50676:30:0;;;;;;19545:2:1;19527:21;;;19584:1;19564:18;;;19557:29;-1:-1:-1;;;19617:2:1;19602:18;;19595:34;19661:2;19646:18;;19343:327;50676:30:0;50730:9;;50718:8;:21;;50710:50;;;;-1:-1:-1;;;50710:50:0;;19877:2:1;50710:50:0;;;19859:21:1;19916:2;19896:18;;;19889:30;-1:-1:-1;;;19935:18:1;;;19928:45;19990:18;;50710:50:0;19675:339:1;50710:50:0;50788:10;;50772:12;50776:8;50772:1;:12;:::i;:::-;:26;;50764:63;;;;-1:-1:-1;;;50764:63:0;;20221:2:1;50764:63:0;;;20203:21:1;20260:2;20240:18;;;20233:30;20299:25;20279:18;;;20272:53;20342:18;;50764:63:0;20019:347:1;50764:63:0;50860:8;50852:5;;:16;;;;:::i;:::-;50839:9;:29;;50831:38;;;;;;50878:9;50873:80;50897:8;50893:1;:12;50873:80;;;50916:32;50926:10;50938:5;50942:1;50938;:5;:::i;:::-;50916:32;;;;;;;;;;;;:9;:32::i;:::-;50907:3;;;:::i;:::-;;;50873:80;;2633:192;1785:7;1812:6;-1:-1:-1;;;;;1812:6:0;678:10;1957:23;1949:68;;;;-1:-1:-1;;;1949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2722:22:0;::::1;2714:73;;;::::0;-1:-1:-1;;;2714:73:0;;20573:2:1;2714:73:0::1;::::0;::::1;20555:21:1::0;20612:2;20592:18;;;20585:30;20651:34;20631:18;;;20624:62;-1:-1:-1;;;20702:18:1;;;20695:36;20748:19;;2714:73:0::1;20371:402:1::0;2714:73:0::1;2798:19;2808:8;2798:9;:19::i;35098:305::-:0;35200:4;-1:-1:-1;;;;;;35237:40:0;;-1:-1:-1;;;35237:40:0;;:105;;-1:-1:-1;;;;;;;35294:48:0;;-1:-1:-1;;;35294:48:0;35237:105;:158;;;-1:-1:-1;;;;;;;;;;26814:40:0;;;35359:36;26705:157;40436:155;40535:7;:14;40501:4;;40525:24;;:58;;;;;40581:1;-1:-1:-1;;;;;40553:30:0;:7;40561;40553:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;40553:16:0;:30;;40518:65;40436:155;-1:-1:-1;;40436:155:0:o;44309:175::-;44384:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44384:29:0;-1:-1:-1;;;;;44384:29:0;;;;;;;;:24;;44438;44384;44438:15;:24::i;:::-;-1:-1:-1;;;;;44429:47:0;;;;;;;;;;;44309:175;;:::o;17989:317::-;18104:6;18079:21;:31;;18071:73;;;;-1:-1:-1;;;18071:73:0;;20980:2:1;18071:73:0;;;20962:21:1;21019:2;20999:18;;;20992:30;21058:31;21038:18;;;21031:59;21107:18;;18071:73:0;20778:353:1;18071:73:0;18158:12;18176:9;-1:-1:-1;;;;;18176:14:0;18198:6;18176:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18157:52;;;18228:7;18220:78;;;;-1:-1:-1;;;18220:78:0;;21338:2:1;18220:78:0;;;21320:21:1;21377:2;21357:18;;;21350:30;21416:34;21396:18;;;21389:62;21487:28;21467:18;;;21460:56;21533:19;;18220:78:0;21136:422:1;42435:346:0;-1:-1:-1;;;;;42515:16:0;;42507:61;;;;-1:-1:-1;;;42507:61:0;;21765:2:1;42507:61:0;;;21747:21:1;;;21784:18;;;21777:30;21843:34;21823:18;;;21816:62;21895:18;;42507:61:0;21563:356:1;42507:61:0;42588:16;42596:7;42588;:16::i;:::-;42587:17;42579:58;;;;-1:-1:-1;;;42579:58:0;;22126:2:1;42579:58:0;;;22108:21:1;22165:2;22145:18;;;22138:30;22204;22184:18;;;22177:58;22252:18;;42579:58:0;21924:352:1;42579:58:0;42650:45;42679:1;42683:2;42687:7;42650:20;:45::i;:::-;42706:7;:16;;;;;;;-1:-1:-1;42706:16:0;;;;;;;-1:-1:-1;;;;;;42706:16:0;-1:-1:-1;;;;;42706:16:0;;;;;;;;42740:33;;42765:7;;-1:-1:-1;42740:33:0;;-1:-1:-1;;42740:33:0;42435:346;;:::o;40756:349::-;40849:4;40874:16;40882:7;40874;:16::i;:::-;40866:73;;;;-1:-1:-1;;;40866:73:0;;22483:2:1;40866:73:0;;;22465:21:1;22522:2;22502:18;;;22495:30;22561:34;22541:18;;;22534:62;-1:-1:-1;;;22612:18:1;;;22605:42;22664:19;;40866:73:0;22281:408:1;40866:73:0;40950:13;40966:24;40982:7;40966:15;:24::i;:::-;40950:40;;41020:5;-1:-1:-1;;;;;41009:16:0;:7;-1:-1:-1;;;;;41009:16:0;;:51;;;;41053:7;-1:-1:-1;;;;;41029:31:0;:20;41041:7;41029:11;:20::i;:::-;-1:-1:-1;;;;;41029:31:0;;41009:51;:87;;;-1:-1:-1;;;;;;37830:25:0;;;37806:4;37830:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41064:32;41001:96;40756:349;-1:-1:-1;;;;40756:349:0:o;43676:517::-;43836:4;-1:-1:-1;;;;;43808:32:0;:24;43824:7;43808:15;:24::i;:::-;-1:-1:-1;;;;;43808:32:0;;43800:86;;;;-1:-1:-1;;;43800:86:0;;22896:2:1;43800:86:0;;;22878:21:1;22935:2;22915:18;;;22908:30;22974:34;22954:18;;;22947:62;-1:-1:-1;;;23025:18:1;;;23018:39;23074:19;;43800:86:0;22694:405:1;43800:86:0;-1:-1:-1;;;;;43905:16:0;;43897:65;;;;-1:-1:-1;;;43897:65:0;;23306:2:1;43897:65:0;;;23288:21:1;23345:2;23325:18;;;23318:30;23384:34;23364:18;;;23357:62;-1:-1:-1;;;23435:18:1;;;23428:34;23479:19;;43897:65:0;23104:400:1;43897:65:0;43975:39;43996:4;44002:2;44006:7;43975:20;:39::i;:::-;44079:29;44096:1;44100:7;44079:8;:29::i;:::-;44138:2;44119:7;44127;44119:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;44119:21:0;-1:-1:-1;;;;;44119:21:0;;;;;;44158:27;;44177:7;;44158:27;;;;;;;;;;44119:16;44158:27;43676:517;;;:::o;35465:418::-;35537:7;-1:-1:-1;;;;;35565:19:0;;35557:74;;;;-1:-1:-1;;;35557:74:0;;;;;;;:::i;:::-;35683:7;:14;35644:10;;;35708:119;35729:6;35725:1;:10;35708:119;;;35768:7;35776:1;35768:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;35759:19:0;;;35768:10;;35759:19;35755:61;;;35795:7;;;:::i;:::-;;;35755:61;35737:3;;;:::i;:::-;;;35708:119;;;-1:-1:-1;35870:5:0;;35465:418;-1:-1:-1;;;35465:418:0:o;2831:173::-;2887:16;2906:6;;-1:-1:-1;;;;;2923:17:0;;;-1:-1:-1;;;;;;2923:17:0;;;;;;2956:40;;2906:6;;;;;;;2956:40;;2887:16;2956:40;2876:128;2831:173;:::o;39810:315::-;39967:28;39977:4;39983:2;39987:7;39967:9;:28::i;:::-;40014:48;40037:4;40043:2;40047:7;40056:5;40014:22;:48::i;:::-;40006:111;;;;-1:-1:-1;;;40006:111:0;;;;;;;:::i;24229:723::-;24285:13;24506:10;24502:53;;-1:-1:-1;;24533:10:0;;;;;;;;;;;;-1:-1:-1;;;24533:10:0;;;;;24229:723::o;24502:53::-;24580:5;24565:12;24621:78;24628:9;;24621:78;;24654:8;;;;:::i;:::-;;-1:-1:-1;24677:10:0;;-1:-1:-1;24685:2:0;24677:10;;:::i;:::-;;;24621:78;;;24709:19;24741:6;24731:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24731:17:0;;24709:39;;24759:154;24766:10;;24759:154;;24793:11;24803:1;24793:11;;:::i;:::-;;-1:-1:-1;24862:10:0;24870:2;24862:5;:10;:::i;:::-;24849:24;;:2;:24;:::i;:::-;24836:39;;24819:6;24826;24819:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24819:56:0;;;;;;;;-1:-1:-1;24890:11:0;24899:2;24890:11;;:::i;:::-;;;24759:154;;41780:321;41910:18;41916:2;41920:7;41910:5;:18::i;:::-;41961:54;41992:1;41996:2;42000:7;42009:5;41961:22;:54::i;:::-;41939:154;;;;-1:-1:-1;;;41939:154:0;;;;;;;:::i;53626:617::-;53758:12;-1:-1:-1;;;;;53794:12:0;;;;;:26;;;53816:4;-1:-1:-1;;;;;53810:10:0;:2;-1:-1:-1;;;;;53810:10:0;;53794:26;53790:364;;;-1:-1:-1;;;;;53884:15:0;;53870:11;53884:15;;;:9;:15;;;;;:22;;53915:210;53932:6;53928:1;:10;53915:210;;;-1:-1:-1;;;;;53960:15:0;;;;;;:9;:15;;;;;:18;;53982:7;;53960:15;53976:1;;53960:18;;;;;;:::i;:::-;;;;;;;;;:29;53956:160;;;-1:-1:-1;;;;;54025:15:0;;;;;;:9;:15;;;;;54041:10;54050:1;54041:6;:10;:::i;:::-;54025:27;;;;;;;;:::i;:::-;;;;;;;;;54004:9;:15;54014:4;-1:-1:-1;;;;;54004:15:0;-1:-1:-1;;;;;54004:15:0;;;;;;;;;;;;54020:1;54004:18;;;;;;;;:::i;:::-;;;;;;;;;;;;:48;;;;-1:-1:-1;;;;;54065:15:0;;;;:9;:15;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;54099:5;;53956:160;53940:3;;;:::i;:::-;;;53915:210;;;-1:-1:-1;;53790:364:0;54172:4;-1:-1:-1;;;;;54164:12:0;:4;-1:-1:-1;;;;;54164:12:0;;:26;;;;54186:4;-1:-1:-1;;;;;54180:10:0;:2;-1:-1:-1;;;;;54180:10:0;;;54164:26;54160:78;;;-1:-1:-1;;;;;;54201:13:0;;;;;;;;:9;:13;;;;;;;:29;;;;;;;;;;;;;;-1:-1:-1;53626:617:0:o;45047:799::-;45202:4;-1:-1:-1;;;;;45223:13:0;;16992:20;17040:8;45219:620;;45259:72;;-1:-1:-1;;;45259:72:0;;-1:-1:-1;;;;;45259:36:0;;;;;:72;;678:10;;45310:4;;45316:7;;45325:5;;45259:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45259:72:0;;;;;;;;-1:-1:-1;;45259:72:0;;;;;;;;;;;;:::i;:::-;;;45255:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45501:13:0;;45497:272;;45544:60;;-1:-1:-1;;;45544:60:0;;;;;;;:::i;45497:272::-;45719:6;45713:13;45704:6;45700:2;45696:15;45689:38;45255:529;-1:-1:-1;;;;;;45382:51:0;-1:-1:-1;;;45382:51:0;;-1:-1:-1;45375:58:0;;45219:620;-1:-1:-1;45823:4:0;45047:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;:::-;663:5;429:245;-1:-1:-1;;;429:245:1:o;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:131::-;-1:-1:-1;;;;;1697:31:1;;1687:42;;1677:70;;1743:1;1740;1733:12;1758:247;1817:6;1870:2;1858:9;1849:7;1845:23;1841:32;1838:52;;;1886:1;1883;1876:12;1838:52;1925:9;1912:23;1944:31;1969:5;1944:31;:::i;2010:180::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;-1:-1:-1;2161:23:1;;2010:180;-1:-1:-1;2010:180:1:o;2403:315::-;2471:6;2479;2532:2;2520:9;2511:7;2507:23;2503:32;2500:52;;;2548:1;2545;2538:12;2500:52;2587:9;2574:23;2606:31;2631:5;2606:31;:::i;:::-;2656:5;2708:2;2693:18;;;;2680:32;;-1:-1:-1;;;2403:315:1:o;3165:615::-;3251:6;3259;3312:2;3300:9;3291:7;3287:23;3283:32;3280:52;;;3328:1;3325;3318:12;3280:52;3368:9;3355:23;3397:18;3438:2;3430:6;3427:14;3424:34;;;3454:1;3451;3444:12;3424:34;3492:6;3481:9;3477:22;3467:32;;3537:7;3530:4;3526:2;3522:13;3518:27;3508:55;;3559:1;3556;3549:12;3508:55;3599:2;3586:16;3625:2;3617:6;3614:14;3611:34;;;3641:1;3638;3631:12;3611:34;3694:7;3689:2;3679:6;3676:1;3672:14;3668:2;3664:23;3660:32;3657:45;3654:65;;;3715:1;3712;3705:12;3654:65;3746:2;3738:11;;;;;3768:6;;-1:-1:-1;3165:615:1;;-1:-1:-1;;;;3165:615:1:o;3785:456::-;3862:6;3870;3878;3931:2;3919:9;3910:7;3906:23;3902:32;3899:52;;;3947:1;3944;3937:12;3899:52;3986:9;3973:23;4005:31;4030:5;4005:31;:::i;:::-;4055:5;-1:-1:-1;4112:2:1;4097:18;;4084:32;4125:33;4084:32;4125:33;:::i;:::-;3785:456;;4177:7;;-1:-1:-1;;;4231:2:1;4216:18;;;;4203:32;;3785:456::o;4246:160::-;4311:20;;4367:13;;4360:21;4350:32;;4340:60;;4396:1;4393;4386:12;4411:315;4476:6;4484;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;4592:9;4579:23;4611:31;4636:5;4611:31;:::i;:::-;4661:5;-1:-1:-1;4685:35:1;4716:2;4701:18;;4685:35;:::i;:::-;4675:45;;4411:315;;;;;:::o;4731:348::-;4783:8;4793:6;4847:3;4840:4;4832:6;4828:17;4824:27;4814:55;;4865:1;4862;4855:12;4814:55;-1:-1:-1;4888:20:1;;4931:18;4920:30;;4917:50;;;4963:1;4960;4953:12;4917:50;5000:4;4992:6;4988:17;4976:29;;5052:3;5045:4;5036:6;5028;5024:19;5020:30;5017:39;5014:59;;;5069:1;5066;5059:12;5014:59;4731:348;;;;;:::o;5084:721::-;5176:6;5184;5192;5200;5253:2;5241:9;5232:7;5228:23;5224:32;5221:52;;;5269:1;5266;5259:12;5221:52;5309:9;5296:23;5338:18;5379:2;5371:6;5368:14;5365:34;;;5395:1;5392;5385:12;5365:34;5434:59;5485:7;5476:6;5465:9;5461:22;5434:59;:::i;:::-;5512:8;;-1:-1:-1;5408:85:1;-1:-1:-1;5600:2:1;5585:18;;5572:32;;-1:-1:-1;5616:16:1;;;5613:36;;;5645:1;5642;5635:12;5613:36;;5684:61;5737:7;5726:8;5715:9;5711:24;5684:61;:::i;:::-;5084:721;;;;-1:-1:-1;5764:8:1;-1:-1:-1;;;;5084:721:1:o;5810:180::-;5866:6;5919:2;5907:9;5898:7;5894:23;5890:32;5887:52;;;5935:1;5932;5925:12;5887:52;5958:26;5974:9;5958:26;:::i;5995:127::-;6056:10;6051:3;6047:20;6044:1;6037:31;6087:4;6084:1;6077:15;6111:4;6108:1;6101:15;6127:1266;6222:6;6230;6238;6246;6299:3;6287:9;6278:7;6274:23;6270:33;6267:53;;;6316:1;6313;6306:12;6267:53;6355:9;6342:23;6374:31;6399:5;6374:31;:::i;:::-;6424:5;-1:-1:-1;6481:2:1;6466:18;;6453:32;6494:33;6453:32;6494:33;:::i;:::-;6546:7;-1:-1:-1;6600:2:1;6585:18;;6572:32;;-1:-1:-1;6655:2:1;6640:18;;6627:32;6678:18;6708:14;;;6705:34;;;6735:1;6732;6725:12;6705:34;6773:6;6762:9;6758:22;6748:32;;6818:7;6811:4;6807:2;6803:13;6799:27;6789:55;;6840:1;6837;6830:12;6789:55;6876:2;6863:16;6898:2;6894;6891:10;6888:36;;;6904:18;;:::i;:::-;6979:2;6973:9;6947:2;7033:13;;-1:-1:-1;;7029:22:1;;;7053:2;7025:31;7021:40;7009:53;;;7077:18;;;7097:22;;;7074:46;7071:72;;;7123:18;;:::i;:::-;7163:10;7159:2;7152:22;7198:2;7190:6;7183:18;7238:7;7233:2;7228;7224;7220:11;7216:20;7213:33;7210:53;;;7259:1;7256;7249:12;7210:53;7315:2;7310;7306;7302:11;7297:2;7289:6;7285:15;7272:46;7360:1;7355:2;7350;7342:6;7338:15;7334:24;7327:35;7381:6;7371:16;;;;;;;6127:1266;;;;;;;:::o;7398:388::-;7466:6;7474;7527:2;7515:9;7506:7;7502:23;7498:32;7495:52;;;7543:1;7540;7533:12;7495:52;7582:9;7569:23;7601:31;7626:5;7601:31;:::i;:::-;7651:5;-1:-1:-1;7708:2:1;7693:18;;7680:32;7721:33;7680:32;7721:33;:::i;:::-;7773:7;7763:17;;;7398:388;;;;;:::o;7791:380::-;7870:1;7866:12;;;;7913;;;7934:61;;7988:4;7980:6;7976:17;7966:27;;7934:61;8041:2;8033:6;8030:14;8010:18;8007:38;8004:161;;;8087:10;8082:3;8078:20;8075:1;8068:31;8122:4;8119:1;8112:15;8150:4;8147:1;8140:15;8004:161;;7791:380;;;:::o;8176:356::-;8378:2;8360:21;;;8397:18;;;8390:30;8456:34;8451:2;8436:18;;8429:62;8523:2;8508:18;;8176:356::o;10184:127::-;10245:10;10240:3;10236:20;10233:1;10226:31;10276:4;10273:1;10266:15;10300:4;10297:1;10290:15;10316:128;10356:3;10387:1;10383:6;10380:1;10377:13;10374:39;;;10393:18;;:::i;:::-;-1:-1:-1;10429:9:1;;10316:128::o;10449:168::-;10489:7;10555:1;10551;10547:6;10543:14;10540:1;10537:21;10532:1;10525:9;10518:17;10514:45;10511:71;;;10562:18;;:::i;:::-;-1:-1:-1;10602:9:1;;10449:168::o;10622:127::-;10683:10;10678:3;10674:20;10671:1;10664:31;10714:4;10711:1;10704:15;10738:4;10735:1;10728:15;10754:120;10794:1;10820;10810:35;;10825:18;;:::i;:::-;-1:-1:-1;10859:9:1;;10754:120::o;10879:125::-;10919:4;10947:1;10944;10941:8;10938:34;;;10952:18;;:::i;:::-;-1:-1:-1;10989:9:1;;10879:125::o;12053:127::-;12114:10;12109:3;12105:20;12102:1;12095:31;12145:4;12142:1;12135:15;12169:4;12166:1;12159:15;12185:251;12255:6;12308:2;12296:9;12287:7;12283:23;12279:32;12276:52;;;12324:1;12321;12314:12;12276:52;12356:9;12350:16;12375:31;12400:5;12375:31;:::i;13136:135::-;13175:3;-1:-1:-1;;13196:17:1;;13193:43;;;13216:18;;:::i;:::-;-1:-1:-1;13263:1:1;13252:13;;13136:135::o;13276:413::-;13478:2;13460:21;;;13517:2;13497:18;;;13490:30;13556:34;13551:2;13536:18;;13529:62;-1:-1:-1;;;13622:2:1;13607:18;;13600:47;13679:3;13664:19;;13276:413::o;15484:340::-;15686:2;15668:21;;;15725:2;15705:18;;;15698:30;-1:-1:-1;;;15759:2:1;15744:18;;15737:46;15815:2;15800:18;;15484:340::o;16244:406::-;16446:2;16428:21;;;16485:2;16465:18;;;16458:30;16524:34;16519:2;16504:18;;16497:62;-1:-1:-1;;;16590:2:1;16575:18;;16568:40;16640:3;16625:19;;16244:406::o;17551:973::-;17636:12;;17601:3;;17691:1;17711:18;;;;17764;;;;17791:61;;17845:4;17837:6;17833:17;17823:27;;17791:61;17871:2;17919;17911:6;17908:14;17888:18;17885:38;17882:161;;;17965:10;17960:3;17956:20;17953:1;17946:31;18000:4;17997:1;17990:15;18028:4;18025:1;18018:15;17882:161;18059:18;18086:104;;;;18204:1;18199:319;;;;18052:466;;18086:104;-1:-1:-1;;18119:24:1;;18107:37;;18164:16;;;;-1:-1:-1;18086:104:1;;18199:319;17498:1;17491:14;;;17535:4;17522:18;;18293:1;18307:165;18321:6;18318:1;18315:13;18307:165;;;18399:14;;18386:11;;;18379:35;18442:16;;;;18336:10;;18307:165;;;18311:3;;18501:6;18496:3;18492:16;18485:23;;18052:466;;;;;;;17551:973;;;;:::o;18529:456::-;18750:3;18778:38;18812:3;18804:6;18778:38;:::i;:::-;18845:6;18839:13;18861:52;18906:6;18902:2;18895:4;18887:6;18883:17;18861:52;:::i;:::-;18929:50;18971:6;18967:2;18963:15;18955:6;18929:50;:::i;:::-;18922:57;18529:456;-1:-1:-1;;;;;;;18529:456:1:o;23509:414::-;23711:2;23693:21;;;23750:2;23730:18;;;23723:30;23789:34;23784:2;23769:18;;23762:62;-1:-1:-1;;;23855:2:1;23840:18;;23833:48;23913:3;23898:19;;23509:414::o;23928:112::-;23960:1;23986;23976:35;;23991:18;;:::i;:::-;-1:-1:-1;24025:9:1;;23928:112::o;24045:127::-;24106:10;24101:3;24097:20;24094:1;24087:31;24137:4;24134:1;24127:15;24161:4;24158:1;24151:15;24177:489;-1:-1:-1;;;;;24446:15:1;;;24428:34;;24498:15;;24493:2;24478:18;;24471:43;24545:2;24530:18;;24523:34;;;24593:3;24588:2;24573:18;;24566:31;;;24371:4;;24614:46;;24640:19;;24632:6;24614:46;:::i;:::-;24606:54;24177:489;-1:-1:-1;;;;;;24177:489:1:o;24671:249::-;24740:6;24793:2;24781:9;24772:7;24768:23;24764:32;24761:52;;;24809:1;24806;24799:12;24761:52;24841:9;24835:16;24860:30;24884:5;24860:30;:::i

Swarm Source

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