ETH Price: $2,627.01 (+7.29%)
Gas: 3 Gwei

Token

DogeAI2.0 ($DOGE_AI2.0)
 

Overview

Max Total Supply

1,000,000,000 $DOGE_AI2.0

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,675,000 $DOGE_AI2.0

Value
$0.00
0xef7fbf1d97942290796374a3a1414a5b93e61416
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:
DogeAI2

Compiler Version
v0.8.17+commit.8df45f5f

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-16
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

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

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

// pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    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 DogeAI2 is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable uniswapV2Router;

    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public marketingWallet;
    bool private _swapping;
    bool public dynamicTaxesEnabled = false;
    bool public dynamicLimitsEnabled = false;
    uint256 public defaultMaxWallet;
    uint256 public defaultMaxTransaction;
    uint256 public buyFees;
    uint256 public sellFees;
    uint256 private previousFee;
    bool public launched;
    uint256 public launchBlock;
    uint256 public launchTime;

    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private _isBot;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    modifier lockSwapping() {
        _swapping = true;
        _;
        _swapping = false;
    }

    constructor(address _owner) ERC20("DogeAI2.0", "$DOGE_AI2.0") {
        //1 billion
        uint256 totalSupply = 1000000000000000000000000000;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        marketingWallet = 0x95C5d92612AF3de3D70E0241Bc7e21F461e7bF60;

        defaultMaxWallet = (totalSupply * 5) / 1000;
        defaultMaxTransaction = (totalSupply * 5) / 1000;

        buyFees = 2;
        sellFees = 2;
        previousFee = sellFees;

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(marketingWallet, true);

        excludeFromFees(owner(), true);
        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(_owner, (totalSupply * 45) / 100);
        _mint(owner(), (totalSupply * 50) / 100);
        
        _mint(marketingWallet, (totalSupply * 5) / 100);

    }

    receive() external payable {}

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    function setDynamicLimitsEnabled(bool value) public onlyOwner {
        dynamicLimitsEnabled = value;
    }

    function setDynamicTaxesEnabled(bool value) public onlyOwner {
        dynamicTaxesEnabled = value;
    }

    function setLaunched()
        public
        onlyOwner
    {
        require(!launched, "ERC20: Already launched.");
        launched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
        dynamicTaxesEnabled = true;
        dynamicLimitsEnabled = true;
    }

    function updateDefaultLimits(
        uint256 maxTransaction,
        uint256 maxWallet
    ) external onlyOwner {
        require(
            maxTransaction >= ((totalSupply() * 1) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.1%"
        );
        require(
            maxWallet >= ((totalSupply() * 1) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.1%"
        );
        defaultMaxTransaction = maxTransaction;
        defaultMaxWallet = maxWallet;
    }

    function excludeFromMaxTransaction(address updAds, bool value)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = value;
    }

    function bulkExcludeFromMaxTransaction(
        address[] calldata accounts,
        bool value
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedMaxTransactionAmount[accounts[i]] = value;
        }
    }

    function updateBuyFees(uint256 _buyFees) public onlyOwner {
        buyFees = _buyFees;
        require(buyFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(uint256 _sellFees) public onlyOwner {
        sellFees = _sellFees;
        previousFee = sellFees;
        require(sellFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet) public onlyOwner {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function bulkExcludeFromFees(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = value;
        }
    }

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

    function withdrawStuckTokens(address tkn) public onlyOwner {
        if (tkn == address(0)) {
            bool success;
            (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
            );
        } else {
            require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
            uint256 amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(msg.sender, amount);
        }
    }

    function unclog() public onlyOwner lockSwapping {
        swapTokensForEth(
            balanceOf(address(this))
        );

        uint256 ethBalance = address(this).balance;
        uint256 ethMarketing = ethBalance;

        bool success;
        (success, ) = address(marketingWallet).call{value: ethMarketing}("");
    }

    function _setAutomatedMarketMakerPair(address pair, bool value)
        internal
        virtual
    {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[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");

        require(!_isBot[from], "ERC20: bot detected");
        require(!_isBot[msg.sender], "ERC20: bot detected");
        require(!_isBot[tx.origin], "ERC20: bot detected");

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

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !_swapping
        ) {
            uint256 maxTransaction;
            uint256 maxWallet;
            if (dynamicLimitsEnabled) {
                if (block.timestamp > launchTime + (2 minutes)) {
                    maxTransaction = totalSupply();
                    maxWallet = totalSupply();
                } else {
                    //3.00%
                    maxTransaction = (totalSupply() * 3) / 100;
                    maxWallet = (totalSupply() * 3) / 100;
                }
            } else {
                maxTransaction = defaultMaxTransaction;
                maxWallet = defaultMaxWallet;
            }

            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransaction,
                    "ERC20: Buy transfer amount exceeds the maxTransaction."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransaction,
                    "ERC20: Sell transfer amount exceeds the maxTransaction."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 totalFees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                if (dynamicTaxesEnabled) {
                    if (block.timestamp > launchTime + (4 minutes)) {
                        totalFees = sellFees;
                    } else if (block.timestamp > launchTime + (2 minutes)) {
                        totalFees = 8;
                    } else {
                        totalFees = 25;
                    }
                } else {
                    totalFees = sellFees;
                }
                fees = amount.mul(totalFees).div(100);
            }
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                if (dynamicTaxesEnabled) {
                    if (block.timestamp > launchTime + (4 minutes)) {
                        totalFees = buyFees;
                    } else if (block.timestamp > launchTime + (2 minutes)) {
                        totalFees = 8;
                    } else {
                        totalFees = 25;
                    }
                } else {
                    totalFees = buyFees;
                }
                fees = amount.mul(totalFees).div(100);
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellFees = previousFee;
    }

    function swapTokensForEth(uint256 tokenAmount) internal virtual {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFees","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":"defaultMaxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicTaxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromMaxTransaction","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":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLaunched","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclog","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":"_buyFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTransaction","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"updateDefaultLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526007805461ffff60a81b191690553480156200001f57600080fd5b5060405162002dcf38038062002dcf833981016040819052620000429162000880565b604051806040016040528060098152602001680446f67654149322e360bc1b8152506040518060400160405280600b81526020016a024444f47455f4149322e360ac1b815250816003908162000099919062000956565b506004620000a8828262000956565b505050620000c5620000bf620004e660201b60201c565b620004ea565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce800000090620000fd9030906000196200053c565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200013e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000164919062000880565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001da919062000880565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000228573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024e919062000880565b600680546001600160a01b0319166001600160a01b039290921691821790556200027d9030906000196200053c565b60065460805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620002d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fa919062000a22565b50600780546001600160a01b0319167395c5d92612af3de3d70e0241bc7e21f461e7bf601790556103e86200033182600562000a5c565b6200033d919062000a7c565b6008556103e86200035082600562000a5c565b6200035c919062000a7c565b6009556002600a819055600b819055600c556200038d620003856005546001600160a01b031690565b600162000668565b6200039a82600162000668565b620003a730600162000668565b620003b661dead600162000668565b608051620003c690600162000668565b600654620003df906001600160a01b0316600162000668565b600754620003f8906001600160a01b0316600162000668565b620004176200040f6005546001600160a01b031690565b60016200069d565b620004248260016200069d565b620004313060016200069d565b6200044061dead60016200069d565b60075462000459906001600160a01b031660016200069d565b60065462000472906001600160a01b0316600162000706565b620004988260646200048684602d62000a5c565b62000492919062000a7c565b6200075a565b620004be620004af6005546001600160a01b031690565b60646200048684603262000a5c565b600754620004de906001600160a01b031660646200048684600562000a5c565b505062000ab5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620006075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200059b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620006726200081d565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b620006a76200081d565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620007b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200059b565b8060026000828254620007c6919062000a9f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620008795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200059b565b565b505050565b6000602082840312156200089357600080fd5b81516001600160a01b0381168114620008ab57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008dd57607f821691505b602082108103620008fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200087b57600081815260208120601f850160051c810160208610156200092d5750805b601f850160051c820191505b818110156200094e5782815560010162000939565b505050505050565b81516001600160401b03811115620009725762000972620008b2565b6200098a81620009838454620008c8565b8462000904565b602080601f831160018114620009c25760008415620009a95750858301515b600019600386901b1c1916600185901b1785556200094e565b600085815260208120601f198616915b82811015620009f357888601518255948401946001909101908401620009d2565b508582101562000a125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a3557600080fd5b81518015158114620008ab57600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000a765762000a7662000a46565b92915050565b60008262000a9a57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a765762000a7662000a46565b6080516122e962000ae66000396000818161031001528181611ad401528181611b8d0152611bc901526122e96000f3fe6080604052600436106102555760003560e01c806375f0a87411610139578063c073b633116100b6578063dd62ed3e1161007a578063dd62ed3e146106ef578063e0f3ccf51461070f578063e4748b9e14610725578063eba4c3331461073b578063f26a992e1461075b578063f2fde38b1461077c57600080fd5b8063c073b63314610663578063cb96372814610683578063d00efb2f146106a3578063d7d1d10e146106b9578063d84f5a37146106d957600080fd5b806395d89b41116100fd57806395d89b41146105ce578063a457c2d7146105e3578063a9059cbb14610603578063aacebbe314610623578063c02466681461064357600080fd5b806375f0a8741461054b578063790ca4131461056b5780638091f3bf146105815780638da5cb5b1461059b5780639507b19b146105b957600080fd5b806339509351116101d257806367c453491161019657806367c453491461048b5780636f0816f9146104a057806370a08231146104c0578063715018a6146104f657806371fc46881461050b5780637571336a1461052b57600080fd5b806339509351146103d15780633a03c07e146103f157806342966c681461041257806349bd5a5e146104325780634fbee1931461045257600080fd5b806318160ddd1161021957806318160ddd1461034a5780631f89aa931461036957806323b872dd1461037f57806327c8f8351461039f578063313ce567146103b557600080fd5b806306fdde0314610261578063095ea7b31461028c5780630c8c0760146102bc578063155ca7c1146102de5780631694505e146102fe57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061027661079c565b6040516102839190611dd8565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611e3b565b61082e565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d7366004611e75565b610848565b005b3480156102ea57600080fd5b506102dc6102f9366004611e92565b61086e565b34801561030a57600080fd5b506103327f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561035657600080fd5b506002545b604051908152602001610283565b34801561037557600080fd5b5061035b60095481565b34801561038b57600080fd5b506102ac61039a366004611f18565b6108ed565b3480156103ab57600080fd5b5061033261dead81565b3480156103c157600080fd5b5060405160128152602001610283565b3480156103dd57600080fd5b506102ac6103ec366004611e3b565b610911565b3480156103fd57600080fd5b506007546102ac90600160b01b900460ff1681565b34801561041e57600080fd5b506102dc61042d366004611f59565b610933565b34801561043e57600080fd5b50600654610332906001600160a01b031681565b34801561045e57600080fd5b506102ac61046d366004611f72565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561049757600080fd5b506102dc610940565b3480156104ac57600080fd5b506102dc6104bb366004611f8f565b6109ed565b3480156104cc57600080fd5b5061035b6104db366004611f72565b6001600160a01b031660009081526020819052604090205490565b34801561050257600080fd5b506102dc610b0a565b34801561051757600080fd5b506102dc610526366004611f59565b610b1e565b34801561053757600080fd5b506102dc610546366004611fb1565b610b4a565b34801561055757600080fd5b50600754610332906001600160a01b031681565b34801561057757600080fd5b5061035b600f5481565b34801561058d57600080fd5b50600d546102ac9060ff1681565b3480156105a757600080fd5b506005546001600160a01b0316610332565b3480156105c557600080fd5b506102dc610b7d565b3480156105da57600080fd5b50610276610c06565b3480156105ef57600080fd5b506102ac6105fe366004611e3b565b610c15565b34801561060f57600080fd5b506102ac61061e366004611e3b565b610c90565b34801561062f57600080fd5b506102dc61063e366004611f72565b610c9e565b34801561064f57600080fd5b506102dc61065e366004611fb1565b610d40565b34801561066f57600080fd5b506102dc61067e366004611e75565b610da7565b34801561068f57600080fd5b506102dc61069e366004611f72565b610dcd565b3480156106af57600080fd5b5061035b600e5481565b3480156106c557600080fd5b506102dc6106d4366004611e92565b610fbc565b3480156106e557600080fd5b5061035b60085481565b3480156106fb57600080fd5b5061035b61070a366004611fea565b611035565b34801561071b57600080fd5b5061035b600b5481565b34801561073157600080fd5b5061035b600a5481565b34801561074757600080fd5b506102dc610756366004611f59565b611060565b34801561076757600080fd5b506007546102ac90600160a81b900460ff1681565b34801561078857600080fd5b506102dc610797366004611f72565b611093565b6060600380546107ab90612018565b80601f01602080910402602001604051908101604052809291908181526020018280546107d790612018565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60003361083c818585611109565b60019150505b92915050565b61085061122d565b60078054911515600160a81b0260ff60a81b19909216919091179055565b61087661122d565b60005b828110156108e757816011600086868581811061089857610898612052565b90506020020160208101906108ad9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108df8161207e565b915050610879565b50505050565b6000336108fb858285611287565b6109068585856112fb565b506001949350505050565b60003361083c8185856109248383611035565b61092e9190612097565b611109565b61093d338261194b565b50565b61094861122d565b6007805460ff60a01b1916600160a01b17905561098261097d306001600160a01b031660009081526020819052604090205490565b611a7d565b600754604051479182916000916001600160a01b03169083908381818185875af1925050503d80600081146109d3576040519150601f19603f3d011682016040523d82523d6000602084013e6109d8565b606091505b50506007805460ff60a01b1916905550505050565b6109f561122d565b6103e8610a0160025490565b610a0c9060016120aa565b610a1691906120c1565b821015610a7b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e312560c01b60648201526084015b60405180910390fd5b6103e8610a8760025490565b610a929060016120aa565b610a9c91906120c1565b811015610aff5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b6064820152608401610a72565b600991909155600855565b610b1261122d565b610b1c6000611c3d565b565b610b2661122d565b600a81815581111561093d5760405162461bcd60e51b8152600401610a72906120e3565b610b5261122d565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610b8561122d565b600d5460ff1615610bd85760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e00000000000000006044820152606401610a72565b600d805460ff1916600117905543600e5542600f556007805461010160a81b61ffff60a81b19909116179055565b6060600480546107ab90612018565b60003381610c238286611035565b905083811015610c835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a72565b6109068286868403611109565b60003361083c8185856112fb565b610ca661122d565b6001600160a01b038116610cef5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610a72565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610d4861122d565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610daf61122d565b60078054911515600160b01b0260ff60b01b19909216919091179055565b610dd561122d565b6001600160a01b038116610e3457604051600090339047908381818185875af1925050503d8060008114610e25576040519150601f19603f3d011682016040523d82523d6000602084013e610e2a565b606091505b5061093d92505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9f9190612127565b11610ed85760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610a72565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190612127565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb79190612140565b505050565b610fc461122d565b60005b828110156108e7578160126000868685818110610fe657610fe6612052565b9050602002016020810190610ffb9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061102d8161207e565b915050610fc7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61106861122d565b600b819055600c819055600a81111561093d5760405162461bcd60e51b8152600401610a72906120e3565b61109b61122d565b6001600160a01b0381166111005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a72565b61093d81611c3d565b6001600160a01b03831661116b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a72565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a72565b60006112938484611035565b905060001981146108e757818110156112ee5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a72565b6108e78484848403611109565b6001600160a01b0383166113215760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b0382166113475760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526013602052604090205460ff16156113805760405162461bcd60e51b8152600401610a72906121e5565b3360009081526013602052604090205460ff16156113b05760405162461bcd60e51b8152600401610a72906121e5565b3260009081526013602052604090205460ff16156113e05760405162461bcd60e51b8152600401610a72906121e5565b806000036113f457610fb783836000611c8f565b6005546001600160a01b0384811691161480159061142057506005546001600160a01b03838116911614155b801561143457506001600160a01b03821615155b801561144b57506001600160a01b03821661dead14155b80156114615750600754600160a01b900460ff16155b15611774576007546000908190600160b01b900460ff16156114e257600f5461148b906078612097565b4211156114a0576002549150815b90506114eb565b60646114ab60025490565b6114b69060036120aa565b6114c091906120c1565b915060646114cd60025490565b6114d89060036120aa565b61149991906120c1565b50506009546008545b6001600160a01b03851660009081526010602052604090205460ff16801561152c57506001600160a01b03841660009081526012602052604090205460ff16155b1561161d57818311156115a05760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b6064820152608401610a72565b806115c0856001600160a01b031660009081526020819052604090205490565b6115ca9085612097565b11156116185760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b611771565b6001600160a01b03841660009081526010602052604090205460ff16801561165e57506001600160a01b03851660009081526012602052604090205460ff16155b156116d957818311156116185760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e0000000000000000006064820152608401610a72565b6001600160a01b03841660009081526012602052604090205460ff166117715780611719856001600160a01b031660009081526020819052604090205490565b6117239085612097565b11156117715760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b50505b6007546001600160a01b03841660009081526011602052604090205460ff600160a01b9092048216159116806117c257506001600160a01b03831660009081526011602052604090205460ff165b156117cb575060005b6000808215611932576001600160a01b03851660009081526010602052604090205460ff1680156117fe57506000600b54115b1561187957600754600160a81b900460ff161561185857600f546118239060f0612097565b4211156118335750600b5461185d565b600f54611841906078612097565b4211156118505750600861185d565b50601961185d565b50600b545b611872606461186c8684611db9565b90611dcc565b9150611914565b6001600160a01b03861660009081526010602052604090205460ff1680156118a357506000600a54115b1561191457600754600160a81b900460ff16156118fd57600f546118c89060f0612097565b4211156118d85750600a54611902565b600f546118e6906078612097565b4211156118f557506008611902565b506019611902565b50600a545b611911606461186c8684611db9565b91505b811561192557611925863084611c8f565b61192f8285612212565b93505b61193d868686611c8f565b5050600c54600b5550505050565b6001600160a01b0382166119ab5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a72565b6001600160a01b03821660009081526020819052604090205481811015611a1f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a72565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab257611ab2612052565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b549190612225565b81600181518110611b6757611b67612052565b60200260200101906001600160a01b031690816001600160a01b031681525050611bb2307f000000000000000000000000000000000000000000000000000000000000000084611109565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c07908590600090869030904290600401612242565b600060405180830381600087803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611cb55760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b038216611cdb5760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526020819052604090205481811015611d535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a72565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108e7565b6000611dc582846120aa565b9392505050565b6000611dc582846120c1565b600060208083528351808285015260005b81811015611e0557858101830151858201604001528201611de9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461093d57600080fd5b60008060408385031215611e4e57600080fd5b8235611e5981611e26565b946020939093013593505050565b801515811461093d57600080fd5b600060208284031215611e8757600080fd5b8135611dc581611e67565b600080600060408486031215611ea757600080fd5b833567ffffffffffffffff80821115611ebf57600080fd5b818601915086601f830112611ed357600080fd5b813581811115611ee257600080fd5b8760208260051b8501011115611ef757600080fd5b60209283019550935050840135611f0d81611e67565b809150509250925092565b600080600060608486031215611f2d57600080fd5b8335611f3881611e26565b92506020840135611f4881611e26565b929592945050506040919091013590565b600060208284031215611f6b57600080fd5b5035919050565b600060208284031215611f8457600080fd5b8135611dc581611e26565b60008060408385031215611fa257600080fd5b50508035926020909101359150565b60008060408385031215611fc457600080fd5b8235611fcf81611e26565b91506020830135611fdf81611e67565b809150509250929050565b60008060408385031215611ffd57600080fd5b823561200881611e26565b91506020830135611fdf81611e26565b600181811c9082168061202c57607f821691505b60208210810361204c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161209057612090612068565b5060010190565b8082018082111561084257610842612068565b808202811582820484141761084257610842612068565b6000826120de57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561213957600080fd5b5051919050565b60006020828403121561215257600080fd5b8151611dc581611e67565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561084257610842612068565b60006020828403121561223757600080fd5b8151611dc581611e26565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122925784516001600160a01b03168352938301939183019160010161226d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220bdc5f11ea150f0d9e3d14b4f32f4e37107ce9027dcec3a37c2ea84e7362163da64736f6c634300081100330000000000000000000000007b85bc72add2e7d589d77599ae54faee35a23e0d

Deployed Bytecode

0x6080604052600436106102555760003560e01c806375f0a87411610139578063c073b633116100b6578063dd62ed3e1161007a578063dd62ed3e146106ef578063e0f3ccf51461070f578063e4748b9e14610725578063eba4c3331461073b578063f26a992e1461075b578063f2fde38b1461077c57600080fd5b8063c073b63314610663578063cb96372814610683578063d00efb2f146106a3578063d7d1d10e146106b9578063d84f5a37146106d957600080fd5b806395d89b41116100fd57806395d89b41146105ce578063a457c2d7146105e3578063a9059cbb14610603578063aacebbe314610623578063c02466681461064357600080fd5b806375f0a8741461054b578063790ca4131461056b5780638091f3bf146105815780638da5cb5b1461059b5780639507b19b146105b957600080fd5b806339509351116101d257806367c453491161019657806367c453491461048b5780636f0816f9146104a057806370a08231146104c0578063715018a6146104f657806371fc46881461050b5780637571336a1461052b57600080fd5b806339509351146103d15780633a03c07e146103f157806342966c681461041257806349bd5a5e146104325780634fbee1931461045257600080fd5b806318160ddd1161021957806318160ddd1461034a5780631f89aa931461036957806323b872dd1461037f57806327c8f8351461039f578063313ce567146103b557600080fd5b806306fdde0314610261578063095ea7b31461028c5780630c8c0760146102bc578063155ca7c1146102de5780631694505e146102fe57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061027661079c565b6040516102839190611dd8565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611e3b565b61082e565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d7366004611e75565b610848565b005b3480156102ea57600080fd5b506102dc6102f9366004611e92565b61086e565b34801561030a57600080fd5b506103327f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561035657600080fd5b506002545b604051908152602001610283565b34801561037557600080fd5b5061035b60095481565b34801561038b57600080fd5b506102ac61039a366004611f18565b6108ed565b3480156103ab57600080fd5b5061033261dead81565b3480156103c157600080fd5b5060405160128152602001610283565b3480156103dd57600080fd5b506102ac6103ec366004611e3b565b610911565b3480156103fd57600080fd5b506007546102ac90600160b01b900460ff1681565b34801561041e57600080fd5b506102dc61042d366004611f59565b610933565b34801561043e57600080fd5b50600654610332906001600160a01b031681565b34801561045e57600080fd5b506102ac61046d366004611f72565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561049757600080fd5b506102dc610940565b3480156104ac57600080fd5b506102dc6104bb366004611f8f565b6109ed565b3480156104cc57600080fd5b5061035b6104db366004611f72565b6001600160a01b031660009081526020819052604090205490565b34801561050257600080fd5b506102dc610b0a565b34801561051757600080fd5b506102dc610526366004611f59565b610b1e565b34801561053757600080fd5b506102dc610546366004611fb1565b610b4a565b34801561055757600080fd5b50600754610332906001600160a01b031681565b34801561057757600080fd5b5061035b600f5481565b34801561058d57600080fd5b50600d546102ac9060ff1681565b3480156105a757600080fd5b506005546001600160a01b0316610332565b3480156105c557600080fd5b506102dc610b7d565b3480156105da57600080fd5b50610276610c06565b3480156105ef57600080fd5b506102ac6105fe366004611e3b565b610c15565b34801561060f57600080fd5b506102ac61061e366004611e3b565b610c90565b34801561062f57600080fd5b506102dc61063e366004611f72565b610c9e565b34801561064f57600080fd5b506102dc61065e366004611fb1565b610d40565b34801561066f57600080fd5b506102dc61067e366004611e75565b610da7565b34801561068f57600080fd5b506102dc61069e366004611f72565b610dcd565b3480156106af57600080fd5b5061035b600e5481565b3480156106c557600080fd5b506102dc6106d4366004611e92565b610fbc565b3480156106e557600080fd5b5061035b60085481565b3480156106fb57600080fd5b5061035b61070a366004611fea565b611035565b34801561071b57600080fd5b5061035b600b5481565b34801561073157600080fd5b5061035b600a5481565b34801561074757600080fd5b506102dc610756366004611f59565b611060565b34801561076757600080fd5b506007546102ac90600160a81b900460ff1681565b34801561078857600080fd5b506102dc610797366004611f72565b611093565b6060600380546107ab90612018565b80601f01602080910402602001604051908101604052809291908181526020018280546107d790612018565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60003361083c818585611109565b60019150505b92915050565b61085061122d565b60078054911515600160a81b0260ff60a81b19909216919091179055565b61087661122d565b60005b828110156108e757816011600086868581811061089857610898612052565b90506020020160208101906108ad9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108df8161207e565b915050610879565b50505050565b6000336108fb858285611287565b6109068585856112fb565b506001949350505050565b60003361083c8185856109248383611035565b61092e9190612097565b611109565b61093d338261194b565b50565b61094861122d565b6007805460ff60a01b1916600160a01b17905561098261097d306001600160a01b031660009081526020819052604090205490565b611a7d565b600754604051479182916000916001600160a01b03169083908381818185875af1925050503d80600081146109d3576040519150601f19603f3d011682016040523d82523d6000602084013e6109d8565b606091505b50506007805460ff60a01b1916905550505050565b6109f561122d565b6103e8610a0160025490565b610a0c9060016120aa565b610a1691906120c1565b821015610a7b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e312560c01b60648201526084015b60405180910390fd5b6103e8610a8760025490565b610a929060016120aa565b610a9c91906120c1565b811015610aff5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b6064820152608401610a72565b600991909155600855565b610b1261122d565b610b1c6000611c3d565b565b610b2661122d565b600a81815581111561093d5760405162461bcd60e51b8152600401610a72906120e3565b610b5261122d565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610b8561122d565b600d5460ff1615610bd85760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e00000000000000006044820152606401610a72565b600d805460ff1916600117905543600e5542600f556007805461010160a81b61ffff60a81b19909116179055565b6060600480546107ab90612018565b60003381610c238286611035565b905083811015610c835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a72565b6109068286868403611109565b60003361083c8185856112fb565b610ca661122d565b6001600160a01b038116610cef5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610a72565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610d4861122d565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610daf61122d565b60078054911515600160b01b0260ff60b01b19909216919091179055565b610dd561122d565b6001600160a01b038116610e3457604051600090339047908381818185875af1925050503d8060008114610e25576040519150601f19603f3d011682016040523d82523d6000602084013e610e2a565b606091505b5061093d92505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9f9190612127565b11610ed85760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610a72565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190612127565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb79190612140565b505050565b610fc461122d565b60005b828110156108e7578160126000868685818110610fe657610fe6612052565b9050602002016020810190610ffb9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061102d8161207e565b915050610fc7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61106861122d565b600b819055600c819055600a81111561093d5760405162461bcd60e51b8152600401610a72906120e3565b61109b61122d565b6001600160a01b0381166111005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a72565b61093d81611c3d565b6001600160a01b03831661116b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a72565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a72565b60006112938484611035565b905060001981146108e757818110156112ee5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a72565b6108e78484848403611109565b6001600160a01b0383166113215760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b0382166113475760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526013602052604090205460ff16156113805760405162461bcd60e51b8152600401610a72906121e5565b3360009081526013602052604090205460ff16156113b05760405162461bcd60e51b8152600401610a72906121e5565b3260009081526013602052604090205460ff16156113e05760405162461bcd60e51b8152600401610a72906121e5565b806000036113f457610fb783836000611c8f565b6005546001600160a01b0384811691161480159061142057506005546001600160a01b03838116911614155b801561143457506001600160a01b03821615155b801561144b57506001600160a01b03821661dead14155b80156114615750600754600160a01b900460ff16155b15611774576007546000908190600160b01b900460ff16156114e257600f5461148b906078612097565b4211156114a0576002549150815b90506114eb565b60646114ab60025490565b6114b69060036120aa565b6114c091906120c1565b915060646114cd60025490565b6114d89060036120aa565b61149991906120c1565b50506009546008545b6001600160a01b03851660009081526010602052604090205460ff16801561152c57506001600160a01b03841660009081526012602052604090205460ff16155b1561161d57818311156115a05760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b6064820152608401610a72565b806115c0856001600160a01b031660009081526020819052604090205490565b6115ca9085612097565b11156116185760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b611771565b6001600160a01b03841660009081526010602052604090205460ff16801561165e57506001600160a01b03851660009081526012602052604090205460ff16155b156116d957818311156116185760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e0000000000000000006064820152608401610a72565b6001600160a01b03841660009081526012602052604090205460ff166117715780611719856001600160a01b031660009081526020819052604090205490565b6117239085612097565b11156117715760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b50505b6007546001600160a01b03841660009081526011602052604090205460ff600160a01b9092048216159116806117c257506001600160a01b03831660009081526011602052604090205460ff165b156117cb575060005b6000808215611932576001600160a01b03851660009081526010602052604090205460ff1680156117fe57506000600b54115b1561187957600754600160a81b900460ff161561185857600f546118239060f0612097565b4211156118335750600b5461185d565b600f54611841906078612097565b4211156118505750600861185d565b50601961185d565b50600b545b611872606461186c8684611db9565b90611dcc565b9150611914565b6001600160a01b03861660009081526010602052604090205460ff1680156118a357506000600a54115b1561191457600754600160a81b900460ff16156118fd57600f546118c89060f0612097565b4211156118d85750600a54611902565b600f546118e6906078612097565b4211156118f557506008611902565b506019611902565b50600a545b611911606461186c8684611db9565b91505b811561192557611925863084611c8f565b61192f8285612212565b93505b61193d868686611c8f565b5050600c54600b5550505050565b6001600160a01b0382166119ab5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a72565b6001600160a01b03821660009081526020819052604090205481811015611a1f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a72565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab257611ab2612052565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b549190612225565b81600181518110611b6757611b67612052565b60200260200101906001600160a01b031690816001600160a01b031681525050611bb2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611109565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c07908590600090869030904290600401612242565b600060405180830381600087803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611cb55760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b038216611cdb5760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526020819052604090205481811015611d535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a72565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108e7565b6000611dc582846120aa565b9392505050565b6000611dc582846120c1565b600060208083528351808285015260005b81811015611e0557858101830151858201604001528201611de9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461093d57600080fd5b60008060408385031215611e4e57600080fd5b8235611e5981611e26565b946020939093013593505050565b801515811461093d57600080fd5b600060208284031215611e8757600080fd5b8135611dc581611e67565b600080600060408486031215611ea757600080fd5b833567ffffffffffffffff80821115611ebf57600080fd5b818601915086601f830112611ed357600080fd5b813581811115611ee257600080fd5b8760208260051b8501011115611ef757600080fd5b60209283019550935050840135611f0d81611e67565b809150509250925092565b600080600060608486031215611f2d57600080fd5b8335611f3881611e26565b92506020840135611f4881611e26565b929592945050506040919091013590565b600060208284031215611f6b57600080fd5b5035919050565b600060208284031215611f8457600080fd5b8135611dc581611e26565b60008060408385031215611fa257600080fd5b50508035926020909101359150565b60008060408385031215611fc457600080fd5b8235611fcf81611e26565b91506020830135611fdf81611e67565b809150509250929050565b60008060408385031215611ffd57600080fd5b823561200881611e26565b91506020830135611fdf81611e26565b600181811c9082168061202c57607f821691505b60208210810361204c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161209057612090612068565b5060010190565b8082018082111561084257610842612068565b808202811582820484141761084257610842612068565b6000826120de57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561213957600080fd5b5051919050565b60006020828403121561215257600080fd5b8151611dc581611e67565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561084257610842612068565b60006020828403121561223757600080fd5b8151611dc581611e26565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122925784516001600160a01b03168352938301939183019160010161226d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220bdc5f11ea150f0d9e3d14b4f32f4e37107ce9027dcec3a37c2ea84e7362163da64736f6c63430008110033

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

0000000000000000000000007b85bc72add2e7d589d77599ae54faee35a23e0d

-----Decoded View---------------
Arg [0] : _owner (address): 0x7b85bC72Add2E7D589d77599aE54faee35a23e0D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007b85bc72add2e7d589d77599ae54faee35a23e0d


Deployed Bytecode Sourcemap

34704:12029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16581:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19082:242;;;;;;;;;;-1:-1:-1;19082:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;19082:242:0;1023:187:1;38081:107:0;;;;;;;;;;-1:-1:-1;38081:107:0;;;;;:::i;:::-;;:::i;:::-;;40178:241;;;;;;;;;;-1:-1:-1;40178:241:0;;;;;:::i;:::-;;:::i;34779:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2530:32:1;;;2512:51;;2500:2;2485:18;34779:51:0;2339:230:1;17710:108:0;;;;;;;;;;-1:-1:-1;17798:12:0;;17710:108;;;2720:25:1;;;2708:2;2693:18;17710:108:0;2574:177:1;35131:36:0;;;;;;;;;;;;;;;;19904:295;;;;;;;;;;-1:-1:-1;19904:295:0;;;;;:::i;:::-;;:::i;34874:53::-;;;;;;;;;;;;34920:6;34874:53;;17552:93;;;;;;;;;;-1:-1:-1;17552:93:0;;17635:2;3567:36:1;;3555:2;3540:18;17552:93:0;3425:184:1;20608:270:0;;;;;;;;;;-1:-1:-1;20608:270:0;;;;;:::i;:::-;;:::i;35046:40::-;;;;;;;;;;-1:-1:-1;35046:40:0;;;;-1:-1:-1;;;35046:40:0;;;;;;37875:81;;;;;;;;;;-1:-1:-1;37875:81:0;;;;;:::i;:::-;;:::i;34839:28::-;;;;;;;;;;-1:-1:-1;34839:28:0;;;;-1:-1:-1;;;;;34839:28:0;;;41660:126;;;;;;;;;;-1:-1:-1;41660:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41750:28:0;41726:4;41750:28;;;:19;:28;;;;;;;;;41660:126;41088:336;;;;;;;;;;;;;:::i;38509:504::-;;;;;;;;;;-1:-1:-1;38509:504:0;;;;;:::i;:::-;;:::i;17881:177::-;;;;;;;;;;-1:-1:-1;17881:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18032:18:0;18000:7;18032:18;;;;;;;;;;;;17881:177;2819:103;;;;;;;;;;;;;:::i;39471:168::-;;;;;;;;;;-1:-1:-1;39471:168:0;;;;;:::i;:::-;;:::i;39021:169::-;;;;;;;;;;-1:-1:-1;39021:169:0;;;;;:::i;:::-;;:::i;34934:30::-;;;;;;;;;;-1:-1:-1;34934:30:0;;;;-1:-1:-1;;;;;34934:30:0;;;35327:25;;;;;;;;;;;;;;;;35267:20;;;;;;;;;;-1:-1:-1;35267:20:0;;;;;;;;2178:87;;;;;;;;;;-1:-1:-1;2251:6:0;;-1:-1:-1;;;;;2251:6:0;2178:87;;38196:305;;;;;;;;;;;;;:::i;16800:104::-;;;;;;;;;;;;;:::i;21381:505::-;;;;;;;;;;-1:-1:-1;21381:505:0;;;;;:::i;:::-;;:::i;18264:234::-;;;;;;;;;;-1:-1:-1;18264:234:0;;;;;:::i;:::-;;:::i;39861:309::-;;;;;;;;;;-1:-1:-1;39861:309:0;;;;;:::i;:::-;;:::i;40427:173::-;;;;;;;;;;-1:-1:-1;40427:173:0;;;;;:::i;:::-;;:::i;37964:109::-;;;;;;;;;;-1:-1:-1;37964:109:0;;;;;:::i;:::-;;:::i;40608:472::-;;;;;;;;;;-1:-1:-1;40608:472:0;;;;;:::i;:::-;;:::i;35294:26::-;;;;;;;;;;;;;;;;39198:265;;;;;;;;;;-1:-1:-1;39198:265:0;;;;;:::i;:::-;;:::i;35093:31::-;;;;;;;;;;;;;;;;18561:201;;;;;;;;;;-1:-1:-1;18561:201:0;;;;;:::i;:::-;;:::i;35203:23::-;;;;;;;;;;;;;;;;35174:22;;;;;;;;;;;;;;;;39647:206;;;;;;;;;;-1:-1:-1;39647:206:0;;;;;:::i;:::-;;:::i;35000:39::-;;;;;;;;;;-1:-1:-1;35000:39:0;;;;-1:-1:-1;;;35000:39:0;;;;;;3077:238;;;;;;;;;;-1:-1:-1;3077:238:0;;;;;:::i;:::-;;:::i;16581:100::-;16635:13;16668:5;16661:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16581:100;:::o;19082:242::-;19201:4;803:10;19262:32;803:10;19278:7;19287:6;19262:8;:32::i;:::-;19312:4;19305:11;;;19082:242;;;;;:::o;38081:107::-;2064:13;:11;:13::i;:::-;38153:19:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;38153:27:0::1;-1:-1:-1::0;;;;38153:27:0;;::::1;::::0;;;::::1;::::0;;38081:107::o;40178:241::-;2064:13;:11;:13::i;:::-;40304:9:::1;40299:113;40319:19:::0;;::::1;40299:113;;;40395:5;40360:19;:32;40380:8;;40389:1;40380:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40360:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40360:32:0;:40;;-1:-1:-1;;40360:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40340:3;::::1;::::0;::::1;:::i;:::-;;;;40299:113;;;;40178:241:::0;;;:::o;19904:295::-;20035:4;803:10;20093:38;20109:4;803:10;20124:6;20093:15;:38::i;:::-;20142:27;20152:4;20158:2;20162:6;20142:9;:27::i;:::-;-1:-1:-1;20187:4:0;;19904:295;-1:-1:-1;;;;19904:295:0:o;20608:270::-;20723:4;803:10;20784:64;803:10;20800:7;20837:10;20809:25;803:10;20800:7;20809:9;:25::i;:::-;:38;;;;:::i;:::-;20784:8;:64::i;37875:81::-;37923:25;37929:10;37941:6;37923:5;:25::i;:::-;37875:81;:::o;41088:336::-;2064:13;:11;:13::i;:::-;35909:9:::1;:16:::0;;-1:-1:-1;;;;35909:16:0::1;-1:-1:-1::0;;;35909:16:0::1;::::0;;41147:66:::2;41178:24;41196:4;-1:-1:-1::0;;;;;18032:18:0;18000:7;18032:18;;;;;;;;;;;;17881:177;41178:24:::2;41147:16;:66::i;:::-;41370:15;::::0;41362:54:::2;::::0;41247:21:::2;::::0;;;41226:18:::2;::::0;-1:-1:-1;;;;;41370:15:0::2;::::0;41247:21;;41226:18;41362:54;41226:18;41362:54;41247:21;41370:15;41362:54:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;35948:9:0::1;:17:::0;;-1:-1:-1;;;;35948:17:0::1;::::0;;-1:-1:-1;;;;41088:336:0:o;38509:504::-;2064:13;:11;:13::i;:::-;38699:4:::1;38678:13;17798:12:::0;;;17710:108;38678:13:::1;:17;::::0;38694:1:::1;38678:17;:::i;:::-;38677:26;;;;:::i;:::-;38658:14;:46;;38636:136;;;::::0;-1:-1:-1;;;38636:136:0;;6810:2:1;38636:136:0::1;::::0;::::1;6792:21:1::0;6849:2;6829:18;;;6822:30;6888:34;6868:18;;;6861:62;-1:-1:-1;;;6939:18:1;;;6932:38;6987:19;;38636:136:0::1;;;;;;;;;38841:4;38820:13;17798:12:::0;;;17710:108;38820:13:::1;:17;::::0;38836:1:::1;38820:17;:::i;:::-;38819:26;;;;:::i;:::-;38805:9;:41;;38783:134;;;::::0;-1:-1:-1;;;38783:134:0;;7219:2:1;38783:134:0::1;::::0;::::1;7201:21:1::0;7258:2;7238:18;;;7231:30;7297:34;7277:18;;;7270:62;-1:-1:-1;;;7348:18:1;;;7341:41;7399:19;;38783:134:0::1;7017:407:1::0;38783:134:0::1;38928:21;:38:::0;;;;38977:16:::1;:28:::0;38509:504::o;2819:103::-;2064:13;:11;:13::i;:::-;2884:30:::1;2911:1;2884:18;:30::i;:::-;2819:103::o:0;39471:168::-;2064:13;:11;:13::i;:::-;39540:7:::1;:18:::0;;;39577:13;::::1;;39569:62;;;;-1:-1:-1::0;;;39569:62:0::1;;;;;;;:::i;39021:169::-:0;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;39135:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:47;;-1:-1:-1;;39135:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39021:169::o;38196:305::-;2064:13;:11;:13::i;:::-;38279:8:::1;::::0;::::1;;38278:9;38270:46;;;::::0;-1:-1:-1;;;38270:46:0;;8036:2:1;38270:46:0::1;::::0;::::1;8018:21:1::0;8075:2;8055:18;;;8048:30;8114:26;8094:18;;;8087:54;8158:18;;38270:46:0::1;7834:348:1::0;38270:46:0::1;38327:8;:15:::0;;-1:-1:-1;;38327:15:0::1;38338:4;38327:15;::::0;;38367:12:::1;38353:11;:26:::0;38403:15:::1;38390:10;:28:::0;38429:19:::1;:26:::0;;-1:-1:-1;;;;;;;38466:27:0;;;;;;38196:305::o;16800:104::-;16856:13;16889:7;16882:14;;;;;:::i;21381:505::-;21501:4;803:10;21501:4;21589:25;803:10;21606:7;21589:9;:25::i;:::-;21562:52;;21667:15;21647:16;:35;;21625:122;;;;-1:-1:-1;;;21625:122:0;;8389:2:1;21625:122:0;;;8371:21:1;8428:2;8408:18;;;8401:30;8467:34;8447:18;;;8440:62;-1:-1:-1;;;8518:18:1;;;8511:35;8563:19;;21625:122:0;8187:401:1;21625:122:0;21783:60;21792:5;21799:7;21827:15;21808:16;:34;21783:8;:60::i;18264:234::-;18379:4;803:10;18440:28;803:10;18457:2;18461:6;18440:9;:28::i;39861:309::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;39954:30:0;::::1;39946:59;;;::::0;-1:-1:-1;;;39946:59:0;;8795:2:1;39946:59:0::1;::::0;::::1;8777:21:1::0;8834:2;8814:18;;;8807:30;-1:-1:-1;;;8853:18:1;;;8846:46;8909:18;;39946:59:0::1;8593:340:1::0;39946:59:0::1;40036:15;::::0;;-1:-1:-1;;;;;40062:34:0;;::::1;-1:-1:-1::0;;;;;;40062:34:0;::::1;::::0;::::1;::::0;;;40112:50:::1;::::0;40036:15;::::1;::::0;;;40112:50:::1;::::0;40016:17:::1;::::0;40112:50:::1;39935:235;39861:309:::0;:::o;40427:173::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;40509:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;40509:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40561:31;;1163:41:1;;;40561:31:0::1;::::0;1136:18:1;40561:31:0::1;;;;;;;40427:173:::0;;:::o;37964:109::-;2064:13;:11;:13::i;:::-;38037:20:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;38037:28:0::1;-1:-1:-1::0;;;;38037:28:0;;::::1;::::0;;;::::1;::::0;;37964:109::o;40608:472::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;40682:17:0;::::1;40678:395;;40757:86;::::0;40716:12:::1;::::0;40765:10:::1;::::0;40789:21:::1;::::0;40716:12;40757:86;40716:12;40757:86;40789:21;40765:10;40757:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;40678:395:0::1;::::0;-1:-1:-1;;;40678:395:0::1;;40884:36;::::0;-1:-1:-1;;;40884:36:0;;40914:4:::1;40884:36;::::0;::::1;2512:51:1::0;40923:1:0::1;::::0;-1:-1:-1;;;;;40884:21:0;::::1;::::0;::::1;::::0;2485:18:1;;40884:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;40876:62;;;::::0;-1:-1:-1;;;40876:62:0;;9329:2:1;40876:62:0::1;::::0;::::1;9311:21:1::0;9368:1;9348:18;;;9341:29;-1:-1:-1;;;9386:18:1;;;9379:39;9435:18;;40876:62:0::1;9127:332:1::0;40876:62:0::1;40970:36;::::0;-1:-1:-1;;;40970:36:0;;41000:4:::1;40970:36;::::0;::::1;2512:51:1::0;40953:14:0::1;::::0;-1:-1:-1;;;;;40970:21:0;::::1;::::0;::::1;::::0;2485:18:1;;40970:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41021:40;::::0;-1:-1:-1;;;41021:40:0;;41042:10:::1;41021:40;::::0;::::1;9638:51:1::0;9705:18;;;9698:34;;;40953:53:0;;-1:-1:-1;;;;;;41021:20:0;::::1;::::0;::::1;::::0;9611:18:1;;41021:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40861:212;40608:472:::0;:::o;39198:265::-;2064:13;:11;:13::i;:::-;39336:9:::1;39331:125;39351:19:::0;;::::1;39331:125;;;39439:5;39392:31;:44;39424:8;;39433:1;39424:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39392:44:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;39392:44:0;:52;;-1:-1:-1;;39392:52:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39372:3;::::1;::::0;::::1;:::i;:::-;;;;39331:125;;18561:201:::0;-1:-1:-1;;;;;18727:18:0;;;18695:7;18727:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18561:201::o;39647:206::-;2064:13;:11;:13::i;:::-;39718:8:::1;:20:::0;;;39749:11:::1;:22:::0;;;39802:2:::1;39790:14:::0;::::1;;39782:63;;;;-1:-1:-1::0;;;39782:63:0::1;;;;;;;:::i;3077:238::-:0;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;3180:22:0;::::1;3158:110;;;::::0;-1:-1:-1;;;3158:110:0;;10195:2:1;3158:110:0::1;::::0;::::1;10177:21:1::0;10234:2;10214:18;;;10207:30;10273:34;10253:18;;;10246:62;-1:-1:-1;;;10324:18:1;;;10317:36;10370:19;;3158:110:0::1;9993:402:1::0;3158:110:0::1;3279:28;3298:8;3279:18;:28::i;25514:380::-:0;-1:-1:-1;;;;;25650:19:0;;25642:68;;;;-1:-1:-1;;;25642:68:0;;10602:2:1;25642:68:0;;;10584:21:1;10641:2;10621:18;;;10614:30;10680:34;10660:18;;;10653:62;-1:-1:-1;;;10731:18:1;;;10724:34;10775:19;;25642:68:0;10400:400:1;25642:68:0;-1:-1:-1;;;;;25729:21:0;;25721:68;;;;-1:-1:-1;;;25721:68:0;;11007:2:1;25721:68:0;;;10989:21:1;11046:2;11026:18;;;11019:30;11085:34;11065:18;;;11058:62;-1:-1:-1;;;11136:18:1;;;11129:32;11178:19;;25721:68:0;10805:398:1;25721:68:0;-1:-1:-1;;;;;25802:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25854:32;;2720:25:1;;;25854:32:0;;2693:18:1;25854:32:0;;;;;;;25514:380;;;:::o;2343:132::-;2251:6;;-1:-1:-1;;;;;2251:6:0;803:10;2407:23;2399:68;;;;-1:-1:-1;;;2399:68:0;;11410:2:1;2399:68:0;;;11392:21:1;;;11429:18;;;11422:30;11488:34;11468:18;;;11461:62;11540:18;;2399:68:0;11208:356:1;26185:502:0;26320:24;26347:25;26357:5;26364:7;26347:9;:25::i;:::-;26320:52;;-1:-1:-1;;26387:16:0;:37;26383:297;;26487:6;26467:16;:26;;26441:117;;;;-1:-1:-1;;;26441:117:0;;11771:2:1;26441:117:0;;;11753:21:1;11810:2;11790:18;;;11783:30;11849:31;11829:18;;;11822:59;11898:18;;26441:117:0;11569:353:1;26441:117:0;26602:51;26611:5;26618:7;26646:6;26627:16;:25;26602:8;:51::i;41794:4073::-;-1:-1:-1;;;;;41926:18:0;;41918:68;;;;-1:-1:-1;;;41918:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42005:16:0;;41997:64;;;;-1:-1:-1;;;41997:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42083:12:0;;;;;;:6;:12;;;;;;;;42082:13;42074:45;;;;-1:-1:-1;;;42074:45:0;;;;;;;:::i;:::-;42146:10;42139:18;;;;:6;:18;;;;;;;;42138:19;42130:51;;;;-1:-1:-1;;;42130:51:0;;;;;;;:::i;:::-;42208:9;42201:17;;;;:6;:17;;;;;;;;42200:18;42192:50;;;;-1:-1:-1;;;42192:50:0;;;;;;;:::i;:::-;42259:6;42269:1;42259:11;42255:93;;42287:28;42303:4;42309:2;42313:1;42287:15;:28::i;42255:93::-;2251:6;;-1:-1:-1;;;;;42378:15:0;;;2251:6;;42378:15;;;;:45;;-1:-1:-1;2251:6:0;;-1:-1:-1;;;;;42410:13:0;;;2251:6;;42410:13;;42378:45;:78;;;;-1:-1:-1;;;;;;42440:16:0;;;;42378:78;:112;;;;-1:-1:-1;;;;;;42473:17:0;;34920:6;42473:17;;42378:112;:139;;;;-1:-1:-1;42508:9:0;;-1:-1:-1;;;42508:9:0;;;;42507:10;42378:139;42360:1833;;;42617:20;;42544:22;;;;-1:-1:-1;;;42617:20:0;;;;42613:535;;;42680:10;;:24;;42694:9;42680:24;:::i;:::-;42662:15;:42;42658:349;;;17798:12;;;-1:-1:-1;17798:12:0;42794:13;42782:25;;42613:535;;42658:349;42924:3;42903:13;17798:12;;;17710:108;42903:13;:17;;42919:1;42903:17;:::i;:::-;42902:25;;;;:::i;:::-;42885:42;;42984:3;42963:13;17798:12;;;17710:108;42963:13;:17;;42979:1;42963:17;:::i;:::-;42962:25;;;;:::i;42613:535::-;-1:-1:-1;;43064:21:0;;43116:16;;42613:535;-1:-1:-1;;;;;43186:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;43239:35:0;;;;;;:31;:35;;;;;;;;43238:36;43186:88;43164:1018;;;43349:14;43339:6;:24;;43309:152;;;;-1:-1:-1;;;43309:152:0;;13287:2:1;43309:152:0;;;13269:21:1;13326:2;13306:18;;;13299:30;13365:34;13345:18;;;13338:62;-1:-1:-1;;;13416:18:1;;;13409:52;13478:19;;43309:152:0;13085:418:1;43309:152:0;43536:9;43519:13;43529:2;-1:-1:-1;;;;;18032:18:0;18000:7;18032:18;;;;;;;;;;;;17881:177;43519:13;43510:22;;:6;:22;:::i;:::-;:35;;43480:135;;;;-1:-1:-1;;;43480:135:0;;13710:2:1;43480:135:0;;;13692:21:1;13749:2;13729:18;;;13722:30;13788:28;13768:18;;;13761:56;13834:18;;43480:135:0;13508:350:1;43480:135:0;43164:1018;;;-1:-1:-1;;;;;43672:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;43723:37:0;;;;;;:31;:37;;;;;;;;43722:38;43672:88;43650:532;;;43835:14;43825:6;:24;;43795:153;;;;-1:-1:-1;;;43795:153:0;;14065:2:1;43795:153:0;;;14047:21:1;14104:2;14084:18;;;14077:30;14143:34;14123:18;;;14116:62;14214:25;14194:18;;;14187:53;14257:19;;43795:153:0;13863:419:1;43650:532:0;-1:-1:-1;;;;;43975:35:0;;;;;;:31;:35;;;;;;;;43970:212;;44087:9;44070:13;44080:2;-1:-1:-1;;;;;18032:18:0;18000:7;18032:18;;;;;;;;;;;;17881:177;44070:13;44061:22;;:6;:22;:::i;:::-;:35;;44031:135;;;;-1:-1:-1;;;44031:135:0;;13710:2:1;44031:135:0;;;13692:21:1;13749:2;13729:18;;;13722:30;13788:28;13768:18;;;13761:56;13834:18;;44031:135:0;13508:350:1;44031:135:0;42529:1664;;42360:1833;44221:9;;-1:-1:-1;;;;;44247:25:0;;44205:12;44247:25;;;:19;:25;;;;;;44221:9;-1:-1:-1;;;44221:9:0;;;;;44220:10;;44247:25;;:52;;-1:-1:-1;;;;;;44276:23:0;;;;;;:19;:23;;;;;;;;44247:52;44243:100;;;-1:-1:-1;44326:5:0;44243:100;44355:12;44382:17;44420:7;44416:1365;;;-1:-1:-1;;;;;44448:29:0;;;;;;:25;:29;;;;;;;;:45;;;;;44492:1;44481:8;;:12;44448:45;44444:1188;;;44518:19;;-1:-1:-1;;;44518:19:0;;;;44514:444;;;44584:10;;:24;;44598:9;44584:24;:::i;:::-;44566:15;:42;44562:308;;;-1:-1:-1;44649:8:0;;44514:444;;44562:308;44709:10;;:24;;44723:9;44709:24;:::i;:::-;44691:15;:42;44687:183;;;-1:-1:-1;44774:1:0;44514:444;;44687:183;-1:-1:-1;44844:2:0;44514:444;;;-1:-1:-1;44930:8:0;;44514:444;44983:30;45009:3;44983:21;:6;44994:9;44983:10;:21::i;:::-;:25;;:30::i;:::-;44976:37;;44444:1188;;;-1:-1:-1;;;;;45052:31:0;;;;;;:25;:31;;;;;;;;:46;;;;;45097:1;45087:7;;:11;45052:46;45048:584;;;45123:19;;-1:-1:-1;;;45123:19:0;;;;45119:442;;;45189:10;;:24;;45203:9;45189:24;:::i;:::-;45171:15;:42;45167:307;;;-1:-1:-1;45254:7:0;;45119:442;;45167:307;45313:10;;:24;;45327:9;45313:24;:::i;:::-;45295:15;:42;45291:183;;;-1:-1:-1;45378:1:0;45119:442;;45291:183;-1:-1:-1;45448:2:0;45119:442;;;-1:-1:-1;45534:7:0;;45119:442;45586:30;45612:3;45586:21;:6;45597:9;45586:10;:21::i;:30::-;45579:37;;45048:584;45652:8;;45648:91;;45681:42;45697:4;45711;45718;45681:15;:42::i;:::-;45755:14;45765:4;45755:14;;:::i;:::-;;;44416:1365;45793:33;45809:4;45815:2;45819:6;45793:15;:33::i;:::-;-1:-1:-1;;45848:11:0;;45837:8;:22;-1:-1:-1;;;;41794:4073:0:o;24401:675::-;-1:-1:-1;;;;;24485:21:0;;24477:67;;;;-1:-1:-1;;;24477:67:0;;14622:2:1;24477:67:0;;;14604:21:1;14661:2;14641:18;;;14634:30;14700:34;14680:18;;;14673:62;-1:-1:-1;;;14751:18:1;;;14744:31;14792:19;;24477:67:0;14420:397:1;24477:67:0;-1:-1:-1;;;;;24644:18:0;;24619:22;24644:18;;;;;;;;;;;24681:24;;;;24673:71;;;;-1:-1:-1;;;24673:71:0;;15024:2:1;24673:71:0;;;15006:21:1;15063:2;15043:18;;;15036:30;15102:34;15082:18;;;15075:62;-1:-1:-1;;;15153:18:1;;;15146:32;15195:19;;24673:71:0;14822:398:1;24673:71:0;-1:-1:-1;;;;;24780:18:0;;:9;:18;;;;;;;;;;;24801:23;;;24780:44;;24919:12;:22;;;;;;;24970:37;2720:25:1;;;24780:9:0;;:18;24970:37;;2693:18:1;24970:37:0;;;;;;;41021:40:::1;40861:212;40608:472:::0;:::o;45875:484::-;45974:16;;;45988:1;45974:16;;;;;;;;45950:21;;45974:16;;;;;;;;;;-1:-1:-1;45974:16:0;45950:40;;46019:4;46001;46006:1;46001:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46001:23:0;;;-1:-1:-1;;;;;46001:23:0;;;;;46045:15;-1:-1:-1;;;;;46045:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46035:4;46040:1;46035:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46035:32:0;;;-1:-1:-1;;;;;46035:32:0;;;;;46080:62;46097:4;46112:15;46130:11;46080:8;:62::i;:::-;46155:196;;-1:-1:-1;;;46155:196:0;;-1:-1:-1;;;;;46155:15:0;:66;;;;:196;;46236:11;;46262:1;;46278:4;;46305;;46325:15;;46155:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45939:420;45875:484;:::o;3475:191::-;3568:6;;;-1:-1:-1;;;;;3585:17:0;;;-1:-1:-1;;;;;;3585:17:0;;;;;;;3618:40;;3568:6;;;3585:17;3568:6;;3618:40;;3549:16;;3618:40;3538:128;3475:191;:::o;22356:877::-;-1:-1:-1;;;;;22487:18:0;;22479:68;;;;-1:-1:-1;;;22479:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22566:16:0;;22558:64;;;;-1:-1:-1;;;22558:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22708:15:0;;22686:19;22708:15;;;;;;;;;;;22756:21;;;;22734:109;;;;-1:-1:-1;;;22734:109:0;;16800:2:1;22734:109:0;;;16782:21:1;16839:2;16819:18;;;16812:30;16878:34;16858:18;;;16851:62;-1:-1:-1;;;16929:18:1;;;16922:36;16975:19;;22734:109:0;16598:402:1;22734:109:0;-1:-1:-1;;;;;22879:15:0;;;:9;:15;;;;;;;;;;;22897:20;;;22879:38;;23097:13;;;;;;;;;;:23;;;;;;23149:26;;2720:25:1;;;23097:13:0;;23149:26;;2693:18:1;23149:26:0;;;;;;;23188:37;40608:472;7388:98;7446:7;7473:5;7477:1;7473;:5;:::i;:::-;7466:12;7388:98;-1:-1:-1;;;7388:98:0:o;7787:::-;7845:7;7872:5;7876:1;7872;:5;:::i;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:118::-;1301:5;1294:13;1287:21;1280:5;1277:32;1267:60;;1323:1;1320;1313:12;1338:241;1394:6;1447:2;1435:9;1426:7;1422:23;1418:32;1415:52;;;1463:1;1460;1453:12;1415:52;1502:9;1489:23;1521:28;1543:5;1521:28;:::i;1584:750::-;1676:6;1684;1692;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;1801:9;1788:23;1830:18;1871:2;1863:6;1860:14;1857:34;;;1887:1;1884;1877:12;1857:34;1925:6;1914:9;1910:22;1900:32;;1970:7;1963:4;1959:2;1955:13;1951:27;1941:55;;1992:1;1989;1982:12;1941:55;2032:2;2019:16;2058:2;2050:6;2047:14;2044:34;;;2074:1;2071;2064:12;2044:34;2129:7;2122:4;2112:6;2109:1;2105:14;2101:2;2097:23;2093:34;2090:47;2087:67;;;2150:1;2147;2140:12;2087:67;2181:4;2173:13;;;;-1:-1:-1;2205:6:1;-1:-1:-1;;2246:20:1;;2233:34;2276:28;2233:34;2276:28;:::i;:::-;2323:5;2313:15;;;1584:750;;;;;:::o;2756:456::-;2833:6;2841;2849;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;2957:9;2944:23;2976:31;3001:5;2976:31;:::i;:::-;3026:5;-1:-1:-1;3083:2:1;3068:18;;3055:32;3096:33;3055:32;3096:33;:::i;:::-;2756:456;;3148:7;;-1:-1:-1;;;3202:2:1;3187:18;;;;3174:32;;2756:456::o;3614:180::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;-1:-1:-1;3765:23:1;;3614:180;-1:-1:-1;3614:180:1:o;3799:247::-;3858:6;3911:2;3899:9;3890:7;3886:23;3882:32;3879:52;;;3927:1;3924;3917:12;3879:52;3966:9;3953:23;3985:31;4010:5;3985:31;:::i;4051:248::-;4119:6;4127;4180:2;4168:9;4159:7;4155:23;4151:32;4148:52;;;4196:1;4193;4186:12;4148:52;-1:-1:-1;;4219:23:1;;;4289:2;4274:18;;;4261:32;;-1:-1:-1;4051:248:1:o;4304:382::-;4369:6;4377;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4485:9;4472:23;4504:31;4529:5;4504:31;:::i;:::-;4554:5;-1:-1:-1;4611:2:1;4596:18;;4583:32;4624:30;4583:32;4624:30;:::i;:::-;4673:7;4663:17;;;4304:382;;;;;:::o;4691:388::-;4759:6;4767;4820:2;4808:9;4799:7;4795:23;4791:32;4788:52;;;4836:1;4833;4826:12;4788:52;4875:9;4862:23;4894:31;4919:5;4894:31;:::i;:::-;4944:5;-1:-1:-1;5001:2:1;4986:18;;4973:32;5014:33;4973:32;5014:33;:::i;5084:380::-;5163:1;5159:12;;;;5206;;;5227:61;;5281:4;5273:6;5269:17;5259:27;;5227:61;5334:2;5326:6;5323:14;5303:18;5300:38;5297:161;;5380:10;5375:3;5371:20;5368:1;5361:31;5415:4;5412:1;5405:15;5443:4;5440:1;5433:15;5297:161;;5084:380;;;:::o;5469:127::-;5530:10;5525:3;5521:20;5518:1;5511:31;5561:4;5558:1;5551:15;5585:4;5582:1;5575:15;5601:127;5662:10;5657:3;5653:20;5650:1;5643:31;5693:4;5690:1;5683:15;5717:4;5714:1;5707:15;5733:135;5772:3;5793:17;;;5790:43;;5813:18;;:::i;:::-;-1:-1:-1;5860:1:1;5849:13;;5733:135::o;5873:125::-;5938:9;;;5959:10;;;5956:36;;;5972:18;;:::i;6213:168::-;6286:9;;;6317;;6334:15;;;6328:22;;6314:37;6304:71;;6355:18;;:::i;6386:217::-;6426:1;6452;6442:132;;6496:10;6491:3;6487:20;6484:1;6477:31;6531:4;6528:1;6521:15;6559:4;6556:1;6549:15;6442:132;-1:-1:-1;6588:9:1;;6386:217::o;7429:400::-;7631:2;7613:21;;;7670:2;7650:18;;;7643:30;7709:34;7704:2;7689:18;;7682:62;-1:-1:-1;;;7775:2:1;7760:18;;7753:34;7819:3;7804:19;;7429:400::o;8938:184::-;9008:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:52;;;9077:1;9074;9067:12;9029:52;-1:-1:-1;9100:16:1;;8938:184;-1:-1:-1;8938:184:1:o;9743:245::-;9810:6;9863:2;9851:9;9842:7;9838:23;9834:32;9831:52;;;9879:1;9876;9869:12;9831:52;9911:9;9905:16;9930:28;9952:5;9930:28;:::i;11927:401::-;12129:2;12111:21;;;12168:2;12148:18;;;12141:30;12207:34;12202:2;12187:18;;12180:62;-1:-1:-1;;;12273:2:1;12258:18;;12251:35;12318:3;12303:19;;11927:401::o;12333:399::-;12535:2;12517:21;;;12574:2;12554:18;;;12547:30;12613:34;12608:2;12593:18;;12586:62;-1:-1:-1;;;12679:2:1;12664:18;;12657:33;12722:3;12707:19;;12333:399::o;12737:343::-;12939:2;12921:21;;;12978:2;12958:18;;;12951:30;-1:-1:-1;;;13012:2:1;12997:18;;12990:49;13071:2;13056:18;;12737:343::o;14287:128::-;14354:9;;;14375:11;;;14372:37;;;14389:18;;:::i;15357:251::-;15427:6;15480:2;15468:9;15459:7;15455:23;15451:32;15448:52;;;15496:1;15493;15486:12;15448:52;15528:9;15522:16;15547:31;15572:5;15547:31;:::i;15613:980::-;15875:4;15923:3;15912:9;15908:19;15954:6;15943:9;15936:25;15980:2;16018:6;16013:2;16002:9;15998:18;15991:34;16061:3;16056:2;16045:9;16041:18;16034:31;16085:6;16120;16114:13;16151:6;16143;16136:22;16189:3;16178:9;16174:19;16167:26;;16228:2;16220:6;16216:15;16202:29;;16249:1;16259:195;16273:6;16270:1;16267:13;16259:195;;;16338:13;;-1:-1:-1;;;;;16334:39:1;16322:52;;16429:15;;;;16394:12;;;;16370:1;16288:9;16259:195;;;-1:-1:-1;;;;;;;16510:32:1;;;;16505:2;16490:18;;16483:60;-1:-1:-1;;;16574:3:1;16559:19;16552:35;16471:3;15613:980;-1:-1:-1;;;15613:980:1:o

Swarm Source

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