ETH Price: $3,471.96 (+2.39%)
Gas: 7 Gwei

Token

Bubblez (BUBBLEZ)
 

Overview

Max Total Supply

110,636.9940972222222222 BUBBLEZ

Holders

82

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
spaghettisauce.eth
Balance
426.901736111111111111 BUBBLEZ

Value
$0.00
0x5fE0630248be4Bf6cdCb2CA9dd4BeCf234aC6001
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:
Bubblez

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-06
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.3.2 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: bubblez.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;





contract Bubblez is ERC20, Ownable {
    /*
    Written by: 0xInuarashi
    Discord: 0xInuarashi#1234
    Twitter: https://twitter.com/0xinuarashi

    $BUBBLEZ ERC20 Token Yield Contract
    Features: 
     - Minting of 100,000 $BUBBLEZ to Treasury []
     - Transfer-Hook Token Yield with Bubble Budz Genesis Contract (interfaced) []
     - Migration Reward Minting of 140 $BUBBLEZ to Migrators (interfaced) [] 
     - Interaction by Controllers (interfaced) []
    */

    using SafeMath for uint;

    // // BUBBLEZ ERC20 Variables
    // Limits
    // uint public maxBubblez = 1926000 ether;
    uint public bubblezPerDay = 10 ether;
    uint public bubblezPerMigration = 140 ether;
    uint public bubblezForTreasury = 100000 ether;

    // Times
    uint public yieldStartTime = 1636243200;
    uint public yieldEndTime = 1794009600;
    uint internal secondsInDay = 86400;

    // Bubble Budz Genesis Interface
    address public bubbleBudzGenesisAddress;
    IERC721 public BubbleBudzGenesis;
    function setBubbleBudzGenesis(address address_) external onlyOwner {
        bubbleBudzGenesisAddress = address_;
        BubbleBudzGenesis = IERC721(address_);
    }

    // Controller Interface
    address public bubblezControllerAddress;
    function setBubblezController(address address_) external onlyOwner {
        bubblezControllerAddress = address_;
    }
    address public bubblezControllerAddress2;
    function setBubblezController2(address address_) external onlyOwner {
        bubblezControllerAddress2 = address_;
    }

    // Mappings for Yield
    mapping(address => uint) public pendingRewards;
    mapping(address => uint) public lastUpdatedTime; 

    // Events
    event Migrated(address indexed to_, uint amount_);
    event Claimed(address indexed to_, uint amount_);

    // Constructor
    constructor() payable ERC20("Bubblez", "BUBBLEZ") {
        _mint(msg.sender, bubblezForTreasury);
        emit Claimed(msg.sender, bubblezForTreasury);
    }

    // Modifiers
    modifier onlySender {
        require(msg.sender == tx.origin, "No Smart Contracts!");
        _;
    }
    modifier onlyBubbleBudzGenesis {
        require(msg.sender == bubbleBudzGenesisAddress, "You are not Bubble Budz Genesis!");
        _;
    }
    modifier onlyBubblezControllers { 
        require(msg.sender == bubbleBudzGenesisAddress || msg.sender == bubblezControllerAddress || msg.sender == bubblezControllerAddress2, "You are not a Bubble Budz Controller!");
        _;
    }

    // Internal Functions
    function __getSmallerValue(uint a_, uint b_) internal pure returns (uint) {
        return a_ < b_ ? a_ : b_; 
    }
    // function __calculateYieldReward(uint erc721Balance_, uint time_, uint lastUpdate_) internal view returns (uint) {
    //     // (1 * (100000 * (165455 - 165400))) / 86400
    //     // return (erc721Balance_ * (bubblezPerDay * (time_ - lastUpdate_))) / secondsInDay;
    //     return erc721Balance_.mul(bubblezPerDay.mul((time_.sub(lastUpdate_)))).div(secondsInDay);
    // }
    function __calculateYieldReward(address address_) internal view returns (uint) {
        uint _erc721Balance = BubbleBudzGenesis.balanceOf(address_);
        uint _time = __getSmallerValue(block.timestamp, yieldEndTime);
        uint _lastUpdate = lastUpdatedTime[address_];

        if (_lastUpdate > yieldStartTime) {
            return _erc721Balance.mul(bubblezPerDay.mul((_time.sub(_lastUpdate)))).div(secondsInDay);
        } else {
            return 0;
        }
    }
    function __updateYieldReward(address address_) internal {
        uint _time = __getSmallerValue(block.timestamp, yieldEndTime);
        uint _lastUpdate = lastUpdatedTime[address_];
        
        if (_lastUpdate > 0) { pendingRewards[address_] = pendingRewards[address_].add(__calculateYieldReward(address_)); }
        if (_lastUpdate != yieldEndTime) { lastUpdatedTime[address_] = _time; }
    }
    function __claimYieldReward(address address_) internal {
        uint _pendingRewards = pendingRewards[address_];

        if (_pendingRewards > 0) {
            pendingRewards[address_] = 0;

            _mint(address_, _pendingRewards);
            emit Claimed(address_, _pendingRewards);
        }
    }

    ///////////////////// BUBBLEZ Functions ////////////////////////
    // Migration
    function mintMigrationReward(address to_) public onlyBubbleBudzGenesis {
        // Note: Only the Bubble Budz Genesis Contract can invoke this function. We don't want any random contract to be able to mint our migration reward!
        _mint(to_, bubblezPerMigration);
        emit Migrated(to_, bubblezPerMigration);
    }

    // Update Yield
    function updateReward(address address_) public {
        // Note: this can be called by anyone
        __updateYieldReward(address_);
    }
    function updateRewardForSelf() public {
        __updateYieldReward(msg.sender);
    }
    function updateRewardOnTransfer(address from_, address to_) public onlyBubbleBudzGenesis {
        // Note: this is called only on a transfer hook of Bubble Budz Genesis
        __updateYieldReward(from_);
        __updateYieldReward(to_);
    }

    // Claim Tokens
    function claimTokens(address claimer_) public {
        __updateYieldReward(claimer_);
        __claimYieldReward(claimer_);
    }
    function claimTokensForSelf() public {
        __updateYieldReward(msg.sender);
        __claimYieldReward(msg.sender);
    }

    // Burn Tokens
    function burn(address from_, uint amount_) public onlyBubblezControllers {
        _burn(from_, amount_);
    }

    // View Functions
    function getStorageClaimableTokens(address address_) public view returns (uint) {
        return pendingRewards[address_];
    }
    function getPendingClaimableTokens(address address_) public view returns (uint) {
        return __calculateYieldReward(address_);
    }
    function getTotalClaimableTokens(address address_) public view returns (uint) {
        return pendingRewards[address_].add(__calculateYieldReward(address_));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to_","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to_","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"Migrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BubbleBudzGenesis","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubbleBudzGenesisAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubblezControllerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubblezControllerAddress2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubblezForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubblezPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubblezPerMigration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"claimer_","type":"address"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokensForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"getPendingClaimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"getStorageClaimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"getTotalClaimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdatedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"}],"name":"mintMigrationReward","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setBubbleBudzGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setBubblezController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setBubblezController2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateRewardForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"}],"name":"updateRewardOnTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"yieldStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

678ac7230489e80000600655680796e3ea3f8ab00000600790815569152d02c7e14af68000006008556361871700600955636aee6a00600a5562015180600b55608081815266213ab1313632bd60c91b60a090815261010060405260c083815266212aa1212622ad60c91b60e05291926200007d9160039162000240565b5080516200009390600490602084019062000240565b505050620000b0620000aa6200010260201b60201c565b62000106565b620000c4336008546200015860201b60201c565b60085460405190815233907fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a9060200160405180910390a26200034a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001c79190620002e6565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f6908490620002e6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200024e906200030d565b90600052602060002090601f016020900481019282620002725760008555620002bd565b82601f106200028d57805160ff1916838001178555620002bd565b82800160010185558215620002bd579182015b82811115620002bd578251825591602001919060010190620002a0565b50620002cb929150620002cf565b5090565b5b80821115620002cb5760008155600101620002d0565b600082198211156200030857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200032257607f821691505b602082108114156200034457634e487b7160e01b600052602260045260246000fd5b50919050565b6115c8806200035a6000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806378c6b79f11610130578063a457c2d7116100b8578063dd62ed3e1161007c578063dd62ed3e146104ca578063df8de3e714610503578063f259601714610516578063f2fde38b14610529578063f9d295db1461053c57600080fd5b8063a457c2d71461046b578063a9059cbb1461047e578063ac189aff14610491578063ae0a205d146104a4578063c67cb908146104b757600080fd5b806395d89b41116100ff57806395d89b41146104225780639aeb0f411461042a5780639dc29fac14610432578063a20ff4d514610445578063a3f0a43a1461045857600080fd5b806378c6b79f146103d55780637c073ede146103e85780638da5cb5b146103f15780638f427ff21461040257600080fd5b806339509351116101be578063649d35fd11610182578063649d35fd1461036057806370a082311461038957806371290fc5146103b2578063715018a6146103ba578063752fd610146103c257600080fd5b806339509351146102f3578063425ea0b214610306578063571d8c00146103315780635a25a03c1461033a578063632447c91461034d57600080fd5b80632188714811610205578063218871481461029f57806323b872dd146102a8578063313ce567146102bb578063314ca039146102ca57806331d7a262146102d357600080fd5b806306fdde0314610237578063095ea7b3146102555780631172799b1461027857806318160ddd1461028d575b600080fd5b61023f610545565b60405161024c9190611447565b60405180910390f35b610268610263366004611404565b6105d7565b604051901515815260200161024c565b61028b61028636600461137a565b6105ed565b005b6002545b60405190815260200161024c565b61029160085481565b6102686102b63660046113c8565b610642565b6040516012815260200161024c565b610291600a5481565b6102916102e136600461137a565b60106020526000908152604090205481565b610268610301366004611404565b6106ec565b600c54610319906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b61029160065481565b600d54610319906001600160a01b031681565b61028b61035b36600461137a565b610728565b61029161036e36600461137a565b6001600160a01b031660009081526010602052604090205490565b61029161039736600461137a565b6001600160a01b031660009081526020819052604090205490565b61028b610734565b61028b61073f565b6102916103d036600461137a565b610773565b61028b6103e3366004611395565b610784565b61029160095481565b6005546001600160a01b0316610319565b61029161041036600461137a565b60116020526000908152604090205481565b61023f6107f4565b61028b610803565b61028b610440366004611404565b610815565b600e54610319906001600160a01b031681565b61029161046636600461137a565b6108b1565b610268610479366004611404565b6108de565b61026861048c366004611404565b610977565b600f54610319906001600160a01b031681565b61028b6104b236600461137a565b610984565b61028b6104c536600461137a565b6109d0565b6102916104d8366004611395565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61028b61051136600461137a565b610a7e565b61028b61052436600461137a565b610a90565b61028b61053736600461137a565b610ae6565b61029160075481565b60606003805461055490611541565b80601f016020809104026020016040519081016040528092919081815260200182805461058090611541565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b60006105e4338484610b7e565b50600192915050565b6005546001600160a01b031633146106205760405162461bcd60e51b81526004016106179061149c565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600061064f848484610ca2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106d45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610617565b6106e18533858403610b7e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e49185906107239086906114d1565b610b7e565b61073181610e71565b50565b61073d33610e71565b565b6005546001600160a01b031633146107695760405162461bcd60e51b81526004016106179061149c565b61073d6000610f10565b600061077e82610f62565b92915050565b600c546001600160a01b031633146107de5760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f7420427562626c65204275647a2047656e65736973216044820152606401610617565b6107e782610e71565b6107f081610e71565b5050565b60606004805461055490611541565b61080c33610e71565b61073d3361105b565b600c546001600160a01b03163314806108385750600e546001600160a01b031633145b8061084d5750600f546001600160a01b031633145b6108a75760405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f74206120427562626c65204275647a20436f6e74726f6044820152646c6c65722160d81b6064820152608401610617565b6107f082826110e4565b600061077e6108bf83610f62565b6001600160a01b03841660009081526010602052604090205490611232565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610617565b61096d3385858403610b7e565b5060019392505050565b60006105e4338484610ca2565b6005546001600160a01b031633146109ae5760405162461bcd60e51b81526004016106179061149c565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b03163314610a2a5760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f7420427562626c65204275647a2047656e65736973216044820152606401610617565b610a3681600754611245565b806001600160a01b03167f8b80bd19aea7b735bc6d75db8d6adbe18b28c30d62b3555245eb67b2340caedc600754604051610a7391815260200190565b60405180910390a250565b610a8781610e71565b6107318161105b565b6005546001600160a01b03163314610aba5760405162461bcd60e51b81526004016106179061149c565b600c80546001600160a01b039092166001600160a01b03199283168117909155600d8054909216179055565b6005546001600160a01b03163314610b105760405162461bcd60e51b81526004016106179061149c565b6001600160a01b038116610b755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610617565b61073181610f10565b6001600160a01b038316610be05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610617565b6001600160a01b038216610c415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610617565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610617565b6001600160a01b038216610d685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610617565b6001600160a01b03831660009081526020819052604090205481811015610de05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610617565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e179084906114d1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6391815260200190565b60405180910390a350505050565b6000610e7f42600a54611324565b6001600160a01b0383166000908152601160205260409020549091508015610ee657610ecc610ead84610f62565b6001600160a01b03851660009081526010602052604090205490611232565b6001600160a01b0384166000908152601060205260409020555b600a548114610f0b576001600160a01b03831660009081526011602052604090208290555b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b158015610fab57600080fd5b505afa158015610fbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe3919061142e565b90506000610ff342600a54611324565b6001600160a01b0385166000908152601160205260409020546009549192509081111561105057600b546110479061104161103a611031868661133a565b60065490611346565b8690611346565b90611352565b95945050505050565b506000949350505050565b6001600160a01b03811660009081526010602052604090205480156107f0576001600160a01b03821660009081526010602052604081205561109d8282611245565b816001600160a01b03167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a826040516110d891815260200190565b60405180910390a25050565b6001600160a01b0382166111445760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610617565b6001600160a01b038216600090815260208190526040902054818110156111b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610617565b6001600160a01b03831660009081526020819052604081208383039055600280548492906111e790849061152a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600061123e82846114d1565b9392505050565b6001600160a01b03821661129b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610617565b80600260008282546112ad91906114d1565b90915550506001600160a01b038216600090815260208190526040812080548392906112da9084906114d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000818310611333578161123e565b5090919050565b600061123e828461152a565b600061123e828461150b565b600061123e82846114e9565b80356001600160a01b038116811461137557600080fd5b919050565b60006020828403121561138c57600080fd5b61123e8261135e565b600080604083850312156113a857600080fd5b6113b18361135e565b91506113bf6020840161135e565b90509250929050565b6000806000606084860312156113dd57600080fd5b6113e68461135e565b92506113f46020850161135e565b9150604084013590509250925092565b6000806040838503121561141757600080fd5b6114208361135e565b946020939093013593505050565b60006020828403121561144057600080fd5b5051919050565b600060208083528351808285015260005b8181101561147457858101830151858201604001528201611458565b81811115611486576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156114e4576114e461157c565b500190565b60008261150657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156115255761152561157c565b500290565b60008282101561153c5761153c61157c565b500390565b600181811c9082168061155557607f821691505b6020821081141561157657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220da80717d530ba30c3993dc53de8df1091141be07b3cf840d30061a20299f6eff64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c806378c6b79f11610130578063a457c2d7116100b8578063dd62ed3e1161007c578063dd62ed3e146104ca578063df8de3e714610503578063f259601714610516578063f2fde38b14610529578063f9d295db1461053c57600080fd5b8063a457c2d71461046b578063a9059cbb1461047e578063ac189aff14610491578063ae0a205d146104a4578063c67cb908146104b757600080fd5b806395d89b41116100ff57806395d89b41146104225780639aeb0f411461042a5780639dc29fac14610432578063a20ff4d514610445578063a3f0a43a1461045857600080fd5b806378c6b79f146103d55780637c073ede146103e85780638da5cb5b146103f15780638f427ff21461040257600080fd5b806339509351116101be578063649d35fd11610182578063649d35fd1461036057806370a082311461038957806371290fc5146103b2578063715018a6146103ba578063752fd610146103c257600080fd5b806339509351146102f3578063425ea0b214610306578063571d8c00146103315780635a25a03c1461033a578063632447c91461034d57600080fd5b80632188714811610205578063218871481461029f57806323b872dd146102a8578063313ce567146102bb578063314ca039146102ca57806331d7a262146102d357600080fd5b806306fdde0314610237578063095ea7b3146102555780631172799b1461027857806318160ddd1461028d575b600080fd5b61023f610545565b60405161024c9190611447565b60405180910390f35b610268610263366004611404565b6105d7565b604051901515815260200161024c565b61028b61028636600461137a565b6105ed565b005b6002545b60405190815260200161024c565b61029160085481565b6102686102b63660046113c8565b610642565b6040516012815260200161024c565b610291600a5481565b6102916102e136600461137a565b60106020526000908152604090205481565b610268610301366004611404565b6106ec565b600c54610319906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b61029160065481565b600d54610319906001600160a01b031681565b61028b61035b36600461137a565b610728565b61029161036e36600461137a565b6001600160a01b031660009081526010602052604090205490565b61029161039736600461137a565b6001600160a01b031660009081526020819052604090205490565b61028b610734565b61028b61073f565b6102916103d036600461137a565b610773565b61028b6103e3366004611395565b610784565b61029160095481565b6005546001600160a01b0316610319565b61029161041036600461137a565b60116020526000908152604090205481565b61023f6107f4565b61028b610803565b61028b610440366004611404565b610815565b600e54610319906001600160a01b031681565b61029161046636600461137a565b6108b1565b610268610479366004611404565b6108de565b61026861048c366004611404565b610977565b600f54610319906001600160a01b031681565b61028b6104b236600461137a565b610984565b61028b6104c536600461137a565b6109d0565b6102916104d8366004611395565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61028b61051136600461137a565b610a7e565b61028b61052436600461137a565b610a90565b61028b61053736600461137a565b610ae6565b61029160075481565b60606003805461055490611541565b80601f016020809104026020016040519081016040528092919081815260200182805461058090611541565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b60006105e4338484610b7e565b50600192915050565b6005546001600160a01b031633146106205760405162461bcd60e51b81526004016106179061149c565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600061064f848484610ca2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106d45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610617565b6106e18533858403610b7e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e49185906107239086906114d1565b610b7e565b61073181610e71565b50565b61073d33610e71565b565b6005546001600160a01b031633146107695760405162461bcd60e51b81526004016106179061149c565b61073d6000610f10565b600061077e82610f62565b92915050565b600c546001600160a01b031633146107de5760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f7420427562626c65204275647a2047656e65736973216044820152606401610617565b6107e782610e71565b6107f081610e71565b5050565b60606004805461055490611541565b61080c33610e71565b61073d3361105b565b600c546001600160a01b03163314806108385750600e546001600160a01b031633145b8061084d5750600f546001600160a01b031633145b6108a75760405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f74206120427562626c65204275647a20436f6e74726f6044820152646c6c65722160d81b6064820152608401610617565b6107f082826110e4565b600061077e6108bf83610f62565b6001600160a01b03841660009081526010602052604090205490611232565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610617565b61096d3385858403610b7e565b5060019392505050565b60006105e4338484610ca2565b6005546001600160a01b031633146109ae5760405162461bcd60e51b81526004016106179061149c565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b03163314610a2a5760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f7420427562626c65204275647a2047656e65736973216044820152606401610617565b610a3681600754611245565b806001600160a01b03167f8b80bd19aea7b735bc6d75db8d6adbe18b28c30d62b3555245eb67b2340caedc600754604051610a7391815260200190565b60405180910390a250565b610a8781610e71565b6107318161105b565b6005546001600160a01b03163314610aba5760405162461bcd60e51b81526004016106179061149c565b600c80546001600160a01b039092166001600160a01b03199283168117909155600d8054909216179055565b6005546001600160a01b03163314610b105760405162461bcd60e51b81526004016106179061149c565b6001600160a01b038116610b755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610617565b61073181610f10565b6001600160a01b038316610be05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610617565b6001600160a01b038216610c415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610617565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610617565b6001600160a01b038216610d685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610617565b6001600160a01b03831660009081526020819052604090205481811015610de05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610617565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e179084906114d1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6391815260200190565b60405180910390a350505050565b6000610e7f42600a54611324565b6001600160a01b0383166000908152601160205260409020549091508015610ee657610ecc610ead84610f62565b6001600160a01b03851660009081526010602052604090205490611232565b6001600160a01b0384166000908152601060205260409020555b600a548114610f0b576001600160a01b03831660009081526011602052604090208290555b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b158015610fab57600080fd5b505afa158015610fbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe3919061142e565b90506000610ff342600a54611324565b6001600160a01b0385166000908152601160205260409020546009549192509081111561105057600b546110479061104161103a611031868661133a565b60065490611346565b8690611346565b90611352565b95945050505050565b506000949350505050565b6001600160a01b03811660009081526010602052604090205480156107f0576001600160a01b03821660009081526010602052604081205561109d8282611245565b816001600160a01b03167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a826040516110d891815260200190565b60405180910390a25050565b6001600160a01b0382166111445760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610617565b6001600160a01b038216600090815260208190526040902054818110156111b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610617565b6001600160a01b03831660009081526020819052604081208383039055600280548492906111e790849061152a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600061123e82846114d1565b9392505050565b6001600160a01b03821661129b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610617565b80600260008282546112ad91906114d1565b90915550506001600160a01b038216600090815260208190526040812080548392906112da9084906114d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000818310611333578161123e565b5090919050565b600061123e828461152a565b600061123e828461150b565b600061123e82846114e9565b80356001600160a01b038116811461137557600080fd5b919050565b60006020828403121561138c57600080fd5b61123e8261135e565b600080604083850312156113a857600080fd5b6113b18361135e565b91506113bf6020840161135e565b90509250929050565b6000806000606084860312156113dd57600080fd5b6113e68461135e565b92506113f46020850161135e565b9150604084013590509250925092565b6000806040838503121561141757600080fd5b6114208361135e565b946020939093013593505050565b60006020828403121561144057600080fd5b5051919050565b600060208083528351808285015260005b8181101561147457858101830151858201604001528201611458565b81811115611486576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156114e4576114e461157c565b500190565b60008261150657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156115255761152561157c565b500290565b60008282101561153c5761153c61157c565b500390565b600181811c9082168061155557607f821691505b6020821081141561157657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220da80717d530ba30c3993dc53de8df1091141be07b3cf840d30061a20299f6eff64736f6c63430008070033

Deployed Bytecode Sourcemap

32467:6196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22415:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24582:169;;;;;;:::i;:::-;;:::i;:::-;;;1802:14:1;;1795:22;1777:41;;1765:2;1750:18;24582:169:0;1637:187:1;33756:121:0;;;;;;:::i;:::-;;:::i;:::-;;23535:108;23623:12;;23535:108;;;8340:25:1;;;8328:2;8313:18;23535:108:0;8194:177:1;33180:45:0;;;;;;25233:492;;;;;;:::i;:::-;;:::i;23377:93::-;;;23460:2;8518:36:1;;8506:2;8491:18;23377:93:0;8376:184:1;33294:37:0;;;;;;34088:46;;;;;;:::i;:::-;;;;;;;;;;;;;;26134:215;;;;;;:::i;:::-;;:::i;33419:39::-;;;;;-1:-1:-1;;;;;33419:39:0;;;;;;-1:-1:-1;;;;;1593:32:1;;;1575:51;;1563:2;1548:18;33419:39:0;1429:203:1;33087:36:0;;;;;;33465:32;;;;;-1:-1:-1;;;;;33465:32:0;;;37255:142;;;;;;:::i;:::-;;:::i;38214:130::-;;;;;;:::i;:::-;-1:-1:-1;;;;;38312:24:0;38288:4;38312:24;;;:14;:24;;;;;;;38214:130;23706:127;;;;;;:::i;:::-;-1:-1:-1;;;;;23807:18:0;23780:7;23807:18;;;;;;;;;;;;23706:127;37403:88;;;:::i;15677:103::-;;;:::i;38350:138::-;;;;;;:::i;:::-;;:::i;37497:249::-;;;;;;:::i;:::-;;:::i;33248:39::-;;;;;;15026:87;15099:6;;-1:-1:-1;;;;;15099:6:0;15026:87;;34141:47;;;;;;:::i;:::-;;;;;;;;;;;;;;22634:104;;;:::i;37914:128::-;;;:::i;38070:113::-;;;;;;:::i;:::-;;:::i;33710:39::-;;;;;-1:-1:-1;;;;;33710:39:0;;;38494:166;;;;;;:::i;:::-;;:::i;26852:413::-;;;;;;:::i;:::-;;:::i;24046:175::-;;;;;;:::i;:::-;;:::i;33883:40::-;;;;;-1:-1:-1;;;;;33883:40:0;;;33930:123;;;;;;:::i;:::-;;:::i;36898:328::-;;;;;;:::i;:::-;;:::i;24284:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24400:18:0;;;24373:7;24400:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24284:151;37775:133;;;;;;:::i;:::-;;:::i;33504:169::-;;;;;;:::i;:::-;;:::i;15935:201::-;;;;;;:::i;:::-;;:::i;33130:43::-;;;;;;22415:100;22469:13;22502:5;22495:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22415:100;:::o;24582:169::-;24665:4;24682:39;13777:10;24705:7;24714:6;24682:8;:39::i;:::-;-1:-1:-1;24739:4:0;24582:169;;;;:::o;33756:121::-;15099:6;;-1:-1:-1;;;;;15099:6:0;13777:10;15246:23;15238:68;;;;-1:-1:-1;;;15238:68:0;;;;;;;:::i;:::-;;;;;;;;;33834:24:::1;:35:::0;;-1:-1:-1;;;;;;33834:35:0::1;-1:-1:-1::0;;;;;33834:35:0;;;::::1;::::0;;;::::1;::::0;;33756:121::o;25233:492::-;25373:4;25390:36;25400:6;25408:9;25419:6;25390:9;:36::i;:::-;-1:-1:-1;;;;;25466:19:0;;25439:24;25466:19;;;:11;:19;;;;;;;;13777:10;25466:33;;;;;;;;25518:26;;;;25510:79;;;;-1:-1:-1;;;25510:79:0;;5286:2:1;25510:79:0;;;5268:21:1;5325:2;5305:18;;;5298:30;5364:34;5344:18;;;5337:62;-1:-1:-1;;;5415:18:1;;;5408:38;5463:19;;25510:79:0;5084:404:1;25510:79:0;25625:57;25634:6;13777:10;25675:6;25656:16;:25;25625:8;:57::i;:::-;-1:-1:-1;25713:4:0;;25233:492;-1:-1:-1;;;;25233:492:0:o;26134:215::-;13777:10;26222:4;26271:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26271:34:0;;;;;;;;;;26222:4;;26239:80;;26262:7;;26271:47;;26308:10;;26271:47;:::i;:::-;26239:8;:80::i;37255:142::-;37360:29;37380:8;37360:19;:29::i;:::-;37255:142;:::o;37403:88::-;37452:31;37472:10;37452:19;:31::i;:::-;37403:88::o;15677:103::-;15099:6;;-1:-1:-1;;;;;15099:6:0;13777:10;15246:23;15238:68;;;;-1:-1:-1;;;15238:68:0;;;;;;;:::i;:::-;15742:30:::1;15769:1;15742:18;:30::i;38350:138::-:0;38424:4;38448:32;38471:8;38448:22;:32::i;:::-;38441:39;38350:138;-1:-1:-1;;38350:138:0:o;37497:249::-;34709:24;;-1:-1:-1;;;;;34709:24:0;34695:10;:38;34687:83;;;;-1:-1:-1;;;34687:83:0;;8035:2:1;34687:83:0;;;8017:21:1;;;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;8165:18;;34687:83:0;7833:356:1;34687:83:0;37677:26:::1;37697:5;37677:19;:26::i;:::-;37714:24;37734:3;37714:19;:24::i;:::-;37497:249:::0;;:::o;22634:104::-;22690:13;22723:7;22716:14;;;;;:::i;37914:128::-;37962:31;37982:10;37962:19;:31::i;:::-;38004:30;38023:10;38004:18;:30::i;38070:113::-;34862:24;;-1:-1:-1;;;;;34862:24:0;34848:10;:38;;:80;;-1:-1:-1;34904:24:0;;-1:-1:-1;;;;;34904:24:0;34890:10;:38;34848:80;:123;;;-1:-1:-1;34946:25:0;;-1:-1:-1;;;;;34946:25:0;34932:10;:39;34848:123;34840:173;;;;-1:-1:-1;;;34840:173:0;;4880:2:1;34840:173:0;;;4862:21:1;4919:2;4899:18;;;4892:30;4958:34;4938:18;;;4931:62;-1:-1:-1;;;5009:18:1;;;5002:35;5054:19;;34840:173:0;4678:401:1;34840:173:0;38154:21:::1;38160:5;38167:7;38154:5;:21::i;38494:166::-:0;38566:4;38590:62;38619:32;38642:8;38619:22;:32::i;:::-;-1:-1:-1;;;;;38590:24:0;;;;;;:14;:24;;;;;;;:28;:62::i;26852:413::-;13777:10;26945:4;26989:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26989:34:0;;;;;;;;;;27042:35;;;;27034:85;;;;-1:-1:-1;;;27034:85:0;;7269:2:1;27034:85:0;;;7251:21:1;7308:2;7288:18;;;7281:30;7347:34;7327:18;;;7320:62;-1:-1:-1;;;7398:18:1;;;7391:35;7443:19;;27034:85:0;7067:401:1;27034:85:0;27155:67;13777:10;27178:7;27206:15;27187:16;:34;27155:8;:67::i;:::-;-1:-1:-1;27253:4:0;;26852:413;-1:-1:-1;;;26852:413:0:o;24046:175::-;24132:4;24149:42;13777:10;24173:9;24184:6;24149:9;:42::i;33930:123::-;15099:6;;-1:-1:-1;;;;;15099:6:0;13777:10;15246:23;15238:68;;;;-1:-1:-1;;;15238:68:0;;;;;;;:::i;:::-;34009:25:::1;:36:::0;;-1:-1:-1;;;;;;34009:36:0::1;-1:-1:-1::0;;;;;34009:36:0;;;::::1;::::0;;;::::1;::::0;;33930:123::o;36898:328::-;34709:24;;-1:-1:-1;;;;;34709:24:0;34695:10;:38;34687:83;;;;-1:-1:-1;;;34687:83:0;;8035:2:1;34687:83:0;;;8017:21:1;;;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;8165:18;;34687:83:0;7833:356:1;34687:83:0;37137:31:::1;37143:3;37148:19;;37137:5;:31::i;:::-;37193:3;-1:-1:-1::0;;;;;37184:34:0::1;;37198:19;;37184:34;;;;8340:25:1::0;;8328:2;8313:18;;8194:177;37184:34:0::1;;;;;;;;36898:328:::0;:::o;37775:133::-;37832:29;37852:8;37832:19;:29::i;:::-;37872:28;37891:8;37872:18;:28::i;33504:169::-;15099:6;;-1:-1:-1;;;;;15099:6:0;13777:10;15246:23;15238:68;;;;-1:-1:-1;;;15238:68:0;;;;;;;:::i;:::-;33582:24:::1;:35:::0;;-1:-1:-1;;;;;33582:35:0;;::::1;-1:-1:-1::0;;;;;;33582:35:0;;::::1;::::0;::::1;::::0;;;33628:17:::1;:37:::0;;;;::::1;;::::0;;33504:169::o;15935:201::-;15099:6;;-1:-1:-1;;;;;15099:6:0;13777:10;15246:23;15238:68;;;;-1:-1:-1;;;15238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16024:22:0;::::1;16016:73;;;::::0;-1:-1:-1;;;16016:73:0;;3663:2:1;16016:73:0::1;::::0;::::1;3645:21:1::0;3702:2;3682:18;;;3675:30;3741:34;3721:18;;;3714:62;-1:-1:-1;;;3792:18:1;;;3785:36;3838:19;;16016:73:0::1;3461:402:1::0;16016:73:0::1;16100:28;16119:8;16100:18;:28::i;30536:380::-:0;-1:-1:-1;;;;;30672:19:0;;30664:68;;;;-1:-1:-1;;;30664:68:0;;6864:2:1;30664:68:0;;;6846:21:1;6903:2;6883:18;;;6876:30;6942:34;6922:18;;;6915:62;-1:-1:-1;;;6993:18:1;;;6986:34;7037:19;;30664:68:0;6662:400:1;30664:68:0;-1:-1:-1;;;;;30751:21:0;;30743:68;;;;-1:-1:-1;;;30743:68:0;;4070:2:1;30743:68:0;;;4052:21:1;4109:2;4089:18;;;4082:30;4148:34;4128:18;;;4121:62;-1:-1:-1;;;4199:18:1;;;4192:32;4241:19;;30743:68:0;3868:398:1;30743:68:0;-1:-1:-1;;;;;30824:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30876:32;;8340:25:1;;;30876:32:0;;8313:18:1;30876:32:0;;;;;;;30536:380;;;:::o;27755:733::-;-1:-1:-1;;;;;27895:20:0;;27887:70;;;;-1:-1:-1;;;27887:70:0;;6458:2:1;27887:70:0;;;6440:21:1;6497:2;6477:18;;;6470:30;6536:34;6516:18;;;6509:62;-1:-1:-1;;;6587:18:1;;;6580:35;6632:19;;27887:70:0;6256:401:1;27887:70:0;-1:-1:-1;;;;;27976:23:0;;27968:71;;;;-1:-1:-1;;;27968:71:0;;2856:2:1;27968:71:0;;;2838:21:1;2895:2;2875:18;;;2868:30;2934:34;2914:18;;;2907:62;-1:-1:-1;;;2985:18:1;;;2978:33;3028:19;;27968:71:0;2654:399:1;27968:71:0;-1:-1:-1;;;;;28136:17:0;;28112:21;28136:17;;;;;;;;;;;28172:23;;;;28164:74;;;;-1:-1:-1;;;28164:74:0;;4473:2:1;28164:74:0;;;4455:21:1;4512:2;4492:18;;;4485:30;4551:34;4531:18;;;4524:62;-1:-1:-1;;;4602:18:1;;;4595:36;4648:19;;28164:74:0;4271:402:1;28164:74:0;-1:-1:-1;;;;;28274:17:0;;;:9;:17;;;;;;;;;;;28294:22;;;28274:42;;28338:20;;;;;;;;:30;;28310:6;;28274:9;28338:30;;28310:6;;28338:30;:::i;:::-;;;;;;;;28403:9;-1:-1:-1;;;;;28386:35:0;28395:6;-1:-1:-1;;;;;28386:35:0;;28414:6;28386:35;;;;8340:25:1;;8328:2;8313:18;;8194:177;28386:35:0;;;;;;;;27876:612;27755:733;;;:::o;36073:407::-;36140:10;36153:48;36171:15;36188:12;;36153:17;:48::i;:::-;-1:-1:-1;;;;;36231:25:0;;36212:16;36231:25;;;:15;:25;;;;;;36140:61;;-1:-1:-1;36281:15:0;;36277:115;;36327:62;36356:32;36379:8;36356:22;:32::i;:::-;-1:-1:-1;;;;;36327:24:0;;;;;;:14;:24;;;;;;;:28;:62::i;:::-;-1:-1:-1;;;;;36300:24:0;;;;;;:14;:24;;;;;:89;36277:115;36421:12;;36406:11;:27;36402:71;;-1:-1:-1;;;;;36437:25:0;;;;;;:15;:25;;;;;:33;;;36402:71;36129:351;;36073:407;:::o;16296:191::-;16389:6;;;-1:-1:-1;;;;;16406:17:0;;;-1:-1:-1;;;;;;16406:17:0;;;;;;;16439:40;;16389:6;;;16406:17;16389:6;;16439:40;;16370:16;;16439:40;16359:128;16296:191;:::o;35581:486::-;35693:17;;:37;;-1:-1:-1;;;35693:37:0;;-1:-1:-1;;;;;1593:32:1;;;35693:37:0;;;1575:51:1;35654:4:0;;;;35693:17;;;:27;;1548:18:1;;35693:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35671:59;;35741:10;35754:48;35772:15;35789:12;;35754:17;:48::i;:::-;-1:-1:-1;;;;;35832:25:0;;35813:16;35832:25;;;:15;:25;;;;;;35888:14;;35741:61;;-1:-1:-1;35832:25:0;35874:28;;35870:190;;;35994:12;;35926:81;;:63;35945:43;35964:22;:5;35974:11;35964:9;:22::i;:::-;35945:13;;;:17;:43::i;:::-;35926:14;;:18;:63::i;:::-;:67;;:81::i;:::-;35919:88;35581:486;-1:-1:-1;;;;;35581:486:0:o;35870:190::-;-1:-1:-1;36047:1:0;;35581:486;-1:-1:-1;;;;35581:486:0:o;36486:316::-;-1:-1:-1;;;;;36575:24:0;;36552:20;36575:24;;;:14;:24;;;;;;36616:19;;36612:183;;-1:-1:-1;;;;;36652:24:0;;36679:1;36652:24;;;:14;:24;;;;;:28;36697:32;36667:8;36713:15;36697:5;:32::i;:::-;36757:8;-1:-1:-1;;;;;36749:34:0;;36767:15;36749:34;;;;8340:25:1;;8328:2;8313:18;;8194:177;36749:34:0;;;;;;;;36541:261;36486:316;:::o;29507:591::-;-1:-1:-1;;;;;29591:21:0;;29583:67;;;;-1:-1:-1;;;29583:67:0;;6056:2:1;29583:67:0;;;6038:21:1;6095:2;6075:18;;;6068:30;6134:34;6114:18;;;6107:62;-1:-1:-1;;;6185:18:1;;;6178:31;6226:19;;29583:67:0;5854:397:1;29583:67:0;-1:-1:-1;;;;;29750:18:0;;29725:22;29750:18;;;;;;;;;;;29787:24;;;;29779:71;;;;-1:-1:-1;;;29779:71:0;;3260:2:1;29779:71:0;;;3242:21:1;3299:2;3279:18;;;3272:30;3338:34;3318:18;;;3311:62;-1:-1:-1;;;3389:18:1;;;3382:32;3431:19;;29779:71:0;3058:398:1;29779:71:0;-1:-1:-1;;;;;29886:18:0;;:9;:18;;;;;;;;;;29907:23;;;29886:44;;29952:12;:22;;29924:6;;29886:9;29952:22;;29924:6;;29952:22;:::i;:::-;;;;-1:-1:-1;;29992:37:0;;8340:25:1;;;30018:1:0;;-1:-1:-1;;;;;29992:37:0;;;;;8328:2:1;8313:18;29992:37:0;;;;;;;36129:351;;36073:407;:::o;2915:98::-;2973:7;3000:5;3004:1;3000;:5;:::i;:::-;2993:12;2915:98;-1:-1:-1;;;2915:98:0:o;28775:399::-;-1:-1:-1;;;;;28859:21:0;;28851:65;;;;-1:-1:-1;;;28851:65:0;;7675:2:1;28851:65:0;;;7657:21:1;7714:2;7694:18;;;7687:30;7753:33;7733:18;;;7726:61;7804:18;;28851:65:0;7473:355:1;28851:65:0;29007:6;28991:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;29024:18:0;;:9;:18;;;;;;;;;;:28;;29046:6;;29024:9;:28;;29046:6;;29024:28;:::i;:::-;;;;-1:-1:-1;;29068:37:0;;8340:25:1;;;-1:-1:-1;;;;;29068:37:0;;;29085:1;;29068:37;;8328:2:1;8313:18;29068:37:0;;;;;;;37497:249;;:::o;35068:118::-;35136:4;35165:2;35160;:7;:17;;35175:2;35160:17;;;-1:-1:-1;35170:2:0;;35068:118;-1:-1:-1;35068:118:0:o;3296:98::-;3354:7;3381:5;3385:1;3381;:5;:::i;3653:98::-;3711:7;3738:5;3742:1;3738;:5;:::i;4052:98::-;4110:7;4137:5;4141:1;4137;:5;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:184::-;1310:6;1363:2;1351:9;1342:7;1338:23;1334:32;1331:52;;;1379:1;1376;1369:12;1331:52;-1:-1:-1;1402:16:1;;1240:184;-1:-1:-1;1240:184:1:o;2052:597::-;2164:4;2193:2;2222;2211:9;2204:21;2254:6;2248:13;2297:6;2292:2;2281:9;2277:18;2270:34;2322:1;2332:140;2346:6;2343:1;2340:13;2332:140;;;2441:14;;;2437:23;;2431:30;2407:17;;;2426:2;2403:26;2396:66;2361:10;;2332:140;;;2490:6;2487:1;2484:13;2481:91;;;2560:1;2555:2;2546:6;2535:9;2531:22;2527:31;2520:42;2481:91;-1:-1:-1;2633:2:1;2612:15;-1:-1:-1;;2608:29:1;2593:45;;;;2640:2;2589:54;;2052:597;-1:-1:-1;;;2052:597:1:o;5493:356::-;5695:2;5677:21;;;5714:18;;;5707:30;5773:34;5768:2;5753:18;;5746:62;5840:2;5825:18;;5493:356::o;8565:128::-;8605:3;8636:1;8632:6;8629:1;8626:13;8623:39;;;8642:18;;:::i;:::-;-1:-1:-1;8678:9:1;;8565:128::o;8698:217::-;8738:1;8764;8754:132;;8808:10;8803:3;8799:20;8796:1;8789:31;8843:4;8840:1;8833:15;8871:4;8868:1;8861:15;8754:132;-1:-1:-1;8900:9:1;;8698:217::o;8920:168::-;8960:7;9026:1;9022;9018:6;9014:14;9011:1;9008:21;9003:1;8996:9;8989:17;8985:45;8982:71;;;9033:18;;:::i;:::-;-1:-1:-1;9073:9:1;;8920:168::o;9093:125::-;9133:4;9161:1;9158;9155:8;9152:34;;;9166:18;;:::i;:::-;-1:-1:-1;9203:9:1;;9093:125::o;9223:380::-;9302:1;9298:12;;;;9345;;;9366:61;;9420:4;9412:6;9408:17;9398:27;;9366:61;9473:2;9465:6;9462:14;9442:18;9439:38;9436:161;;;9519:10;9514:3;9510:20;9507:1;9500:31;9554:4;9551:1;9544:15;9582:4;9579:1;9572:15;9436:161;;9223:380;;;:::o;9608:127::-;9669:10;9664:3;9660:20;9657:1;9650:31;9700:4;9697:1;9690:15;9724:4;9721:1;9714:15

Swarm Source

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