ETH Price: $3,506.60 (+0.17%)
Gas: 4 Gwei

Token

DXFUND (DXF)
 

Overview

Max Total Supply

10,000,000 DXF

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.899009902707814593 DXF

Value
$0.00
0x8abAA38Ed51D040dd0bCF3cCe44304d7d12e1Cbd
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:
DXFUNDToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-28
*/

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: dxfund.sol


pragma solidity ^0.8.17;

/**
 * @title DXFUND Token
 * @dev ERC20 Token for Decentralized Finance (DeFi) Investments
 * Website: https://dxfunds.xyz
 * Social Media: Twitter (https://twitter.com/dxfunds), Telegram (https://t.me/dxfunds), Discord (https://discord.gg/rCfY7nF65y)
 * Documentation: https://dxfunds.gitbook.io/docs
 *
 * DXFUND Token offers secure and transparent DeFi investment opportunities. 
 * Key Features:
 * - Fee Management: Transparent fees on all ETH-based transactions (buys, sells, transfers, mint/burns).
 * - Buyback & Burn: Regularly uses 5% of ETH in the fund every 15 days to buy and burn DXF tokens, enhancing token value.
 * - Fund Management: Supports strategic investments and community-driven initiatives for sustainable growth.
 * - Security & Ethics: Adheres to high standards of security and ethical practices.
 *
 * DXFUND Fund:
 * - A vital part of DXFUND ecosystem, ensuring stability and growth.
 * - Drives investor confidence and supports diversified strategic investments.
 * - Practices transparency and predictability in operations.
 * - Committed to long-term sustainability and community empowerment.
 *
 * Join us in shaping the future of DeFi investment with DXFUND.
 */





