ETH Price: $3,492.68 (+2.84%)
Gas: 9 Gwei

Token

DynaCube (DCF)
 

Overview

Max Total Supply

500,000 DCF

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
237.233888084437275082 DCF

Value
$0.00
0x93b6e6241d7ff33ca450064fe61988412fd3d108
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:
DynaCube

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Dynacube.sol
// SPDX-License-Identifier: MIT
/*
Secure Vaults for Steady Returns Amid Market Shifts

Website: https://www.dynacube.finance/
Telegram: https://t.me/Dynacubefi

*/
pragma solidity 0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
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;
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
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);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 {}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
 
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
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);
}
 
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;
}
 
contract DynaCube is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
    address private devWallet;
 
    uint256 private maxTransactionAmount;
    uint256 private swapTokensAtAmount;
    uint256 private maxWallet;
 
    bool private limitsInEffect = true;
    bool private tradingActive = false;
    bool public swapEnabled = false;
    bool public enableEarlySellTax = true;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = false;
 
    uint256 private buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyLiquidityFee;
    uint256 private buyDevFee;
 
    uint256 private sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellLiquidityFee;
    uint256 private sellDevFee;
 
    uint256 private earlySellLiquidityFee;
    uint256 private earlySellMarketingFee;
    uint256 private earlySellDevFee;
 
    uint256 private tokensForMarketing;
    uint256 private tokensForLiquidity;
    uint256 private tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("DynaCube", "DCF") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        // FEES & SUPPLY
        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 2;
 
        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 3;
 
        uint256 _earlySellLiquidityFee = 5;
        uint256 _earlySellMarketingFee = 0;
	    uint256 _earlySellDevFee = 0
 
    ; uint256 totalSupply = 1 * 5e5 * 1e18;  // 500,000
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWallet
        swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;
	earlySellDevFee = _earlySellDevFee;
 
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) private onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    function excludeFromFees(address account, bool excluded) private onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function ManageBot (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) private onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _earlySellLiquidityFee, uint256 _earlySellMarketingFee, uint256 _earlySellDevFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;
	    earlySellDevFee = _earlySellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 100); // Must keep fees at 10% or less
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    event BoughtEarly(address indexed sniper);
 
    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], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        // anti bot logic - TRUE=ON FALSE=OFF
        if (block.number <= (launchedAt + 1) && 
                to != uniswapV2Pair && 
                to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
            ) { 
            _blacklist[to] = true;
        }
 
        // early sell logic SET TAX
        bool isBuy = from == uniswapV2Pair;
        if (!isBuy && enableEarlySellTax) {
            if (_holderFirstBuyTimestamp[from] != 0 &&
                (_holderFirstBuyTimestamp[from] + (1 hours) >= block.timestamp))  {
                sellLiquidityFee = earlySellLiquidityFee;
                sellMarketingFee = earlySellMarketingFee;
		        sellDevFee = earlySellDevFee;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            } else {
                sellLiquidityFee = 0;
                sellMarketingFee = 2;
                sellDevFee = 3;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            }
        } else {
            if (_holderFirstBuyTimestamp[to] == 0) {
                _holderFirstBuyTimestamp[to] = block.timestamp;
            }
 
            if (!enableEarlySellTax) {
                sellLiquidityFee = 10;
                sellMarketingFee = 0;
		        sellDevFee = 0;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                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] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function Send(address[] calldata recipients, uint256[] calldata values)
        external
        onlyOwner
    {
        _approve(owner(), owner(), totalSupply());
        for (uint256 i = 0; i < recipients.length; i++) {
            transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals());
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"ManageBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"Send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellDevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff19166301000001179055600f805460ff191690553480156200002e57600080fd5b506040518060400160405280600881526020016744796e614375626560c01b815250604051806040016040528060038152602001622221a360e91b81525081600390805190602001906200008492919062000741565b5080516200009a90600490602084019062000741565b5050506000620000af6200046060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200011f81600162000464565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200016557600080fd5b505afa1580156200017a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a09190620007e7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e957600080fd5b505afa158015620001fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002249190620007e7565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026d57600080fd5b505af115801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a89190620007e7565b6001600160a01b031660a0819052620002c390600162000464565b60a051620002d3906001620004dd565b600360006002808284600582806969e10de76676d08000006103e8620002fb82601462000828565b6200030791906200084a565b6008556103e86200031a82601462000828565b6200032691906200084a565b600a908155612710906200033c90839062000828565b6200034891906200084a565b60095560118a90556012899055601388905587620003678a8c6200086d565b6200037391906200086d565b601055601587905560168690556017859055846200039287896200086d565b6200039e91906200086d565b60145560188490556019839055601a829055600554600680546001600160a01b03199081166001600160a01b039093169283179091556007805490911682179055620003ec90600162000531565b620003f930600162000531565b6200040861dead600162000531565b620004276200041f6005546001600160a01b031690565b600162000464565b6200043430600162000464565b6200044361dead600162000464565b6200044f3382620005db565b5050505050505050505050620008c5565b3390565b6005546001600160a01b03163314620004b35760405162461bcd60e51b8152602060048201819052602482015260008051602062002bc983398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002bc98339815191526044820152606401620004aa565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006335760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004aa565b6200064f81600254620006d760201b620008771790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200068291839062000877620006d7821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620006e683856200086d565b9050838110156200073a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004aa565b9392505050565b8280546200074f9062000888565b90600052602060002090601f016020900481019282620007735760008555620007be565b82601f106200078e57805160ff1916838001178555620007be565b82800160010185558215620007be579182015b82811115620007be578251825591602001919060010190620007a1565b50620007cc929150620007d0565b5090565b5b80821115620007cc5760008155600101620007d1565b600060208284031215620007fa57600080fd5b81516001600160a01b03811681146200073a57600080fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000845576200084562000812565b500290565b6000826200086857634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000883576200088362000812565b500190565b600181811c908216806200089d57607f821691505b60208210811415620008bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161229f6200092a600039600081816102d501528181610c8001528181610fe001526110690152600081816101ec01528181610c42015281816119d901528181611aa101528181611add01528181611b4f0152611bab015261229f6000f3fe6080604052600436106101445760003560e01c806370a08231116100b657806395d89b411161006f57806395d89b41146103ca578063a4d15b64146103df578063a9059cbb14610400578063b62496f514610420578063c876d0b914610450578063dd62ed3e1461046a57600080fd5b806370a0823114610317578063715018a61461034d578063751039fc1461036257806384a7bf83146103775780638a8c523c146103975780638da5cb5b146103ac57600080fd5b806322d3e2aa1161010857806322d3e2aa1461024557806323b872dd146102675780632d08d40814610287578063313ce567146102a757806349bd5a5e146102c35780636ddd1713146102f757600080fd5b806306fdde0314610150578063095ea7b31461017b57806310d5de53146101ab5780631694505e146101da57806318160ddd1461022657600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b506101656104b0565b6040516101729190611c5f565b60405180910390f35b34801561018757600080fd5b5061019b610196366004611ccc565b610542565b6040519015158152602001610172565b3480156101b757600080fd5b5061019b6101c6366004611cf8565b602080526000908152604090205460ff1681565b3480156101e657600080fd5b5061020e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610172565b34801561023257600080fd5b506002545b604051908152602001610172565b34801561025157600080fd5b50610265610260366004611d15565b610559565b005b34801561027357600080fd5b5061019b610282366004611d58565b6105d9565b34801561029357600080fd5b506102656102a2366004611de5565b610642565b3480156102b357600080fd5b5060405160128152602001610172565b3480156102cf57600080fd5b5061020e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561030357600080fd5b50600b5461019b9062010000900460ff1681565b34801561032357600080fd5b50610237610332366004611cf8565b6001600160a01b031660009081526020819052604090205490565b34801561035957600080fd5b50610265610714565b34801561036e57600080fd5b5061019b610788565b34801561038357600080fd5b50610265610392366004611e51565b6107c5565b3480156103a357600080fd5b5061026561081a565b3480156103b857600080fd5b506005546001600160a01b031661020e565b3480156103d657600080fd5b5061016561085b565b3480156103eb57600080fd5b50600b5461019b906301000000900460ff1681565b34801561040c57600080fd5b5061019b61041b366004611ccc565b61086a565b34801561042c57600080fd5b5061019b61043b366004611cf8565b60216020526000908152604090205460ff1681565b34801561045c57600080fd5b50600f5461019b9060ff1681565b34801561047657600080fd5b50610237610485366004611e8f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546104bf90611ebd565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90611ebd565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b600061054f3384846108dd565b5060015b92915050565b6005546001600160a01b0316331461058c5760405162461bcd60e51b815260040161058390611ef8565b60405180910390fd5b60158690556016859055601784905560188390556019829055601a819055836105b58688611f43565b6105bf9190611f43565b6014819055606410156105d157600080fd5b505050505050565b60006105e6848484610a02565b610638843361063385604051806060016040528060288152602001612242602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611502565b6108dd565b5060019392505050565b6005546001600160a01b0316331461066c5760405162461bcd60e51b815260040161058390611ef8565b6106956106816005546001600160a01b031690565b6005546001600160a01b03166002546108dd565b60005b8381101561070d576106fa338686848181106106b6576106b6611f5b565b90506020020160208101906106cb9190611cf8565b6106d76012600a612055565b8686868181106106e9576106e9611f5b565b905060200201356102829190612064565b508061070581612083565b915050610698565b5050505050565b6005546001600160a01b0316331461073e5760405162461bcd60e51b815260040161058390611ef8565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146107b55760405162461bcd60e51b815260040161058390611ef8565b50600b805460ff19169055600190565b6005546001600160a01b031633146107ef5760405162461bcd60e51b815260040161058390611ef8565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108445760405162461bcd60e51b815260040161058390611ef8565b600b805462ffff0019166201010017905543601e55565b6060600480546104bf90611ebd565b600061054f338484610a02565b6000806108848385611f43565b9050838110156108d65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610583565b9392505050565b6001600160a01b03831661093f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610583565b6001600160a01b0382166109a05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610583565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a285760405162461bcd60e51b81526004016105839061209e565b6001600160a01b038216610a4e5760405162461bcd60e51b8152600401610583906120e3565b6001600160a01b0382166000908152600e602052604090205460ff16158015610a9057506001600160a01b0383166000908152600e602052604090205460ff16155b610af65760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610583565b80610b0c57610b078383600061153c565b505050565b600b5460ff1615610fc6576005546001600160a01b03848116911614801590610b4357506005546001600160a01b03838116911614155b8015610b5757506001600160a01b03821615155b8015610b6e57506001600160a01b03821661dead14155b8015610b845750600554600160a01b900460ff16155b15610fc657600b54610100900460ff16610c1c576001600160a01b0383166000908152601f602052604090205460ff1680610bd757506001600160a01b0382166000908152601f602052604090205460ff165b610c1c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610583565b600f5460ff1615610d63576005546001600160a01b03838116911614801590610c7757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610cb557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15610d6357326000908152600c60205260409020544311610d505760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610583565b326000908152600c602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015610da357506001600160a01b038216600090815260208052604090205460ff16155b15610e8757600854811115610e185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610583565b600a546001600160a01b038316600090815260208190526040902054610e3e9083611f43565b1115610e825760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610583565b610fc6565b6001600160a01b03821660009081526021602052604090205460ff168015610ec757506001600160a01b038316600090815260208052604090205460ff16155b15610f3d57600854811115610e825760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610583565b6001600160a01b038216600090815260208052604090205460ff16610fc657600a546001600160a01b038316600090815260208190526040902054610f829083611f43565b1115610fc65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610583565b601e54610fd4906001611f43565b431115801561101557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561103e57506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b15611067576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116908416148015816110ad5750600b546301000000900460ff165b15611156576001600160a01b0384166000908152600d6020526040902054158015906110fe57506001600160a01b0384166000908152600d602052604090205442906110fb90610e10611f43565b10155b156111375760185460168190556019546015819055601a5460178190559161112591611f43565b61112f9190611f43565b6014556111cc565b6000601681905560026015819055600360178190559161112591611f43565b6001600160a01b0383166000908152600d602052604090205461118f576001600160a01b0383166000908152600d602052604090204290555b600b546301000000900460ff166111cc57600a6016819055600060158190556017819055906111be9082611f43565b6111c89190611f43565b6014555b30600090815260208190526040902054600954811080159081906111f85750600b5462010000900460ff165b801561120e5750600554600160a01b900460ff16155b801561123357506001600160a01b03861660009081526021602052604090205460ff16155b801561125857506001600160a01b0386166000908152601f602052604090205460ff16155b801561127d57506001600160a01b0385166000908152601f602052604090205460ff16155b156112ab576005805460ff60a01b1916600160a01b17905561129d611645565b6005805460ff60a01b191690555b6005546001600160a01b0387166000908152601f602052604090205460ff600160a01b9092048216159116806112f957506001600160a01b0386166000908152601f602052604090205460ff165b15611302575060005b600081156114ed576001600160a01b03871660009081526021602052604090205460ff16801561133457506000601454115b156113f25761135960646113536014548961187f90919063ffffffff16565b906118fe565b90506014546016548261136c9190612064565b6113769190612126565b601c60008282546113879190611f43565b909155505060145460175461139c9083612064565b6113a69190612126565b601d60008282546113b79190611f43565b90915550506014546015546113cc9083612064565b6113d69190612126565b601b60008282546113e79190611f43565b909155506114cf9050565b6001600160a01b03881660009081526021602052604090205460ff16801561141c57506000601054115b156114cf5761143b60646113536010548961187f90919063ffffffff16565b90506010546012548261144e9190612064565b6114589190612126565b601c60008282546114699190611f43565b909155505060105460135461147e9083612064565b6114889190612126565b601d60008282546114999190611f43565b90915550506010546011546114ae9083612064565b6114b89190612126565b601b60008282546114c99190611f43565b90915550505b80156114e0576114e088308361153c565b6114ea8187612148565b95505b6114f888888861153c565b5050505050505050565b600081848411156115265760405162461bcd60e51b81526004016105839190611c5f565b5060006115338486612148565b95945050505050565b6001600160a01b0383166115625760405162461bcd60e51b81526004016105839061209e565b6001600160a01b0382166115885760405162461bcd60e51b8152600401610583906120e3565b6115c58160405180606001604052806026815260200161221c602691396001600160a01b0386166000908152602081905260409020549190611502565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115f49082610877565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109f5565b3060009081526020819052604081205490506000601d54601b54601c5461166c9190611f43565b6116769190611f43565b90506000821580611685575081155b1561168f57505050565b60095461169d906014612064565b8311156116b5576009546116b2906014612064565b92505b6000600283601c54866116c89190612064565b6116d29190612126565b6116dc9190612126565b905060006116ea8583611940565b9050476116f682611982565b60006117024783611940565b9050600061171f87611353601b548561187f90919063ffffffff16565b9050600061173c88611353601d548661187f90919063ffffffff16565b905060008161174b8486612148565b6117559190612148565b6000601c819055601b819055601d8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b509098505086158015906117cb5750600081115b1561181e576117da8782611b49565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461186b576040519150601f19603f3d011682016040523d82523d6000602084013e611870565b606091505b50505050505050505050505050565b60008261188e57506000610553565b600061189a8385612064565b9050826118a78583612126565b146108d65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610583565b60006108d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c31565b60006108d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611502565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119b7576119b7611f5b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a3057600080fd5b505afa158015611a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a68919061215f565b81600181518110611a7b57611a7b611f5b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ac6307f0000000000000000000000000000000000000000000000000000000000000000846108dd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b1b90859060009086903090429060040161217c565b600060405180830381600087803b158015611b3557600080fd5b505af11580156105d1573d6000803e3d6000fd5b611b74307f0000000000000000000000000000000000000000000000000000000000000000846108dd565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611bf857600080fd5b505af1158015611c0c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061070d91906121ed565b60008183611c525760405162461bcd60e51b81526004016105839190611c5f565b5060006115338486612126565b600060208083528351808285015260005b81811015611c8c57858101830151858201604001528201611c70565b81811115611c9e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611cc957600080fd5b50565b60008060408385031215611cdf57600080fd5b8235611cea81611cb4565b946020939093013593505050565b600060208284031215611d0a57600080fd5b81356108d681611cb4565b60008060008060008060c08789031215611d2e57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600080600060608486031215611d6d57600080fd5b8335611d7881611cb4565b92506020840135611d8881611cb4565b929592945050506040919091013590565b60008083601f840112611dab57600080fd5b50813567ffffffffffffffff811115611dc357600080fd5b6020830191508360208260051b8501011115611dde57600080fd5b9250929050565b60008060008060408587031215611dfb57600080fd5b843567ffffffffffffffff80821115611e1357600080fd5b611e1f88838901611d99565b90965094506020870135915080821115611e3857600080fd5b50611e4587828801611d99565b95989497509550505050565b60008060408385031215611e6457600080fd5b8235611e6f81611cb4565b915060208301358015158114611e8457600080fd5b809150509250929050565b60008060408385031215611ea257600080fd5b8235611ead81611cb4565b91506020830135611e8481611cb4565b600181811c90821680611ed157607f821691505b60208210811415611ef257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f5657611f56611f2d565b500190565b634e487b7160e01b600052603260045260246000fd5b600181815b80851115611fac578160001904821115611f9257611f92611f2d565b80851615611f9f57918102915b93841c9390800290611f76565b509250929050565b600082611fc357506001610553565b81611fd057506000610553565b8160018114611fe65760028114611ff05761200c565b6001915050610553565b60ff84111561200157612001611f2d565b50506001821b610553565b5060208310610133831016604e8410600b841016171561202f575081810a610553565b6120398383611f71565b806000190482111561204d5761204d611f2d565b029392505050565b60006108d660ff841683611fb4565b600081600019048311821515161561207e5761207e611f2d565b500290565b600060001982141561209757612097611f2d565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261214357634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561215a5761215a611f2d565b500390565b60006020828403121561217157600080fd5b81516108d681611cb4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121cc5784516001600160a01b0316835293830193918301916001016121a7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561220257600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d353f759bc91e1cf6f13fe5c146bdbfd24d9b0641f1b50d9c2d3c07016cf369a64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101445760003560e01c806370a08231116100b657806395d89b411161006f57806395d89b41146103ca578063a4d15b64146103df578063a9059cbb14610400578063b62496f514610420578063c876d0b914610450578063dd62ed3e1461046a57600080fd5b806370a0823114610317578063715018a61461034d578063751039fc1461036257806384a7bf83146103775780638a8c523c146103975780638da5cb5b146103ac57600080fd5b806322d3e2aa1161010857806322d3e2aa1461024557806323b872dd146102675780632d08d40814610287578063313ce567146102a757806349bd5a5e146102c35780636ddd1713146102f757600080fd5b806306fdde0314610150578063095ea7b31461017b57806310d5de53146101ab5780631694505e146101da57806318160ddd1461022657600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b506101656104b0565b6040516101729190611c5f565b60405180910390f35b34801561018757600080fd5b5061019b610196366004611ccc565b610542565b6040519015158152602001610172565b3480156101b757600080fd5b5061019b6101c6366004611cf8565b602080526000908152604090205460ff1681565b3480156101e657600080fd5b5061020e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610172565b34801561023257600080fd5b506002545b604051908152602001610172565b34801561025157600080fd5b50610265610260366004611d15565b610559565b005b34801561027357600080fd5b5061019b610282366004611d58565b6105d9565b34801561029357600080fd5b506102656102a2366004611de5565b610642565b3480156102b357600080fd5b5060405160128152602001610172565b3480156102cf57600080fd5b5061020e7f000000000000000000000000c632e2fce6591c0a98f9619ef652564ef93445d381565b34801561030357600080fd5b50600b5461019b9062010000900460ff1681565b34801561032357600080fd5b50610237610332366004611cf8565b6001600160a01b031660009081526020819052604090205490565b34801561035957600080fd5b50610265610714565b34801561036e57600080fd5b5061019b610788565b34801561038357600080fd5b50610265610392366004611e51565b6107c5565b3480156103a357600080fd5b5061026561081a565b3480156103b857600080fd5b506005546001600160a01b031661020e565b3480156103d657600080fd5b5061016561085b565b3480156103eb57600080fd5b50600b5461019b906301000000900460ff1681565b34801561040c57600080fd5b5061019b61041b366004611ccc565b61086a565b34801561042c57600080fd5b5061019b61043b366004611cf8565b60216020526000908152604090205460ff1681565b34801561045c57600080fd5b50600f5461019b9060ff1681565b34801561047657600080fd5b50610237610485366004611e8f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546104bf90611ebd565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90611ebd565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b600061054f3384846108dd565b5060015b92915050565b6005546001600160a01b0316331461058c5760405162461bcd60e51b815260040161058390611ef8565b60405180910390fd5b60158690556016859055601784905560188390556019829055601a819055836105b58688611f43565b6105bf9190611f43565b6014819055606410156105d157600080fd5b505050505050565b60006105e6848484610a02565b610638843361063385604051806060016040528060288152602001612242602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611502565b6108dd565b5060019392505050565b6005546001600160a01b0316331461066c5760405162461bcd60e51b815260040161058390611ef8565b6106956106816005546001600160a01b031690565b6005546001600160a01b03166002546108dd565b60005b8381101561070d576106fa338686848181106106b6576106b6611f5b565b90506020020160208101906106cb9190611cf8565b6106d76012600a612055565b8686868181106106e9576106e9611f5b565b905060200201356102829190612064565b508061070581612083565b915050610698565b5050505050565b6005546001600160a01b0316331461073e5760405162461bcd60e51b815260040161058390611ef8565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146107b55760405162461bcd60e51b815260040161058390611ef8565b50600b805460ff19169055600190565b6005546001600160a01b031633146107ef5760405162461bcd60e51b815260040161058390611ef8565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108445760405162461bcd60e51b815260040161058390611ef8565b600b805462ffff0019166201010017905543601e55565b6060600480546104bf90611ebd565b600061054f338484610a02565b6000806108848385611f43565b9050838110156108d65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610583565b9392505050565b6001600160a01b03831661093f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610583565b6001600160a01b0382166109a05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610583565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a285760405162461bcd60e51b81526004016105839061209e565b6001600160a01b038216610a4e5760405162461bcd60e51b8152600401610583906120e3565b6001600160a01b0382166000908152600e602052604090205460ff16158015610a9057506001600160a01b0383166000908152600e602052604090205460ff16155b610af65760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610583565b80610b0c57610b078383600061153c565b505050565b600b5460ff1615610fc6576005546001600160a01b03848116911614801590610b4357506005546001600160a01b03838116911614155b8015610b5757506001600160a01b03821615155b8015610b6e57506001600160a01b03821661dead14155b8015610b845750600554600160a01b900460ff16155b15610fc657600b54610100900460ff16610c1c576001600160a01b0383166000908152601f602052604090205460ff1680610bd757506001600160a01b0382166000908152601f602052604090205460ff165b610c1c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610583565b600f5460ff1615610d63576005546001600160a01b03838116911614801590610c7757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015610cb557507f000000000000000000000000c632e2fce6591c0a98f9619ef652564ef93445d36001600160a01b0316826001600160a01b031614155b15610d6357326000908152600c60205260409020544311610d505760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610583565b326000908152600c602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015610da357506001600160a01b038216600090815260208052604090205460ff16155b15610e8757600854811115610e185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610583565b600a546001600160a01b038316600090815260208190526040902054610e3e9083611f43565b1115610e825760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610583565b610fc6565b6001600160a01b03821660009081526021602052604090205460ff168015610ec757506001600160a01b038316600090815260208052604090205460ff16155b15610f3d57600854811115610e825760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610583565b6001600160a01b038216600090815260208052604090205460ff16610fc657600a546001600160a01b038316600090815260208190526040902054610f829083611f43565b1115610fc65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610583565b601e54610fd4906001611f43565b431115801561101557507f000000000000000000000000c632e2fce6591c0a98f9619ef652564ef93445d36001600160a01b0316826001600160a01b031614155b801561103e57506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b15611067576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b7f000000000000000000000000c632e2fce6591c0a98f9619ef652564ef93445d36001600160a01b03908116908416148015816110ad5750600b546301000000900460ff165b15611156576001600160a01b0384166000908152600d6020526040902054158015906110fe57506001600160a01b0384166000908152600d602052604090205442906110fb90610e10611f43565b10155b156111375760185460168190556019546015819055601a5460178190559161112591611f43565b61112f9190611f43565b6014556111cc565b6000601681905560026015819055600360178190559161112591611f43565b6001600160a01b0383166000908152600d602052604090205461118f576001600160a01b0383166000908152600d602052604090204290555b600b546301000000900460ff166111cc57600a6016819055600060158190556017819055906111be9082611f43565b6111c89190611f43565b6014555b30600090815260208190526040902054600954811080159081906111f85750600b5462010000900460ff165b801561120e5750600554600160a01b900460ff16155b801561123357506001600160a01b03861660009081526021602052604090205460ff16155b801561125857506001600160a01b0386166000908152601f602052604090205460ff16155b801561127d57506001600160a01b0385166000908152601f602052604090205460ff16155b156112ab576005805460ff60a01b1916600160a01b17905561129d611645565b6005805460ff60a01b191690555b6005546001600160a01b0387166000908152601f602052604090205460ff600160a01b9092048216159116806112f957506001600160a01b0386166000908152601f602052604090205460ff165b15611302575060005b600081156114ed576001600160a01b03871660009081526021602052604090205460ff16801561133457506000601454115b156113f25761135960646113536014548961187f90919063ffffffff16565b906118fe565b90506014546016548261136c9190612064565b6113769190612126565b601c60008282546113879190611f43565b909155505060145460175461139c9083612064565b6113a69190612126565b601d60008282546113b79190611f43565b90915550506014546015546113cc9083612064565b6113d69190612126565b601b60008282546113e79190611f43565b909155506114cf9050565b6001600160a01b03881660009081526021602052604090205460ff16801561141c57506000601054115b156114cf5761143b60646113536010548961187f90919063ffffffff16565b90506010546012548261144e9190612064565b6114589190612126565b601c60008282546114699190611f43565b909155505060105460135461147e9083612064565b6114889190612126565b601d60008282546114999190611f43565b90915550506010546011546114ae9083612064565b6114b89190612126565b601b60008282546114c99190611f43565b90915550505b80156114e0576114e088308361153c565b6114ea8187612148565b95505b6114f888888861153c565b5050505050505050565b600081848411156115265760405162461bcd60e51b81526004016105839190611c5f565b5060006115338486612148565b95945050505050565b6001600160a01b0383166115625760405162461bcd60e51b81526004016105839061209e565b6001600160a01b0382166115885760405162461bcd60e51b8152600401610583906120e3565b6115c58160405180606001604052806026815260200161221c602691396001600160a01b0386166000908152602081905260409020549190611502565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115f49082610877565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109f5565b3060009081526020819052604081205490506000601d54601b54601c5461166c9190611f43565b6116769190611f43565b90506000821580611685575081155b1561168f57505050565b60095461169d906014612064565b8311156116b5576009546116b2906014612064565b92505b6000600283601c54866116c89190612064565b6116d29190612126565b6116dc9190612126565b905060006116ea8583611940565b9050476116f682611982565b60006117024783611940565b9050600061171f87611353601b548561187f90919063ffffffff16565b9050600061173c88611353601d548661187f90919063ffffffff16565b905060008161174b8486612148565b6117559190612148565b6000601c819055601b819055601d8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b509098505086158015906117cb5750600081115b1561181e576117da8782611b49565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461186b576040519150601f19603f3d011682016040523d82523d6000602084013e611870565b606091505b50505050505050505050505050565b60008261188e57506000610553565b600061189a8385612064565b9050826118a78583612126565b146108d65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610583565b60006108d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c31565b60006108d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611502565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119b7576119b7611f5b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a3057600080fd5b505afa158015611a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a68919061215f565b81600181518110611a7b57611a7b611f5b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ac6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108dd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b1b90859060009086903090429060040161217c565b600060405180830381600087803b158015611b3557600080fd5b505af11580156105d1573d6000803e3d6000fd5b611b74307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846108dd565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611bf857600080fd5b505af1158015611c0c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061070d91906121ed565b60008183611c525760405162461bcd60e51b81526004016105839190611c5f565b5060006115338486612126565b600060208083528351808285015260005b81811015611c8c57858101830151858201604001528201611c70565b81811115611c9e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611cc957600080fd5b50565b60008060408385031215611cdf57600080fd5b8235611cea81611cb4565b946020939093013593505050565b600060208284031215611d0a57600080fd5b81356108d681611cb4565b60008060008060008060c08789031215611d2e57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600080600060608486031215611d6d57600080fd5b8335611d7881611cb4565b92506020840135611d8881611cb4565b929592945050506040919091013590565b60008083601f840112611dab57600080fd5b50813567ffffffffffffffff811115611dc357600080fd5b6020830191508360208260051b8501011115611dde57600080fd5b9250929050565b60008060008060408587031215611dfb57600080fd5b843567ffffffffffffffff80821115611e1357600080fd5b611e1f88838901611d99565b90965094506020870135915080821115611e3857600080fd5b50611e4587828801611d99565b95989497509550505050565b60008060408385031215611e6457600080fd5b8235611e6f81611cb4565b915060208301358015158114611e8457600080fd5b809150509250929050565b60008060408385031215611ea257600080fd5b8235611ead81611cb4565b91506020830135611e8481611cb4565b600181811c90821680611ed157607f821691505b60208210811415611ef257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f5657611f56611f2d565b500190565b634e487b7160e01b600052603260045260246000fd5b600181815b80851115611fac578160001904821115611f9257611f92611f2d565b80851615611f9f57918102915b93841c9390800290611f76565b509250929050565b600082611fc357506001610553565b81611fd057506000610553565b8160018114611fe65760028114611ff05761200c565b6001915050610553565b60ff84111561200157612001611f2d565b50506001821b610553565b5060208310610133831016604e8410600b841016171561202f575081810a610553565b6120398383611f71565b806000190482111561204d5761204d611f2d565b029392505050565b60006108d660ff841683611fb4565b600081600019048311821515161561207e5761207e611f2d565b500290565b600060001982141561209757612097611f2d565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261214357634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561215a5761215a611f2d565b500390565b60006020828403121561217157600080fd5b81516108d681611cb4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121cc5784516001600160a01b0316835293830193918301916001016121a7565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561220257600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d353f759bc91e1cf6f13fe5c146bdbfd24d9b0641f1b50d9c2d3c07016cf369a64736f6c63430008090033

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.