ETH Price: $2,504.60 (-0.47%)

Token

DAO Whisperer (dWHISPR)
 

Overview

Max Total Supply

1,000,000,000 dWHISPR

Holders

155

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
226,814.35636235236343782 dWHISPR

Value
$0.00
0x7bD5cd84d46b840379D7df6427101058148B3d30
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:
DAOWhisperer

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-29
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: contracts/DAOWhisperer.sol


pragma solidity ^0.8.0;





contract DAOWhisperer is ERC20, Ownable {
    using Address for address payable;

    address public pair;

    address public treasuryWallet;

    bool public tradingEnabled;

    struct Taxes {
        uint256 treasury;
    }
    
    // initially, 10% tax on buys and sells
    Taxes public buyTaxes = Taxes(10);
    Taxes public sellTaxes = Taxes(10);

    mapping(address => bool) public exemptFee;
    mapping(address => bool) public blackList;

    constructor(address _treasuryWallet) ERC20("DAO Whisperer", "dWHISPR") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());

        treasuryWallet = _treasuryWallet;
        
        exemptFee[address(this)] = true;
        exemptFee[msg.sender] = true;
        exemptFee[treasuryWallet] = true;
        tradingEnabled = true;
    }

    /** Define pair address */
    function setPair(address _pair) external onlyOwner {
        pair = _pair;
        tradingEnabled = false;
    }

    /** Enable/disable trading */
    function setTrading(bool state) external onlyOwner {
        tradingEnabled = state;
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(!blackList[msg.sender], "Blacklisted");
        require(tradingEnabled, "Trading Disabled");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        uint256 feeAmount;
        uint256 fee;

        //set fee to zero if fees in contract are handled or exempted
        if (exemptFee[sender] || exemptFee[recipient])
            fee = 0;

        else if (recipient == pair) {
            feeAmount = sellTaxes.treasury;
        } 
        else if (sender == pair) {
            feeAmount = buyTaxes.treasury;
        }

        fee = (amount * feeAmount) / 100;

        //rest to recipient
        super._transfer(sender, recipient, amount - fee);
        if (fee > 0) {
            super._transfer(sender, treasuryWallet, fee);
        }
  }

     /** Blacklist **/
    function updateBlackList(address _address, bool state) external onlyOwner {
        blackList[_address] = state;
    }

    /** Amount in percentage. ie 1 = 1% */
    function updateBuyTaxes(uint256 amount) external onlyOwner {
        require(amount <= 100, "100% Max");
        buyTaxes.treasury = amount;
    }
    
    /** Amount in percentage. ie 1 = 1% */
    function updateSellTaxes(uint256 amount) external onlyOwner {
        require(amount <= 100, "100% Max");
        sellTaxes.treasury = amount;
    }
   
    function updateTreasuryWallet(address wallet) external onlyOwner {
        require(wallet != address(this), "Fee Address cannot be Contract Address");
        require(wallet != address(0), "Fee Address cannot be zero address");
        treasuryWallet = wallet;
    }
    
    function updateExemptFee(address _address, bool state) external onlyOwner {
        exemptFee[_address] = state;
    }

    function bulkExemptFee(address[] memory accounts, bool state) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            exemptFee[accounts[i]] = state;
        }
    }

    function rescueNative(uint256 amount) external onlyOwner {
        payable(owner()).transfer(amount);
    }

    function claimToken(address tokenAddress, uint256 amount) external onlyOwner {
        IERC20(tokenAddress).transfer(owner(), amount);
    }

    // fallbacks
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimToken","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":"","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setTrading","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a6080819052600881905560c060405260a08190526009553480156200002557600080fd5b5060405162001d3a38038062001d3a83398101604081905262000048916200028a565b6040518060400160405280600d81526020016c2220a7902bb434b9b832b932b960991b81525060405180604001604052806007815260200166322ba424a9a82960c91b81525081600390816200009f919062000360565b506004620000ae828262000360565b505050620000cb620000c56200016960201b60201c565b6200016d565b620000f433620000de6012600a62000541565b620000ee90633b9aca0062000552565b620001bf565b600780546001600160a01b039283166001600160a01b0319909116178155306000908152600a6020526040808220805460ff1990811660019081179092553384528284208054821683179055845490951683529120805490931617909155805460ff60a01b1916600160a01b17905562000582565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200021a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200022e91906200056c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200029d57600080fd5b81516001600160a01b0381168114620002b557600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002e757607f821691505b6020821081036200030857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028557600081815260208120601f850160051c81016020861015620003375750805b601f850160051c820191505b81811015620003585782815560010162000343565b505050505050565b81516001600160401b038111156200037c576200037c620002bc565b62000394816200038d8454620002d2565b846200030e565b602080601f831160018114620003cc5760008415620003b35750858301515b600019600386901b1c1916600185901b17855562000358565b600085815260208120601f198616915b82811015620003fd57888601518255948401946001909101908401620003dc565b50858210156200041c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004835781600019048211156200046757620004676200042c565b808516156200047557918102915b93841c939080029062000447565b509250929050565b6000826200049c575060016200053b565b81620004ab575060006200053b565b8160018114620004c45760028114620004cf57620004ef565b60019150506200053b565b60ff841115620004e357620004e36200042c565b50506001821b6200053b565b5060208310610133831016604e8410600b841016171562000514575081810a6200053b565b62000520838362000442565b80600019048211156200053757620005376200042c565b0290505b92915050565b6000620002b560ff8416836200048b565b80820281158282048414176200053b576200053b6200042c565b808201808211156200053b576200053b6200042c565b6117a880620005926000396000f3fe6080604052600436106101dc5760003560e01c8063715018a611610102578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e1461059f578063f2fde38b146105e5578063f66895a314610605578063fc2eb8891461061c57600080fd5b8063a457c2d71461050f578063a8aa1b311461052f578063a9059cbb1461054f578063c5d32bb21461056f57600080fd5b80638da5cb5b116100d15780638da5cb5b1461049c5780638f70ccf7146104ba57806395d89b41146104da5780639b5a752c146104ef57600080fd5b8063715018a614610430578063809d458d146104455780638187f51614610465578063864701a51461048557600080fd5b8063355496ca1161017a5780634838d165116101495780634838d165146103785780634ada218b146103a857806365ab6b5a146103da57806370a08231146103fa57600080fd5b8063355496ca146102e05780633950935114610300578063454aa669146103205780634626402b1461034057600080fd5b80631698755f116101b65780631698755f1461026557806318160ddd1461028557806323b872dd146102a4578063313ce567146102c457600080fd5b806306fdde03146101e8578063095ea7b3146102135780630e375a5c1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61063c565b60405161020a91906113de565b60405180910390f35b34801561021f57600080fd5b5061023361022e366004611448565b6106ce565b604051901515815260200161020a565b34801561024f57600080fd5b5061026361025e3660046114a1565b6106e8565b005b34801561027157600080fd5b50610263610280366004611448565b61075c565b34801561029157600080fd5b506002545b60405190815260200161020a565b3480156102b057600080fd5b506102336102bf366004611578565b61080e565b3480156102d057600080fd5b506040516012815260200161020a565b3480156102ec57600080fd5b506102636102fb3660046115b4565b610832565b34801561030c57600080fd5b5061023361031b366004611448565b610865565b34801561032c57600080fd5b5061026361033b3660046115eb565b6108a4565b34801561034c57600080fd5b50600754610360906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b34801561038457600080fd5b50610233610393366004611604565b600b6020526000908152604090205460ff1681565b3480156103b457600080fd5b506007546102339074010000000000000000000000000000000000000000900460ff1681565b3480156103e657600080fd5b506102636103f53660046115eb565b6108ea565b34801561040657600080fd5b50610296610415366004611604565b6001600160a01b031660009081526020819052604090205490565b34801561043c57600080fd5b5061026361094d565b34801561045157600080fd5b50610263610460366004611604565b610961565b34801561047157600080fd5b50610263610480366004611604565b610a92565b34801561049157600080fd5b506008546102969081565b3480156104a857600080fd5b506005546001600160a01b0316610360565b3480156104c657600080fd5b506102636104d5366004611626565b610af1565b3480156104e657600080fd5b506101fd610b43565b3480156104fb57600080fd5b5061026361050a3660046115eb565b610b52565b34801561051b57600080fd5b5061023361052a366004611448565b610bb0565b34801561053b57600080fd5b50600654610360906001600160a01b031681565b34801561055b57600080fd5b5061023361056a366004611448565b610c5a565b34801561057b57600080fd5b5061023361058a366004611604565b600a6020526000908152604090205460ff1681565b3480156105ab57600080fd5b506102966105ba366004611643565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105f157600080fd5b50610263610600366004611604565b610c70565b34801561061157600080fd5b506009546102969081565b34801561062857600080fd5b506102636106373660046115b4565b610d00565b60606003805461064b90611676565b80601f016020809104026020016040519081016040528092919081815260200182805461067790611676565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000336106dc818585610d33565b60019150505b92915050565b6106f0610e8b565b60005b82518110156107575781600a6000858481518110610713576107136116b0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061074f816116dc565b9150506106f3565b505050565b610764610e8b565b816001600160a01b031663a9059cbb6107856005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156107ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075791906116f6565b60003361081c858285610ee5565b610827858585610f77565b506001949350505050565b61083a610e8b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906106dc908290869061089f908790611713565b610d33565b6108ac610e8b565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108e6573d6000803e3d6000fd5b5050565b6108f2610e8b565b60648111156109485760405162461bcd60e51b815260206004820152600860248201527f31303025204d617800000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600955565b610955610e8b565b61095f6000611192565b565b610969610e8b565b306001600160a01b038216036109e75760405162461bcd60e51b815260206004820152602660248201527f46656520416464726573732063616e6e6f7420626520436f6e7472616374204160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038116610a635760405162461bcd60e51b815260206004820152602260248201527f46656520416464726573732063616e6e6f74206265207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a9a610e8b565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b610af9610e8b565b6007805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606004805461064b90611676565b610b5a610e8b565b6064811115610bab5760405162461bcd60e51b815260206004820152600860248201527f31303025204d6178000000000000000000000000000000000000000000000000604482015260640161093f565b600855565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161093f565b6108278286868403610d33565b6000610c67338484610f77565b50600192915050565b610c78610e8b565b6001600160a01b038116610cf45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093f565b610cfd81611192565b50565b610d08610e8b565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b038316610dae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038216610e2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610f715781811015610f645760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161093f565b610f718484848403610d33565b50505050565b336000908152600b602052604090205460ff1615610fd75760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c6973746564000000000000000000000000000000000000000000604482015260640161093f565b60075474010000000000000000000000000000000000000000900460ff166110415760405162461bcd60e51b815260206004820152601060248201527f54726164696e672044697361626c656400000000000000000000000000000000604482015260640161093f565b600081116110b75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b0383166000908152600a6020526040812054819060ff16806110f857506001600160a01b0384166000908152600a602052604090205460ff165b1561110557506000611141565b6006546001600160a01b0390811690851603611125576009549150611141565b6006546001600160a01b03908116908616036111415760085491505b606461114d8385611726565b611157919061173d565b905061116d8585611168848761175f565b6111f1565b801561118b5760075461118b9086906001600160a01b0316836111f1565b5050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661126d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b0382166112e95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038316600090815260208190526040902054818110156113785760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f71565b600060208083528351808285015260005b8181101561140b578581018301518582016040015282016113ef565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461144357600080fd5b919050565b6000806040838503121561145b57600080fd5b6114648361142c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610cfd57600080fd5b803561144381611488565b600080604083850312156114b457600080fd5b823567ffffffffffffffff808211156114cc57600080fd5b818501915085601f8301126114e057600080fd5b81356020828211156114f4576114f4611472565b8160051b604051601f19603f8301168101818110868211171561151957611519611472565b60405292835281830193508481018201928984111561153757600080fd5b948201945b8386101561155c5761154d8661142c565b8552948201949382019361153c565b965061156b9050878201611496565b9450505050509250929050565b60008060006060848603121561158d57600080fd5b6115968461142c565b92506115a46020850161142c565b9150604084013590509250925092565b600080604083850312156115c757600080fd5b6115d08361142c565b915060208301356115e081611488565b809150509250929050565b6000602082840312156115fd57600080fd5b5035919050565b60006020828403121561161657600080fd5b61161f8261142c565b9392505050565b60006020828403121561163857600080fd5b813561161f81611488565b6000806040838503121561165657600080fd5b61165f8361142c565b915061166d6020840161142c565b90509250929050565b600181811c9082168061168a57607f821691505b6020821081036116aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982036116ef576116ef6116c6565b5060010190565b60006020828403121561170857600080fd5b815161161f81611488565b808201808211156106e2576106e26116c6565b80820281158282048414176106e2576106e26116c6565b60008261175a57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106e2576106e26116c656fea2646970667358221220f984975470a52d50f22b2583b920eb8505457c4dae41bf9e388d5ce27939a1b664736f6c6343000813003300000000000000000000000019788cc173d0828abd49cbb67db0bbbfe6af0a00

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c8063715018a611610102578063a457c2d711610095578063dd62ed3e11610064578063dd62ed3e1461059f578063f2fde38b146105e5578063f66895a314610605578063fc2eb8891461061c57600080fd5b8063a457c2d71461050f578063a8aa1b311461052f578063a9059cbb1461054f578063c5d32bb21461056f57600080fd5b80638da5cb5b116100d15780638da5cb5b1461049c5780638f70ccf7146104ba57806395d89b41146104da5780639b5a752c146104ef57600080fd5b8063715018a614610430578063809d458d146104455780638187f51614610465578063864701a51461048557600080fd5b8063355496ca1161017a5780634838d165116101495780634838d165146103785780634ada218b146103a857806365ab6b5a146103da57806370a08231146103fa57600080fd5b8063355496ca146102e05780633950935114610300578063454aa669146103205780634626402b1461034057600080fd5b80631698755f116101b65780631698755f1461026557806318160ddd1461028557806323b872dd146102a4578063313ce567146102c457600080fd5b806306fdde03146101e8578063095ea7b3146102135780630e375a5c1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61063c565b60405161020a91906113de565b60405180910390f35b34801561021f57600080fd5b5061023361022e366004611448565b6106ce565b604051901515815260200161020a565b34801561024f57600080fd5b5061026361025e3660046114a1565b6106e8565b005b34801561027157600080fd5b50610263610280366004611448565b61075c565b34801561029157600080fd5b506002545b60405190815260200161020a565b3480156102b057600080fd5b506102336102bf366004611578565b61080e565b3480156102d057600080fd5b506040516012815260200161020a565b3480156102ec57600080fd5b506102636102fb3660046115b4565b610832565b34801561030c57600080fd5b5061023361031b366004611448565b610865565b34801561032c57600080fd5b5061026361033b3660046115eb565b6108a4565b34801561034c57600080fd5b50600754610360906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b34801561038457600080fd5b50610233610393366004611604565b600b6020526000908152604090205460ff1681565b3480156103b457600080fd5b506007546102339074010000000000000000000000000000000000000000900460ff1681565b3480156103e657600080fd5b506102636103f53660046115eb565b6108ea565b34801561040657600080fd5b50610296610415366004611604565b6001600160a01b031660009081526020819052604090205490565b34801561043c57600080fd5b5061026361094d565b34801561045157600080fd5b50610263610460366004611604565b610961565b34801561047157600080fd5b50610263610480366004611604565b610a92565b34801561049157600080fd5b506008546102969081565b3480156104a857600080fd5b506005546001600160a01b0316610360565b3480156104c657600080fd5b506102636104d5366004611626565b610af1565b3480156104e657600080fd5b506101fd610b43565b3480156104fb57600080fd5b5061026361050a3660046115eb565b610b52565b34801561051b57600080fd5b5061023361052a366004611448565b610bb0565b34801561053b57600080fd5b50600654610360906001600160a01b031681565b34801561055b57600080fd5b5061023361056a366004611448565b610c5a565b34801561057b57600080fd5b5061023361058a366004611604565b600a6020526000908152604090205460ff1681565b3480156105ab57600080fd5b506102966105ba366004611643565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105f157600080fd5b50610263610600366004611604565b610c70565b34801561061157600080fd5b506009546102969081565b34801561062857600080fd5b506102636106373660046115b4565b610d00565b60606003805461064b90611676565b80601f016020809104026020016040519081016040528092919081815260200182805461067790611676565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000336106dc818585610d33565b60019150505b92915050565b6106f0610e8b565b60005b82518110156107575781600a6000858481518110610713576107136116b0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061074f816116dc565b9150506106f3565b505050565b610764610e8b565b816001600160a01b031663a9059cbb6107856005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156107ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075791906116f6565b60003361081c858285610ee5565b610827858585610f77565b506001949350505050565b61083a610e8b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906106dc908290869061089f908790611713565b610d33565b6108ac610e8b565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108e6573d6000803e3d6000fd5b5050565b6108f2610e8b565b60648111156109485760405162461bcd60e51b815260206004820152600860248201527f31303025204d617800000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600955565b610955610e8b565b61095f6000611192565b565b610969610e8b565b306001600160a01b038216036109e75760405162461bcd60e51b815260206004820152602660248201527f46656520416464726573732063616e6e6f7420626520436f6e7472616374204160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038116610a635760405162461bcd60e51b815260206004820152602260248201527f46656520416464726573732063616e6e6f74206265207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a9a610e8b565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b610af9610e8b565b6007805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606004805461064b90611676565b610b5a610e8b565b6064811115610bab5760405162461bcd60e51b815260206004820152600860248201527f31303025204d6178000000000000000000000000000000000000000000000000604482015260640161093f565b600855565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161093f565b6108278286868403610d33565b6000610c67338484610f77565b50600192915050565b610c78610e8b565b6001600160a01b038116610cf45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093f565b610cfd81611192565b50565b610d08610e8b565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b038316610dae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038216610e2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093f565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610f715781811015610f645760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161093f565b610f718484848403610d33565b50505050565b336000908152600b602052604090205460ff1615610fd75760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c6973746564000000000000000000000000000000000000000000604482015260640161093f565b60075474010000000000000000000000000000000000000000900460ff166110415760405162461bcd60e51b815260206004820152601060248201527f54726164696e672044697361626c656400000000000000000000000000000000604482015260640161093f565b600081116110b75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b0383166000908152600a6020526040812054819060ff16806110f857506001600160a01b0384166000908152600a602052604090205460ff165b1561110557506000611141565b6006546001600160a01b0390811690851603611125576009549150611141565b6006546001600160a01b03908116908616036111415760085491505b606461114d8385611726565b611157919061173d565b905061116d8585611168848761175f565b6111f1565b801561118b5760075461118b9086906001600160a01b0316836111f1565b5050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661126d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b0382166112e95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b038316600090815260208190526040902054818110156113785760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161093f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f71565b600060208083528351808285015260005b8181101561140b578581018301518582016040015282016113ef565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461144357600080fd5b919050565b6000806040838503121561145b57600080fd5b6114648361142c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610cfd57600080fd5b803561144381611488565b600080604083850312156114b457600080fd5b823567ffffffffffffffff808211156114cc57600080fd5b818501915085601f8301126114e057600080fd5b81356020828211156114f4576114f4611472565b8160051b604051601f19603f8301168101818110868211171561151957611519611472565b60405292835281830193508481018201928984111561153757600080fd5b948201945b8386101561155c5761154d8661142c565b8552948201949382019361153c565b965061156b9050878201611496565b9450505050509250929050565b60008060006060848603121561158d57600080fd5b6115968461142c565b92506115a46020850161142c565b9150604084013590509250925092565b600080604083850312156115c757600080fd5b6115d08361142c565b915060208301356115e081611488565b809150509250929050565b6000602082840312156115fd57600080fd5b5035919050565b60006020828403121561161657600080fd5b61161f8261142c565b9392505050565b60006020828403121561163857600080fd5b813561161f81611488565b6000806040838503121561165657600080fd5b61165f8361142c565b915061166d6020840161142c565b90509250929050565b600181811c9082168061168a57607f821691505b6020821081036116aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982036116ef576116ef6116c6565b5060010190565b60006020828403121561170857600080fd5b815161161f81611488565b808201808211156106e2576106e26116c6565b80820281158282048414176106e2576106e26116c6565b60008261175a57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106e2576106e26116c656fea2646970667358221220f984975470a52d50f22b2583b920eb8505457c4dae41bf9e388d5ce27939a1b664736f6c63430008130033

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