contract DXFUNDToken is ERC20, Ownable, ReentrancyGuard {
    uint256 public constant INITIAL_SUPPLY = 10000000 * (10**18);
    uint256 public constant MAX_TX_FEE = 0.5 ether;
    uint256 public constant BUYBACK_PERCENTAGE = 1;
    uint256 public constant BLOCKS_PER_WEEK = 42602;
    uint256 public constant TX_FEE_PERCENTAGE = 5; // 5% Fee
    uint256 public fundFeePercentage = 50; 
    address payable public ethToDxfPoolAddress;
    address public ethToWbtcPoolAddress;
    address public wbtcAddress;
    IUniswapV2Router02 public uniswapRouter;

    address public feeRecipient;
    uint256 public lastBuybackBlock;
    bool public fundActive = false;

    event BuybackAndBurn(uint256 ethForBuyback, uint256 dxfBought);
    event FeeCollected(uint256 fee);

    constructor(
        address _fundAddress,
        address _wbtcAddress,
        address _uniswapRouterAddress,
        address _feeRecipient
    ) ERC20("DXFUND", "DXF") Ownable(msg.sender) {
        ethToDxfPoolAddress = payable(_fundAddress);
        wbtcAddress = _wbtcAddress;
        uniswapRouter = IUniswapV2Router02(_uniswapRouterAddress);
        feeRecipient = _feeRecipient;

        _mint(msg.sender, INITIAL_SUPPLY);
        lastBuybackBlock = block.number + BLOCKS_PER_WEEK;
    }

    function swapETHForWBTC(uint256 ethAmount) private returns (uint256) {
        require(ethAmount > 0, "ETH amount must be greater than 0");
        address[] memory path = new address[](2);
        path[0] = uniswapRouter.WETH();
        path[1] = wbtcAddress;
        uint256[] memory amounts = uniswapRouter.swapExactETHForTokens{value: ethAmount}(0, path, address(this), block.timestamp);
        return amounts[1];
    }

    function swapETHForDXF(uint256 ethAmount) private returns (uint256) {
        require(ethAmount > 0, "ETH amount must be greater than 0");
        address[] memory path = new address[](2);
        path[0] = uniswapRouter.WETH();
        path[1] = address(this);
        uint256[] memory amounts = uniswapRouter.swapExactETHForTokens{value: ethAmount}(0, path, address(this), block.timestamp);
        return amounts[1];
    }

function buyDXF(uint256 ethAmount) public payable nonReentrant {
    uint256 fee = ethAmount * TX_FEE_PERCENTAGE / 100;
    uint256 ethAmountAfterFee = ethAmount - fee;

    // Calcula a distribuição da taxa
    uint256 fundFee = fee * fundFeePercentage / 100;
    uint256 recipientFee = fee - fundFee;

    // Transfere a parte do fundo para o endereço do fundo
    ethToDxfPoolAddress.transfer(fundFee);

    // Transfere a parte do fee recipient para o feeRecipient
    payable(feeRecipient).transfer(recipientFee);

    uint256 dxfAmount = swapETHForDXF(ethAmountAfterFee);
    _transfer(address(this), msg.sender, dxfAmount);
    emit FeeCollected(fee);
}
    function cancelBuybackAndBurn() public onlyOwner {
        if (lastBuybackBlock > block.number) {
            lastBuybackBlock = 0;
        }
    }


    function calculateFee(uint256 amount) private pure returns (uint256) {
     return amount * TX_FEE_PERCENTAGE / 100;
}

    function setFundActive(bool active) public onlyOwner {
        fundActive = active;
    }

    function setBuybackInterval(uint256 interval) public onlyOwner {
        require(lastBuybackBlock == 0, "Buyback interval cannot be reset while active");
        lastBuybackBlock = block.number + interval;
    }

    function setEthToDxfPoolAddress(address address_) public onlyOwner {
        ethToDxfPoolAddress = payable(address_);
    }

    function getEthToDxfPoolAddress() public view returns (address) {
        return ethToDxfPoolAddress;
    }

    function setWbtcAddress(address address_) public onlyOwner {
        wbtcAddress = address_;
    }

    function getWbtcAddress() public view returns (address) {
        return wbtcAddress;
    }

    function setUniswapRouterAddress(address address_) public onlyOwner {
        uniswapRouter = IUniswapV2Router02(address_);
    }

    function getUniswapRouterAddress() public view returns (address) {
        return address(uniswapRouter);
    }

    function setFeeRecipient(address newRecipient) public onlyOwner {
        require(newRecipient != address(0), "Invalid address");
        feeRecipient = newRecipient;
    }

    function isFundActive() public view returns (bool) {
        return fundActive;
    }

    function triggerBuybackAndBurn() public onlyOwner {
        require(block.number >= lastBuybackBlock, "Buyback not yet due");
        uint256 ethForBuyback = address(this).balance * BUYBACK_PERCENTAGE / 100;
        ethToDxfPoolAddress.transfer(ethForBuyback);
        uint256 dxfBought = swapETHForDXF(ethForBuyback);
        _burn(address(this), dxfBought);
        emit BuybackAndBurn(ethForBuyback, dxfBought);
        lastBuybackBlock = block.number + BLOCKS_PER_WEEK;
    }

    function buyWBTCWithETH(uint256 ethAmount) public onlyOwner {
        swapETHForWBTC(ethAmount);
    }

    function sellWBTCForETH(uint256 wbtcAmount) public onlyOwner {
        ERC20 wbtcToken = ERC20(wbtcAddress);
        require(wbtcToken.balanceOf(address(this)) >= wbtcAmount, "Insufficient WBTC balance");
        wbtcToken.approve(address(uniswapRouter), wbtcAmount);
        address[] memory path = new address[](2);
        path[0] = wbtcAddress;
        path[1] = uniswapRouter.WETH();
        uniswapRouter.swapExactTokensForETH(wbtcAmount, 0, path, address(this), block.timestamp);
    }

    // Function to manually activate buying and burning with specific percentage of ETH
     function manualBuybackAndBurn(uint256 buybackPercentage) public onlyOwner {
    require(buybackPercentage > 0 && buybackPercentage <= 100, "Invalid percentage");
    uint256 ethForBuyback = address(this).balance * buybackPercentage / 100;
    require(ethForBuyback <= address(this).balance, "Insufficient balance");

    // Transfer ETH to the DXF pool and purchase and burn
    ethToDxfPoolAddress.transfer(ethForBuyback);
    uint256 dxfBought = swapETHForDXF(ethForBuyback);
    _burn(address(this), dxfBought);

    emit BuybackAndBurn(ethForBuyback, dxfBought);
}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_fundAddress","type":"address"},{"internalType":"address","name":"_wbtcAddress","type":"address"},{"internalType":"address","name":"_uniswapRouterAddress","type":"address"},{"internalType":"address","name":"_feeRecipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"uint256","name":"ethForBuyback","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dxfBought","type":"uint256"}],"name":"BuybackAndBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"FeeCollected","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":"BLOCKS_PER_WEEK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BUYBACK_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TX_FEE_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","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":"uint256","name":"ethAmount","type":"uint256"}],"name":"buyDXF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"buyWBTCWithETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelBuybackAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethToDxfPoolAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethToWbtcPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEthToDxfPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWbtcAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFundActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastBuybackBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buybackPercentage","type":"uint256"}],"name":"manualBuybackAndBurn","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wbtcAmount","type":"uint256"}],"name":"sellWBTCForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"interval","type":"uint256"}],"name":"setBuybackInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setEthToDxfPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setFundActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setUniswapRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setWbtcAddress","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":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"triggerBuybackAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wbtcAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526032600755600e805460ff191690553480156200001f575f80fd5b506040516200201038038062002010833981016040819052620000429162000336565b336040518060400160405280600681526020016511161195539160d21b81525060405180604001604052806003815260200162222c2360e91b81525081600390816200008f919062000430565b5060046200009e828262000430565b5050506001600160a01b038116620000d057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000db816200015e565b506001600655600880546001600160a01b038087166001600160a01b031992831617909255600a8054868416908316179055600b8054858416908316179055600c80549284169290911691909117905562000142336a084595161401484a000000620001af565b6200015061a66a43620004f8565b600d55506200051e92505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001da5760405163ec442f0560e01b81525f6004820152602401620000c7565b620001e75f8383620001eb565b5050565b6001600160a01b03831662000219578060025f8282546200020d9190620004f8565b909155506200028b9050565b6001600160a01b0383165f90815260208190526040902054818110156200026d5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000c7565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620002a957600280548290039055620002c7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030d91815260200190565b60405180910390a3505050565b80516001600160a01b038116811462000331575f80fd5b919050565b5f805f80608085870312156200034a575f80fd5b62000355856200031a565b935062000365602086016200031a565b925062000375604086016200031a565b915062000385606086016200031a565b905092959194509250565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620003b957607f821691505b602082108103620003d857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200042b575f81815260208120601f850160051c81016020861015620004065750805b601f850160051c820191505b81811015620004275782815560010162000412565b5050505b505050565b81516001600160401b038111156200044c576200044c62000390565b62000464816200045d8454620003a4565b84620003de565b602080601f8311600181146200049a575f8415620004825750858301515b5f19600386901b1c1916600185901b17855562000427565b5f85815260208120601f198616915b82811015620004ca57888601518255948401946001909101908401620004a9565b5085821015620004e857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200051857634e487b7160e01b5f52601160045260245ffd5b92915050565b611ae4806200052c5f395ff3fe60806040526004361061023e575f3560e01c806383f541b111610134578063ab45c3f4116100b3578063dc9d1df211610078578063dc9d1df214610653578063dce0de5e1461066c578063dd62ed3e14610689578063e74b981b146106cd578063f2fde38b146106ec578063fc47e2091461070b575f80fd5b8063ab45c3f4146105d0578063ba252d8d146105e4578063bcd7179b146105f8578063d39ac0cb14610617578063db15d18514610634575f80fd5b80639bbc1308116100f95780639bbc130814610540578063a0a5d80c1461055f578063a30b42901461057e578063a6e5705a14610592578063a9059cbb146105b1575f80fd5b806383f541b1146104c8578063851ded9a146104db5780638da5cb5b146104f257806395d89b411461050f5780639a87e76314610523575f80fd5b806346904840116101c05780636f4683bc116101855780636f4683bc1461042357806370a0823114610442578063715018a614610476578063735de9f71461048a5780637dbb9411146104a9575f80fd5b8063469048401461039757806361a2ac39146103b657806366df6791146103d557806369a4faae146103f05780636cd12db21461040f575f80fd5b806318160ddd1161020657806318160ddd146103165780631cc14c851461032a57806323b872dd1461033f5780632ff2e9dc1461035e578063313ce5671461037c575f80fd5b80630309461b1461024257806306fdde03146102635780630741dc4d1461028d578063095ea7b3146102b0578063170249ad146102df575b5f80fd5b34801561024d575f80fd5b5061026161025c36600461169b565b610720565b005b34801561026e575f80fd5b5061027761074a565b60405161028491906116bd565b60405180910390f35b348015610298575f80fd5b506102a2600d5481565b604051908152602001610284565b3480156102bb575f80fd5b506102cf6102ca366004611708565b6107da565b6040519015158152602001610284565b3480156102ea575f80fd5b506009546102fe906001600160a01b031681565b6040516001600160a01b039091168152602001610284565b348015610321575f80fd5b506002546102a2565b348015610335575f80fd5b506102a260075481565b34801561034a575f80fd5b506102cf610359366004611732565b6107f3565b348015610369575f80fd5b506102a26a084595161401484a00000081565b348015610387575f80fd5b5060405160128152602001610284565b3480156103a2575f80fd5b50600c546102fe906001600160a01b031681565b3480156103c1575f80fd5b50600a546102fe906001600160a01b031681565b3480156103e0575f80fd5b506102a26706f05b59d3b2000081565b3480156103fb575f80fd5b5061026161040a366004611770565b610816565b34801561041a575f80fd5b506102a2600181565b34801561042e575f80fd5b5061026161043d366004611770565b610960565b34801561044d575f80fd5b506102a261045c36600461169b565b6001600160a01b03165f9081526020819052604090205490565b348015610481575f80fd5b50610261610975565b348015610495575f80fd5b50600b546102fe906001600160a01b031681565b3480156104b4575f80fd5b506102616104c3366004611770565b610988565b6102616104d6366004611770565b610a06565b3480156104e6575f80fd5b50600e5460ff166102cf565b3480156104fd575f80fd5b506005546001600160a01b03166102fe565b34801561051a575f80fd5b50610277610b2a565b34801561052e575f80fd5b506008546001600160a01b03166102fe565b34801561054b575f80fd5b506008546102fe906001600160a01b031681565b34801561056a575f80fd5b50610261610579366004611770565b610b39565b348015610589575f80fd5b50610261610dcc565b34801561059d575f80fd5b506102616105ac36600461169b565b610de4565b3480156105bc575f80fd5b506102cf6105cb366004611708565b610e0e565b3480156105db575f80fd5b506102a2600581565b3480156105ef575f80fd5b50610261610e1b565b348015610603575f80fd5b50610261610612366004611794565b610f1e565b348015610622575f80fd5b50600b546001600160a01b03166102fe565b34801561063f575f80fd5b5061026161064e36600461169b565b610f39565b34801561065e575f80fd5b50600e546102cf9060ff1681565b348015610677575f80fd5b50600a546001600160a01b03166102fe565b348015610694575f80fd5b506102a26106a33660046117af565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106d8575f80fd5b506102616106e736600461169b565b610f63565b3480156106f7575f80fd5b5061026161070636600461169b565b610fd5565b348015610716575f80fd5b506102a261a66a81565b61072861100f565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610759906117e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610785906117e6565b80156107d05780601f106107a7576101008083540402835291602001916107d0565b820191905f5260205f20905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b5f336107e781858561103c565b60019150505b92915050565b5f3361080085828561104e565b61080b8585856110c3565b506001949350505050565b61081e61100f565b5f8111801561082e575060648111155b6108745760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642070657263656e7461676560701b60448201526064015b60405180910390fd5b5f60646108818347611832565b61088b9190611849565b9050478111156108d45760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b604482015260640161086b565b6008546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561090b573d5f803e3d5ffd5b505f61091682611120565b905061092230826112c3565b60408051838152602081018390527f0ec3929061cbbbeecb325623e7d5a86c3dae11cb8a22ca45dc0972955657da25910160405180910390a1505050565b61096861100f565b610971816112f7565b5050565b61097d61100f565b6109865f6113e5565b565b61099061100f565b600d54156109f65760405162461bcd60e51b815260206004820152602d60248201527f4275796261636b20696e74657276616c2063616e6e6f7420626520726573657460448201526c207768696c652061637469766560981b606482015260840161086b565b610a008143611868565b600d5550565b610a0e611436565b5f6064610a1c600584611832565b610a269190611849565b90505f610a33828461187b565b90505f606460075484610a469190611832565b610a509190611849565b90505f610a5d828561187b565b6008546040519192506001600160a01b03169083156108fc029084905f818181858888f19350505050158015610a95573d5f803e3d5ffd5b50600c546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610acd573d5f803e3d5ffd5b505f610ad884611120565b9050610ae53033836110c3565b6040518581527fc472cb3a7a659a876494d66b3063145f279701771d6150b9329c31611ed6405c9060200160405180910390a15050505050610b276001600655565b50565b606060048054610759906117e6565b610b4161100f565b600a546040516370a0823160e01b81523060048201526001600160a01b0390911690829082906370a0823190602401602060405180830381865afa158015610b8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610baf919061188e565b1015610bfd5760405162461bcd60e51b815260206004820152601960248201527f496e73756666696369656e7420574254432062616c616e636500000000000000604482015260640161086b565b600b5460405163095ea7b360e01b81526001600160a01b039182166004820152602481018490529082169063095ea7b3906044016020604051808303815f875af1158015610c4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7191906118a5565b506040805160028082526060820183525f926020830190803683375050600a5482519293506001600160a01b0316918391505f90610cb157610cb16118d4565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2c91906118e8565b81600181518110610d3f57610d3f6118d4565b6001600160a01b039283166020918202929092010152600b546040516318cbafe560e01b81529116906318cbafe590610d849086905f90869030904290600401611945565b5f604051808303815f875af1158015610d9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610dc69190810190611980565b50505050565b610dd461100f565b43600d541115610986575f600d55565b610dec61100f565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f336107e78185856110c3565b610e2361100f565b600d54431015610e6b5760405162461bcd60e51b81526020600482015260136024820152724275796261636b206e6f74207965742064756560681b604482015260640161086b565b5f6064610e79600147611832565b610e839190611849565b6008546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015610ebb573d5f803e3d5ffd5b505f610ec682611120565b9050610ed230826112c3565b60408051838152602081018390527f0ec3929061cbbbeecb325623e7d5a86c3dae11cb8a22ca45dc0972955657da25910160405180910390a1610f1761a66a43611868565b600d555050565b610f2661100f565b600e805460ff1916911515919091179055565b610f4161100f565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610f6b61100f565b6001600160a01b038116610fb35760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161086b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610fdd61100f565b6001600160a01b03811661100657604051631e4fbdf760e01b81525f600482015260240161086b565b610b27816113e5565b6005546001600160a01b031633146109865760405163118cdaa760e01b815233600482015260240161086b565b611049838383600161148f565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610dc657818110156110b557604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161086b565b610dc684848484035f61148f565b6001600160a01b0383166110ec57604051634b637e8f60e11b81525f600482015260240161086b565b6001600160a01b0382166111155760405163ec442f0560e01b81525f600482015260240161086b565b611049838383611561565b5f8082116111405760405162461bcd60e51b815260040161086b90611a39565b6040805160028082526060820183525f926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156111a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111cb91906118e8565b815f815181106111dd576111dd6118d4565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611211576112116118d4565b6001600160a01b039283166020918202929092010152600b54604051637ff36ab560e01b81525f929190911690637ff36ab590869061125a908590879030904290600401611a7a565b5f6040518083038185885af1158015611275573d5f803e3d5ffd5b50505050506040513d5f823e601f3d908101601f1916820160405261129d9190810190611980565b9050806001815181106112b2576112b26118d4565b602002602001015192505050919050565b6001600160a01b0382166112ec57604051634b637e8f60e11b81525f600482015260240161086b565b610971825f83611561565b5f8082116113175760405162461bcd60e51b815260040161086b90611a39565b6040805160028082526060820183525f926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561137e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a291906118e8565b815f815181106113b4576113b46118d4565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110611211576112116118d4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6002600654036114885760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086b565b6002600655565b6001600160a01b0384166114b85760405163e602df0560e01b81525f600482015260240161086b565b6001600160a01b0383166114e157604051634a1406b160e11b81525f600482015260240161086b565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610dc657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161155391815260200190565b60405180910390a350505050565b6001600160a01b03831661158b578060025f8282546115809190611868565b909155506115fb9050565b6001600160a01b0383165f90815260208190526040902054818110156115dd5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161086b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661161757600280548290039055611635565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161167a91815260200190565b60405180910390a3505050565b6001600160a01b0381168114610b27575f80fd5b5f602082840312156116ab575f80fd5b81356116b681611687565b9392505050565b5f6020808352835180828501525f5b818110156116e8578581018301518582016040015282016116cc565b505f604082860101526040601f19601f8301168501019250505092915050565b5f8060408385031215611719575f80fd5b823561172481611687565b946020939093013593505050565b5f805f60608486031215611744575f80fd5b833561174f81611687565b9250602084013561175f81611687565b929592945050506040919091013590565b5f60208284031215611780575f80fd5b5035919050565b8015158114610b27575f80fd5b5f602082840312156117a4575f80fd5b81356116b681611787565b5f80604083850312156117c0575f80fd5b82356117cb81611687565b915060208301356117db81611687565b809150509250929050565b600181811c908216806117fa57607f821691505b60208210810361181857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ed576107ed61181e565b5f8261186357634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107ed576107ed61181e565b818103818111156107ed576107ed61181e565b5f6020828403121561189e575f80fd5b5051919050565b5f602082840312156118b5575f80fd5b81516116b681611787565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156118f8575f80fd5b81516116b681611687565b5f8151808452602080850194508084015f5b8381101561193a5781516001600160a01b031687529582019590820190600101611915565b509495945050505050565b85815284602082015260a060408201525f61196360a0830186611903565b6001600160a01b0394909416606083015250608001529392505050565b5f6020808385031215611991575f80fd5b825167ffffffffffffffff808211156119a8575f80fd5b818501915085601f8301126119bb575f80fd5b8151818111156119cd576119cd6118c0565b8060051b604051601f19603f830116810181811085821117156119f2576119f26118c0565b604052918252848201925083810185019188831115611a0f575f80fd5b938501935b82851015611a2d57845184529385019392850192611a14565b98975050505050505050565b60208082526021908201527f45544820616d6f756e74206d7573742062652067726561746572207468616e206040820152600360fc1b606082015260800190565b848152608060208201525f611a926080830186611903565b6001600160a01b0394909416604083015250606001529291505056fea264697066735822122099311f763e3ec589b6d9105ae6810959ae856fdeda0e4dedf93ec097bf57559a64736f6c63430008140033000000000000000000000000435925c7833214cd8e33b786f724fa11e559cd790000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000435925c7833214cd8e33b786f724fa11e559cd79

