ETH Price: $2,954.01 (-5.34%)
Gas: 7 Gwei

Token

DUDU (DUDU)
 

Overview

Max Total Supply

888,888,888,888 DUDU

Holders

714

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.502822816098765628 DUDU

Value
$0.00
0x965f908baf6d91909613ce4944e26f9675b9b574
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:
DUDU

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 3 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 7 of 9 : 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 8 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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 9 of 9 : DUDU.sol
/*

88                        88                           ,adba,              88                        88
88                        88                           8I  I8              88                        88
88                        88                           "8bdP'              88                        88
88,dPPYba,   88       88  88,dPPYba,   88       88    ,d8"8b  88   ,adPPYb,88  88       88   ,adPPYb,88  88       88
88P'    "8a  88       88  88P'    "8a  88       88  .dP'   Yb,8I  a8"    `Y88  88       88  a8"    `Y88  88       88
88       d8  88       88  88       d8  88       88  8P      888'  8b       88  88       88  8b       88  88       88
88b,   ,a8"  "8a,   ,a88  88b,   ,a8"  "8a,   ,a88  8b,   ,dP8b   "8a,   ,d88  "8a,   ,a88  "8a,   ,d88  "8a,   ,a88
8Y"Ybbd8"'    `"YbbdP'Y8  8Y"Ybbd8"'    `"YbbdP'Y8  `Y8888P"  Yb   `"8bbdP"Y8   `"YbbdP'Y8   `"8bbdP"Y8   `"YbbdP'Y8

https://t.me/bubududuerc
https://twitter.com/DUDU_erc
https://twitter.com/BUBU_erc
https://www.bubududu.xyz/

*/

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract DUDU is ERC20, Ownable {

    address public constant WETH_ADDRESS = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    IUniswapV2Router02 public immutable uniswapV2Router;
    IERC20 public immutable bubuToken;
    address public immutable uniswapV2Pair;
    address public immutable deployer;
    address public immutable marketingWallet;
    uint256 public immutable bubuSupplyForInitialTrading;
    address public bubuVaultWallet;
    address public duduVaultWallet;

    uint256 public mintAmount = 888888888888000000000000000000;  // 888,888,888,888, 18 decimals
    uint256 public swapTokensAtAmount = mintAmount * 5 / 10000;  // 0.05% max before swapBack
    uint256 public maxSwapAmount      = mintAmount * 50 / 10000; // 0.50% max sold per swapBack
    uint256 public maxHoldingAmount   = mintAmount * 60 / 10000; // 0.60% max wallet holdings

    uint256 public maxFees      = 20; // lowers on each update, cannot increase
    uint256 public totalFees    = 5;  // total percent
    uint256 public bubuVaultFee = 3;  // percent to bubuVault
    uint256 public duduVaultFee = 1;  // percent to duduVault
    uint256 public marketingFee = 1;  // percent to marketing

    bool private swapping;
    bool public swapEnabled = true;
    bool public bubuOnly = true;
    bool public limitOn = true;

    mapping (address => bool) public blacklist;
    mapping (address => bool) public isExcludedFromFees;
    mapping (address => bool) public tradingPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event BubuVaultWalletUpdated(address indexed newBubuVaultWallet, address indexed oldBubuVaultWallet);
    event DuduVaultWalletUpdated(address indexed newDuduVaultWallet, address indexed oldDuduVaultWallet);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    modifier onlyDeployer() {
        // some things need to be callable even after renounce
        require(msg.sender == deployer, "shoo");
        _;
    }

    constructor(address bubuAddress, address _marketingWallet, address _buybackWallet, address _tempBubuVaultWallet, address _tempDuduVaultWallet) ERC20("DUDU", "DUDU") {

        bubuToken = IERC20(bubuAddress);
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
          .createPair(address(this), WETH_ADDRESS);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        bubuSupplyForInitialTrading = bubuToken.totalSupply() - bubuToken.balanceOf(0x000000000000000000000000000000000000dEaD);

        deployer = address(owner());
        marketingWallet = _marketingWallet;
        bubuVaultWallet = _tempBubuVaultWallet; // temporary fee receiver
        duduVaultWallet = _tempDuduVaultWallet; // temporary fee receiver

        excludeFromFees(deployer, true); // Owner address
        excludeFromFees(address(this), true); // CA
        excludeFromFees(address(0xdead), true); // Burn address
        excludeFromFees(_buybackWallet, true);
        excludeFromFees(_marketingWallet, true);
        excludeFromFees(_tempBubuVaultWallet, true);
        excludeFromFees(_tempDuduVaultWallet, true);

        /* _mint only called once and CANNOT be called again */
        _mint(deployer, mintAmount);
    }

    receive() external payable {}

    // DEPLOYER-ONLY FUNCTIONS
    function updateSwapEnabled(bool enabled) public onlyDeployer {
        swapEnabled = enabled;
    }

    function updateBubuVaultWallet(address _bubuVaultWallet) public onlyDeployer {
        emit BubuVaultWalletUpdated(_bubuVaultWallet, bubuVaultWallet);
        bubuVaultWallet = _bubuVaultWallet;
    }

    function updateDuduVaultWallet(address _duduVaultWallet) public onlyDeployer {
        emit DuduVaultWalletUpdated(_duduVaultWallet, duduVaultWallet);
        duduVaultWallet = _duduVaultWallet;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyDeployer {
        require(pair != uniswapV2Pair, "The pair cannot be removed from tradingPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        tradingPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyDeployer returns (bool) {
        require(newAmount >= totalSupply() / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() / 200, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }

    function excludeFromFees(address account, bool excluded) public onlyDeployer {
        isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateFees(uint256 _bubuVaultFee, uint256 _duduVaultFee, uint256 _marketingFee) external onlyDeployer {
        // THIS FUNCTION LETS TEAM CHANGE FEE DESTINATION EVEN AFTER LAUNCH
        // FEES CAN ONLY BE DECREASED, NEVER INCREASED
        // FEES CANNOT BE SET BELOW 5%
        require(_bubuVaultFee > _duduVaultFee);
        bubuVaultFee = _bubuVaultFee;
        duduVaultFee = _duduVaultFee;
        marketingFee = _marketingFee;
        totalFees = _bubuVaultFee + _duduVaultFee + _marketingFee;
        require(totalFees <= maxFees, "Cannot increase fee");
        maxFees = totalFees; // ENSURES WE CAN ONLY DECREASE FEES
        require(totalFees >= 5, "Cannot set fee below 5%");
    }
    // FIN DEPLOYER-ONLY FUNCTIONS

    // OWNER-ONLY FUNCTIONS
    function setBlacklist(address _address, bool _isBlacklisted) external onlyOwner {
        blacklist[_address] = _isBlacklisted;
    }

    function setRule(bool _bubuOnly, bool _limitOn, uint256 _maxHoldingAmount) external onlyOwner {
        bubuOnly = _bubuOnly;
        limitOn = _limitOn;
        maxHoldingAmount = _maxHoldingAmount;
    }
    // FIN OWNER-ONLY FUNCTIONS

    function getMaxBuyFromBubuHoldings(address buyer) public view returns (uint256) {
        uint256 bubuBalance = bubuToken.balanceOf(buyer);
        if (bubuBalance < 10000 * 10**18) {
            return 0;
        }
        uint256 maxDuduBuy = bubuBalance * 3 * totalSupply() / bubuSupplyForInitialTrading;
        if (maxDuduBuy > maxHoldingAmount) {
            return maxHoldingAmount;
        }
        return maxDuduBuy;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklist[to] && !blacklist[from], "bl");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        bool isBuy = tradingPairs[from];
        bool isSell = tradingPairs[to];
        bool excluded = isExcludedFromFees[from] || isExcludedFromFees[to];

        if (
            bubuOnly &&
            isBuy &&
            from != owner() &&
            to != owner() &&
            to != address(0xdead) &&
            !swapping
        ) {
            // a token buy during initial BUBU-only trading phase
            require(amount + balanceOf(to) <= getMaxBuyFromBubuHoldings(to), "bubu loves dudu");
        }

        if (
            limitOn &&
            isBuy &&
            from != owner() &&
            to != owner() &&
            to != address(0xdead) &&
            !swapping
        ) {
            // a token buy while we have limits on
            require(amount + balanceOf(to) <= maxHoldingAmount, "Too many tokens");
        }

    		uint256 swapAmount = balanceOf(address(this));
        bool canSwap = swapAmount >= swapTokensAtAmount;
        bool takeFee = !swapping;
        if (excluded) {
            takeFee = false;
        }

        if (canSwap && swapEnabled && !swapping && isSell && !excluded) {
            swapping = true;
            swapBack(swapAmount > maxSwapAmount ? maxSwapAmount : swapAmount);
            swapping = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            if (isSell) {
                fees = amount * totalFees / 100;
                super._transfer(from, address(this), fees);
                amount -= fees;
            } else if (isBuy) {
          	    fees = amount * totalFees / 100;
                super._transfer(from, address(this), fees);
                amount -= fees;
            }
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH_ADDRESS;

        if (allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
            _approve(address(this), address(uniswapV2Router), 2**256 - 1);
        }

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack(uint256 tokenAmount) private {
        swapTokensForEth(tokenAmount);
        bool success;
        uint256 ethToDisperse = address(this).balance;
        if (marketingFee > 0) {
            (success,) = marketingWallet.call{value: ethToDisperse * marketingFee / totalFees}("");
            require(success);
        }
        if (duduVaultFee > 0) {
            (success,) = duduVaultWallet.call{value: ethToDisperse * duduVaultFee / totalFees}("");
            require(success);
        }
        (success,) = bubuVaultWallet.call{value: address(this).balance}("");
        require(success);
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"bubuAddress","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_buybackWallet","type":"address"},{"internalType":"address","name":"_tempBubuVaultWallet","type":"address"},{"internalType":"address","name":"_tempDuduVaultWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBubuVaultWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldBubuVaultWallet","type":"address"}],"name":"BubuVaultWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newDuduVaultWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldDuduVaultWallet","type":"address"}],"name":"DuduVaultWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"WETH_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubuOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubuSupplyForInitialTrading","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubuToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubuVaultFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bubuVaultWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duduVaultFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duduVaultWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"buyer","type":"address"}],"name":"getMaxBuyFromBubuHoldings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bubuOnly","type":"bool"},{"internalType":"bool","name":"_limitOn","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tradingPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bubuVaultWallet","type":"address"}],"name":"updateBubuVaultWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_duduVaultWallet","type":"address"}],"name":"updateDuduVaultWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bubuVaultFee","type":"uint256"},{"internalType":"uint256","name":"_duduVaultFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101406040526c0b3827a7d587a0311415e0000060085561271060085460056200002a919062000656565b62000036919062000676565b60095561271060085460326200004d919062000656565b62000059919062000676565b600a55612710600854603c62000070919062000656565b6200007c919062000676565b600b556014600c556005600d556003600e556001600f8190556010556011805463ffffff0019166301010100179055348015620000b857600080fd5b506040516200314f3803806200314f833981016040819052620000db91620006b6565b6040805180820182526004808252634455445560e01b6020808401829052845180860190955291845290830152906003620001178382620007ca565b506004620001268282620007ca565b505050620001436200013d6200041860201b60201c565b6200041c565b6001600160a01b03851660a052737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cc919062000896565b6040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af11580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000896565b6001600160a01b031660c0819052620002709060016200046e565b60a0516040516370a0823160e01b815261dead60048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015620002bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e19190620008bb565b60a0516001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000322573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003489190620008bb565b620003549190620008d5565b610120526005546001600160a01b0390811660e081905285821661010052600680546001600160a01b0319908116868516179091556007805490911692841692909217909155620003a7906001620004c2565b620003b4306001620004c2565b620003c361dead6001620004c2565b620003d0836001620004c2565b620003dd846001620004c2565b620003ea826001620004c2565b620003f7816001620004c2565b6200040d60e0516008546200057860201b60201c565b505050505062000901565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60e0516001600160a01b0316336001600160a01b031614620005195760405162461bcd60e51b8152600401620005109060208082526004908201526373686f6f60e01b604082015260600190565b60405180910390fd5b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000510565b8060026000828254620005e49190620008eb565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000670576200067062000640565b92915050565b6000826200069457634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160a01b0381168114620006b157600080fd5b919050565b600080600080600060a08688031215620006cf57600080fd5b620006da8662000699565b9450620006ea6020870162000699565b9350620006fa6040870162000699565b92506200070a6060870162000699565b91506200071a6080870162000699565b90509295509295909350565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200075157607f821691505b6020821081036200077257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063b57600081815260208120601f850160051c81016020861015620007a15750805b601f850160051c820191505b81811015620007c257828155600101620007ad565b505050505050565b81516001600160401b03811115620007e657620007e662000726565b620007fe81620007f784546200073c565b8462000778565b602080601f8311600181146200083657600084156200081d5750858301515b600019600386901b1c1916600185901b178555620007c2565b600085815260208120601f198616915b82811015620008675788860151825594840194600190910190840162000846565b5085821015620008865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008a957600080fd5b620008b48262000699565b9392505050565b600060208284031215620008ce57600080fd5b5051919050565b8181038181111562000670576200067062000640565b8082018082111562000670576200067062000640565b60805160a05160c05160e051610100516101205161279c620009b3600039600081816106b20152610e5f01526000818161070601526120760152600081816108e901528181610a8401528181610bcd01528181610ecf01528181610fbe0152818161107e0152818161126501526113d301526000818161056101526110ef0152600081816104db0152610dd301526000818161043201528181612296015281816122cd0152612342015261279c6000f3fe6080604052600436106103175760003560e01c806371f482341161019a578063a9059cbb116100e1578063d5f394881161008a578063e83e34b111610064578063e83e34b114610967578063f2fde38b1461097d578063f9f92be41461099d57600080fd5b8063d5f39488146108d7578063dd62ed3e1461090b578063e2f456051461095157600080fd5b8063cce987d4116100bb578063cce987d414610881578063ce0f0d5314610897578063d257b34f146108b757600080fd5b8063a9059cbb14610811578063aa8b788614610831578063c02466681461086157600080fd5b806389f9a1d31161014357806395d89b411161011d57806395d89b41146107bc5780639a7a23d6146107d1578063a457c2d7146107f157600080fd5b806389f9a1d3146107685780638da5cb5b1461077e578063924de9b71461079c57600080fd5b806375f0a8741161017457806375f0a874146106f45780637ac6413a146107285780638975b0b71461074857600080fd5b806371f482341461067f578063733c4ef6146106a05780637459e5d3146106d457600080fd5b8063313ce5671161025e5780635a2bcc18116102075780636f7c4f25116101e15780636f7c4f251461061457806370a0823114610634578063715018a61461066a57600080fd5b80635a2bcc18146105c95780636b67c4df146105df5780636ddd1713146105f557600080fd5b806349bd5a5e1161023857806349bd5a5e1461054f5780634fbee1931461058357806359abd3b8146105b357600080fd5b8063313ce567146104fd5780633950935114610519578063405f1a4e1461053957600080fd5b80631694505e116102c0578063224290851161029a578063224290851461048957806323b872dd146104a95780632c86213b146104c957600080fd5b80631694505e1461042057806318160ddd1461045457806319d707591461046957600080fd5b8063123ea243116102f1578063123ea243146103ba57806313114a9d146103dc578063153b0d1e1461040057600080fd5b8063040141e51461032357806306fdde0314610368578063095ea7b31461038a57600080fd5b3661031e57005b600080fd5b34801561032f57600080fd5b5061034b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561037457600080fd5b5061037d6109cd565b60405161035f91906123b6565b34801561039657600080fd5b506103aa6103a5366004612439565b610a5f565b604051901515815260200161035f565b3480156103c657600080fd5b506103da6103d5366004612463565b610a79565b005b3480156103e857600080fd5b506103f2600d5481565b60405190815260200161035f565b34801561040c57600080fd5b506103da61041b36600461248e565b610b71565b34801561042c57600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046057600080fd5b506002546103f2565b34801561047557600080fd5b506011546103aa9062010000900460ff1681565b34801561049557600080fd5b506103da6104a43660046124c1565b610bc2565b3480156104b557600080fd5b506103aa6104c43660046124ed565b610d1f565b3480156104d557600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561050957600080fd5b506040516012815260200161035f565b34801561052557600080fd5b506103aa610534366004612439565b610d43565b34801561054557600080fd5b506103f2600e5481565b34801561055b57600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058f57600080fd5b506103aa61059e366004612463565b60136020526000908152604090205460ff1681565b3480156105bf57600080fd5b506103f2600f5481565b3480156105d557600080fd5b506103f260085481565b3480156105eb57600080fd5b506103f260105481565b34801561060157600080fd5b506011546103aa90610100900460ff1681565b34801561062057600080fd5b5060075461034b906001600160a01b031681565b34801561064057600080fd5b506103f261064f366004612463565b6001600160a01b031660009081526020819052604090205490565b34801561067657600080fd5b506103da610d82565b34801561068b57600080fd5b506011546103aa906301000000900460ff1681565b3480156106ac57600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e057600080fd5b506103f26106ef366004612463565b610d96565b34801561070057600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561073457600080fd5b506103da610743366004612463565b610ec4565b34801561075457600080fd5b5060065461034b906001600160a01b031681565b34801561077457600080fd5b506103f2600b5481565b34801561078a57600080fd5b506005546001600160a01b031661034b565b3480156107a857600080fd5b506103da6107b7366004612529565b610fb3565b3480156107c857600080fd5b5061037d611064565b3480156107dd57600080fd5b506103da6107ec36600461248e565b611073565b3480156107fd57600080fd5b506103aa61080c366004612439565b6111a2565b34801561081d57600080fd5b506103aa61082c366004612439565b61124c565b34801561083d57600080fd5b506103aa61084c366004612463565b60146020526000908152604090205460ff1681565b34801561086d57600080fd5b506103da61087c36600461248e565b61125a565b34801561088d57600080fd5b506103f2600a5481565b3480156108a357600080fd5b506103da6108b2366004612544565b611351565b3480156108c357600080fd5b506103aa6108d2366004612570565b6113c6565b3480156108e357600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561091757600080fd5b506103f2610926366004612589565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095d57600080fd5b506103f260095481565b34801561097357600080fd5b506103f2600c5481565b34801561098957600080fd5b506103da610998366004612463565b611566565b3480156109a957600080fd5b506103aa6109b8366004612463565b60126020526000908152604090205460ff1681565b6060600380546109dc906125b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a08906125b3565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b600033610a6d8185856115f6565b60019150505b92915050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610afc5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b6007546040516001600160a01b03918216918316907f17e6b04fc8add04a84250f291aa8650a9e3f0ae299fc2629308a65a30b74b96290600090a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b7961174e565b6001600160a01b0391909116600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610c3c5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b818311610c4857600080fd5b600e839055600f829055601081905580610c628385612635565b610c6c9190612635565b600d819055600c541015610cc25760405162461bcd60e51b815260206004820152601360248201527f43616e6e6f7420696e63726561736520666565000000000000000000000000006044820152606401610af3565b600d54600c81905560051115610d1a5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420736574206665652062656c6f772035250000000000000000006044820152606401610af3565b505050565b600033610d2d8582856117a8565b610d38858585611858565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610a6d9082908690610d7d908790612635565b6115f6565b610d8a61174e565b610d946000611d95565b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03828116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e9190612648565b905069021e19e0c9bab2400000811015610e5b5750600092915050565b60007f0000000000000000000000000000000000000000000000000000000000000000610e8760025490565b610e92846003612661565b610e9c9190612661565b610ea69190612678565b9050600b54811115610ebd575050600b5492915050565b9392505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f3e5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b6006546040516001600160a01b03918216918316907f6135eda2d4a47061490bcef3db590643b89da6b455b401255795d58f351f1be090600090a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461102d5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b60118054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6060600480546109dc906125b3565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146110ed5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111945760405162461bcd60e51b815260206004820152602c60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f74726164696e67506169727300000000000000000000000000000000000000006064820152608401610af3565b61119e8282611dff565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561123f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610af3565b610d3882868684036115f6565b600033610a6d818585611858565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146112d45760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b03821660008181526013602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61135961174e565b601180549215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9415156201000002949094167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffff90931692909217929092179055600b55565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114425760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b620186a061144f60025490565b6114599190612678565b8210156114ce5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610af3565b60c86114d960025490565b6114e39190612678565b8211156115585760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610af3565b50600981905560015b919050565b61156e61174e565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af3565b6115f381611d95565b50565b6001600160a01b0383166116715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0382166116ed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461185257818110156118455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610af3565b61185284848484036115f6565b50505050565b6001600160a01b0383166118d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0382166119505760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b03821660009081526012602052604090205460ff1615801561199257506001600160a01b03831660009081526012602052604090205460ff16155b6119de5760405162461bcd60e51b815260206004820152600260248201527f626c0000000000000000000000000000000000000000000000000000000000006044820152606401610af3565b806000036119f257610d1a83836000611e71565b6001600160a01b03808416600081815260146020908152604080832054948716835280832054938352601390915281205460ff93841693928316921680611a5157506001600160a01b03851660009081526013602052604090205460ff165b60115490915062010000900460ff168015611a695750825b8015611a8357506005546001600160a01b03878116911614155b8015611a9d57506005546001600160a01b03868116911614155b8015611ab457506001600160a01b03851661dead14155b8015611ac3575060115460ff16155b15611b4257611ad185610d96565b6001600160a01b038616600090815260208190526040902054611af49086612635565b1115611b425760405162461bcd60e51b815260206004820152600f60248201527f62756275206c6f766573206475647500000000000000000000000000000000006044820152606401610af3565b6011546301000000900460ff168015611b585750825b8015611b7257506005546001600160a01b03878116911614155b8015611b8c57506005546001600160a01b03868116911614155b8015611ba357506001600160a01b03851661dead14155b8015611bb2575060115460ff16155b15611c2b57600b546001600160a01b038616600090815260208190526040902054611bdd9086612635565b1115611c2b5760405162461bcd60e51b815260206004820152600f60248201527f546f6f206d616e7920746f6b656e7300000000000000000000000000000000006044820152606401610af3565b30600090815260208190526040902054600954601154908210159060ff16158315611c54575060005b818015611c685750601154610100900460ff165b8015611c77575060115460ff16155b8015611c805750845b8015611c8a575083155b15611cfe57601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600a54611cd5908411611ccd578361205e565b600a5461205e565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60008115611d7e578515611d44576064600d5489611d1c9190612661565b611d269190612678565b9050611d338a3083611e71565b611d3d81896126b3565b9750611d7e565b8615611d7e576064600d5489611d5a9190612661565b611d649190612678565b9050611d718a3083611e71565b611d7b81896126b3565b97505b611d898a8a8a611e71565b50505050505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660008181526014602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611eed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b038216611f695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b03831660009081526020819052604090205481811015611ff85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611852565b612067816121ee565b60105460009047901561210a577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316600d54601054836120af9190612661565b6120b99190612678565b604051600081818185875af1925050503d80600081146120f5576040519150601f19603f3d011682016040523d82523d6000602084013e6120fa565b606091505b5050809250508161210a57600080fd5b600f541561218c57600754600d54600f546001600160a01b03909216916121319084612661565b61213b9190612678565b604051600081818185875af1925050503d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b5050809250508161218c57600080fd5b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146121d9576040519150601f19603f3d011682016040523d82523d6000602084013e6121de565b606091505b50508092505081610d1a57600080fd5b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612223576122236126c6565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061226b5761226b6126c6565b6001600160a01b039283166020918202929092018101919091523060009081526001825260408082207f0000000000000000000000000000000000000000000000000000000000000000909416825292909152205482111561231257612312307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115f6565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123809085906000908690309042906004016126f5565b600060405180830381600087803b15801561239a57600080fd5b505af11580156123ae573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156123e3578581018301518582016040015282016123c7565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b80356001600160a01b038116811461156157600080fd5b6000806040838503121561244c57600080fd5b61245583612422565b946020939093013593505050565b60006020828403121561247557600080fd5b610ebd82612422565b8035801515811461156157600080fd5b600080604083850312156124a157600080fd5b6124aa83612422565b91506124b86020840161247e565b90509250929050565b6000806000606084860312156124d657600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561250257600080fd5b61250b84612422565b925061251960208501612422565b9150604084013590509250925092565b60006020828403121561253b57600080fd5b610ebd8261247e565b60008060006060848603121561255957600080fd5b6125628461247e565b92506125196020850161247e565b60006020828403121561258257600080fd5b5035919050565b6000806040838503121561259c57600080fd5b6125a583612422565b91506124b860208401612422565b600181811c908216806125c757607f821691505b602082108103612600577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610a7357610a73612606565b60006020828403121561265a57600080fd5b5051919050565b8082028115828204841417610a7357610a73612606565b6000826126ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610a7357610a73612606565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127455784516001600160a01b031683529383019391830191600101612720565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209af9c223e79a1268ae3ec51c6ae397277d5a2671fc4feb26441ac05d2b5f784a64736f6c634300081100330000000000000000000000005395df198fcbc9c13bec506004c9a8b6460a771200000000000000000000000004e116dfa4701328677c30f7db79100cda5ade6400000000000000000000000066bcb251b4074012dba933fded22923fc3f157e800000000000000000000000024aa7eb92f9e129e9d6724bc749feaec7e645473000000000000000000000000c111c4e31c2497e61eb9b3b68faeb8803bcced7d

Deployed Bytecode

0x6080604052600436106103175760003560e01c806371f482341161019a578063a9059cbb116100e1578063d5f394881161008a578063e83e34b111610064578063e83e34b114610967578063f2fde38b1461097d578063f9f92be41461099d57600080fd5b8063d5f39488146108d7578063dd62ed3e1461090b578063e2f456051461095157600080fd5b8063cce987d4116100bb578063cce987d414610881578063ce0f0d5314610897578063d257b34f146108b757600080fd5b8063a9059cbb14610811578063aa8b788614610831578063c02466681461086157600080fd5b806389f9a1d31161014357806395d89b411161011d57806395d89b41146107bc5780639a7a23d6146107d1578063a457c2d7146107f157600080fd5b806389f9a1d3146107685780638da5cb5b1461077e578063924de9b71461079c57600080fd5b806375f0a8741161017457806375f0a874146106f45780637ac6413a146107285780638975b0b71461074857600080fd5b806371f482341461067f578063733c4ef6146106a05780637459e5d3146106d457600080fd5b8063313ce5671161025e5780635a2bcc18116102075780636f7c4f25116101e15780636f7c4f251461061457806370a0823114610634578063715018a61461066a57600080fd5b80635a2bcc18146105c95780636b67c4df146105df5780636ddd1713146105f557600080fd5b806349bd5a5e1161023857806349bd5a5e1461054f5780634fbee1931461058357806359abd3b8146105b357600080fd5b8063313ce567146104fd5780633950935114610519578063405f1a4e1461053957600080fd5b80631694505e116102c0578063224290851161029a578063224290851461048957806323b872dd146104a95780632c86213b146104c957600080fd5b80631694505e1461042057806318160ddd1461045457806319d707591461046957600080fd5b8063123ea243116102f1578063123ea243146103ba57806313114a9d146103dc578063153b0d1e1461040057600080fd5b8063040141e51461032357806306fdde0314610368578063095ea7b31461038a57600080fd5b3661031e57005b600080fd5b34801561032f57600080fd5b5061034b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561037457600080fd5b5061037d6109cd565b60405161035f91906123b6565b34801561039657600080fd5b506103aa6103a5366004612439565b610a5f565b604051901515815260200161035f565b3480156103c657600080fd5b506103da6103d5366004612463565b610a79565b005b3480156103e857600080fd5b506103f2600d5481565b60405190815260200161035f565b34801561040c57600080fd5b506103da61041b36600461248e565b610b71565b34801561042c57600080fd5b5061034b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561046057600080fd5b506002546103f2565b34801561047557600080fd5b506011546103aa9062010000900460ff1681565b34801561049557600080fd5b506103da6104a43660046124c1565b610bc2565b3480156104b557600080fd5b506103aa6104c43660046124ed565b610d1f565b3480156104d557600080fd5b5061034b7f0000000000000000000000005395df198fcbc9c13bec506004c9a8b6460a771281565b34801561050957600080fd5b506040516012815260200161035f565b34801561052557600080fd5b506103aa610534366004612439565b610d43565b34801561054557600080fd5b506103f2600e5481565b34801561055b57600080fd5b5061034b7f000000000000000000000000c42d9c5435b8a4f572e92e2ed6e4ad934ccf416081565b34801561058f57600080fd5b506103aa61059e366004612463565b60136020526000908152604090205460ff1681565b3480156105bf57600080fd5b506103f2600f5481565b3480156105d557600080fd5b506103f260085481565b3480156105eb57600080fd5b506103f260105481565b34801561060157600080fd5b506011546103aa90610100900460ff1681565b34801561062057600080fd5b5060075461034b906001600160a01b031681565b34801561064057600080fd5b506103f261064f366004612463565b6001600160a01b031660009081526020819052604090205490565b34801561067657600080fd5b506103da610d82565b34801561068b57600080fd5b506011546103aa906301000000900460ff1681565b3480156106ac57600080fd5b506103f27f00000000000000000000000000000000000000000045c473e22fd3970e43f6c281565b3480156106e057600080fd5b506103f26106ef366004612463565b610d96565b34801561070057600080fd5b5061034b7f00000000000000000000000004e116dfa4701328677c30f7db79100cda5ade6481565b34801561073457600080fd5b506103da610743366004612463565b610ec4565b34801561075457600080fd5b5060065461034b906001600160a01b031681565b34801561077457600080fd5b506103f2600b5481565b34801561078a57600080fd5b506005546001600160a01b031661034b565b3480156107a857600080fd5b506103da6107b7366004612529565b610fb3565b3480156107c857600080fd5b5061037d611064565b3480156107dd57600080fd5b506103da6107ec36600461248e565b611073565b3480156107fd57600080fd5b506103aa61080c366004612439565b6111a2565b34801561081d57600080fd5b506103aa61082c366004612439565b61124c565b34801561083d57600080fd5b506103aa61084c366004612463565b60146020526000908152604090205460ff1681565b34801561086d57600080fd5b506103da61087c36600461248e565b61125a565b34801561088d57600080fd5b506103f2600a5481565b3480156108a357600080fd5b506103da6108b2366004612544565b611351565b3480156108c357600080fd5b506103aa6108d2366004612570565b6113c6565b3480156108e357600080fd5b5061034b7f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d044020081565b34801561091757600080fd5b506103f2610926366004612589565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095d57600080fd5b506103f260095481565b34801561097357600080fd5b506103f2600c5481565b34801561098957600080fd5b506103da610998366004612463565b611566565b3480156109a957600080fd5b506103aa6109b8366004612463565b60126020526000908152604090205460ff1681565b6060600380546109dc906125b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a08906125b3565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b600033610a6d8185856115f6565b60019150505b92915050565b336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d04402001614610afc5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b6007546040516001600160a01b03918216918316907f17e6b04fc8add04a84250f291aa8650a9e3f0ae299fc2629308a65a30b74b96290600090a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610b7961174e565b6001600160a01b0391909116600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d04402001614610c3c5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b818311610c4857600080fd5b600e839055600f829055601081905580610c628385612635565b610c6c9190612635565b600d819055600c541015610cc25760405162461bcd60e51b815260206004820152601360248201527f43616e6e6f7420696e63726561736520666565000000000000000000000000006044820152606401610af3565b600d54600c81905560051115610d1a5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420736574206665652062656c6f772035250000000000000000006044820152606401610af3565b505050565b600033610d2d8582856117a8565b610d38858585611858565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610a6d9082908690610d7d908790612635565b6115f6565b610d8a61174e565b610d946000611d95565b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03828116600483015260009182917f0000000000000000000000005395df198fcbc9c13bec506004c9a8b6460a771216906370a0823190602401602060405180830381865afa158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e9190612648565b905069021e19e0c9bab2400000811015610e5b5750600092915050565b60007f00000000000000000000000000000000000000000045c473e22fd3970e43f6c2610e8760025490565b610e92846003612661565b610e9c9190612661565b610ea69190612678565b9050600b54811115610ebd575050600b5492915050565b9392505050565b336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d04402001614610f3e5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b6006546040516001600160a01b03918216918316907f6135eda2d4a47061490bcef3db590643b89da6b455b401255795d58f351f1be090600090a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d0440200161461102d5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b60118054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6060600480546109dc906125b3565b336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d044020016146110ed5760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b7f000000000000000000000000c42d9c5435b8a4f572e92e2ed6e4ad934ccf41606001600160a01b0316826001600160a01b0316036111945760405162461bcd60e51b815260206004820152602c60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f74726164696e67506169727300000000000000000000000000000000000000006064820152608401610af3565b61119e8282611dff565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561123f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610af3565b610d3882868684036115f6565b600033610a6d818585611858565b336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d044020016146112d45760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b03821660008181526013602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61135961174e565b601180549215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9415156201000002949094167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffff90931692909217929092179055600b55565b6000336001600160a01b037f00000000000000000000000000de4f0591fbda5cef0500cdb84b68c9d044020016146114425760405162461bcd60e51b8152600401610af39060208082526004908201527f73686f6f00000000000000000000000000000000000000000000000000000000604082015260600190565b620186a061144f60025490565b6114599190612678565b8210156114ce5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610af3565b60c86114d960025490565b6114e39190612678565b8211156115585760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610af3565b50600981905560015b919050565b61156e61174e565b6001600160a01b0381166115ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af3565b6115f381611d95565b50565b6001600160a01b0383166116715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0382166116ed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461185257818110156118455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610af3565b61185284848484036115f6565b50505050565b6001600160a01b0383166118d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b0382166119505760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b03821660009081526012602052604090205460ff1615801561199257506001600160a01b03831660009081526012602052604090205460ff16155b6119de5760405162461bcd60e51b815260206004820152600260248201527f626c0000000000000000000000000000000000000000000000000000000000006044820152606401610af3565b806000036119f257610d1a83836000611e71565b6001600160a01b03808416600081815260146020908152604080832054948716835280832054938352601390915281205460ff93841693928316921680611a5157506001600160a01b03851660009081526013602052604090205460ff165b60115490915062010000900460ff168015611a695750825b8015611a8357506005546001600160a01b03878116911614155b8015611a9d57506005546001600160a01b03868116911614155b8015611ab457506001600160a01b03851661dead14155b8015611ac3575060115460ff16155b15611b4257611ad185610d96565b6001600160a01b038616600090815260208190526040902054611af49086612635565b1115611b425760405162461bcd60e51b815260206004820152600f60248201527f62756275206c6f766573206475647500000000000000000000000000000000006044820152606401610af3565b6011546301000000900460ff168015611b585750825b8015611b7257506005546001600160a01b03878116911614155b8015611b8c57506005546001600160a01b03868116911614155b8015611ba357506001600160a01b03851661dead14155b8015611bb2575060115460ff16155b15611c2b57600b546001600160a01b038616600090815260208190526040902054611bdd9086612635565b1115611c2b5760405162461bcd60e51b815260206004820152600f60248201527f546f6f206d616e7920746f6b656e7300000000000000000000000000000000006044820152606401610af3565b30600090815260208190526040902054600954601154908210159060ff16158315611c54575060005b818015611c685750601154610100900460ff165b8015611c77575060115460ff16155b8015611c805750845b8015611c8a575083155b15611cfe57601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600a54611cd5908411611ccd578361205e565b600a5461205e565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60008115611d7e578515611d44576064600d5489611d1c9190612661565b611d269190612678565b9050611d338a3083611e71565b611d3d81896126b3565b9750611d7e565b8615611d7e576064600d5489611d5a9190612661565b611d649190612678565b9050611d718a3083611e71565b611d7b81896126b3565b97505b611d898a8a8a611e71565b50505050505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660008181526014602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611eed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b038216611f695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b03831660009081526020819052604090205481811015611ff85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610af3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611852565b612067816121ee565b60105460009047901561210a577f00000000000000000000000004e116dfa4701328677c30f7db79100cda5ade646001600160a01b0316600d54601054836120af9190612661565b6120b99190612678565b604051600081818185875af1925050503d80600081146120f5576040519150601f19603f3d011682016040523d82523d6000602084013e6120fa565b606091505b5050809250508161210a57600080fd5b600f541561218c57600754600d54600f546001600160a01b03909216916121319084612661565b61213b9190612678565b604051600081818185875af1925050503d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b5050809250508161218c57600080fd5b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146121d9576040519150601f19603f3d011682016040523d82523d6000602084013e6121de565b606091505b50508092505081610d1a57600080fd5b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612223576122236126c6565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061226b5761226b6126c6565b6001600160a01b039283166020918202929092018101919091523060009081526001825260408082207f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d909416825292909152205482111561231257612312307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115f6565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123809085906000908690309042906004016126f5565b600060405180830381600087803b15801561239a57600080fd5b505af11580156123ae573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156123e3578581018301518582016040015282016123c7565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b80356001600160a01b038116811461156157600080fd5b6000806040838503121561244c57600080fd5b61245583612422565b946020939093013593505050565b60006020828403121561247557600080fd5b610ebd82612422565b8035801515811461156157600080fd5b600080604083850312156124a157600080fd5b6124aa83612422565b91506124b86020840161247e565b90509250929050565b6000806000606084860312156124d657600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561250257600080fd5b61250b84612422565b925061251960208501612422565b9150604084013590509250925092565b60006020828403121561253b57600080fd5b610ebd8261247e565b60008060006060848603121561255957600080fd5b6125628461247e565b92506125196020850161247e565b60006020828403121561258257600080fd5b5035919050565b6000806040838503121561259c57600080fd5b6125a583612422565b91506124b860208401612422565b600181811c908216806125c757607f821691505b602082108103612600577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610a7357610a73612606565b60006020828403121561265a57600080fd5b5051919050565b8082028115828204841417610a7357610a73612606565b6000826126ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b81810381811115610a7357610a73612606565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127455784516001600160a01b031683529383019391830191600101612720565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209af9c223e79a1268ae3ec51c6ae397277d5a2671fc4feb26441ac05d2b5f784a64736f6c63430008110033

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

0000000000000000000000005395df198fcbc9c13bec506004c9a8b6460a771200000000000000000000000004e116dfa4701328677c30f7db79100cda5ade6400000000000000000000000066bcb251b4074012dba933fded22923fc3f157e800000000000000000000000024aa7eb92f9e129e9d6724bc749feaec7e645473000000000000000000000000c111c4e31c2497e61eb9b3b68faeb8803bcced7d

-----Decoded View---------------
Arg [0] : bubuAddress (address): 0x5395df198fCbC9C13bEC506004C9A8B6460A7712
Arg [1] : _marketingWallet (address): 0x04E116DFa4701328677C30f7DB79100CDA5AdE64
Arg [2] : _buybackWallet (address): 0x66Bcb251B4074012dba933FDeD22923FC3F157e8
Arg [3] : _tempBubuVaultWallet (address): 0x24aA7eb92f9e129e9d6724bC749fEaEc7E645473
Arg [4] : _tempDuduVaultWallet (address): 0xC111c4E31C2497e61Eb9b3B68FaEB8803bCCeD7d

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000005395df198fcbc9c13bec506004c9a8b6460a7712
Arg [1] : 00000000000000000000000004e116dfa4701328677c30f7db79100cda5ade64
Arg [2] : 00000000000000000000000066bcb251b4074012dba933fded22923fc3f157e8
Arg [3] : 00000000000000000000000024aa7eb92f9e129e9d6724bc749feaec7e645473
Arg [4] : 000000000000000000000000c111c4e31c2497e61eb9b3b68faeb8803bcced7d


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.