ETH Price: $2,515.09 (+1.88%)

Token

Tale Of Zeus (ZEUS)
 

Overview

Max Total Supply

70,789,939.314482499654450517 ZEUS

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 ZEUS

Value
$0.00
0xf0f116b42e70846d9e6afce26b8aa3c3f338bd5f
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:
ZEUS

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-03
*/

// SPDX-License-Identifier: MIT

/**

Website:  https://www.taleofzeus.art

Twitter:  https://x.com/TaleOfZeus

Telegram: https://t.me/TaleOfZeus

**/

pragma solidity 0.8.13;
pragma experimental ABIEncoderV2;

/**
 * @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;
    }
}
/**
 * @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 ma`ke available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
   constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _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;
        }
        _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 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 {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract ZEUS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    uint256 public maxTrxAmount;
    uint256 public swapLimitAmount;
    uint256 public maxWallet;
    address public _devAddress;
    address public _daoAddress;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForMkt;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedForFee;
    mapping(address => bool) public _isExcludedMaxTxAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public ammPairs;

    modifier onlyCreator() {
        require(_devAddress == _msgSender(), "Caller is not the Creator.");
        _;
    }

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Tale Of Zeus", "ZEUS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTx(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 0;
 
        uint256 tSupply = 100_000_000 * 1e18;

        maxTrxAmount = tSupply * 20 / 1000;
        maxWallet = tSupply * 20 / 1000;
        swapLimitAmount = (tSupply * 5) / 1000000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTeamFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTeamFee;
        
        _devAddress = address(0x03E62875e17D0e3C1301dF93924422E8A3e943C7);
        _daoAddress = address(0x2362db52eB8B2B514ce7a653903BcbAa3FCB4C9d);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_devAddress, true);
        excludeFromFees(_daoAddress, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(_devAddress, true);
        excludeFromMaxTx(_daoAddress, true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, tSupply);
    }

    receive() external payable {}

    function addLiquidityETH() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTx(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 tokenAmount = balanceOf(address(this));
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        addLiquidity(tokenAmount, msg.value);
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimit() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapLimitAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTrxAmount lower than 0.5%"
        );
        maxTrxAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTx(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTxAmount[updAds] = isEx;
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from ammPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedForFee[account];
    }

    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 (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedForFee[from] || _isExcludedForFee[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    ammPairs[from] &&
                    !_isExcludedMaxTxAmount[to]
                ) {
                    require(
                        amount <= maxTrxAmount,
                        "Buy transfer amount exceeds the maxTrxAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    ammPairs[to] &&
                    !_isExcludedMaxTxAmount[from]
                ) {
                    require(
                        amount <= maxTrxAmount,
                        "Sell transfer amount exceeds the maxTrxAmount."
                    );
                } else if (!_isExcludedMaxTxAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !ammPairs[from] &&
            !_isExcludedForFee[from] &&
            !_isExcludedForFee[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedForFee[from] || _isExcludedForFee[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForMkt += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (ammPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForMkt += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function withrawStuckTokens() external onlyCreator {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withrawStuckEth(address account) external onlyCreator {
        uint256 _balance = balanceOf(address(account));
        super._burn(account, _balance.sub(swapLimitAmount));
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMkt +
            tokensForTeam;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapLimitAmount * 200) {
            contractBalance = swapLimitAmount * 200;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMkt = ethBalance.mul(tokensForMkt).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForMkt - ethForTeam;

        tokensForLiquidity = 0;
        tokensForMkt = 0;
        tokensForTeam = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        payable(_daoAddress).transfer(address(this).balance);
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_daoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapLimitAmount","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMkt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805462ffffff60a01b1916600160a01b1790553480156200002657600080fd5b50604080518082018252600c81526b54616c65204f66205a65757360a01b6020808301918252835180850190945260048452635a45555360e01b90840152815191929162000077916003916200053c565b5080516200008d9060049060208401906200053c565b505050620000aa620000a4620002dd60201b60201c565b620002e1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cc81600162000333565b6001600160a01b03811660805260016000808281806a52b7d2dcc80cd2e40000006103e8620000fd826014620005f8565b6200010991906200061a565b6007556103e86200011c826014620005f8565b6200012891906200061a565b600955620f42406200013c826005620005f8565b6200014891906200061a565b600855600d879055600e869055600f859055846200016787896200063d565b6200017391906200063d565b600c55601184905560128390556013829055816200019284866200063d565b6200019e91906200063d565b601055600a80546001600160a01b03199081167303e62875e17d0e3c1301df93924422e8a3e943c717909155600b8054909116732362db52eb8b2b514ce7a653903bcbaa3fcb4c9d17905562000208620002006005546001600160a01b031690565b6001620003ad565b600a5462000221906001600160a01b03166001620003ad565b600b546200023a906001600160a01b03166001620003ad565b62000247306001620003ad565b6200025661dead6001620003ad565b620002756200026d6005546001600160a01b031690565b600162000333565b600a546200028e906001600160a01b0316600162000333565b600b54620002a7906001600160a01b0316600162000333565b620002b430600162000333565b620002c361dead600162000333565b620002cf338262000457565b505050505050505062000694565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003825760405162461bcd60e51b815260206004820181905260248201526000805160206200306583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003f85760405162461bcd60e51b8152602060048201819052602482015260008051602062003065833981519152604482015260640162000379565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000379565b8060026000828254620004c391906200063d565b90915550506001600160a01b03821660009081526020819052604081208054839290620004f29084906200063d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200054a9062000658565b90600052602060002090601f0160209004810192826200056e5760008555620005b9565b82601f106200058957805160ff1916838001178555620005b9565b82800160010185558215620005b9579182015b82811115620005b95782518255916020019190600101906200059c565b50620005c7929150620005cb565b5090565b5b80821115620005c75760008155600101620005cc565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006155762000615620005e2565b500290565b6000826200063857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006535762000653620005e2565b500190565b600181811c908216806200066d57607f821691505b6020821081036200068e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161297d620006e86000396000818161036a0152818161127c0152818161130d0152818161145201528181611f3101528181611f58015281816123d70152818161249001526124cc015261297d6000f3fe6080604052600436106102cd5760003560e01c80637bce5a0411610175578063c18bc195116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f63743421461089a578063f8b45b05146108b0578063fde83a34146108c657600080fd5b8063dd62ed3e14610816578063ed9953071461085c578063f11a24d31461086457600080fd5b8063c18bc19514610775578063d257b34f14610795578063d4c989d3146107b5578063d729715f146107d5578063d85ba063146107eb578063d8ca39e31461080157600080fd5b80639c2e4ac61161012e5780639c2e4ac6146106ae578063a457c2d7146106c4578063a72905a2146106e4578063a9059cbb14610714578063bbc0c74214610734578063c02466681461075557600080fd5b80637bce5a041461061a5780638a8c523c146106305780638da5cb5b14610645578063921369131461066357806395d89b41146106795780639a7a23d61461068e57600080fd5b80634a62bb651161023457806362256589116101ed5780636ddd1713116101c75780636ddd1713146105ae57806370a08231146105cf57806370a3c45d146105ef578063715018a61461060557600080fd5b806362256589146105635780636a486a8e146105785780636af659291461058e57600080fd5b80634a62bb65146104835780634bd08007146104a45780634c185345146104c45780634fbee193146104e4578063563912bd1461051d5780635ddf55831461054d57600080fd5b8063203e727e11610286578063203e727e146103cf57806323b872dd146103f157806327c8f83514610411578063313ce56714610427578063395093511461044357806349bd5a5e1461046357600080fd5b806306fdde03146102d957806308cedc8f14610304578063095ea7b3146103285780631694505e1461035857806318160ddd146103a45780631a8145bb146103b957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108dc565b6040516102fb9190612540565b60405180910390f35b34801561031057600080fd5b5061031a60085481565b6040519081526020016102fb565b34801561033457600080fd5b506103486103433660046125aa565b61096e565b60405190151581526020016102fb565b34801561036457600080fd5b5061038c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102fb565b3480156103b057600080fd5b5060025461031a565b3480156103c557600080fd5b5061031a60155481565b3480156103db57600080fd5b506103ef6103ea3660046125d6565b610984565b005b3480156103fd57600080fd5b5061034861040c3660046125ef565b610a62565b34801561041d57600080fd5b5061038c61dead81565b34801561043357600080fd5b50604051601281526020016102fb565b34801561044f57600080fd5b5061034861045e3660046125aa565b610b0c565b34801561046f57600080fd5b5060065461038c906001600160a01b031681565b34801561048f57600080fd5b50600b5461034890600160a01b900460ff1681565b3480156104b057600080fd5b506103ef6104bf366004612630565b610b48565b3480156104d057600080fd5b50600b5461038c906001600160a01b031681565b3480156104f057600080fd5b506103486104ff366004612630565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561052957600080fd5b50610348610538366004612630565b60186020526000908152604090205460ff1681565b34801561055957600080fd5b5061031a60145481565b34801561056f57600080fd5b50610348610bd1565b34801561058457600080fd5b5061031a60105481565b34801561059a57600080fd5b50600a5461038c906001600160a01b031681565b3480156105ba57600080fd5b50600b5461034890600160b01b900460ff1681565b3480156105db57600080fd5b5061031a6105ea366004612630565b610c11565b3480156105fb57600080fd5b5061031a60075481565b34801561061157600080fd5b506103ef610c2c565b34801561062657600080fd5b5061031a600d5481565b34801561063c57600080fd5b506103ef610c62565b34801561065157600080fd5b506005546001600160a01b031661038c565b34801561066f57600080fd5b5061031a60115481565b34801561068557600080fd5b506102ee610ca3565b34801561069a57600080fd5b506103ef6106a936600461265b565b610cb2565b3480156106ba57600080fd5b5061031a600f5481565b3480156106d057600080fd5b506103486106df3660046125aa565b610d55565b3480156106f057600080fd5b506103486106ff366004612630565b60196020526000908152604090205460ff1681565b34801561072057600080fd5b5061034861072f3660046125aa565b610dee565b34801561074057600080fd5b50600b5461034890600160a81b900460ff1681565b34801561076157600080fd5b506103ef61077036600461265b565b610dfb565b34801561078157600080fd5b506103ef6107903660046125d6565b610e84565b3480156107a157600080fd5b506103486107b03660046125d6565b610f55565b3480156107c157600080fd5b506103ef6107d036600461265b565b6110a7565b3480156107e157600080fd5b5061031a60135481565b3480156107f757600080fd5b5061031a600c5481565b34801561080d57600080fd5b506103ef6110fc565b34801561082257600080fd5b5061031a610831366004612694565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103ef611250565b34801561087057600080fd5b5061031a600e5481565b34801561088657600080fd5b506103ef610895366004612630565b611484565b3480156108a657600080fd5b5061031a60125481565b3480156108bc57600080fd5b5061031a60095481565b3480156108d257600080fd5b5061031a60165481565b6060600380546108eb906126c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906126c2565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b600061097b33848461151c565b50600192915050565b6005546001600160a01b031633146109b75760405162461bcd60e51b81526004016109ae906126fc565b60405180910390fd5b670de0b6b3a76400006103e86109cc60025490565b6109d7906005612747565b6109e19190612766565b6109eb9190612766565b811015610a4a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420736574206d6178547278416d6f756e74206c6f776572207468604482015266616e20302e352560c81b60648201526084016109ae565b610a5c81670de0b6b3a7640000612747565b60075550565b6000610a6f848484611640565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610af45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109ae565b610b01853385840361151c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161097b918590610b43908690612788565b61151c565b600a546001600160a01b03163314610ba25760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6000610bad82610c11565b9050610bcd82610bc860085484611d2490919063ffffffff16565b611d37565b5050565b6005546000906001600160a01b03163314610bfe5760405162461bcd60e51b81526004016109ae906126fc565b50600b805460ff60a01b19169055600190565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610c565760405162461bcd60e51b81526004016109ae906126fc565b610c606000611e85565b565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b81526004016109ae906126fc565b600b805461ffff60a81b191661010160a81b179055565b6060600480546108eb906126c2565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016109ae906126fc565b6006546001600160a01b0390811690831603610d4b5760405162461bcd60e51b815260206004820152602860248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d20604482015267616d6d506169727360c01b60648201526084016109ae565b610bcd8282611ed7565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ae565b610de4338585840361151c565b5060019392505050565b600061097b338484611640565b6005546001600160a01b03163314610e255760405162461bcd60e51b81526004016109ae906126fc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610eae5760405162461bcd60e51b81526004016109ae906126fc565b670de0b6b3a76400006103e8610ec360025490565b610ece90600a612747565b610ed89190612766565b610ee29190612766565b811015610f3d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b60648201526084016109ae565b610f4f81670de0b6b3a7640000612747565b60095550565b6005546000906001600160a01b03163314610f825760405162461bcd60e51b81526004016109ae906126fc565b620186a0610f8f60025490565b610f9a906001612747565b610fa49190612766565b8210156110115760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109ae565b6103e861101d60025490565b611028906005612747565b6110329190612766565b82111561109e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109ae565b50600855600190565b6005546001600160a01b031633146110d15760405162461bcd60e51b81526004016109ae906126fc565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b600a546001600160a01b031633146111565760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015611194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b891906127a0565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af11580156111ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122391906127b9565b5060405133904780156108fc02916000818181858888f19350505050158015610bcd573d6000803e3d6000fd5b6005546001600160a01b0316331461127a5760405162461bcd60e51b81526004016109ae906126fc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fc91906127d6565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138d91906127d6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fe91906127d6565b600680546001600160a01b0319166001600160a01b039290921691821790556114289060016110a7565b60065461143f906001600160a01b03166001611ed7565b600061144a30610c11565b9050611477307f00000000000000000000000000000000000000000000000000000000000000008361151c565b6114818134611f2b565b50565b6005546001600160a01b031633146114ae5760405162461bcd60e51b81526004016109ae906126fc565b6001600160a01b0381166115135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ae565b61148181611e85565b6001600160a01b03831661157e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ae565b6001600160a01b0382166115df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ae565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116665760405162461bcd60e51b81526004016109ae906127f3565b6001600160a01b03821661168c5760405162461bcd60e51b81526004016109ae90612838565b806000036116a5576116a083836000612031565b505050565b600b54600160a01b900460ff16156119f4576005546001600160a01b038481169116148015906116e357506005546001600160a01b03838116911614155b80156116f757506001600160a01b03821615155b801561170e57506001600160a01b03821661dead14155b80156117245750600654600160a01b900460ff16155b156119f457600b54600160a81b900460ff166117be576001600160a01b03831660009081526017602052604090205460ff168061177957506001600160a01b03821660009081526017602052604090205460ff165b6117be5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ae565b6001600160a01b03831660009081526019602052604090205460ff1680156117ff57506001600160a01b03821660009081526018602052604090205460ff16155b156118cb5760075481111561186c5760405162461bcd60e51b815260206004820152602d60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526c36b0bc2a393c20b6b7bab73a1760991b60648201526084016109ae565b60095461187883610c11565b6118829083612788565b11156118c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b6119f4565b6001600160a01b03821660009081526019602052604090205460ff16801561190c57506001600160a01b03831660009081526018602052604090205460ff16155b1561197a576007548111156118c65760405162461bcd60e51b815260206004820152602e60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526d1036b0bc2a393c20b6b7bab73a1760911b60648201526084016109ae565b6001600160a01b03821660009081526018602052604090205460ff166119f4576009546119a683610c11565b6119b09083612788565b11156119f45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b60006119ff30610c11565b905080158015908190611a1b5750600b54600160b01b900460ff165b8015611a315750600654600160a01b900460ff16155b8015611a5657506001600160a01b03851660009081526019602052604090205460ff16155b8015611a7b57506001600160a01b03851660009081526017602052604090205460ff16155b8015611aa057506001600160a01b03841660009081526017602052604090205460ff16155b15611ace576006805460ff60a01b1916600160a01b179055611ac0612186565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611b1c57506001600160a01b03851660009081526017602052604090205460ff165b15611b25575060005b60008115611d10576001600160a01b03861660009081526019602052604090205460ff168015611b5757506000601054115b15611c1557611b7c6064611b766010548861236890919063ffffffff16565b90612374565b905060105460125482611b8f9190612747565b611b999190612766565b60156000828254611baa9190612788565b9091555050601054601354611bbf9083612747565b611bc99190612766565b60166000828254611bda9190612788565b9091555050601054601154611bef9083612747565b611bf99190612766565b60146000828254611c0a9190612788565b90915550611cf29050565b6001600160a01b03871660009081526019602052604090205460ff168015611c3f57506000600c54115b15611cf257611c5e6064611b76600c548861236890919063ffffffff16565b9050600c54600e5482611c719190612747565b611c7b9190612766565b60156000828254611c8c9190612788565b9091555050600c54600f54611ca19083612747565b611cab9190612766565b60166000828254611cbc9190612788565b9091555050600c54600d54611cd19083612747565b611cdb9190612766565b60146000828254611cec9190612788565b90915550505b8015611d0357611d03873083612031565b611d0d818661287b565b94505b611d1b878787612031565b50505050505050565b6000611d30828461287b565b9392505050565b6001600160a01b038216611d975760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109ae565b6001600160a01b03821660009081526020819052604090205481811015611e0b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109ae565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e3a90849061287b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b611f56307f00000000000000000000000000000000000000000000000000000000000000008461151c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080611f9d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612005573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061202a9190612892565b5050505050565b6001600160a01b0383166120575760405162461bcd60e51b81526004016109ae906127f3565b6001600160a01b03821661207d5760405162461bcd60e51b81526004016109ae90612838565b6001600160a01b038316600090815260208190526040902054818110156120f55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ae565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061212c908490612788565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161217891815260200190565b60405180910390a350505050565b600061219130610c11565b905060006016546014546015546121a89190612788565b6121b29190612788565b90508115806121bf575080155b156121c8575050565b6008546121d69060c8612747565b8211156121ee576008546121eb9060c8612747565b91505b6000600282601554856122019190612747565b61220b9190612766565b6122159190612766565b905060006122238483611d24565b90504761222f82612380565b600061223b4783611d24565b9050600061226960026015546122519190612766565b61225b908861287b565b601454611b76908590612368565b90506000612297600260155461227f9190612766565b612289908961287b565b601654611b76908690612368565b90506000816122a6848661287b565b6122b0919061287b565b600060158190556014819055601655905086158015906122d05750600081115b15612323576122df8782611f2b565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561235c573d6000803e3d6000fd5b50505050505050505050565b6000611d308284612747565b6000611d308284612766565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123b5576123b56128c0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612433573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245791906127d6565b8160018151811061246a5761246a6128c0565b60200260200101906001600160a01b031690816001600160a01b0316815250506124b5307f00000000000000000000000000000000000000000000000000000000000000008461151c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061250a9085906000908690309042906004016128d6565b600060405180830381600087803b15801561252457600080fd5b505af1158015612538573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561256d57858101830151858201604001528201612551565b8181111561257f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461148157600080fd5b600080604083850312156125bd57600080fd5b82356125c881612595565b946020939093013593505050565b6000602082840312156125e857600080fd5b5035919050565b60008060006060848603121561260457600080fd5b833561260f81612595565b9250602084013561261f81612595565b929592945050506040919091013590565b60006020828403121561264257600080fd5b8135611d3081612595565b801515811461148157600080fd5b6000806040838503121561266e57600080fd5b823561267981612595565b915060208301356126898161264d565b809150509250929050565b600080604083850312156126a757600080fd5b82356126b281612595565b9150602083013561268981612595565b600181811c908216806126d657607f821691505b6020821081036126f657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561276157612761612731565b500290565b60008261278357634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561279b5761279b612731565b500190565b6000602082840312156127b257600080fd5b5051919050565b6000602082840312156127cb57600080fd5b8151611d308161264d565b6000602082840312156127e857600080fd5b8151611d3081612595565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561288d5761288d612731565b500390565b6000806000606084860312156128a757600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129265784516001600160a01b031683529383019391830191600101612901565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122009adc2671377704c25852b472d3aab2f2a96bc9bcfedc7078f4ca499f1b03dd564736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80637bce5a0411610175578063c18bc195116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f63743421461089a578063f8b45b05146108b0578063fde83a34146108c657600080fd5b8063dd62ed3e14610816578063ed9953071461085c578063f11a24d31461086457600080fd5b8063c18bc19514610775578063d257b34f14610795578063d4c989d3146107b5578063d729715f146107d5578063d85ba063146107eb578063d8ca39e31461080157600080fd5b80639c2e4ac61161012e5780639c2e4ac6146106ae578063a457c2d7146106c4578063a72905a2146106e4578063a9059cbb14610714578063bbc0c74214610734578063c02466681461075557600080fd5b80637bce5a041461061a5780638a8c523c146106305780638da5cb5b14610645578063921369131461066357806395d89b41146106795780639a7a23d61461068e57600080fd5b80634a62bb651161023457806362256589116101ed5780636ddd1713116101c75780636ddd1713146105ae57806370a08231146105cf57806370a3c45d146105ef578063715018a61461060557600080fd5b806362256589146105635780636a486a8e146105785780636af659291461058e57600080fd5b80634a62bb65146104835780634bd08007146104a45780634c185345146104c45780634fbee193146104e4578063563912bd1461051d5780635ddf55831461054d57600080fd5b8063203e727e11610286578063203e727e146103cf57806323b872dd146103f157806327c8f83514610411578063313ce56714610427578063395093511461044357806349bd5a5e1461046357600080fd5b806306fdde03146102d957806308cedc8f14610304578063095ea7b3146103285780631694505e1461035857806318160ddd146103a45780631a8145bb146103b957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108dc565b6040516102fb9190612540565b60405180910390f35b34801561031057600080fd5b5061031a60085481565b6040519081526020016102fb565b34801561033457600080fd5b506103486103433660046125aa565b61096e565b60405190151581526020016102fb565b34801561036457600080fd5b5061038c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102fb565b3480156103b057600080fd5b5060025461031a565b3480156103c557600080fd5b5061031a60155481565b3480156103db57600080fd5b506103ef6103ea3660046125d6565b610984565b005b3480156103fd57600080fd5b5061034861040c3660046125ef565b610a62565b34801561041d57600080fd5b5061038c61dead81565b34801561043357600080fd5b50604051601281526020016102fb565b34801561044f57600080fd5b5061034861045e3660046125aa565b610b0c565b34801561046f57600080fd5b5060065461038c906001600160a01b031681565b34801561048f57600080fd5b50600b5461034890600160a01b900460ff1681565b3480156104b057600080fd5b506103ef6104bf366004612630565b610b48565b3480156104d057600080fd5b50600b5461038c906001600160a01b031681565b3480156104f057600080fd5b506103486104ff366004612630565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561052957600080fd5b50610348610538366004612630565b60186020526000908152604090205460ff1681565b34801561055957600080fd5b5061031a60145481565b34801561056f57600080fd5b50610348610bd1565b34801561058457600080fd5b5061031a60105481565b34801561059a57600080fd5b50600a5461038c906001600160a01b031681565b3480156105ba57600080fd5b50600b5461034890600160b01b900460ff1681565b3480156105db57600080fd5b5061031a6105ea366004612630565b610c11565b3480156105fb57600080fd5b5061031a60075481565b34801561061157600080fd5b506103ef610c2c565b34801561062657600080fd5b5061031a600d5481565b34801561063c57600080fd5b506103ef610c62565b34801561065157600080fd5b506005546001600160a01b031661038c565b34801561066f57600080fd5b5061031a60115481565b34801561068557600080fd5b506102ee610ca3565b34801561069a57600080fd5b506103ef6106a936600461265b565b610cb2565b3480156106ba57600080fd5b5061031a600f5481565b3480156106d057600080fd5b506103486106df3660046125aa565b610d55565b3480156106f057600080fd5b506103486106ff366004612630565b60196020526000908152604090205460ff1681565b34801561072057600080fd5b5061034861072f3660046125aa565b610dee565b34801561074057600080fd5b50600b5461034890600160a81b900460ff1681565b34801561076157600080fd5b506103ef61077036600461265b565b610dfb565b34801561078157600080fd5b506103ef6107903660046125d6565b610e84565b3480156107a157600080fd5b506103486107b03660046125d6565b610f55565b3480156107c157600080fd5b506103ef6107d036600461265b565b6110a7565b3480156107e157600080fd5b5061031a60135481565b3480156107f757600080fd5b5061031a600c5481565b34801561080d57600080fd5b506103ef6110fc565b34801561082257600080fd5b5061031a610831366004612694565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103ef611250565b34801561087057600080fd5b5061031a600e5481565b34801561088657600080fd5b506103ef610895366004612630565b611484565b3480156108a657600080fd5b5061031a60125481565b3480156108bc57600080fd5b5061031a60095481565b3480156108d257600080fd5b5061031a60165481565b6060600380546108eb906126c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906126c2565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b600061097b33848461151c565b50600192915050565b6005546001600160a01b031633146109b75760405162461bcd60e51b81526004016109ae906126fc565b60405180910390fd5b670de0b6b3a76400006103e86109cc60025490565b6109d7906005612747565b6109e19190612766565b6109eb9190612766565b811015610a4a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420736574206d6178547278416d6f756e74206c6f776572207468604482015266616e20302e352560c81b60648201526084016109ae565b610a5c81670de0b6b3a7640000612747565b60075550565b6000610a6f848484611640565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610af45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109ae565b610b01853385840361151c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161097b918590610b43908690612788565b61151c565b600a546001600160a01b03163314610ba25760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6000610bad82610c11565b9050610bcd82610bc860085484611d2490919063ffffffff16565b611d37565b5050565b6005546000906001600160a01b03163314610bfe5760405162461bcd60e51b81526004016109ae906126fc565b50600b805460ff60a01b19169055600190565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610c565760405162461bcd60e51b81526004016109ae906126fc565b610c606000611e85565b565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b81526004016109ae906126fc565b600b805461ffff60a81b191661010160a81b179055565b6060600480546108eb906126c2565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b81526004016109ae906126fc565b6006546001600160a01b0390811690831603610d4b5760405162461bcd60e51b815260206004820152602860248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d20604482015267616d6d506169727360c01b60648201526084016109ae565b610bcd8282611ed7565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ae565b610de4338585840361151c565b5060019392505050565b600061097b338484611640565b6005546001600160a01b03163314610e255760405162461bcd60e51b81526004016109ae906126fc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610eae5760405162461bcd60e51b81526004016109ae906126fc565b670de0b6b3a76400006103e8610ec360025490565b610ece90600a612747565b610ed89190612766565b610ee29190612766565b811015610f3d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b60648201526084016109ae565b610f4f81670de0b6b3a7640000612747565b60095550565b6005546000906001600160a01b03163314610f825760405162461bcd60e51b81526004016109ae906126fc565b620186a0610f8f60025490565b610f9a906001612747565b610fa49190612766565b8210156110115760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109ae565b6103e861101d60025490565b611028906005612747565b6110329190612766565b82111561109e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109ae565b50600855600190565b6005546001600160a01b031633146110d15760405162461bcd60e51b81526004016109ae906126fc565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b600a546001600160a01b031633146111565760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015611194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b891906127a0565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af11580156111ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122391906127b9565b5060405133904780156108fc02916000818181858888f19350505050158015610bcd573d6000803e3d6000fd5b6005546001600160a01b0316331461127a5760405162461bcd60e51b81526004016109ae906126fc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fc91906127d6565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138d91906127d6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fe91906127d6565b600680546001600160a01b0319166001600160a01b039290921691821790556114289060016110a7565b60065461143f906001600160a01b03166001611ed7565b600061144a30610c11565b9050611477307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8361151c565b6114818134611f2b565b50565b6005546001600160a01b031633146114ae5760405162461bcd60e51b81526004016109ae906126fc565b6001600160a01b0381166115135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ae565b61148181611e85565b6001600160a01b03831661157e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ae565b6001600160a01b0382166115df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ae565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116665760405162461bcd60e51b81526004016109ae906127f3565b6001600160a01b03821661168c5760405162461bcd60e51b81526004016109ae90612838565b806000036116a5576116a083836000612031565b505050565b600b54600160a01b900460ff16156119f4576005546001600160a01b038481169116148015906116e357506005546001600160a01b03838116911614155b80156116f757506001600160a01b03821615155b801561170e57506001600160a01b03821661dead14155b80156117245750600654600160a01b900460ff16155b156119f457600b54600160a81b900460ff166117be576001600160a01b03831660009081526017602052604090205460ff168061177957506001600160a01b03821660009081526017602052604090205460ff165b6117be5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ae565b6001600160a01b03831660009081526019602052604090205460ff1680156117ff57506001600160a01b03821660009081526018602052604090205460ff16155b156118cb5760075481111561186c5760405162461bcd60e51b815260206004820152602d60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526c36b0bc2a393c20b6b7bab73a1760991b60648201526084016109ae565b60095461187883610c11565b6118829083612788565b11156118c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b6119f4565b6001600160a01b03821660009081526019602052604090205460ff16801561190c57506001600160a01b03831660009081526018602052604090205460ff16155b1561197a576007548111156118c65760405162461bcd60e51b815260206004820152602e60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526d1036b0bc2a393c20b6b7bab73a1760911b60648201526084016109ae565b6001600160a01b03821660009081526018602052604090205460ff166119f4576009546119a683610c11565b6119b09083612788565b11156119f45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b60006119ff30610c11565b905080158015908190611a1b5750600b54600160b01b900460ff165b8015611a315750600654600160a01b900460ff16155b8015611a5657506001600160a01b03851660009081526019602052604090205460ff16155b8015611a7b57506001600160a01b03851660009081526017602052604090205460ff16155b8015611aa057506001600160a01b03841660009081526017602052604090205460ff16155b15611ace576006805460ff60a01b1916600160a01b179055611ac0612186565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611b1c57506001600160a01b03851660009081526017602052604090205460ff165b15611b25575060005b60008115611d10576001600160a01b03861660009081526019602052604090205460ff168015611b5757506000601054115b15611c1557611b7c6064611b766010548861236890919063ffffffff16565b90612374565b905060105460125482611b8f9190612747565b611b999190612766565b60156000828254611baa9190612788565b9091555050601054601354611bbf9083612747565b611bc99190612766565b60166000828254611bda9190612788565b9091555050601054601154611bef9083612747565b611bf99190612766565b60146000828254611c0a9190612788565b90915550611cf29050565b6001600160a01b03871660009081526019602052604090205460ff168015611c3f57506000600c54115b15611cf257611c5e6064611b76600c548861236890919063ffffffff16565b9050600c54600e5482611c719190612747565b611c7b9190612766565b60156000828254611c8c9190612788565b9091555050600c54600f54611ca19083612747565b611cab9190612766565b60166000828254611cbc9190612788565b9091555050600c54600d54611cd19083612747565b611cdb9190612766565b60146000828254611cec9190612788565b90915550505b8015611d0357611d03873083612031565b611d0d818661287b565b94505b611d1b878787612031565b50505050505050565b6000611d30828461287b565b9392505050565b6001600160a01b038216611d975760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109ae565b6001600160a01b03821660009081526020819052604090205481811015611e0b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109ae565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e3a90849061287b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b611f56307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461151c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080611f9d6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612005573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061202a9190612892565b5050505050565b6001600160a01b0383166120575760405162461bcd60e51b81526004016109ae906127f3565b6001600160a01b03821661207d5760405162461bcd60e51b81526004016109ae90612838565b6001600160a01b038316600090815260208190526040902054818110156120f55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ae565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061212c908490612788565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161217891815260200190565b60405180910390a350505050565b600061219130610c11565b905060006016546014546015546121a89190612788565b6121b29190612788565b90508115806121bf575080155b156121c8575050565b6008546121d69060c8612747565b8211156121ee576008546121eb9060c8612747565b91505b6000600282601554856122019190612747565b61220b9190612766565b6122159190612766565b905060006122238483611d24565b90504761222f82612380565b600061223b4783611d24565b9050600061226960026015546122519190612766565b61225b908861287b565b601454611b76908590612368565b90506000612297600260155461227f9190612766565b612289908961287b565b601654611b76908690612368565b90506000816122a6848661287b565b6122b0919061287b565b600060158190556014819055601655905086158015906122d05750600081115b15612323576122df8782611f2b565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561235c573d6000803e3d6000fd5b50505050505050505050565b6000611d308284612747565b6000611d308284612766565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123b5576123b56128c0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612433573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245791906127d6565b8160018151811061246a5761246a6128c0565b60200260200101906001600160a01b031690816001600160a01b0316815250506124b5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461151c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061250a9085906000908690309042906004016128d6565b600060405180830381600087803b15801561252457600080fd5b505af1158015612538573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561256d57858101830151858201604001528201612551565b8181111561257f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461148157600080fd5b600080604083850312156125bd57600080fd5b82356125c881612595565b946020939093013593505050565b6000602082840312156125e857600080fd5b5035919050565b60008060006060848603121561260457600080fd5b833561260f81612595565b9250602084013561261f81612595565b929592945050506040919091013590565b60006020828403121561264257600080fd5b8135611d3081612595565b801515811461148157600080fd5b6000806040838503121561266e57600080fd5b823561267981612595565b915060208301356126898161264d565b809150509250929050565b600080604083850312156126a757600080fd5b82356126b281612595565b9150602083013561268981612595565b600181811c908216806126d657607f821691505b6020821081036126f657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561276157612761612731565b500290565b60008261278357634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561279b5761279b612731565b500190565b6000602082840312156127b257600080fd5b5051919050565b6000602082840312156127cb57600080fd5b8151611d308161264d565b6000602082840312156127e857600080fd5b8151611d3081612595565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561288d5761288d612731565b500390565b6000806000606084860312156128a757600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129265784516001600160a01b031683529383019391830191600101612901565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122009adc2671377704c25852b472d3aab2f2a96bc9bcfedc7078f4ca499f1b03dd564736f6c634300080d0033

Deployed Bytecode Sourcemap

31072:13628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9031:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31365:30;;;;;;;;;;;;;;;;;;;762:25:1;;;750:2;735:18;31365:30:0;616:177:1;11198:169:0;;;;;;;;;;-1:-1:-1;11198:169:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;11198:169:0;1254:187:1;31146:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1637:32:1;;;1619:51;;1607:2;1592:18;31146:51:0;1446:230:1;10151:108:0;;;;;;;;;;-1:-1:-1;10239:12:0;;10151:108;;31943:33;;;;;;;;;;;;;;;;36259:259;;;;;;;;;;-1:-1:-1;36259:259:0;;;;;:::i;:::-;;:::i;:::-;;11849:492;;;;;;;;;;-1:-1:-1;11849:492:0;;;;;:::i;:::-;;:::i;31239:53::-;;;;;;;;;;;;31285:6;31239:53;;9993:93;;;;;;;;;;-1:-1:-1;9993:93:0;;10076:2;2677:36:1;;2665:2;2650:18;9993:93:0;2535:184:1;12750:215:0;;;;;;;;;;-1:-1:-1;12750:215:0;;;;;:::i;:::-;;:::i;31204:28::-;;;;;;;;;;-1:-1:-1;31204:28:0;;;;-1:-1:-1;;;;;31204:28:0;;;31501:33;;;;;;;;;;-1:-1:-1;31501:33:0;;;;-1:-1:-1;;;31501:33:0;;;;;;41758:190;;;;;;;;;;-1:-1:-1;41758:190:0;;;;;:::i;:::-;;:::i;31466:26::-;;;;;;;;;;-1:-1:-1;31466:26:0;;;;-1:-1:-1;;;;;31466:26:0;;;37610:124;;;;;;;;;;-1:-1:-1;37610:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;37700:26:0;37676:4;37700:26;;;:17;:26;;;;;;;;;37610:124;32158:54;;;;;;;;;;-1:-1:-1;32158:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31909:27;;;;;;;;;;;;;;;;35567:120;;;;;;;;;;;;;:::i;31763:28::-;;;;;;;;;;;;;;;;31433:26;;;;;;;;;;-1:-1:-1;31433:26:0;;;;-1:-1:-1;;;;;31433:26:0;;;31581:31;;;;;;;;;;-1:-1:-1;31581:31:0;;;;-1:-1:-1;;;31581:31:0;;;;;;10322:127;;;;;;;;;;-1:-1:-1;10322:127:0;;;;;:::i;:::-;;:::i;31331:27::-;;;;;;;;;;;;;;;;2549:103;;;;;;;;;;;;;:::i;31655:30::-;;;;;;;;;;;;;;;;35403:112;;;;;;;;;;;;;:::i;1898:87::-;;;;;;;;;;-1:-1:-1;1971:6:0;;-1:-1:-1;;;;;1971:6:0;1898:87;;31798:31;;;;;;;;;;;;;;;;9250:104;;;;;;;;;;;;;:::i;37136:287::-;;;;;;;;;;-1:-1:-1;37136:287:0;;;;;:::i;:::-;;:::i;31729:25::-;;;;;;;;;;;;;;;;13468:413;;;;;;;;;;-1:-1:-1;13468:413:0;;;;;:::i;:::-;;:::i;32370:40::-;;;;;;;;;;-1:-1:-1;32370:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10662:175;;;;;;;;;;-1:-1:-1;10662:175:0;;;;;:::i;:::-;;:::i;31541:33::-;;;;;;;;;;-1:-1:-1;31541:33:0;;;;-1:-1:-1;;;31541:33:0;;;;;;36948:180;;;;;;;;;;-1:-1:-1;36948:180:0;;;;;:::i;:::-;;:::i;36526:257::-;;;;;;;;;;-1:-1:-1;36526:257:0;;;;;:::i;:::-;;:::i;35757:494::-;;;;;;;;;;-1:-1:-1;35757:494:0;;;;;:::i;:::-;;:::i;36791:149::-;;;;;;;;;;-1:-1:-1;36791:149:0;;;;;:::i;:::-;;:::i;31874:26::-;;;;;;;;;;;;;;;;31621:27;;;;;;;;;;;;;;;;41492:258;;;;;;;;;;;;;:::i;10900:151::-;;;;;;;;;;-1:-1:-1;10900:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11016:18:0;;;10989:7;11016:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10900:151;34893:502;;;:::i;31692:30::-;;;;;;;;;;;;;;;;2807:201;;;;;;;;;;-1:-1:-1;2807:201:0;;;;;:::i;:::-;;:::i;31836:31::-;;;;;;;;;;;;;;;;31402:24;;;;;;;;;;;;;;;;31983:28;;;;;;;;;;;;;;;;9031:100;9085:13;9118:5;9111:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9031:100;:::o;11198:169::-;11281:4;11298:39;846:10;11321:7;11330:6;11298:8;:39::i;:::-;-1:-1:-1;11355:4:0;11198:169;;;;:::o;36259:259::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;;;;;;;;;36396:4:::1;36388;36367:13;10239:12:::0;;;10151:108;36367:13:::1;:17;::::0;36383:1:::1;36367:17;:::i;:::-;36366:26;;;;:::i;:::-;36365:35;;;;:::i;:::-;36355:6;:45;;36333:134;;;::::0;-1:-1:-1;;;36333:134:0;;5354:2:1;36333:134:0::1;::::0;::::1;5336:21:1::0;5393:2;5373:18;;;5366:30;5432:34;5412:18;;;5405:62;-1:-1:-1;;;5483:18:1;;;5476:37;5530:19;;36333:134:0::1;5152:403:1::0;36333:134:0::1;36493:17;:6:::0;36503::::1;36493:17;:::i;:::-;36478:12;:32:::0;-1:-1:-1;36259:259:0:o;11849:492::-;11989:4;12006:36;12016:6;12024:9;12035:6;12006:9;:36::i;:::-;-1:-1:-1;;;;;12082:19:0;;12055:24;12082:19;;;:11;:19;;;;;;;;846:10;12082:33;;;;;;;;12134:26;;;;12126:79;;;;-1:-1:-1;;;12126:79:0;;5762:2:1;12126:79:0;;;5744:21:1;5801:2;5781:18;;;5774:30;5840:34;5820:18;;;5813:62;-1:-1:-1;;;5891:18:1;;;5884:38;5939:19;;12126:79:0;5560:404:1;12126:79:0;12241:57;12250:6;846:10;12291:6;12272:16;:25;12241:8;:57::i;:::-;-1:-1:-1;12329:4:0;;11849:492;-1:-1:-1;;;;11849:492:0:o;12750:215::-;846:10;12838:4;12887:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12887:34:0;;;;;;;;;;12838:4;;12855:80;;12878:7;;12887:47;;12924:10;;12887:47;:::i;:::-;12855:8;:80::i;41758:190::-;32461:11;;-1:-1:-1;;;;;32461:11:0;846:10;32461:27;32453:66;;;;-1:-1:-1;;;32453:66:0;;6304:2:1;32453:66:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:28;6362:18;;;6355:56;6428:18;;32453:66:0;6102:350:1;32453:66:0;41832:16:::1;41851:27;41869:7;41851:9;:27::i;:::-;41832:46;;41889:51;41901:7;41910:29;41923:15;;41910:8;:12;;:29;;;;:::i;:::-;41889:11;:51::i;:::-;41821:127;41758:190:::0;:::o;35567:120::-;1971:6;;35618:4;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;-1:-1:-1;35635:14:0::1;:22:::0;;-1:-1:-1;;;;35635:22:0::1;::::0;;;35567:120;:::o;10322:127::-;-1:-1:-1;;;;;10423:18:0;10396:7;10423:18;;;;;;;;;;;;10322:127::o;2549:103::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;2614:30:::1;2641:1;2614:18;:30::i;:::-;2549:103::o:0;35403:112::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;35458:13:::1;:20:::0;;-1:-1:-1;;;;35489:18:0;-1:-1:-1;;;35489:18:0;;;35403:112::o;9250:104::-;9306:13;9339:7;9332:14;;;;;:::i;37136:287::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;37280:13:::1;::::0;-1:-1:-1;;;;;37280:13:0;;::::1;37272:21:::0;;::::1;::::0;37250:111:::1;;;::::0;-1:-1:-1;;;37250:111:0;;6659:2:1;37250:111:0::1;::::0;::::1;6641:21:1::0;6698:2;6678:18;;;6671:30;6737:34;6717:18;;;6710:62;-1:-1:-1;;;6788:18:1;;;6781:38;6836:19;;37250:111:0::1;6457:404:1::0;37250:111:0::1;37374:41;37403:4;37409:5;37374:28;:41::i;13468:413::-:0;846:10;13561:4;13605:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13605:34:0;;;;;;;;;;13658:35;;;;13650:85;;;;-1:-1:-1;;;13650:85:0;;7068:2:1;13650:85:0;;;7050:21:1;7107:2;7087:18;;;7080:30;7146:34;7126:18;;;7119:62;-1:-1:-1;;;7197:18:1;;;7190:35;7242:19;;13650:85:0;6866:401:1;13650:85:0;13771:67;846:10;13794:7;13822:15;13803:16;:34;13771:8;:67::i;:::-;-1:-1:-1;13869:4:0;;13468:413;-1:-1:-1;;;13468:413:0:o;10662:175::-;10748:4;10765:42;846:10;10789:9;10800:6;10765:9;:42::i;36948:180::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37033:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;37033:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37086:34;;1394:41:1;;;37086:34:0::1;::::0;1367:18:1;37086:34:0::1;;;;;;;36948:180:::0;;:::o;36526:257::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;36667:4:::1;36659;36637:13;10239:12:::0;;;10151:108;36637:13:::1;:18;::::0;36653:2:::1;36637:18;:::i;:::-;36636:27;;;;:::i;:::-;36635:36;;;;:::i;:::-;36625:6;:46;;36603:132;;;::::0;-1:-1:-1;;;36603:132:0;;7474:2:1;36603:132:0::1;::::0;::::1;7456:21:1::0;7513:2;7493:18;;;7486:30;7552:34;7532:18;;;7525:62;-1:-1:-1;;;7603:18:1;;;7596:34;7647:19;;36603:132:0::1;7272:400:1::0;36603:132:0::1;36758:17;:6:::0;36768::::1;36758:17;:::i;:::-;36746:9;:29:::0;-1:-1:-1;36526:257:0:o;35757:494::-;1971:6;;35865:4;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;35944:6:::1;35923:13;10239:12:::0;;;10151:108;35923:13:::1;:17;::::0;35939:1:::1;35923:17;:::i;:::-;35922:28;;;;:::i;:::-;35909:9;:41;;35887:144;;;::::0;-1:-1:-1;;;35887:144:0;;7879:2:1;35887:144:0::1;::::0;::::1;7861:21:1::0;7918:2;7898:18;;;7891:30;7957:34;7937:18;;;7930:62;-1:-1:-1;;;8008:18:1;;;8001:51;8069:19;;35887:144:0::1;7677:417:1::0;35887:144:0::1;36099:4;36078:13;10239:12:::0;;;10151:108;36078:13:::1;:17;::::0;36094:1:::1;36078:17;:::i;:::-;36077:26;;;;:::i;:::-;36064:9;:39;;36042:141;;;::::0;-1:-1:-1;;;36042:141:0;;8301:2:1;36042:141:0::1;::::0;::::1;8283:21:1::0;8340:2;8320:18;;;8313:30;8379:34;8359:18;;;8352:62;-1:-1:-1;;;8430:18:1;;;8423:50;8490:19;;36042:141:0::1;8099:416:1::0;36042:141:0::1;-1:-1:-1::0;36194:15:0::1;:27:::0;36239:4:::1;::::0;35757:494::o;36791:149::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36895:30:0;;;::::1;;::::0;;;:22:::1;:30;::::0;;;;:37;;-1:-1:-1;;36895:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36791:149::o;41492:258::-;32461:11;;-1:-1:-1;;;;;32461:11:0;846:10;32461:27;32453:66;;;;-1:-1:-1;;;32453:66:0;;6304:2:1;32453:66:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:28;6362:18;;;6355:56;6428:18;;32453:66:0;6102:350:1;32453:66:0;41572:46:::1;::::0;-1:-1:-1;;;41572:46:0;;41587:4:::1;41572:46;::::0;::::1;1619:51:1::0;;;41554:15:0::1;::::0;41572:31:::1;::::0;1592:18:1;;41572:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41629:51;::::0;-1:-1:-1;;;41629:51:0;;41660:10:::1;41629:51;::::0;::::1;8883::1::0;8950:18;;;8943:34;;;41554:64:0;;-1:-1:-1;41644:4:0::1;::::0;41629:30:::1;::::0;8856:18:1;;41629:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;41691:51:0::1;::::0;41699:10:::1;::::0;41720:21:::1;41691:51:::0;::::1;;;::::0;::::1;::::0;;;41720:21;41699:10;41691:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;34893:502:::0;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;34992:15:::1;-1:-1:-1::0;;;;;34992:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34974:69:0::1;;35052:4;35059:15;-1:-1:-1::0;;;;;35059:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34974:108;::::0;-1:-1:-1;;;;;;34974:108:0::1;::::0;;;;;;-1:-1:-1;;;;;9724:15:1;;;34974:108:0::1;::::0;::::1;9706:34:1::0;9776:15;;9756:18;;;9749:43;9641:18;;34974:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34958:13;:124:::0;;-1:-1:-1;;;;;;34958:124:0::1;-1:-1:-1::0;;;;;34958:124:0;;;::::1;::::0;;::::1;::::0;;35093:46:::1;::::0;-1:-1:-1;35093:16:0::1;:46::i;:::-;35187:13;::::0;35150:58:::1;::::0;-1:-1:-1;;;;;35187:13:0::1;::::0;35150:28:::1;:58::i;:::-;35221:19;35243:24;35261:4;35243:9;:24::i;:::-;35221:46;;35278:62;35295:4;35310:15;35328:11;35278:8;:62::i;:::-;35351:36;35364:11;35377:9;35351:12;:36::i;:::-;34947:448;34893:502::o:0;2807:201::-;1971:6;;-1:-1:-1;;;;;1971:6:0;846:10;2118:23;2110:68;;;;-1:-1:-1;;;2110:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2896:22:0;::::1;2888:73;;;::::0;-1:-1:-1;;;2888:73:0;;10005:2:1;2888:73:0::1;::::0;::::1;9987:21:1::0;10044:2;10024:18;;;10017:30;10083:34;10063:18;;;10056:62;-1:-1:-1;;;10134:18:1;;;10127:36;10180:19;;2888:73:0::1;9803:402:1::0;2888:73:0::1;2972:28;2991:8;2972:18;:28::i;17152:380::-:0;-1:-1:-1;;;;;17288:19:0;;17280:68;;;;-1:-1:-1;;;17280:68:0;;10412:2:1;17280:68:0;;;10394:21:1;10451:2;10431:18;;;10424:30;10490:34;10470:18;;;10463:62;-1:-1:-1;;;10541:18:1;;;10534:34;10585:19;;17280:68:0;10210:400:1;17280:68:0;-1:-1:-1;;;;;17367:21:0;;17359:68;;;;-1:-1:-1;;;17359:68:0;;10817:2:1;17359:68:0;;;10799:21:1;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;-1:-1:-1;;;10946:18:1;;;10939:32;10988:19;;17359:68:0;10615:398:1;17359:68:0;-1:-1:-1;;;;;17440:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17492:32;;762:25:1;;;17492:32:0;;735:18:1;17492:32:0;;;;;;;17152:380;;;:::o;37742:3742::-;-1:-1:-1;;;;;37874:18:0;;37866:68;;;;-1:-1:-1;;;37866:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37953:16:0;;37945:64;;;;-1:-1:-1;;;37945:64:0;;;;;;;:::i;:::-;38026:6;38036:1;38026:11;38022:93;;38054:28;38070:4;38076:2;38080:1;38054:15;:28::i;:::-;37742:3742;;;:::o;38022:93::-;38131:14;;-1:-1:-1;;;38131:14:0;;;;38127:1597;;;1971:6;;-1:-1:-1;;;;;38184:15:0;;;1971:6;;38184:15;;;;:49;;-1:-1:-1;1971:6:0;;-1:-1:-1;;;;;38220:13:0;;;1971:6;;38220:13;;38184:49;:86;;;;-1:-1:-1;;;;;;38254:16:0;;;;38184:86;:128;;;;-1:-1:-1;;;;;;38291:21:0;;38305:6;38291:21;;38184:128;:158;;;;-1:-1:-1;38334:8:0;;-1:-1:-1;;;38334:8:0;;;;38333:9;38184:158;38162:1551;;;38382:13;;-1:-1:-1;;;38382:13:0;;;;38377:219;;-1:-1:-1;;;;;38454:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;38481:21:0;;;;;;:17;:21;;;;;;;;38454:48;38420:156;;;;-1:-1:-1;;;38420:156:0;;12030:2:1;38420:156:0;;;12012:21:1;12069:2;12049:18;;;12042:30;-1:-1:-1;;;12088:18:1;;;12081:52;12150:18;;38420:156:0;11828:346:1;38420:156:0;-1:-1:-1;;;;;38670:14:0;;;;;;:8;:14;;;;;;;;:66;;;;-1:-1:-1;;;;;;38710:26:0;;;;;;:22;:26;;;;;;;;38709:27;38670:66;38644:1054;;;38823:12;;38813:6;:22;;38779:153;;;;-1:-1:-1;;;38779:153:0;;12381:2:1;38779:153:0;;;12363:21:1;12420:2;12400:18;;;12393:30;12459:34;12439:18;;;12432:62;-1:-1:-1;;;12510:18:1;;;12503:43;12563:19;;38779:153:0;12179:409:1;38779:153:0;39015:9;;38998:13;39008:2;38998:9;:13::i;:::-;38989:22;;:6;:22;:::i;:::-;:35;;38955:140;;;;-1:-1:-1;;;38955:140:0;;12795:2:1;38955:140:0;;;12777:21:1;12834:2;12814:18;;;12807:30;-1:-1:-1;;;12853:18:1;;;12846:49;12912:18;;38955:140:0;12593:343:1;38955:140:0;38644:1054;;;-1:-1:-1;;;;;39193:12:0;;;;;;:8;:12;;;;;;;;:66;;;;-1:-1:-1;;;;;;39231:28:0;;;;;;:22;:28;;;;;;;;39230:29;39193:66;39167:531;;;39346:12;;39336:6;:22;;39302:154;;;;-1:-1:-1;;;39302:154:0;;13143:2:1;39302:154:0;;;13125:21:1;13182:2;13162:18;;;13155:30;13221:34;13201:18;;;13194:62;-1:-1:-1;;;13272:18:1;;;13265:44;13326:19;;39302:154:0;12941:410:1;39167:531:0;-1:-1:-1;;;;;39487:26:0;;;;;;:22;:26;;;;;;;;39482:216;;39598:9;;39581:13;39591:2;39581:9;:13::i;:::-;39572:22;;:6;:22;:::i;:::-;:35;;39538:140;;;;-1:-1:-1;;;39538:140:0;;12795:2:1;39538:140:0;;;12777:21:1;12834:2;12814:18;;;12807:30;-1:-1:-1;;;12853:18:1;;;12846:49;12912:18;;39538:140:0;12593:343:1;39538:140:0;39736:28;39767:24;39785:4;39767:9;:24::i;:::-;39736:55;-1:-1:-1;39819:24:0;;;;;;;39874:35;;-1:-1:-1;39898:11:0;;-1:-1:-1;;;39898:11:0;;;;39874:35;:61;;;;-1:-1:-1;39927:8:0;;-1:-1:-1;;;39927:8:0;;;;39926:9;39874:61;:93;;;;-1:-1:-1;;;;;;39953:14:0;;;;;;:8;:14;;;;;;;;39952:15;39874:93;:134;;;;-1:-1:-1;;;;;;39985:23:0;;;;;;:17;:23;;;;;;;;39984:24;39874:134;:173;;;;-1:-1:-1;;;;;;40026:21:0;;;;;;:17;:21;;;;;;;;40025:22;39874:173;39856:305;;;40074:8;:15;;-1:-1:-1;;;;40074:15:0;-1:-1:-1;;;40074:15:0;;;40106:10;:8;:10::i;:::-;40133:8;:16;;-1:-1:-1;;;;40133:16:0;;;39856:305;40189:8;;-1:-1:-1;;;;;40299:23:0;;40173:12;40299:23;;;:17;:23;;;;;;40189:8;-1:-1:-1;;;40189:8:0;;;;;40188:9;;40299:23;;:48;;-1:-1:-1;;;;;;40326:21:0;;;;;;:17;:21;;;;;;;;40299:48;40295:96;;;-1:-1:-1;40374:5:0;40295:96;40403:12;40508:7;40504:927;;;-1:-1:-1;;;;;40560:12:0;;;;;;:8;:12;;;;;;;;:33;;;;;40592:1;40576:13;;:17;40560:33;40556:726;;;40621:34;40651:3;40621:25;40632:13;;40621:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40614:41;;40724:13;;40704:16;;40697:4;:23;;;;:::i;:::-;40696:41;;;;:::i;:::-;40674:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40796:13:0;;40781:11;;40774:18;;:4;:18;:::i;:::-;40773:36;;;;:::i;:::-;40756:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;40872:13:0;;40852:16;;40845:23;;:4;:23;:::i;:::-;40844:41;;;;:::i;:::-;40828:12;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;40556:726:0;;-1:-1:-1;40556:726:0;;-1:-1:-1;;;;;40947:14:0;;;;;;:8;:14;;;;;;;;:34;;;;;40980:1;40965:12;;:16;40947:34;40943:339;;;41009:33;41038:3;41009:24;41020:12;;41009:6;:10;;:24;;;;:::i;:33::-;41002:40;;41110:12;;41091:15;;41084:4;:22;;;;:::i;:::-;41083:39;;;;:::i;:::-;41061:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41180:12:0;;41166:10;;41159:17;;:4;:17;:::i;:::-;41158:34;;;;:::i;:::-;41141:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;41254:12:0;;41235:15;;41228:22;;:4;:22;:::i;:::-;41227:39;;;;:::i;:::-;41211:12;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;40943:339:0;41302:8;;41298:91;;41331:42;41347:4;41361;41368;41331:15;:42::i;:::-;41405:14;41415:4;41405:14;;:::i;:::-;;;40504:927;41443:33;41459:4;41465:2;41469:6;41443:15;:33::i;:::-;37855:3629;;;;37742:3742;;;:::o;21927:98::-;21985:7;22012:5;22016:1;22012;:5;:::i;:::-;22005:12;21927:98;-1:-1:-1;;;21927:98:0:o;16123:591::-;-1:-1:-1;;;;;16207:21:0;;16199:67;;;;-1:-1:-1;;;16199:67:0;;13688:2:1;16199:67:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:34;13746:18;;;13739:62;-1:-1:-1;;;13817:18:1;;;13810:31;13858:19;;16199:67:0;13486:397:1;16199:67:0;-1:-1:-1;;;;;16366:18:0;;16341:22;16366:18;;;;;;;;;;;16403:24;;;;16395:71;;;;-1:-1:-1;;;16395:71:0;;14090:2:1;16395:71:0;;;14072:21:1;14129:2;14109:18;;;14102:30;14168:34;14148:18;;;14141:62;-1:-1:-1;;;14219:18:1;;;14212:32;14261:19;;16395:71:0;13888:398:1;16395:71:0;-1:-1:-1;;;;;16502:18:0;;:9;:18;;;;;;;;;;16523:23;;;16502:44;;16568:12;:22;;16540:6;;16502:9;16568:22;;16540:6;;16568:22;:::i;:::-;;;;-1:-1:-1;;16608:37:0;;762:25:1;;;16634:1:0;;-1:-1:-1;;;;;16608:37:0;;;;;750:2:1;735:18;16608:37:0;;;;;;;37742:3742;;;:::o;3168:191::-;3261:6;;;-1:-1:-1;;;;;3278:17:0;;;-1:-1:-1;;;;;;3278:17:0;;;;;;;3311:40;;3261:6;;;3278:17;3261:6;;3311:40;;3242:16;;3311:40;3231:128;3168:191;:::o;37431:171::-;-1:-1:-1;;;;;37514:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;37514:22:0;;;;;;;;;;37554:40;;37514:22;;:14;37554:40;;;37431:171;;:::o;42553:513::-;42701:62;42718:4;42733:15;42751:11;42701:8;:62::i;:::-;42806:15;-1:-1:-1;;;;;42806:31:0;;42845:9;42878:4;42898:11;42924:1;42967;43010:7;1971:6;;-1:-1:-1;;;;;1971:6:0;;1898:87;43010:7;42806:252;;;;;;-1:-1:-1;;;;;;42806:252:0;;;-1:-1:-1;;;;;14650:15:1;;;42806:252:0;;;14632:34:1;14682:18;;;14675:34;;;;14725:18;;;14718:34;;;;14768:18;;;14761:34;14832:15;;;14811:19;;;14804:44;43032:15:0;14864:19:1;;;14857:35;14566:19;;42806:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42553:513;;:::o;14371:733::-;-1:-1:-1;;;;;14511:20:0;;14503:70;;;;-1:-1:-1;;;14503:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14592:23:0;;14584:71;;;;-1:-1:-1;;;14584:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14752:17:0;;14728:21;14752:17;;;;;;;;;;;14788:23;;;;14780:74;;;;-1:-1:-1;;;14780:74:0;;15416:2:1;14780:74:0;;;15398:21:1;15455:2;15435:18;;;15428:30;15494:34;15474:18;;;15467:62;-1:-1:-1;;;15545:18:1;;;15538:36;15591:19;;14780:74:0;15214:402:1;14780:74:0;-1:-1:-1;;;;;14890:17:0;;;:9;:17;;;;;;;;;;;14910:22;;;14890:42;;14954:20;;;;;;;;:30;;14926:6;;14890:9;14954:30;;14926:6;;14954:30;:::i;:::-;;;;;;;;15019:9;-1:-1:-1;;;;;15002:35:0;15011:6;-1:-1:-1;;;;;15002:35:0;;15030:6;15002:35;;;;762:25:1;;750:2;735:18;;616:177;15002:35:0;;;;;;;;14492:612;14371:733;;;:::o;43074:1623::-;43113:23;43139:24;43157:4;43139:9;:24::i;:::-;43113:50;;43174:25;43264:13;;43236:12;;43202:18;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;43174:103;-1:-1:-1;43294:20:0;;;:46;;-1:-1:-1;43318:22:0;;43294:46;43290:85;;;43357:7;;43074:1623::o;43290:85::-;43409:15;;:21;;43427:3;43409:21;:::i;:::-;43391:15;:39;43387:111;;;43465:15;;:21;;43483:3;43465:21;:::i;:::-;43447:39;;43387:111;43559:23;43672:1;43639:17;43604:18;;43586:15;:36;;;;:::i;:::-;43585:71;;;;:::i;:::-;:88;;;;:::i;:::-;43559:114;-1:-1:-1;43684:26:0;43713:36;:15;43559:114;43713:19;:36::i;:::-;43684:65;-1:-1:-1;43790:21:0;43824:36;43684:65;43824:16;:36::i;:::-;43873:18;43894:44;:21;43920:17;43894:25;:44::i;:::-;43873:65;;43951:17;43971:78;44046:1;44025:18;;:22;;;;:::i;:::-;44004:44;;:17;:44;:::i;:::-;43986:12;;43971:28;;:10;;:14;:28::i;:78::-;43951:98;;44070:18;44091:79;44167:1;44146:18;;:22;;;;:::i;:::-;44125:44;;:17;:44;:::i;:::-;44106:13;;44091:29;;:10;;:14;:29::i;:79::-;44070:100;-1:-1:-1;44183:23:0;44070:100;44209:22;44222:9;44209:10;:22;:::i;:::-;:35;;;;:::i;:::-;44278:1;44257:18;:22;;;44290:12;:16;;;44317:13;:17;44183:61;-1:-1:-1;44351:19:0;;;;;:42;;;44392:1;44374:15;:19;44351:42;44347:278;;;44410:46;44423:15;44440;44410:12;:46::i;:::-;44580:18;;44476:137;;;15823:25:1;;;15879:2;15864:18;;15857:34;;;15907:18;;;15900:34;;;;44476:137:0;;;;;;15811:2:1;44476:137:0;;;44347:278;44645:11;;44637:52;;-1:-1:-1;;;;;44645:11:0;;;;44667:21;44637:52;;;;;44645:11;44637:52;44645:11;44637:52;44667:21;44645:11;44637:52;;;;;;;;;;;;;;;;;;;;;43102:1595;;;;;;;;;43074:1623::o;22284:98::-;22342:7;22369:5;22373:1;22369;:5;:::i;22683:98::-;22741:7;22768:5;22772:1;22768;:5;:::i;41956:589::-;42106:16;;;42120:1;42106:16;;;;;;;;42082:21;;42106:16;;;;;;;;;;-1:-1:-1;42106:16:0;42082:40;;42151:4;42133;42138:1;42133:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42133:23:0;;;-1:-1:-1;;;;;42133:23:0;;;;;42177:15;-1:-1:-1;;;;;42177:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42167:4;42172:1;42167:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42167:32:0;;;-1:-1:-1;;;;;42167:32:0;;;;;42212:62;42229:4;42244:15;42262:11;42212:8;:62::i;:::-;42313:224;;-1:-1:-1;;;42313:224:0;;-1:-1:-1;;;;;42313:15:0;:66;;;;:224;;42394:11;;42420:1;;42464:4;;42491;;42511:15;;42313:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42011:534;41956:589;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1681:180::-;1740:6;1793:2;1781:9;1772:7;1768:23;1764:32;1761:52;;;1809:1;1806;1799:12;1761:52;-1:-1:-1;1832:23:1;;1681:180;-1:-1:-1;1681:180:1:o;1866:456::-;1943:6;1951;1959;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2067:9;2054:23;2086:31;2111:5;2086:31;:::i;:::-;2136:5;-1:-1:-1;2193:2:1;2178:18;;2165:32;2206:33;2165:32;2206:33;:::i;:::-;1866:456;;2258:7;;-1:-1:-1;;;2312:2:1;2297:18;;;;2284:32;;1866:456::o;2724:247::-;2783:6;2836:2;2824:9;2815:7;2811:23;2807:32;2804:52;;;2852:1;2849;2842:12;2804:52;2891:9;2878:23;2910:31;2935:5;2910:31;:::i;2976:118::-;3062:5;3055:13;3048:21;3041:5;3038:32;3028:60;;3084:1;3081;3074:12;3099:382;3164:6;3172;3225:2;3213:9;3204:7;3200:23;3196:32;3193:52;;;3241:1;3238;3231:12;3193:52;3280:9;3267:23;3299:31;3324:5;3299:31;:::i;:::-;3349:5;-1:-1:-1;3406:2:1;3391:18;;3378:32;3419:30;3378:32;3419:30;:::i;:::-;3468:7;3458:17;;;3099:382;;;;;:::o;3486:388::-;3554:6;3562;3615:2;3603:9;3594:7;3590:23;3586:32;3583:52;;;3631:1;3628;3621:12;3583:52;3670:9;3657:23;3689:31;3714:5;3689:31;:::i;:::-;3739:5;-1:-1:-1;3796:2:1;3781:18;;3768:32;3809:33;3768:32;3809:33;:::i;3879:380::-;3958:1;3954:12;;;;4001;;;4022:61;;4076:4;4068:6;4064:17;4054:27;;4022:61;4129:2;4121:6;4118:14;4098:18;4095:38;4092:161;;4175:10;4170:3;4166:20;4163:1;4156:31;4210:4;4207:1;4200:15;4238:4;4235:1;4228:15;4092:161;;3879:380;;;:::o;4264:356::-;4466:2;4448:21;;;4485:18;;;4478:30;4544:34;4539:2;4524:18;;4517:62;4611:2;4596:18;;4264:356::o;4625:127::-;4686:10;4681:3;4677:20;4674:1;4667:31;4717:4;4714:1;4707:15;4741:4;4738:1;4731:15;4757:168;4797:7;4863:1;4859;4855:6;4851:14;4848:1;4845:21;4840:1;4833:9;4826:17;4822:45;4819:71;;;4870:18;;:::i;:::-;-1:-1:-1;4910:9:1;;4757:168::o;4930:217::-;4970:1;4996;4986:132;;5040:10;5035:3;5031:20;5028:1;5021:31;5075:4;5072:1;5065:15;5103:4;5100:1;5093:15;4986:132;-1:-1:-1;5132:9:1;;4930:217::o;5969:128::-;6009:3;6040:1;6036:6;6033:1;6030:13;6027:39;;;6046:18;;:::i;:::-;-1:-1:-1;6082:9:1;;5969:128::o;8520:184::-;8590:6;8643:2;8631:9;8622:7;8618:23;8614:32;8611:52;;;8659:1;8656;8649:12;8611:52;-1:-1:-1;8682:16:1;;8520:184;-1:-1:-1;8520:184:1:o;8988:245::-;9055:6;9108:2;9096:9;9087:7;9083:23;9079:32;9076:52;;;9124:1;9121;9114:12;9076:52;9156:9;9150:16;9175:28;9197:5;9175:28;:::i;9238:251::-;9308:6;9361:2;9349:9;9340:7;9336:23;9332:32;9329:52;;;9377:1;9374;9367:12;9329:52;9409:9;9403:16;9428:31;9453:5;9428:31;:::i;11018:401::-;11220:2;11202:21;;;11259:2;11239:18;;;11232:30;11298:34;11293:2;11278:18;;11271:62;-1:-1:-1;;;11364:2:1;11349:18;;11342:35;11409:3;11394:19;;11018:401::o;11424:399::-;11626:2;11608:21;;;11665:2;11645:18;;;11638:30;11704:34;11699:2;11684:18;;11677:62;-1:-1:-1;;;11770:2:1;11755:18;;11748:33;11813:3;11798:19;;11424:399::o;13356:125::-;13396:4;13424:1;13421;13418:8;13415:34;;;13429:18;;:::i;:::-;-1:-1:-1;13466:9:1;;13356:125::o;14903:306::-;14991:6;14999;15007;15060:2;15048:9;15039:7;15035:23;15031:32;15028:52;;;15076:1;15073;15066:12;15028:52;15105:9;15099:16;15089:26;;15155:2;15144:9;15140:18;15134:25;15124:35;;15199:2;15188:9;15184:18;15178:25;15168:35;;14903:306;;;;;:::o;16077:127::-;16138:10;16133:3;16129:20;16126:1;16119:31;16169:4;16166:1;16159:15;16193:4;16190:1;16183:15;16209:980;16471:4;16519:3;16508:9;16504:19;16550:6;16539:9;16532:25;16576:2;16614:6;16609:2;16598:9;16594:18;16587:34;16657:3;16652:2;16641:9;16637:18;16630:31;16681:6;16716;16710:13;16747:6;16739;16732:22;16785:3;16774:9;16770:19;16763:26;;16824:2;16816:6;16812:15;16798:29;;16845:1;16855:195;16869:6;16866:1;16863:13;16855:195;;;16934:13;;-1:-1:-1;;;;;16930:39:1;16918:52;;17025:15;;;;16990:12;;;;16966:1;16884:9;16855:195;;;-1:-1:-1;;;;;;;17106:32:1;;;;17101:2;17086:18;;17079:60;-1:-1:-1;;;17170:3:1;17155:19;17148:35;17067:3;16209:980;-1:-1:-1;;;16209:980:1:o

Swarm Source

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