Deployed Bytecode

0x60806040526004361061023e575f3560e01c806383f541b111610134578063ab45c3f4116100b3578063dc9d1df211610078578063dc9d1df214610653578063dce0de5e1461066c578063dd62ed3e14610689578063e74b981b146106cd578063f2fde38b146106ec578063fc47e2091461070b575f80fd5b8063ab45c3f4146105d0578063ba252d8d146105e4578063bcd7179b146105f8578063d39ac0cb14610617578063db15d18514610634575f80fd5b80639bbc1308116100f95780639bbc130814610540578063a0a5d80c1461055f578063a30b42901461057e578063a6e5705a14610592578063a9059cbb146105b1575f80fd5b806383f541b1146104c8578063851ded9a146104db5780638da5cb5b146104f257806395d89b411461050f5780639a87e76314610523575f80fd5b806346904840116101c05780636f4683bc116101855780636f4683bc1461042357806370a0823114610442578063715018a614610476578063735de9f71461048a5780637dbb9411146104a9575f80fd5b8063469048401461039757806361a2ac39146103b657806366df6791146103d557806369a4faae146103f05780636cd12db21461040f575f80fd5b806318160ddd1161020657806318160ddd146103165780631cc14c851461032a57806323b872dd1461033f5780632ff2e9dc1461035e578063313ce5671461037c575f80fd5b80630309461b1461024257806306fdde03146102635780630741dc4d1461028d578063095ea7b3146102b0578063170249ad146102df575b5f80fd5b34801561024d575f80fd5b5061026161025c36600461169b565b610720565b005b34801561026e575f80fd5b5061027761074a565b60405161028491906116bd565b60405180910390f35b348015610298575f80fd5b506102a2600d5481565b604051908152602001610284565b3480156102bb575f80fd5b506102cf6102ca366004611708565b6107da565b6040519015158152602001610284565b3480156102ea575f80fd5b506009546102fe906001600160a01b031681565b6040516001600160a01b039091168152602001610284565b348015610321575f80fd5b506002546102a2565b348015610335575f80fd5b506102a260075481565b34801561034a575f80fd5b506102cf610359366004611732565b6107f3565b348015610369575f80fd5b506102a26a084595161401484a00000081565b348015610387575f80fd5b5060405160128152602001610284565b3480156103a2575f80fd5b50600c546102fe906001600160a01b031681565b3480156103c1575f80fd5b50600a546102fe906001600160a01b031681565b3480156103e0575f80fd5b506102a26706f05b59d3b2000081565b3480156103fb575f80fd5b5061026161040a366004611770565b610816565b34801561041a575f80fd5b506102a2600181565b34801561042e575f80fd5b5061026161043d366004611770565b610960565b34801561044d575f80fd5b506102a261045c36600461169b565b6001600160a01b03165f9081526020819052604090205490565b348015610481575f80fd5b50610261610975565b348015610495575f80fd5b50600b546102fe906001600160a01b031681565b3480156104b4575f80fd5b506102616104c3366004611770565b610988565b6102616104d6366004611770565b610a06565b3480156104e6575f80fd5b50600e5460ff166102cf565b3480156104fd575f80fd5b506005546001600160a01b03166102fe565b34801561051a575f80fd5b50610277610b2a565b34801561052e575f80fd5b506008546001600160a01b03166102fe565b34801561054b575f80fd5b506008546102fe906001600160a01b031681565b34801561056a575f80fd5b50610261610579366004611770565b610b39565b348015610589575f80fd5b50610261610dcc565b34801561059d575f80fd5b506102616105ac36600461169b565b610de4565b3480156105bc575f80fd5b506102cf6105cb366004611708565b610e0e565b3480156105db575f80fd5b506102a2600581565b3480156105ef575f80fd5b50610261610e1b565b348015610603575f80fd5b50610261610612366004611794565b610f1e565b348015610622575f80fd5b50600b546001600160a01b03166102fe565b34801561063f575f80fd5b5061026161064e36600461169b565b610f39565b34801561065e575f80fd5b50600e546102cf9060ff1681565b348015610677575f80fd5b50600a546001600160a01b03166102fe565b348015610694575f80fd5b506102a26106a33660046117af565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106d8575f80fd5b506102616106e736600461169b565b610f63565b3480156106f7575f80fd5b5061026161070636600461169b565b610fd5565b348015610716575f80fd5b506102a261a66a81565b61072861100f565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610759906117e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610785906117e6565b80156107d05780601f106107a7576101008083540402835291602001916107d0565b820191905f5260205f20905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b5f336107e781858561103c565b60019150505b92915050565b5f3361080085828561104e565b61080b8585856110c3565b506001949350505050565b61081e61100f565b5f8111801561082e575060648111155b6108745760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642070657263656e7461676560701b60448201526064015b60405180910390fd5b5f60646108818347611832565b61088b9190611849565b9050478111156108d45760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b604482015260640161086b565b6008546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561090b573d5f803e3d5ffd5b505f61091682611120565b905061092230826112c3565b60408051838152602081018390527f0ec3929061cbbbeecb325623e7d5a86c3dae11cb8a22ca45dc0972955657da25910160405180910390a1505050565b61096861100f565b610971816112f7565b5050565b61097d61100f565b6109865f6113e5565b565b61099061100f565b600d54156109f65760405162461bcd60e51b815260206004820152602d60248201527f4275796261636b20696e74657276616c2063616e6e6f7420626520726573657460448201526c207768696c652061637469766560981b606482015260840161086b565b610a008143611868565b600d5550565b610a0e611436565b5f6064610a1c600584611832565b610a269190611849565b90505f610a33828461187b565b90505f606460075484610a469190611832565b610a509190611849565b90505f610a5d828561187b565b6008546040519192506001600160a01b03169083156108fc029084905f818181858888f19350505050158015610a95573d5f803e3d5ffd5b50600c546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610acd573d5f803e3d5ffd5b505f610ad884611120565b9050610ae53033836110c3565b6040518581527fc472cb3a7a659a876494d66b3063145f279701771d6150b9329c31611ed6405c9060200160405180910390a15050505050610b276001600655565b50565b606060048054610759906117e6565b610b4161100f565b600a546040516370a0823160e01b81523060048201526001600160a01b0390911690829082906370a0823190602401602060405180830381865afa158015610b8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610baf919061188e565b1015610bfd5760405162461bcd60e51b815260206004820152601960248201527f496e73756666696369656e7420574254432062616c616e636500000000000000604482015260640161086b565b600b5460405163095ea7b360e01b81526001600160a01b039182166004820152602481018490529082169063095ea7b3906044016020604051808303815f875af1158015610c4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7191906118a5565b506040805160028082526060820183525f926020830190803683375050600a5482519293506001600160a01b0316918391505f90610cb157610cb16118d4565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2c91906118e8565b81600181518110610d3f57610d3f6118d4565b6001600160a01b039283166020918202929092010152600b546040516318cbafe560e01b81529116906318cbafe590610d849086905f90869030904290600401611945565b5f604051808303815f875af1158015610d9f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610dc69190810190611980565b50505050565b610dd461100f565b43600d541115610986575f600d55565b610dec61100f565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f336107e78185856110c3565b610e2361100f565b600d54431015610e6b5760405162461bcd60e51b81526020600482015260136024820152724275796261636b206e6f74207965742064756560681b604482015260640161086b565b5f6064610e79600147611832565b610e839190611849565b6008546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015610ebb573d5f803e3d5ffd5b505f610ec682611120565b9050610ed230826112c3565b60408051838152602081018390527f0ec3929061cbbbeecb325623e7d5a86c3dae11cb8a22ca45dc0972955657da25910160405180910390a1610f1761a66a43611868565b600d555050565b610f2661100f565b600e805460ff1916911515919091179055565b610f4161100f565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610f6b61100f565b6001600160a01b038116610fb35760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161086b565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610fdd61100f565b6001600160a01b03811661100657604051631e4fbdf760e01b81525f600482015260240161086b565b610b27816113e5565b6005546001600160a01b031633146109865760405163118cdaa760e01b815233600482015260240161086b565b611049838383600161148f565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610dc657818110156110b557604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161086b565b610dc684848484035f61148f565b6001600160a01b0383166110ec57604051634b637e8f60e11b81525f600482015260240161086b565b6001600160a01b0382166111155760405163ec442f0560e01b81525f600482015260240161086b565b611049838383611561565b5f8082116111405760405162461bcd60e51b815260040161086b90611a39565b6040805160028082526060820183525f926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156111a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111cb91906118e8565b815f815181106111dd576111dd6118d4565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611211576112116118d4565b6001600160a01b039283166020918202929092010152600b54604051637ff36ab560e01b81525f929190911690637ff36ab590869061125a908590879030904290600401611a7a565b5f6040518083038185885af1158015611275573d5f803e3d5ffd5b50505050506040513d5f823e601f3d908101601f1916820160405261129d9190810190611980565b9050806001815181106112b2576112b26118d4565b602002602001015192505050919050565b6001600160a01b0382166112ec57604051634b637e8f60e11b81525f600482015260240161086b565b610971825f83611561565b5f8082116113175760405162461bcd60e51b815260040161086b90611a39565b6040805160028082526060820183525f926020830190803683375050600b54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561137e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a291906118e8565b815f815181106113b4576113b46118d4565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110611211576112116118d4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6002600654036114885760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086b565b6002600655565b6001600160a01b0384166114b85760405163e602df0560e01b81525f600482015260240161086b565b6001600160a01b0383166114e157604051634a1406b160e11b81525f600482015260240161086b565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610dc657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161155391815260200190565b60405180910390a350505050565b6001600160a01b03831661158b578060025f8282546115809190611868565b909155506115fb9050565b6001600160a01b0383165f90815260208190526040902054818110156115dd5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161086b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661161757600280548290039055611635565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161167a91815260200190565b60405180910390a3505050565b6001600160a01b0381168114610b27575f80fd5b5f602082840312156116ab575f80fd5b81356116b681611687565b9392505050565b5f6020808352835180828501525f5b818110156116e8578581018301518582016040015282016116cc565b505f604082860101526040601f19601f8301168501019250505092915050565b5f8060408385031215611719575f80fd5b823561172481611687565b946020939093013593505050565b5f805f60608486031215611744575f80fd5b833561174f81611687565b9250602084013561175f81611687565b929592945050506040919091013590565b5f60208284031215611780575f80fd5b5035919050565b8015158114610b27575f80fd5b5f602082840312156117a4575f80fd5b81356116b681611787565b5f80604083850312156117c0575f80fd5b82356117cb81611687565b915060208301356117db81611687565b809150509250929050565b600181811c908216806117fa57607f821691505b60208210810361181857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ed576107ed61181e565b5f8261186357634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107ed576107ed61181e565b818103818111156107ed576107ed61181e565b5f6020828403121561189e575f80fd5b5051919050565b5f602082840312156118b5575f80fd5b81516116b681611787565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156118f8575f80fd5b81516116b681611687565b5f8151808452602080850194508084015f5b8381101561193a5781516001600160a01b031687529582019590820190600101611915565b509495945050505050565b85815284602082015260a060408201525f61196360a0830186611903565b6001600160a01b0394909416606083015250608001529392505050565b5f6020808385031215611991575f80fd5b825167ffffffffffffffff808211156119a8575f80fd5b818501915085601f8301126119bb575f80fd5b8151818111156119cd576119cd6118c0565b8060051b604051601f19603f830116810181811085821117156119f2576119f26118c0565b604052918252848201925083810185019188831115611a0f575f80fd5b938501935b82851015611a2d57845184529385019392850192611a14565b98975050505050505050565b60208082526021908201527f45544820616d6f756e74206d7573742062652067726561746572207468616e206040820152600360fc1b606082015260800190565b848152608060208201525f611a926080830186611903565b6001600160a01b0394909416604083015250606001529291505056fea264697066735822122099311f763e3ec589b6d9105ae6810959ae856fdeda0e4dedf93ec097bf57559a64736f6c63430008140033

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