00000000000000000000000019788cc173d0828abd49cbb67db0bbbfe6af0a00

-----Decoded View---------------
Arg [0] : _treasuryWallet (address): 0x19788cc173d0828abd49cBb67Db0BBBFE6af0a00

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000019788cc173d0828abd49cbb67db0bbbfe6af0a00


Deployed Bytecode Sourcemap

30043:3779:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18779:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21130:201;;;;;;;;;;-1:-1:-1;21130:201:0;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;21130:201:0;1086:187:1;33295:202:0;;;;;;;;;;-1:-1:-1;33295:202:0;;;;;:::i;:::-;;:::i;:::-;;33622:142;;;;;;;;;;-1:-1:-1;33622:142:0;;;;;:::i;:::-;;:::i;19899:108::-;;;;;;;;;;-1:-1:-1;19987:12:0;;19899:108;;;3124:25:1;;;3112:2;3097:18;19899:108:0;2978:177:1;21911:295:0;;;;;;;;;;-1:-1:-1;21911:295:0;;;;;:::i;:::-;;:::i;19741:93::-;;;;;;;;;;-1:-1:-1;19741:93:0;;19824:2;3635:36:1;;3623:2;3608:18;19741:93:0;3493:184:1;33167:120:0;;;;;;;;;;-1:-1:-1;33167:120:0;;;;;:::i;:::-;;:::i;22615:238::-;;;;;;;;;;-1:-1:-1;22615:238:0;;;;;:::i;:::-;;:::i;33505:109::-;;;;;;;;;;-1:-1:-1;33505:109:0;;;;;:::i;:::-;;:::i;30160:29::-;;;;;;;;;;-1:-1:-1;30160:29:0;;;;-1:-1:-1;;;;;30160:29:0;;;;;;-1:-1:-1;;;;;4351:55:1;;;4333:74;;4321:2;4306:18;30160:29:0;4187:226:1;30469:41:0;;;;;;;;;;-1:-1:-1;30469:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30198:26;;;;;;;;;;-1:-1:-1;30198:26:0;;;;;;;;;;;32723:151;;;;;;;;;;-1:-1:-1;32723:151:0;;;;;:::i;:::-;;:::i;20070:127::-;;;;;;;;;;-1:-1:-1;20070:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;20171:18:0;20144:7;20171:18;;;;;;;;;;;;20070:127;12204:103;;;;;;;;;;;;;:::i;32885:270::-;;;;;;;;;;-1:-1:-1;32885:270:0;;;;;:::i;:::-;;:::i;30908:115::-;;;;;;;;;;-1:-1:-1;30908:115:0;;;;;:::i;:::-;;:::i;30338:33::-;;;;;;;;;;-1:-1:-1;30338:33:0;;;;;;11556:87;;;;;;;;;;-1:-1:-1;11629:6:0;;-1:-1:-1;;;;;11629:6:0;11556:87;;31066:92;;;;;;;;;;-1:-1:-1;31066:92:0;;;;;:::i;:::-;;:::i;18998:104::-;;;;;;;;;;;;;:::i;32518:149::-;;;;;;;;;;-1:-1:-1;32518:149:0;;;;;:::i;:::-;;:::i;23356:436::-;;;;;;;;;;-1:-1:-1;23356:436:0;;;;;:::i;:::-;;:::i;30132:19::-;;;;;;;;;;-1:-1:-1;30132:19:0;;;;-1:-1:-1;;;;;30132:19:0;;;31166:197;;;;;;;;;;-1:-1:-1;31166:197:0;;;;;:::i;:::-;;:::i;30421:41::-;;;;;;;;;;-1:-1:-1;30421:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20659:151;;;;;;;;;;-1:-1:-1;20659:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;20775:18:0;;;20748:7;20775:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20659:151;12462:201;;;;;;;;;;-1:-1:-1;12462:201:0;;;;;:::i;:::-;;:::i;30378:34::-;;;;;;;;;;-1:-1:-1;30378:34:0;;;;;;32346:120;;;;;;;;;;-1:-1:-1;32346:120:0;;;;;:::i;:::-;;:::i;18779:100::-;18833:13;18866:5;18859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18779:100;:::o;21130:201::-;21213:4;10187:10;21269:32;10187:10;21285:7;21294:6;21269:8;:32::i;:::-;21319:4;21312:11;;;21130:201;;;;;:::o;33295:202::-;11442:13;:11;:13::i;:::-;33392:9:::1;33387:103;33411:8;:15;33407:1;:19;33387:103;;;33473:5;33448:9;:22;33458:8;33467:1;33458:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;33448:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;33448:22:0;:30;;-1:-1:-1;;33448:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33428:3;::::1;::::0;::::1;:::i;:::-;;;;33387:103;;;;33295:202:::0;;:::o;33622:142::-;11442:13;:11;:13::i;:::-;33717:12:::1;-1:-1:-1::0;;;;;33710:29:0::1;;33740:7;11629:6:::0;;-1:-1:-1;;;;;11629:6:0;;11556:87;33740:7:::1;33710:46;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6332:55:1;;;33710:46:0::1;::::0;::::1;6314:74:1::0;6404:18;;;6397:34;;;6287:18;;33710:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21911:295::-:0;22042:4;10187:10;22100:38;22116:4;10187:10;22131:6;22100:15;:38::i;:::-;22149:27;22159:4;22165:2;22169:6;22149:9;:27::i;:::-;-1:-1:-1;22194:4:0;;21911:295;-1:-1:-1;;;;21911:295:0:o;33167:120::-;11442:13;:11;:13::i;:::-;-1:-1:-1;;;;;33252:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;33252:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33167:120::o;22615:238::-;10187:10;22703:4;20775:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;20775:27:0;;;;;;;;;;22703:4;;10187:10;22759:64;;10187:10;;20775:27;;22784:38;;22812:10;;22784:38;:::i;:::-;22759:8;:64::i;33505:109::-;11442:13;:11;:13::i;:::-;11629:6;;33573:33:::1;::::0;-1:-1:-1;;;;;11629:6:0;;;;33573:33;::::1;;;::::0;33599:6;;33573:33:::1;::::0;;;33599:6;11629;33573:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33505:109:::0;:::o;32723:151::-;11442:13;:11;:13::i;:::-;32812:3:::1;32802:6;:13;;32794:34;;;::::0;-1:-1:-1;;;32794:34:0;;7024:2:1;32794:34:0::1;::::0;::::1;7006:21:1::0;7063:1;7043:18;;;7036:29;7101:10;7081:18;;;7074:38;7129:18;;32794:34:0::1;;;;;;;;;32839:9;:27:::0;32723:151::o;12204:103::-;11442:13;:11;:13::i;:::-;12269:30:::1;12296:1;12269:18;:30::i;:::-;12204:103::o:0;32885:270::-;11442:13;:11;:13::i;:::-;32987:4:::1;-1:-1:-1::0;;;;;32969:23:0;::::1;::::0;32961:74:::1;;;::::0;-1:-1:-1;;;32961:74:0;;7360:2:1;32961:74:0::1;::::0;::::1;7342:21:1::0;7399:2;7379:18;;;7372:30;7438:34;7418:18;;;7411:62;7509:8;7489:18;;;7482:36;7535:19;;32961:74:0::1;7158:402:1::0;32961:74:0::1;-1:-1:-1::0;;;;;33054:20:0;::::1;33046:67;;;::::0;-1:-1:-1;;;33046:67:0;;7767:2:1;33046:67:0::1;::::0;::::1;7749:21:1::0;7806:2;7786:18;;;7779:30;7845:34;7825:18;;;7818:62;7916:4;7896:18;;;7889:32;7938:19;;33046:67:0::1;7565:398:1::0;33046:67:0::1;33124:14;:23:::0;;-1:-1:-1;;33124:23:0::1;-1:-1:-1::0;;;;;33124:23:0;;;::::1;::::0;;;::::1;::::0;;32885:270::o;30908:115::-;11442:13;:11;:13::i;:::-;30970:4:::1;:12:::0;;-1:-1:-1;;30970:12:0::1;-1:-1:-1::0;;;;;30970:12:0;;;::::1;::::0;;;::::1;::::0;;30993:14:::1;:22:::0;;;::::1;::::0;;30908:115::o;31066:92::-;11442:13;:11;:13::i;:::-;31128:14:::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;31066:92::o;18998:104::-;19054:13;19087:7;19080:14;;;;;:::i;32518:149::-;11442:13;:11;:13::i;:::-;32606:3:::1;32596:6;:13;;32588:34;;;::::0;-1:-1:-1;;;32588:34:0;;7024:2:1;32588:34:0::1;::::0;::::1;7006:21:1::0;7063:1;7043:18;;;7036:29;7101:10;7081:18;;;7074:38;7129:18;;32588:34:0::1;6822:331:1::0;32588:34:0::1;32633:8;:26:::0;32518:149::o;23356:436::-;10187:10;23449:4;20775:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;20775:27:0;;;;;;;;;;23449:4;;10187:10;23596:15;23576:16;:35;;23568:85;;;;-1:-1:-1;;;23568:85:0;;8170:2:1;23568:85:0;;;8152:21:1;8209:2;8189:18;;;8182:30;8248:34;8228:18;;;8221:62;8319:7;8299:18;;;8292:35;8344:19;;23568:85:0;7968:401:1;23568:85:0;23689:60;23698:5;23705:7;23733:15;23714:16;:34;23689:8;:60::i;31166:197::-;31271:4;31293:40;31303:10;31315:9;31326:6;31293:9;:40::i;:::-;-1:-1:-1;31351:4:0;31166:197;;;;:::o;12462:201::-;11442:13;:11;:13::i;:::-;-1:-1:-1;;;;;12551:22:0;::::1;12543:73;;;::::0;-1:-1:-1;;;12543:73:0;;8576:2:1;12543:73:0::1;::::0;::::1;8558:21:1::0;8615:2;8595:18;;;8588:30;8654:34;8634:18;;;8627:62;8725:8;8705:18;;;8698:36;8751:19;;12543:73:0::1;8374:402:1::0;12543:73:0::1;12627:28;12646:8;12627:18;:28::i;:::-;12462:201:::0;:::o;32346:120::-;11442:13;:11;:13::i;:::-;-1:-1:-1;;;;;32431:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;32431:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32346:120::o;27383:380::-;-1:-1:-1;;;;;27519:19:0;;27511:68;;;;-1:-1:-1;;;27511:68:0;;8983:2:1;27511:68:0;;;8965:21:1;9022:2;9002:18;;;8995:30;9061:34;9041:18;;;9034:62;9132:6;9112:18;;;9105:34;9156:19;;27511:68:0;8781:400:1;27511:68:0;-1:-1:-1;;;;;27598:21:0;;27590:68;;;;-1:-1:-1;;;27590:68:0;;9388:2:1;27590:68:0;;;9370:21:1;9427:2;9407:18;;;9400:30;9466:34;9446:18;;;9439:62;9537:4;9517:18;;;9510:32;9559:19;;27590:68:0;9186:398:1;27590:68:0;-1:-1:-1;;;;;27671:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27723:32;;3124:25:1;;;27723:32:0;;3097:18:1;27723:32:0;;;;;;;27383:380;;;:::o;11721:132::-;11629:6;;-1:-1:-1;;;;;11629:6:0;10187:10;11785:23;11777:68;;;;-1:-1:-1;;;11777:68:0;;9791:2:1;11777:68:0;;;9773:21:1;;;9810:18;;;9803:30;9869:34;9849:18;;;9842:62;9921:18;;11777:68:0;9589:356:1;28054:453:0;-1:-1:-1;;;;;20775:18:0;;;28189:24;20775:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;28256:37:0;;28252:248;;28338:6;28318:16;:26;;28310:68;;;;-1:-1:-1;;;28310:68:0;;10152:2:1;28310:68:0;;;10134:21:1;10191:2;10171:18;;;10164:30;10230:31;10210:18;;;10203:59;10279:18;;28310:68:0;9950:353:1;28310:68:0;28422:51;28431:5;28438:7;28466:6;28447:16;:25;28422:8;:51::i;:::-;28178:329;28054:453;;;:::o;31371:943::-;31523:10;31513:21;;;;:9;:21;;;;;;;;31512:22;31504:46;;;;-1:-1:-1;;;31504:46:0;;10510:2:1;31504:46:0;;;10492:21:1;10549:2;10529:18;;;10522:30;10588:13;10568:18;;;10561:41;10619:18;;31504:46:0;10308:335:1;31504:46:0;31569:14;;;;;;;31561:43;;;;-1:-1:-1;;;31561:43:0;;10850:2:1;31561:43:0;;;10832:21:1;10889:2;10869:18;;;10862:30;10928:18;10908;;;10901:46;10964:18;;31561:43:0;10648:340:1;31561:43:0;31632:1;31623:6;:10;31615:64;;;;-1:-1:-1;;;31615:64:0;;11195:2:1;31615:64:0;;;11177:21:1;11234:2;11214:18;;;11207:30;11273:34;11253:18;;;11246:62;11344:11;11324:18;;;11317:39;11373:19;;31615:64:0;10993:405:1;31615:64:0;-1:-1:-1;;;;;31827:17:0;;31700;31827;;;:9;:17;;;;;;31700;;31827;;;:41;;-1:-1:-1;;;;;;31848:20:0;;;;;;:9;:20;;;;;;;;31827:41;31823:257;;;-1:-1:-1;31889:1:0;31823:257;;;31925:4;;-1:-1:-1;;;;;31925:4:0;;;31912:17;;;;31908:172;;31958:9;:18;;-1:-1:-1;31908:172:0;;;32018:4;;-1:-1:-1;;;;;32018:4:0;;;32008:14;;;;32004:76;;32051:8;:17;;-1:-1:-1;32004:76:0;32121:3;32099:18;32108:9;32099:6;:18;:::i;:::-;32098:26;;;;:::i;:::-;32092:32;-1:-1:-1;32166:48:0;32182:6;32190:9;32201:12;32092:32;32201:6;:12;:::i;:::-;32166:15;:48::i;:::-;32229:7;;32225:84;;32277:14;;32253:44;;32269:6;;-1:-1:-1;;;;;32277:14:0;32293:3;32253:15;:44::i;:::-;31493:821;;31371:943;;;:::o;12823:191::-;12916:6;;;-1:-1:-1;;;;;12933:17:0;;;-1:-1:-1;;12933:17:0;;;;;;;12966:40;;12916:6;;;12933:17;12916:6;;12966:40;;12897:16;;12966:40;12886:128;12823:191;:::o;24262:840::-;-1:-1:-1;;;;;24393:18:0;;24385:68;;;;-1:-1:-1;;;24385:68:0;;12190:2:1;24385:68:0;;;12172:21:1;12229:2;12209:18;;;12202:30;12268:34;12248:18;;;12241:62;12339:7;12319:18;;;12312:35;12364:19;;24385:68:0;11988:401:1;24385:68:0;-1:-1:-1;;;;;24472:16:0;;24464:64;;;;-1:-1:-1;;;24464:64:0;;12596:2:1;24464:64:0;;;12578:21:1;12635:2;12615:18;;;12608:30;12674:34;12654:18;;;12647:62;12745:5;12725:18;;;12718:33;12768:19;;24464:64:0;12394:399:1;24464:64:0;-1:-1:-1;;;;;24614:15:0;;24592:19;24614:15;;;;;;;;;;;24648:21;;;;24640:72;;;;-1:-1:-1;;;24640:72:0;;13000:2:1;24640:72:0;;;12982:21:1;13039:2;13019:18;;;13012:30;13078:34;13058:18;;;13051:62;13149:8;13129:18;;;13122:36;13175:19;;24640:72:0;12798:402:1;24640:72:0;-1:-1:-1;;;;;24748:15:0;;;:9;:15;;;;;;;;;;;24766:20;;;24748:38;;24966:13;;;;;;;;;;:23;;;;;;25018:26;;3124:25:1;;;24966:13:0;;25018:26;;3097:18:1;25018:26:0;;;;;;;25057:37;33295:202;14:607:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;-1:-1:-1;;537:2:1;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;-1:-1:-1;;;;;743:54:1;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1278:184::-;-1:-1:-1;;;1327:1:1;1320:88;1427:4;1424:1;1417:15;1451:4;1448:1;1441:15;1467:118;1553:5;1546:13;1539:21;1532:5;1529:32;1519:60;;1575:1;1572;1565:12;1590:128;1655:20;;1684:28;1655:20;1684:28;:::i;1723:1250::-;1813:6;1821;1874:2;1862:9;1853:7;1849:23;1845:32;1842:52;;;1890:1;1887;1880:12;1842:52;1930:9;1917:23;1959:18;2000:2;1992:6;1989:14;1986:34;;;2016:1;2013;2006:12;1986:34;2054:6;2043:9;2039:22;2029:32;;2099:7;2092:4;2088:2;2084:13;2080:27;2070:55;;2121:1;2118;2111:12;2070:55;2157:2;2144:16;2179:4;2202:2;2198;2195:10;2192:36;;;2208:18;;:::i;:::-;2254:2;2251:1;2247:10;2286:2;2280:9;-1:-1:-1;;2340:2:1;2336;2332:11;2328:84;2320:6;2316:97;2463:6;2451:10;2448:22;2443:2;2431:10;2428:18;2425:46;2422:72;;;2474:18;;:::i;:::-;2510:2;2503:22;2560:18;;;2594:15;;;;-1:-1:-1;2636:11:1;;;2632:20;;;2664:19;;;2661:39;;;2696:1;2693;2686:12;2661:39;2720:11;;;;2740:148;2756:6;2751:3;2748:15;2740:148;;;2822:23;2841:3;2822:23;:::i;:::-;2810:36;;2773:12;;;;2866;;;;2740:148;;;2907:6;-1:-1:-1;2932:35:1;;-1:-1:-1;2948:18:1;;;2932:35;:::i;:::-;2922:45;;;;;;1723:1250;;;;;:::o;3160:328::-;3237:6;3245;3253;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;3345:29;3364:9;3345:29;:::i;:::-;3335:39;;3393:38;3427:2;3416:9;3412:18;3393:38;:::i;:::-;3383:48;;3478:2;3467:9;3463:18;3450:32;3440:42;;3160:328;;;;;:::o;3682:315::-;3747:6;3755;3808:2;3796:9;3787:7;3783:23;3779:32;3776:52;;;3824:1;3821;3814:12;3776:52;3847:29;3866:9;3847:29;:::i;:::-;3837:39;;3926:2;3915:9;3911:18;3898:32;3939:28;3961:5;3939:28;:::i;:::-;3986:5;3976:15;;;3682:315;;;;;:::o;4002:180::-;4061:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:52;;;4130:1;4127;4120:12;4082:52;-1:-1:-1;4153:23:1;;4002:180;-1:-1:-1;4002:180:1:o;4418:186::-;4477:6;4530:2;4518:9;4509:7;4505:23;4501:32;4498:52;;;4546:1;4543;4536:12;4498:52;4569:29;4588:9;4569:29;:::i;:::-;4559:39;4418:186;-1:-1:-1;;;4418:186:1:o;4609:241::-;4665:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:52;;;4734:1;4731;4724:12;4686:52;4773:9;4760:23;4792:28;4814:5;4792:28;:::i;4855:260::-;4923:6;4931;4984:2;4972:9;4963:7;4959:23;4955:32;4952:52;;;5000:1;4997;4990:12;4952:52;5023:29;5042:9;5023:29;:::i;:::-;5013:39;;5071:38;5105:2;5094:9;5090:18;5071:38;:::i;:::-;5061:48;;4855:260;;;;;:::o;5120:437::-;5199:1;5195:12;;;;5242;;;5263:61;;5317:4;5309:6;5305:17;5295:27;;5263:61;5370:2;5362:6;5359:14;5339:18;5336:38;5333:218;;-1:-1:-1;;;5404:1:1;5397:88;5508:4;5505:1;5498:15;5536:4;5533:1;5526:15;5333:218;;5120:437;;;:::o;5562:184::-;-1:-1:-1;;;5611:1:1;5604:88;5711:4;5708:1;5701:15;5735:4;5732:1;5725:15;5751:184;-1:-1:-1;;;5800:1:1;5793:88;5900:4;5897:1;5890:15;5924:4;5921:1;5914:15;5940:195;5979:3;-1:-1:-1;;6003:5:1;6000:77;5997:103;;6080:18;;:::i;:::-;-1:-1:-1;6127:1:1;6116:13;;5940:195::o;6442:245::-;6509:6;6562:2;6550:9;6541:7;6537:23;6533:32;6530:52;;;6578:1;6575;6568:12;6530:52;6610:9;6604:16;6629:28;6651:5;6629:28;:::i;6692:125::-;6757:9;;;6778:10;;;6775:36;;;6791:18;;:::i;11403:168::-;11476:9;;;11507;;11524:15;;;11518:22;;11504:37;11494:71;;11545:18;;:::i;11576:274::-;11616:1;11642;11632:189;;-1:-1:-1;;;11674:1:1;11667:88;11778:4;11775:1;11768:15;11806:4;11803:1;11796:15;11632:189;-1:-1:-1;11835:9:1;;11576:274::o;11855:128::-;11922:9;;;11943:11;;;11940:37;;;11957:18;;:::i

Swarm Source

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