000000000000000000000000435925c7833214cd8e33b786f724fa11e559cd790000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000435925c7833214cd8e33b786f724fa11e559cd79

-----Decoded View---------------
Arg [0] : _fundAddress (address): 0x435925C7833214CD8e33B786F724fa11e559cd79
Arg [1] : _wbtcAddress (address): 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599
Arg [2] : _uniswapRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : _feeRecipient (address): 0x435925C7833214CD8e33B786F724fa11e559cd79

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000435925c7833214cd8e33b786f724fa11e559cd79
Arg [1] : 0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000435925c7833214cd8e33b786f724fa11e559cd79


Deployed Bytecode Sourcemap

35406:6260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39132:100;;;;;;;;;;-1:-1:-1;39132:100:0;;;;;:::i;:::-;;:::i;:::-;;24793:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36009:31;;;;;;;;;;;;;;;;;;;1101:25:1;;;1089:2;1074:18;36009:31:0;955:177:1;27086:190:0;;;;;;;;;;-1:-1:-1;27086:190:0;;;;;:::i;:::-;;:::i;:::-;;;1622:14:1;;1615:22;1597:41;;1585:2;1570:18;27086:190:0;1457:187:1;35852:35:0;;;;;;;;;;-1:-1:-1;35852:35:0;;;;-1:-1:-1;;;;;35852:35:0;;;;;;-1:-1:-1;;;;;1813:32:1;;;1795:51;;1783:2;1768:18;35852:35:0;1649:203:1;25895:99:0;;;;;;;;;;-1:-1:-1;25974:12:0;;25895:99;;35758:37;;;;;;;;;;;;;;;;27854:249;;;;;;;;;;-1:-1:-1;27854:249:0;;;;;:::i;:::-;;:::i;35469:60::-;;;;;;;;;;;;35510:19;35469:60;;25746:84;;;;;;;;;;-1:-1:-1;25746:84:0;;25820:2;2460:36:1;;2448:2;2433:18;25746:84:0;2318:184:1;35975:27:0;;;;;;;;;;-1:-1:-1;35975:27:0;;;;-1:-1:-1;;;;;35975:27:0;;;35894:26;;;;;;;;;;-1:-1:-1;35894:26:0;;;;-1:-1:-1;;;;;35894:26:0;;;35536:46;;;;;;;;;;;;35573:9;35536:46;;41084:579;;;;;;;;;;-1:-1:-1;41084:579:0;;;;;:::i;:::-;;:::i;35589:46::-;;;;;;;;;;;;35634:1;35589:46;;40374:104;;;;;;;;;;-1:-1:-1;40374:104:0;;;;;:::i;:::-;;:::i;26057:118::-;;;;;;;;;;-1:-1:-1;26057:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;26149:18:0;26122:7;26149:18;;;;;;;;;;;;26057:118;18406:103;;;;;;;;;;;;;:::i;35927:39::-;;;;;;;;;;-1:-1:-1;35927:39:0;;;;-1:-1:-1;;;;;35927:39:0;;;38660:214;;;;;;;;;;-1:-1:-1;38660:214:0;;;;;:::i;:::-;;:::i;37586:680::-;;;;;;:::i;:::-;;:::i;39784:87::-;;;;;;;;;;-1:-1:-1;39853:10:0;;;;39784:87;;17731;;;;;;;;;;-1:-1:-1;17804:6:0;;-1:-1:-1;;;;;17804:6:0;17731:87;;25003:95;;;;;;;;;;;;;:::i;39015:109::-;;;;;;;;;;-1:-1:-1;39097:19:0;;-1:-1:-1;;;;;39097:19:0;39015:109;;35803:42;;;;;;;;;;-1:-1:-1;35803:42:0;;;;-1:-1:-1;;;;;35803:42:0;;;40486:500;;;;;;;;;;-1:-1:-1;40486:500:0;;;;;:::i;:::-;;:::i;38272:151::-;;;;;;;;;;;;;:::i;38882:125::-;;;;;;;;;;-1:-1:-1;38882:125:0;;;;;:::i;:::-;;:::i;26380:182::-;;;;;;;;;;-1:-1:-1;26380:182:0;;;;;:::i;:::-;;:::i;35696:45::-;;;;;;;;;;;;35740:1;35696:45;;39879:487;;;;;;;;;;;;;:::i;38561:91::-;;;;;;;;;;-1:-1:-1;38561:91:0;;;;;:::i;:::-;;:::i;39480:113::-;;;;;;;;;;-1:-1:-1;39571:13:0;;-1:-1:-1;;;;;39571:13:0;39480:113;;39341:131;;;;;;;;;;-1:-1:-1;39341:131:0;;;;;:::i;:::-;;:::i;36047:30::-;;;;;;;;;;-1:-1:-1;36047:30:0;;;;;;;;39240:93;;;;;;;;;;-1:-1:-1;39314:11:0;;-1:-1:-1;;;;;39314:11:0;39240:93;;26625:142;;;;;;;;;;-1:-1:-1;26625:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;26732:18:0;;;26705:7;26732:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26625:142;39601:175;;;;;;;;;;-1:-1:-1;39601:175:0;;;;;:::i;:::-;;:::i;18664:220::-;;;;;;;;;;-1:-1:-1;18664:220:0;;;;;:::i;:::-;;:::i;35642:47::-;;;;;;;;;;;;35684:5;35642:47;;39132:100;17617:13;:11;:13::i;:::-;39202:11:::1;:22:::0;;-1:-1:-1;;;;;;39202:22:0::1;-1:-1:-1::0;;;;;39202:22:0;;;::::1;::::0;;;::::1;::::0;;39132:100::o;24793:91::-;24838:13;24871:5;24864:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24793:91;:::o;27086:190::-;27159:4;15820:10;27215:31;15820:10;27231:7;27240:5;27215:8;:31::i;:::-;27264:4;27257:11;;;27086:190;;;;;:::o;27854:249::-;27941:4;15820:10;27999:37;28015:4;15820:10;28030:5;27999:15;:37::i;:::-;28047:26;28057:4;28063:2;28067:5;28047:9;:26::i;:::-;-1:-1:-1;28091:4:0;;27854:249;-1:-1:-1;;;;27854:249:0:o;41084:579::-;17617:13;:11;:13::i;:::-;41193:1:::1;41173:17;:21;:49;;;;;41219:3;41198:17;:24;;41173:49;41165:80;;;::::0;-1:-1:-1;;;41165:80:0;;4499:2:1;41165:80:0::1;::::0;::::1;4481:21:1::0;4538:2;4518:18;;;4511:30;-1:-1:-1;;;4557:18:1;;;4550:48;4615:18;;41165:80:0::1;;;;;;;;;41252:21;41320:3;41276:41;41300:17:::0;41276:21:::1;:41;:::i;:::-;:47;;;;:::i;:::-;41252:71;;41355:21;41338:13;:38;;41330:71;;;::::0;-1:-1:-1;;;41330:71:0;;5373:2:1;41330:71:0::1;::::0;::::1;5355:21:1::0;5412:2;5392:18;;;5385:30;-1:-1:-1;;;5431:18:1;;;5424:50;5491:18;;41330:71:0::1;5171:344:1::0;41330:71:0::1;41469:19;::::0;:43:::1;::::0;-1:-1:-1;;;;;41469:19:0;;::::1;::::0;:43;::::1;;;::::0;41498:13;;41469:19:::1;:43:::0;:19;:43;41498:13;41469:19;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41519:17;41539:28;41553:13;41539;:28::i;:::-;41519:48;;41574:31;41588:4;41595:9;41574:5;:31::i;:::-;41619:40;::::0;;5694:25:1;;;5750:2;5735:18;;5728:34;;;41619:40:0::1;::::0;5667:18:1;41619:40:0::1;;;;;;;41158:505;;41084:579:::0;:::o;40374:104::-;17617:13;:11;:13::i;:::-;40445:25:::1;40460:9;40445:14;:25::i;:::-;;40374:104:::0;:::o;18406:103::-;17617:13;:11;:13::i;:::-;18471:30:::1;18498:1;18471:18;:30::i;:::-;18406:103::o:0;38660:214::-;17617:13;:11;:13::i;:::-;38742:16:::1;::::0;:21;38734:79:::1;;;::::0;-1:-1:-1;;;38734:79:0;;5975:2:1;38734:79:0::1;::::0;::::1;5957:21:1::0;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;-1:-1:-1;;;6104:18:1;;;6097:43;6157:19;;38734:79:0::1;5773:409:1::0;38734:79:0::1;38843:23;38858:8:::0;38843:12:::1;:23;:::i;:::-;38824:16;:42:::0;-1:-1:-1;38660:214:0:o;37586:680::-;7420:21;:19;:21::i;:::-;37656:11:::1;37702:3;37670:29;35740:1;37670:9:::0;:29:::1;:::i;:::-;:35;;;;:::i;:::-;37656:49:::0;-1:-1:-1;37712:25:0::1;37740:15;37656:49:::0;37740:9;:15:::1;:::i;:::-;37712:43;;37805:15;37849:3;37829:17;;37823:3;:23;;;;:::i;:::-;:29;;;;:::i;:::-;37805:47:::0;-1:-1:-1;37859:20:0::1;37882:13;37805:47:::0;37882:3;:13:::1;:::i;:::-;37965:19;::::0;:37:::1;::::0;37859:36;;-1:-1:-1;;;;;;37965:19:0::1;::::0;:37;::::1;;;::::0;37994:7;;37965:19:::1;:37:::0;:19;:37;37994:7;37965:19;:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38082:12:0::1;::::0;38074:44:::1;::::0;-1:-1:-1;;;;;38082:12:0;;::::1;::::0;38074:44;::::1;;;::::0;38105:12;;38082::::1;38074:44:::0;38082:12;38074:44;38105:12;38082;38074:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38127:17;38147:32;38161:17;38147:13;:32::i;:::-;38127:52;;38186:47;38204:4;38211:10;38223:9;38186;:47::i;:::-;38245:17;::::0;1101:25:1;;;38245:17:0::1;::::0;1089:2:1;1074:18;38245:17:0::1;;;;;;;37649:617;;;;;7464:20:::0;6858:1;7984:7;:22;7801:213;7464:20;37586:680;:::o;25003:95::-;25050:13;25083:7;25076:14;;;;;:::i;40486:500::-;17617:13;:11;:13::i;:::-;40582:11:::1;::::0;40613:34:::1;::::0;-1:-1:-1;;;40613:34:0;;40641:4:::1;40613:34;::::0;::::1;1795:51:1::0;-1:-1:-1;;;;;40582:11:0;;::::1;::::0;40651:10;;40582:11;;40613:19:::1;::::0;1768:18:1;;40613:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;40605:86;;;::::0;-1:-1:-1;;;40605:86:0;;6841:2:1;40605:86:0::1;::::0;::::1;6823:21:1::0;6880:2;6860:18;;;6853:30;6919:27;6899:18;;;6892:55;6964:18;;40605:86:0::1;6639:349:1::0;40605:86:0::1;40728:13;::::0;40702:53:::1;::::0;-1:-1:-1;;;40702:53:0;;-1:-1:-1;;;;;40728:13:0;;::::1;40702:53;::::0;::::1;7167:51:1::0;7234:18;;;7227:34;;;40702:17:0;;::::1;::::0;::::1;::::0;7140:18:1;;40702:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;40790:16:0::1;::::0;;40804:1:::1;40790:16:::0;;;;;::::1;::::0;;40766:21:::1;::::0;40790:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;40827:11:0::1;::::0;40817:7;;;;-1:-1:-1;;;;;;40827:11:0::1;::::0;40817:7;;-1:-1:-1;40827:11:0::1;::::0;40817:7:::1;;;;:::i;:::-;-1:-1:-1::0;;;;;40817:21:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:21;;;;40859:13:::1;::::0;:20:::1;::::0;;-1:-1:-1;;;40859:20:0;;;;:13;;;::::1;::::0;:18:::1;::::0;:20:::1;::::0;;::::1;::::0;40817:7;;40859:20;;;;;:13;:20:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40849:4;40854:1;40849:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40849:30:0;;::::1;:7;::::0;;::::1;::::0;;;;;:30;40890:13:::1;::::0;:88:::1;::::0;-1:-1:-1;;;40890:88:0;;:13;::::1;::::0;:35:::1;::::0;:88:::1;::::0;40926:10;;40890:13:::1;::::0;40941:4;;40955::::1;::::0;40962:15:::1;::::0;40890:88:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;40890:88:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;;40547:439;;40486:500:::0;:::o;38272:151::-;17617:13;:11;:13::i;:::-;38355:12:::1;38336:16;;:31;38332:84;;;38403:1;38384:16;:20:::0;38272:151::o;38882:125::-;17617:13;:11;:13::i;:::-;38960:19:::1;:39:::0;;-1:-1:-1;;;;;;38960:39:0::1;-1:-1:-1::0;;;;;38960:39:0;;;::::1;::::0;;;::::1;::::0;;38882:125::o;26380:182::-;26449:4;15820:10;26505:27;15820:10;26522:2;26526:5;26505:9;:27::i;39879:487::-;17617:13;:11;:13::i;:::-;39964:16:::1;;39948:12;:32;;39940:64;;;::::0;-1:-1:-1;;;39940:64:0;;10407:2:1;39940:64:0::1;::::0;::::1;10389:21:1::0;10446:2;10426:18;;;10419:30;-1:-1:-1;;;10465:18:1;;;10458:49;10524:18;;39940:64:0::1;10205:343:1::0;39940:64:0::1;40015:21;40084:3;40039:42;35634:1;40039:21;:42;:::i;:::-;:48;;;;:::i;:::-;40098:19;::::0;:43:::1;::::0;40015:72;;-1:-1:-1;;;;;;40098:19:0::1;::::0;:43;::::1;;;::::0;40015:72;;40098:19:::1;:43:::0;:19;:43;40015:72;40098:19;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40152:17;40172:28;40186:13;40172;:28::i;:::-;40152:48;;40211:31;40225:4;40232:9;40211:5;:31::i;:::-;40258:40;::::0;;5694:25:1;;;5750:2;5735:18;;5728:34;;;40258:40:0::1;::::0;5667:18:1;40258:40:0::1;;;;;;;40328:30;35684:5;40328:12;:30;:::i;:::-;40309:16;:49:::0;-1:-1:-1;;39879:487:0:o;38561:91::-;17617:13;:11;:13::i;:::-;38625:10:::1;:19:::0;;-1:-1:-1;;38625:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38561:91::o;39341:131::-;17617:13;:11;:13::i;:::-;39420::::1;:44:::0;;-1:-1:-1;;;;;;39420:44:0::1;-1:-1:-1::0;;;;;39420:44:0;;;::::1;::::0;;;::::1;::::0;;39341:131::o;39601:175::-;17617:13;:11;:13::i;:::-;-1:-1:-1;;;;;39684:26:0;::::1;39676:54;;;::::0;-1:-1:-1;;;39676:54:0;;10755:2:1;39676:54:0::1;::::0;::::1;10737:21:1::0;10794:2;10774:18;;;10767:30;-1:-1:-1;;;10813:18:1;;;10806:45;10868:18;;39676:54:0::1;10553:339:1::0;39676:54:0::1;39741:12;:27:::0;;-1:-1:-1;;;;;;39741:27:0::1;-1:-1:-1::0;;;;;39741:27:0;;;::::1;::::0;;;::::1;::::0;;39601:175::o;18664:220::-;17617:13;:11;:13::i;:::-;-1:-1:-1;;;;;18749:22:0;::::1;18745:93;;18795:31;::::0;-1:-1:-1;;;18795:31:0;;18823:1:::1;18795:31;::::0;::::1;1795:51:1::0;1768:18;;18795:31:0::1;1649:203:1::0;18745:93:0::1;18848:28;18867:8;18848:18;:28::i;17896:166::-:0;17804:6;;-1:-1:-1;;;;;17804:6:0;15820:10;17956:23;17952:103;;18003:40;;-1:-1:-1;;;18003:40:0;;15820:10;18003:40;;;1795:51:1;1768:18;;18003:40:0;1649:203:1;31913:130:0;31998:37;32007:5;32014:7;32023:5;32030:4;31998:8;:37::i;:::-;31913:130;;;:::o;33629:487::-;-1:-1:-1;;;;;26732:18:0;;;33729:24;26732:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;33796:37:0;;33792:317;;33873:5;33854:16;:24;33850:132;;;33906:60;;-1:-1:-1;;;33906:60:0;;-1:-1:-1;;;;;11117:32:1;;33906:60:0;;;11099:51:1;11166:18;;;11159:34;;;11209:18;;;11202:34;;;11072:18;;33906:60:0;10897:345:1;33850:132:0;34025:57;34034:5;34041:7;34069:5;34050:16;:24;34076:5;34025:8;:57::i;28488:308::-;-1:-1:-1;;;;;28572:18:0;;28568:88;;28614:30;;-1:-1:-1;;;28614:30:0;;28641:1;28614:30;;;1795:51:1;1768:18;;28614:30:0;1649:203:1;28568:88:0;-1:-1:-1;;;;;28670:16:0;;28666:88;;28710:32;;-1:-1:-1;;;28710:32:0;;28739:1;28710:32;;;1795:51:1;1768:18;;28710:32:0;1649:203:1;28666:88:0;28764:24;28772:4;28778:2;28782:5;28764:7;:24::i;37150:432::-;37209:7;37249:1;37237:9;:13;37229:59;;;;-1:-1:-1;;;37229:59:0;;;;;;;:::i;:::-;37323:16;;;37337:1;37323:16;;;;;;;;37299:21;;37323:16;;;;;;;;-1:-1:-1;;37360:13:0;;:20;;;-1:-1:-1;;;37360:20:0;;;;37299:40;;-1:-1:-1;;;;;;37360:13:0;;;;:18;;-1:-1:-1;37360:20:0;;;;;;;;;;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37350:4;37355:1;37350:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;37350:30:0;;;-1:-1:-1;;;;;37350:30:0;;;;;37409:4;37391;37396:1;37391:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37391:23:0;;;:7;;;;;;;;;:23;37452:13;;:94;;-1:-1:-1;;;37452:94:0;;37425:24;;37452:13;;;;;:35;;37495:9;;37452:94;;37425:24;;37509:4;;37523;;37530:15;;37452:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37452:94:0;;;;;;;;;;;;:::i;:::-;37425:121;;37564:7;37572:1;37564:10;;;;;;;;:::i;:::-;;;;;;;37557:17;;;;37150:432;;;:::o;31149:211::-;-1:-1:-1;;;;;31220:21:0;;31216:91;;31265:30;;-1:-1:-1;;;31265:30:0;;31292:1;31265:30;;;1795:51:1;1768:18;;31265:30:0;1649:203:1;31216:91:0;31317:35;31325:7;31342:1;31346:5;31317:7;:35::i;36711:431::-;36771:7;36811:1;36799:9;:13;36791:59;;;;-1:-1:-1;;;36791:59:0;;;;;;;:::i;:::-;36885:16;;;36899:1;36885:16;;;;;;;;36861:21;;36885:16;;;;;;;;-1:-1:-1;;36922:13:0;;:20;;;-1:-1:-1;;;36922:20:0;;;;36861:40;;-1:-1:-1;;;;;;36922:13:0;;;;:18;;-1:-1:-1;36922:20:0;;;;;;;;;;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36912:4;36917:1;36912:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36912:30:0;;;:7;;;;;;;;;:30;36963:11;;36953:7;;36963:11;;;36953:4;;36963:11;;36953:7;;;;;;:::i;19044:191::-;19137:6;;;-1:-1:-1;;;;;19154:17:0;;;-1:-1:-1;;;;;;19154:17:0;;;;;;;19187:40;;19137:6;;;19154:17;19137:6;;19187:40;;19118:16;;19187:40;19107:128;19044:191;:::o;7500:293::-;6902:1;7634:7;;:19;7626:63;;;;-1:-1:-1;;;7626:63:0;;12366:2:1;7626:63:0;;;12348:21:1;12405:2;12385:18;;;12378:30;12444:33;12424:18;;;12417:61;12495:18;;7626:63:0;12164:355:1;7626:63:0;6902:1;7767:7;:18;7500:293::o;32894:443::-;-1:-1:-1;;;;;33007:19:0;;33003:91;;33050:32;;-1:-1:-1;;;33050:32:0;;33079:1;33050:32;;;1795:51:1;1768:18;;33050:32:0;1649:203:1;33003:91:0;-1:-1:-1;;;;;33108:21:0;;33104:92;;33153:31;;-1:-1:-1;;;33153:31:0;;33181:1;33153:31;;;1795:51:1;1768:18;;33153:31:0;1649:203:1;33104:92:0;-1:-1:-1;;;;;33206:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;33252:78;;;;33303:7;-1:-1:-1;;;;;33287:31:0;33296:5;-1:-1:-1;;;;;33287:31:0;;33312:5;33287:31;;;;1101:25:1;;1089:2;1074:18;;955:177;33287:31:0;;;;;;;;32894:443;;;;:::o;29120:1135::-;-1:-1:-1;;;;;29210:18:0;;29206:552;;29364:5;29348:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;29206:552:0;;-1:-1:-1;29206:552:0;;-1:-1:-1;;;;;29424:15:0;;29402:19;29424:15;;;;;;;;;;;29458:19;;;29454:117;;;29505:50;;-1:-1:-1;;;29505:50:0;;-1:-1:-1;;;;;11117:32:1;;29505:50:0;;;11099:51:1;11166:18;;;11159:34;;;11209:18;;;11202:34;;;11072:18;;29505:50:0;10897:345:1;29454:117:0;-1:-1:-1;;;;;29694:15:0;;:9;:15;;;;;;;;;;29712:19;;;;29694:37;;29206:552;-1:-1:-1;;;;;29774:16:0;;29770:435;;29940:12;:21;;;;;;;29770:435;;;-1:-1:-1;;;;;30156:13:0;;:9;:13;;;;;;;;;;:22;;;;;;29770:435;30237:2;-1:-1:-1;;;;;30222:25:0;30231:4;-1:-1:-1;;;;;30222:25:0;;30241:5;30222:25;;;;1101::1;;1089:2;1074:18;;955:177;30222:25:0;;;;;;;;29120:1135;;;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;:::-;386:5;150:247;-1:-1:-1;;;150:247:1:o;402:548::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;686:3;871:1;866:2;857:6;846:9;842:22;838:31;831:42;941:2;934;930:7;925:2;917:6;913:15;909:29;898:9;894:45;890:54;882:62;;;;402:548;;;;:::o;1137:315::-;1205:6;1213;1266:2;1254:9;1245:7;1241:23;1237:32;1234:52;;;1282:1;1279;1272:12;1234:52;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;1442:2;1427:18;;;;1414:32;;-1:-1:-1;;;1137:315:1:o;1857:456::-;1934:6;1942;1950;2003:2;1991:9;1982:7;1978:23;1974:32;1971:52;;;2019:1;2016;2009:12;1971:52;2058:9;2045:23;2077:31;2102:5;2077:31;:::i;:::-;2127:5;-1:-1:-1;2184:2:1;2169:18;;2156:32;2197:33;2156:32;2197:33;:::i;:::-;1857:456;;2249:7;;-1:-1:-1;;;2303:2:1;2288:18;;;;2275:32;;1857:456::o;2507:180::-;2566:6;2619:2;2607:9;2598:7;2594:23;2590:32;2587:52;;;2635:1;2632;2625:12;2587:52;-1:-1:-1;2658:23:1;;2507:180;-1:-1:-1;2507:180:1:o;3150:118::-;3236:5;3229:13;3222:21;3215:5;3212:32;3202:60;;3258:1;3255;3248:12;3273:241;3329:6;3382:2;3370:9;3361:7;3357:23;3353:32;3350:52;;;3398:1;3395;3388:12;3350:52;3437:9;3424:23;3456:28;3478:5;3456:28;:::i;3519:388::-;3587:6;3595;3648:2;3636:9;3627:7;3623:23;3619:32;3616:52;;;3664:1;3661;3654:12;3616:52;3703:9;3690:23;3722:31;3747:5;3722:31;:::i;:::-;3772:5;-1:-1:-1;3829:2:1;3814:18;;3801:32;3842:33;3801:32;3842:33;:::i;:::-;3894:7;3884:17;;;3519:388;;;;;:::o;3912:380::-;3991:1;3987:12;;;;4034;;;4055:61;;4109:4;4101:6;4097:17;4087:27;;4055:61;4162:2;4154:6;4151:14;4131:18;4128:38;4125:161;;4208:10;4203:3;4199:20;4196:1;4189:31;4243:4;4240:1;4233:15;4271:4;4268:1;4261:15;4125:161;;3912:380;;;:::o;4644:127::-;4705:10;4700:3;4696:20;4693:1;4686:31;4736:4;4733:1;4726:15;4760:4;4757:1;4750:15;4776:168;4849:9;;;4880;;4897:15;;;4891:22;;4877:37;4867:71;;4918:18;;:::i;4949:217::-;4989:1;5015;5005:132;;5059:10;5054:3;5050:20;5047:1;5040:31;5094:4;5091:1;5084:15;5122:4;5119:1;5112:15;5005:132;-1:-1:-1;5151:9:1;;4949:217::o;6187:125::-;6252:9;;;6273:10;;;6270:36;;;6286:18;;:::i;6317:128::-;6384:9;;;6405:11;;;6402:37;;;6419:18;;:::i;6450:184::-;6520:6;6573:2;6561:9;6552:7;6548:23;6544:32;6541:52;;;6589:1;6586;6579:12;6541:52;-1:-1:-1;6612:16:1;;6450:184;-1:-1:-1;6450:184:1:o;7272:245::-;7339:6;7392:2;7380:9;7371:7;7367:23;7363:32;7360:52;;;7408:1;7405;7398:12;7360:52;7440:9;7434:16;7459:28;7481:5;7459:28;:::i;7522:127::-;7583:10;7578:3;7574:20;7571:1;7564:31;7614:4;7611:1;7604:15;7638:4;7635:1;7628:15;7654:127;7715:10;7710:3;7706:20;7703:1;7696:31;7746:4;7743:1;7736:15;7770:4;7767:1;7760:15;7786:251;7856:6;7909:2;7897:9;7888:7;7884:23;7880:32;7877:52;;;7925:1;7922;7915:12;7877:52;7957:9;7951:16;7976:31;8001:5;7976:31;:::i;8042:461::-;8095:3;8133:5;8127:12;8160:6;8155:3;8148:19;8186:4;8215:2;8210:3;8206:12;8199:19;;8252:2;8245:5;8241:14;8273:1;8283:195;8297:6;8294:1;8291:13;8283:195;;;8362:13;;-1:-1:-1;;;;;8358:39:1;8346:52;;8418:12;;;;8453:15;;;;8394:1;8312:9;8283:195;;;-1:-1:-1;8494:3:1;;8042:461;-1:-1:-1;;;;;8042:461:1:o;8508:582::-;8807:6;8796:9;8789:25;8850:6;8845:2;8834:9;8830:18;8823:34;8893:3;8888:2;8877:9;8873:18;8866:31;8770:4;8914:57;8966:3;8955:9;8951:19;8943:6;8914:57;:::i;:::-;-1:-1:-1;;;;;9007:32:1;;;;9002:2;8987:18;;8980:60;-1:-1:-1;9071:3:1;9056:19;9049:35;8906:65;8508:582;-1:-1:-1;;;8508:582:1:o;9095:1105::-;9190:6;9221:2;9264;9252:9;9243:7;9239:23;9235:32;9232:52;;;9280:1;9277;9270:12;9232:52;9313:9;9307:16;9342:18;9383:2;9375:6;9372:14;9369:34;;;9399:1;9396;9389:12;9369:34;9437:6;9426:9;9422:22;9412:32;;9482:7;9475:4;9471:2;9467:13;9463:27;9453:55;;9504:1;9501;9494:12;9453:55;9533:2;9527:9;9555:2;9551;9548:10;9545:36;;;9561:18;;:::i;:::-;9607:2;9604:1;9600:10;9639:2;9633:9;9702:2;9698:7;9693:2;9689;9685:11;9681:25;9673:6;9669:38;9757:6;9745:10;9742:22;9737:2;9725:10;9722:18;9719:46;9716:72;;;9768:18;;:::i;:::-;9804:2;9797:22;9854:18;;;9888:15;;;;-1:-1:-1;9930:11:1;;;9926:20;;;9958:19;;;9955:39;;;9990:1;9987;9980:12;9955:39;10014:11;;;;10034:135;10050:6;10045:3;10042:15;10034:135;;;10116:10;;10104:23;;10067:12;;;;10147;;;;10034:135;;;10188:6;9095:1105;-1:-1:-1;;;;;;;;9095:1105:1:o;11247:397::-;11449:2;11431:21;;;11488:2;11468:18;;;11461:30;11527:34;11522:2;11507:18;;11500:62;-1:-1:-1;;;11593:2:1;11578:18;;11571:31;11634:3;11619:19;;11247:397::o;11649:510::-;11920:6;11909:9;11902:25;11963:3;11958:2;11947:9;11943:18;11936:31;11883:4;11984:57;12036:3;12025:9;12021:19;12013:6;11984:57;:::i;:::-;-1:-1:-1;;;;;12077:32:1;;;;12072:2;12057:18;;12050:60;-1:-1:-1;12141:2:1;12126:18;12119:34;11976:65;11649:510;-1:-1:-1;;11649:510:1:o

Swarm Source

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