ETH Price: $2,515.53 (+3.29%)

Token

World All Cup Make Inu (WACMI)
 

Overview

Max Total Supply

5,000,000,000 WACMI

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
46,035,000 WACMI

Value
$0.00
0xc2843a83fc9dbc16f8ad3922e8b0d1c1f9334f53
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:
WACMI

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

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

 /$$      /$$    /$$$$$$      /$$$$$$    /$$      /$$    /$$$$$$
| $$  /$ | $$    /$$__  $$   /$$__  $$  | $$$    /$$$   | $$_/
| $$ /$$$| $$   | $$  \ $$  | $$  \__/  | $$$$  /$$$$   | $$  
| $$/$$ $$ $$   | $$$$$$$$  | $$        | $$ $$/$$ $$   | $$  
| $$$$_  $$$$   | $$__  $$  | $$        | $$  $$$| $$   | $$  
| $$$/ \  $$$   | $$  | $$  | $$    $$  | $$\  $ | $$   | $$  
| $$/   \  $$   | $$  | $$  |  $$$$$$/  | $$ \/  | $$   /$$$$$$
|__/     \__/   |__/  |__/  \______/    |__/     |__/   |______/
                                                                         
                                                             
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

/*

W A C M I

WORLD ALL CUP MAKE INU

Yall aping all these half assed WCI larp rugs coming out
Here's a real degen for the culture.

You ape this, you better help send it. 
Will lock and renounce.

Fuck these jeet rugger devs.

4/4 tax.

*/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will 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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 20; // 20 = .20%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public constant buyMarketingFee = 5;
    uint256 public constant buyLiquidityFee = 1;
    uint256 public constant buyDevFee = 1;

    uint256 public sellTotalFees;
    uint256 public constant sellMarketingFee = 5;
    uint256 public constant sellLiquidityFee = 1;
    uint256 public constant sellDevFee = 1;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("World All Cup Make Inu", "WACMI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 5_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 50_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 100_000_000 * 1e18; // 2.0% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x9e895dd11F5a7b5313cA0b2c2Ccdeb550db9971f); // set as marketing wallet
        devWallet = address(0x9e895dd11F5a7b5313cA0b2c2Ccdeb550db9971f); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    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");

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526014600c819055600d805460ff19908116909155610e10600e55610708601055601280548216600190811762ffff00191690915582549091161790553480156200004d57600080fd5b50604080518082018252601681527f576f726c6420416c6c20437570204d616b6520496e75000000000000000000006020808301918252835180850190945260058452645741434d4960d81b908401528151919291620000b091600391620006c2565b508051620000c6906004906020840190620006c2565b505050620000e3620000dd6200040960201b60201c565b6200040d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620001058160016200045f565b806001600160a01b03166080816001600160a01b031660601b81525050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200015c57600080fd5b505afa15801562000171573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000197919062000768565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e057600080fd5b505afa158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b919062000768565b6040518363ffffffff1660e01b81526004016200023a92919062000798565b602060405180830381600087803b1580156200025557600080fd5b505af11580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000768565b600680546001600160a01b0319166001600160a01b039283161790819055620002bc911660016200045f565b600654620002d5906001600160a01b03166001620004d9565b6a295be96e640669720000006009556a52b7d2dcc80cd2e4000000600b556b1027e72f1f12813088000000612710620003108260036200086e565b6200031c91906200084d565b600a5560016200032e81600562000832565b6200033a919062000832565b60155560016200034c81600562000832565b62000358919062000832565b60165560078054739e895dd11f5a7b5313ca0b2c2ccdeb550db9971f6001600160a01b03199182168117909255600880549091169091179055620003a76200039f6200052d565b60016200053c565b620003b43060016200053c565b620003c361dead60016200053c565b620003d9620003d16200052d565b60016200045f565b620003e63060016200045f565b620003f561dead60016200045f565b620004013382620005e4565b5050620008e3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200046962000409565b6001600160a01b03166200047c6200052d565b6001600160a01b031614620004ae5760405162461bcd60e51b8152600401620004a590620007bd565b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031690565b6200054662000409565b6001600160a01b0316620005596200052d565b6001600160a01b031614620005825760405162461bcd60e51b8152600401620004a590620007bd565b6001600160a01b0382166000818152601a602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790620005d8908490620007b2565b60405180910390a25050565b6001600160a01b0382166200060d5760405162461bcd60e51b8152600401620004a590620007f2565b6200061b60008383620006bd565b80600260008282546200062f919062000832565b90915550506001600160a01b038216600090815260208190526040812080548392906200065e90849062000832565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620006a390859062000829565b60405180910390a3620006b960008383620006bd565b5050565b505050565b828054620006d09062000890565b90600052602060002090601f016020900481019282620006f457600085556200073f565b82601f106200070f57805160ff19168380011785556200073f565b828001600101855582156200073f579182015b828111156200073f57825182559160200191906001019062000722565b506200074d92915062000751565b5090565b5b808211156200074d576000815560010162000752565b6000602082840312156200077a578081fd5b81516001600160a01b038116811462000791578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620008485762000848620008cd565b500190565b6000826200086957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200088b576200088b620008cd565b500290565b600281046001821680620008a557607f821691505b60208210811415620008c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160601c6131d26200092c60003960008181610a4301528181611913015281816124be01528181612594015281816125d00152818161264a015261268601526131d26000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610928578063f637434214610756578063f8b45b0514610948578063fe72b27a1461095d576103a2565b8063dd62ed3e146108de578063e2f45605146108fe578063e884f26014610913578063f11a24d314610756576103a2565b8063c876d0b9116100dc578063c876d0b91461087f578063c8c8ebe414610894578063d257b34f146108a9578063d85ba063146108c9576103a2565b8063bbc0c7421461082a578063c02466681461083f578063c18bc1951461085f576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a00146107b5578063a9059cbb146107ca578063aacebbe3146107ea578063b62496f51461080a576103a2565b80639ec22c0e1461076b5780639fccce3214610780578063a0d82dc514610756578063a457c2d714610795576103a2565b8063924de9b7116101b6578063924de9b71461070157806395d89b41146107215780639a7a23d6146107365780639c3b4fdc14610756576103a2565b80638da5cb5b146106d75780638ea5220f146106ec57806392136913146106c2576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146106785780637571336a1461068d57806375f0a874146106ad5780637bce5a04146106c2576103a2565b80636ddd17131461060e57806370a0823114610623578063715018a614610643578063730c188814610658576103a2565b806349bd5a5e1161029b57806349bd5a5e146105af5780634a62bb65146105c45780634fbee193146105d95780636a486a8e146105f9576103a2565b80632e82f1a014610558578063313ce5671461056d578063395093511461058f576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146104f957806327c8f83514610519578063293230b81461052e5780632c3e486c14610543576103a2565b8063199ffc721461049a5780631a8145bb146104af5780631f3fed8f146104c4578063203e727e146104d9576103a2565b80631694505e116103755780631694505e1461041f57806318160ddd146104415780631816467f14610463578063184c16c514610485576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de53146103ff576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc61097d565b6040516103c9919061294a565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612817565b610a0f565b6040516103c9919061293f565b34801561040b57600080fd5b506103f261041a366004612733565b610a2c565b34801561042b57600080fd5b50610434610a41565b6040516103c991906128f0565b34801561044d57600080fd5b50610456610a65565b6040516103c9919061302b565b34801561046f57600080fd5b5061048361047e366004612733565b610a6b565b005b34801561049157600080fd5b50610456610b10565b3480156104a657600080fd5b50610456610b16565b3480156104bb57600080fd5b50610456610b1c565b3480156104d057600080fd5b50610456610b22565b3480156104e557600080fd5b506104836104f436600461285c565b610b28565b34801561050557600080fd5b506103f26105143660046127a3565b610bd1565b34801561052557600080fd5b50610434610c61565b34801561053a57600080fd5b50610483610c67565b34801561054f57600080fd5b50610456610cc8565b34801561056457600080fd5b506103f2610cce565b34801561057957600080fd5b50610582610cd7565b6040516103c991906130ba565b34801561059b57600080fd5b506103f26105aa366004612817565b610cdc565b3480156105bb57600080fd5b50610434610d30565b3480156105d057600080fd5b506103f2610d3f565b3480156105e557600080fd5b506103f26105f4366004612733565b610d48565b34801561060557600080fd5b50610456610d6a565b34801561061a57600080fd5b506103f2610d70565b34801561062f57600080fd5b5061045661063e366004612733565b610d7f565b34801561064f57600080fd5b50610483610d9a565b34801561066457600080fd5b5061048361067336600461288c565b610de5565b34801561068457600080fd5b506103f2610e8e565b34801561069957600080fd5b506104836106a83660046127e3565b610edf565b3480156106b957600080fd5b50610434610f49565b3480156106ce57600080fd5b50610456610f58565b3480156106e357600080fd5b50610434610f5d565b3480156106f857600080fd5b50610434610f6c565b34801561070d57600080fd5b5061048361071c366004612842565b610f7b565b34801561072d57600080fd5b506103bc610fd6565b34801561074257600080fd5b506104836107513660046127e3565b610fe5565b34801561076257600080fd5b50610456611060565b34801561077757600080fd5b50610456611065565b34801561078c57600080fd5b5061045661106b565b3480156107a157600080fd5b506103f26107b0366004612817565b611071565b3480156107c157600080fd5b506104566110ea565b3480156107d657600080fd5b506103f26107e5366004612817565b6110f0565b3480156107f657600080fd5b50610483610805366004612733565b611104565b34801561081657600080fd5b506103f2610825366004612733565b6111a0565b34801561083657600080fd5b506103f26111b5565b34801561084b57600080fd5b5061048361085a3660046127e3565b6111c3565b34801561086b57600080fd5b5061048361087a36600461285c565b611262565b34801561088b57600080fd5b506103f261130b565b3480156108a057600080fd5b50610456611314565b3480156108b557600080fd5b506103f26108c436600461285c565b61131a565b3480156108d557600080fd5b506104566113e3565b3480156108ea57600080fd5b506104566108f936600461276b565b6113e9565b34801561090a57600080fd5b50610456611414565b34801561091f57600080fd5b506103f261141a565b34801561093457600080fd5b50610483610943366004612733565b61146b565b34801561095457600080fd5b506104566114dc565b34801561096957600080fd5b506103f261097836600461285c565b6114e2565b60606003805461098c90613136565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890613136565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b5050505050905090565b6000610a23610a1c6116cb565b84846116cf565b50600192915050565b601b6020526000908152604090205460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025490565b610a736116cb565b6001600160a01b0316610a84610f5d565b6001600160a01b031614610ab35760405162461bcd60e51b8152600401610aaa90612e2d565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b600c5481565b60185481565b60175481565b610b306116cb565b6001600160a01b0316610b41610f5d565b6001600160a01b031614610b675760405162461bcd60e51b8152600401610aaa90612e2d565b670de0b6b3a76400006103e8610b7b610a65565b610b86906001613100565b610b9091906130e0565b610b9a91906130e0565b811015610bb95760405162461bcd60e51b8152600401610aaa90612fdc565b610bcb81670de0b6b3a7640000613100565b60095550565b6000610bde848484611783565b6001600160a01b038416600090815260016020526040812081610bff6116cb565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610c425760405162461bcd60e51b8152600401610aaa90612de5565b610c5685610c4e6116cb565b8584036116cf565b506001949350505050565b61dead81565b610c6f6116cb565b6001600160a01b0316610c80610f5d565b6001600160a01b031614610ca65760405162461bcd60e51b8152600401610aaa90612e2d565b6012805462ff00001961ff001990911661010017166201000017905542600f55565b600e5481565b600d5460ff1681565b601290565b6000610a23610ce96116cb565b848460016000610cf76116cb565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610d2b91906130c8565b6116cf565b6006546001600160a01b031681565b60125460ff1681565b6001600160a01b0381166000908152601a602052604090205460ff165b919050565b60165481565b60125462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610da26116cb565b6001600160a01b0316610db3610f5d565b6001600160a01b031614610dd95760405162461bcd60e51b8152600401610aaa90612e2d565b610de36000611eb6565b565b610ded6116cb565b6001600160a01b0316610dfe610f5d565b6001600160a01b031614610e245760405162461bcd60e51b8152600401610aaa90612e2d565b610258831015610e465760405162461bcd60e51b8152600401610aaa90612a98565b6103e88211158015610e56575060015b610e725760405162461bcd60e51b8152600401610aaa90612c28565b600e92909255600c55600d805460ff1916911515919091179055565b6000610e986116cb565b6001600160a01b0316610ea9610f5d565b6001600160a01b031614610ecf5760405162461bcd60e51b8152600401610aaa90612e2d565b506012805460ff19169055600190565b610ee76116cb565b6001600160a01b0316610ef8610f5d565b6001600160a01b031614610f1e5760405162461bcd60e51b8152600401610aaa90612e2d565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b600581565b6005546001600160a01b031690565b6008546001600160a01b031681565b610f836116cb565b6001600160a01b0316610f94610f5d565b6001600160a01b031614610fba5760405162461bcd60e51b8152600401610aaa90612e2d565b60128054911515620100000262ff000019909216919091179055565b60606004805461098c90613136565b610fed6116cb565b6001600160a01b0316610ffe610f5d565b6001600160a01b0316146110245760405162461bcd60e51b8152600401610aaa90612e2d565b6006546001600160a01b03838116911614156110525760405162461bcd60e51b8152600401610aaa90612b2f565b61105c8282611f08565b5050565b600181565b60115481565b60195481565b600080600160006110806116cb565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156110cc5760405162461bcd60e51b8152600401610aaa90612f97565b6110e06110d76116cb565b858584036116cf565b5060019392505050565b600f5481565b6000610a236110fd6116cb565b8484611783565b61110c6116cb565b6001600160a01b031661111d610f5d565b6001600160a01b0316146111435760405162461bcd60e51b8152600401610aaa90612e2d565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b601c6020526000908152604090205460ff1681565b601254610100900460ff1681565b6111cb6116cb565b6001600160a01b03166111dc610f5d565b6001600160a01b0316146112025760405162461bcd60e51b8152600401610aaa90612e2d565b6001600160a01b0382166000818152601a602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79061125690849061293f565b60405180910390a25050565b61126a6116cb565b6001600160a01b031661127b610f5d565b6001600160a01b0316146112a15760405162461bcd60e51b8152600401610aaa90612e2d565b670de0b6b3a76400006103e86112b5610a65565b6112c0906005613100565b6112ca91906130e0565b6112d491906130e0565b8110156112f35760405162461bcd60e51b8152600401610aaa90612aeb565b61130581670de0b6b3a7640000613100565b600b5550565b60145460ff1681565b60095481565b60006113246116cb565b6001600160a01b0316611335610f5d565b6001600160a01b03161461135b5760405162461bcd60e51b8152600401610aaa90612e2d565b620186a0611367610a65565b611372906001613100565b61137c91906130e0565b82101561139b5760405162461bcd60e51b8152600401610aaa90612c78565b6103e86113a6610a65565b6113b1906005613100565b6113bb91906130e0565b8211156113da5760405162461bcd60e51b8152600401610aaa90612ccd565b50600a55600190565b60155481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b60006114246116cb565b6001600160a01b0316611435610f5d565b6001600160a01b03161461145b5760405162461bcd60e51b8152600401610aaa90612e2d565b506014805460ff19169055600190565b6114736116cb565b6001600160a01b0316611484610f5d565b6001600160a01b0316146114aa5760405162461bcd60e51b8152600401610aaa90612e2d565b6001600160a01b0381166114d05760405162461bcd60e51b8152600401610aaa90612a10565b6114d981611eb6565b50565b600b5481565b60006114ec6116cb565b6001600160a01b03166114fd610f5d565b6001600160a01b0316146115235760405162461bcd60e51b8152600401610aaa90612e2d565b60105460115461153391906130c8565b42116115515760405162461bcd60e51b8152600401610aaa90612ef1565b6103e88211156115735760405162461bcd60e51b8152600401610aaa90612e62565b426011556006546040516370a0823160e01b815260009130916370a08231916115aa916001600160a01b03909116906004016128f0565b60206040518083038186803b1580156115c257600080fd5b505afa1580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fa9190612874565b9050600061161461271061160e8487611f5c565b90611f6f565b9050801561163557600654611635906001600160a01b031661dead83611f7b565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561167f57600080fd5b505af1158015611693573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b3390565b6001600160a01b0383166116f55760405162461bcd60e51b8152600401610aaa90612f26565b6001600160a01b03821661171b5760405162461bcd60e51b8152600401610aaa90612a56565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061177690859061302b565b60405180910390a3505050565b6001600160a01b0383166117a95760405162461bcd60e51b8152600401610aaa90612eac565b6001600160a01b0382166117cf5760405162461bcd60e51b8152600401610aaa9061299d565b806117e5576117e083836000611f7b565b611eb1565b60125460ff1615611b05576117f8610f5d565b6001600160a01b0316836001600160a01b031614158015611832575061181c610f5d565b6001600160a01b0316826001600160a01b031614155b801561184657506001600160a01b03821615155b801561185d57506001600160a01b03821661dead14155b80156118735750600654600160a01b900460ff16155b15611b0557601254610100900460ff166118e2576001600160a01b0383166000908152601a602052604090205460ff16806118c657506001600160a01b0382166000908152601a602052604090205460ff165b6118e25760405162461bcd60e51b8152600401610aaa906129e0565b60145460ff16156119a8576118f5610f5d565b6001600160a01b0316826001600160a01b03161415801561194857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561196257506006546001600160a01b03838116911614155b156119a8573260009081526013602052604090205443116119955760405162461bcd60e51b8152600401610aaa90612d76565b3260009081526013602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff1680156119e957506001600160a01b0382166000908152601b602052604090205460ff16155b15611a4957600954811115611a105760405162461bcd60e51b8152600401610aaa90612d21565b600b54611a1c83610d7f565b611a2690836130c8565b1115611a445760405162461bcd60e51b8152600401610aaa90612f6a565b611b05565b6001600160a01b0382166000908152601c602052604090205460ff168015611a8a57506001600160a01b0383166000908152601b602052604090205460ff16155b15611ab157600954811115611a445760405162461bcd60e51b8152600401610aaa90612bd2565b6001600160a01b0382166000908152601b602052604090205460ff16611b0557600b54611add83610d7f565b611ae790836130c8565b1115611b055760405162461bcd60e51b8152600401610aaa90612f6a565b6000611b1030610d7f565b600a5490915081108015908190611b2f575060125462010000900460ff165b8015611b455750600654600160a01b900460ff16155b8015611b6a57506001600160a01b0385166000908152601c602052604090205460ff16155b8015611b8f57506001600160a01b0385166000908152601a602052604090205460ff16155b8015611bb457506001600160a01b0384166000908152601a602052604090205460ff16155b15611be2576006805460ff60a01b1916600160a01b179055611bd46120a5565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611c1457506001600160a01b0384166000908152601c602052604090205460ff165b8015611c225750600d5460ff165b8015611c3d5750600e54600f54611c3991906130c8565b4210155b8015611c6257506001600160a01b0385166000908152601a602052604090205460ff16155b15611c7157611c6f6122f1565b505b6006546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611cbf57506001600160a01b0385166000908152601a602052604090205460ff165b15611cc8575060005b60008115611ea1576001600160a01b0386166000908152601c602052604090205460ff168015611cfa57506000601654115b15611dac57611d19606461160e60165488611f5c90919063ffffffff16565b601654909150611d2a600183613100565b611d3491906130e0565b60186000828254611d4591906130c8565b9091555050601654611d58600183613100565b611d6291906130e0565b60196000828254611d7391906130c8565b9091555050601654611d86600583613100565b611d9091906130e0565b60176000828254611da191906130c8565b90915550611e839050565b6001600160a01b0387166000908152601c602052604090205460ff168015611dd657506000601554115b15611e8357611df5606461160e60155488611f5c90919063ffffffff16565b601554909150611e06600183613100565b611e1091906130e0565b60186000828254611e2191906130c8565b9091555050601554611e34600183613100565b611e3e91906130e0565b60196000828254611e4f91906130c8565b9091555050601554611e62600583613100565b611e6c91906130e0565b60176000828254611e7d91906130c8565b90915550505b8015611e9457611e94873083611f7b565b611e9e818661311f565b94505b611eac878787611f7b565b505050505b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000611f688284613100565b9392505050565b6000611f6882846130e0565b6001600160a01b038316611fa15760405162461bcd60e51b8152600401610aaa90612eac565b6001600160a01b038216611fc75760405162461bcd60e51b8152600401610aaa9061299d565b611fd2838383611eb1565b6001600160a01b0383166000908152602081905260409020548181101561200b5760405162461bcd60e51b8152600401610aaa90612b8c565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120429084906130c8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208c919061302b565b60405180910390a361209f848484611eb1565b50505050565b60006120b030610d7f565b905060006019546017546018546120c791906130c8565b6120d191906130c8565b905060008215806120e0575081155b156120ed57505050610de3565b600a546120fb906014613100565b83111561211357600a54612110906014613100565b92505b6000600283601854866121269190613100565b61213091906130e0565b61213a91906130e0565b90506000612148858361244d565b90504761215482612459565b6000612160478361244d565b9050600061217d8761160e60175485611f5c90919063ffffffff16565b9050600061219a8861160e60195486611f5c90919063ffffffff16565b90506000816121a9848661311f565b6121b3919061311f565b6000601881905560178190556019556008546040519192506001600160a01b03169083906121e0906128ed565b60006040518083038185875af1925050503d806000811461221d576040519150601f19603f3d011682016040523d82523d6000602084013e612222565b606091505b509098505086158015906122365750600081115b15612283576122458782612644565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260185460405161227a939291906130a4565b60405180910390a15b6007546040516001600160a01b039091169047906122a0906128ed565b60006040518083038185875af1925050503d80600081146122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b8152600091829130916370a0823191612328916001600160a01b0316906004016128f0565b60206040518083038186803b15801561234057600080fd5b505afa158015612354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123789190612874565b9050600061239761271061160e600c5485611f5c90919063ffffffff16565b905080156123b8576006546123b8906001600160a01b031661dead83611f7b565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561240257600080fd5b505af1158015612416573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000611f68828461311f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061249c57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561251557600080fd5b505afa158015612529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254d919061274f565b8160018151811061256e57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250506125b9307f0000000000000000000000000000000000000000000000000000000000000000846116cf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061260e908590600090869030904290600401613034565b600060405180830381600087803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b505050505050565b61266f307f0000000000000000000000000000000000000000000000000000000000000000846116cf565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d7199083906126ca9030908790600090819061dead904290600401612904565b6060604051808303818588803b1580156126e357600080fd5b505af11580156126f7573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061271c91906128c0565b5050505050565b80358015158114610d6557600080fd5b600060208284031215612744578081fd5b8135611f6881613187565b600060208284031215612760578081fd5b8151611f6881613187565b6000806040838503121561277d578081fd5b823561278881613187565b9150602083013561279881613187565b809150509250929050565b6000806000606084860312156127b7578081fd5b83356127c281613187565b925060208401356127d281613187565b929592945050506040919091013590565b600080604083850312156127f5578182fd5b823561280081613187565b915061280e60208401612723565b90509250929050565b60008060408385031215612829578182fd5b823561283481613187565b946020939093013593505050565b600060208284031215612853578081fd5b611f6882612723565b60006020828403121561286d578081fd5b5035919050565b600060208284031215612885578081fd5b5051919050565b6000806000606084860312156128a0578283fd5b83359250602084013591506128b760408501612723565b90509250925092565b6000806000606084860312156128d4578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b818110156129765785810183015185820160400152820161295a565b818111156129875783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526033908201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604082015272616e206576657279203130206d696e7574657360681b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526030908201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560408201526f747765656e20302520616e642031302560801b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60408201526906b656e7320696e204c560b41b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156130835784516001600160a01b03168352938301939183019160010161305e565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156130db576130db613171565b500190565b6000826130fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561311a5761311a613171565b500290565b60008282101561313157613131613171565b500390565b60028104600182168061314a57607f821691505b6020821081141561316b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146114d957600080fdfea26469706673582212206cb4e1b57eed9762c47ef74ce164a5cf3f0bbe0fbebffbf8b50c2cbec60a85b864736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610928578063f637434214610756578063f8b45b0514610948578063fe72b27a1461095d576103a2565b8063dd62ed3e146108de578063e2f45605146108fe578063e884f26014610913578063f11a24d314610756576103a2565b8063c876d0b9116100dc578063c876d0b91461087f578063c8c8ebe414610894578063d257b34f146108a9578063d85ba063146108c9576103a2565b8063bbc0c7421461082a578063c02466681461083f578063c18bc1951461085f576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a00146107b5578063a9059cbb146107ca578063aacebbe3146107ea578063b62496f51461080a576103a2565b80639ec22c0e1461076b5780639fccce3214610780578063a0d82dc514610756578063a457c2d714610795576103a2565b8063924de9b7116101b6578063924de9b71461070157806395d89b41146107215780639a7a23d6146107365780639c3b4fdc14610756576103a2565b80638da5cb5b146106d75780638ea5220f146106ec57806392136913146106c2576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146106785780637571336a1461068d57806375f0a874146106ad5780637bce5a04146106c2576103a2565b80636ddd17131461060e57806370a0823114610623578063715018a614610643578063730c188814610658576103a2565b806349bd5a5e1161029b57806349bd5a5e146105af5780634a62bb65146105c45780634fbee193146105d95780636a486a8e146105f9576103a2565b80632e82f1a014610558578063313ce5671461056d578063395093511461058f576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146104f957806327c8f83514610519578063293230b81461052e5780632c3e486c14610543576103a2565b8063199ffc721461049a5780631a8145bb146104af5780631f3fed8f146104c4578063203e727e146104d9576103a2565b80631694505e116103755780631694505e1461041f57806318160ddd146104415780631816467f14610463578063184c16c514610485576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de53146103ff576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc61097d565b6040516103c9919061294a565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612817565b610a0f565b6040516103c9919061293f565b34801561040b57600080fd5b506103f261041a366004612733565b610a2c565b34801561042b57600080fd5b50610434610a41565b6040516103c991906128f0565b34801561044d57600080fd5b50610456610a65565b6040516103c9919061302b565b34801561046f57600080fd5b5061048361047e366004612733565b610a6b565b005b34801561049157600080fd5b50610456610b10565b3480156104a657600080fd5b50610456610b16565b3480156104bb57600080fd5b50610456610b1c565b3480156104d057600080fd5b50610456610b22565b3480156104e557600080fd5b506104836104f436600461285c565b610b28565b34801561050557600080fd5b506103f26105143660046127a3565b610bd1565b34801561052557600080fd5b50610434610c61565b34801561053a57600080fd5b50610483610c67565b34801561054f57600080fd5b50610456610cc8565b34801561056457600080fd5b506103f2610cce565b34801561057957600080fd5b50610582610cd7565b6040516103c991906130ba565b34801561059b57600080fd5b506103f26105aa366004612817565b610cdc565b3480156105bb57600080fd5b50610434610d30565b3480156105d057600080fd5b506103f2610d3f565b3480156105e557600080fd5b506103f26105f4366004612733565b610d48565b34801561060557600080fd5b50610456610d6a565b34801561061a57600080fd5b506103f2610d70565b34801561062f57600080fd5b5061045661063e366004612733565b610d7f565b34801561064f57600080fd5b50610483610d9a565b34801561066457600080fd5b5061048361067336600461288c565b610de5565b34801561068457600080fd5b506103f2610e8e565b34801561069957600080fd5b506104836106a83660046127e3565b610edf565b3480156106b957600080fd5b50610434610f49565b3480156106ce57600080fd5b50610456610f58565b3480156106e357600080fd5b50610434610f5d565b3480156106f857600080fd5b50610434610f6c565b34801561070d57600080fd5b5061048361071c366004612842565b610f7b565b34801561072d57600080fd5b506103bc610fd6565b34801561074257600080fd5b506104836107513660046127e3565b610fe5565b34801561076257600080fd5b50610456611060565b34801561077757600080fd5b50610456611065565b34801561078c57600080fd5b5061045661106b565b3480156107a157600080fd5b506103f26107b0366004612817565b611071565b3480156107c157600080fd5b506104566110ea565b3480156107d657600080fd5b506103f26107e5366004612817565b6110f0565b3480156107f657600080fd5b50610483610805366004612733565b611104565b34801561081657600080fd5b506103f2610825366004612733565b6111a0565b34801561083657600080fd5b506103f26111b5565b34801561084b57600080fd5b5061048361085a3660046127e3565b6111c3565b34801561086b57600080fd5b5061048361087a36600461285c565b611262565b34801561088b57600080fd5b506103f261130b565b3480156108a057600080fd5b50610456611314565b3480156108b557600080fd5b506103f26108c436600461285c565b61131a565b3480156108d557600080fd5b506104566113e3565b3480156108ea57600080fd5b506104566108f936600461276b565b6113e9565b34801561090a57600080fd5b50610456611414565b34801561091f57600080fd5b506103f261141a565b34801561093457600080fd5b50610483610943366004612733565b61146b565b34801561095457600080fd5b506104566114dc565b34801561096957600080fd5b506103f261097836600461285c565b6114e2565b60606003805461098c90613136565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890613136565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b5050505050905090565b6000610a23610a1c6116cb565b84846116cf565b50600192915050565b601b6020526000908152604090205460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610a736116cb565b6001600160a01b0316610a84610f5d565b6001600160a01b031614610ab35760405162461bcd60e51b8152600401610aaa90612e2d565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b600c5481565b60185481565b60175481565b610b306116cb565b6001600160a01b0316610b41610f5d565b6001600160a01b031614610b675760405162461bcd60e51b8152600401610aaa90612e2d565b670de0b6b3a76400006103e8610b7b610a65565b610b86906001613100565b610b9091906130e0565b610b9a91906130e0565b811015610bb95760405162461bcd60e51b8152600401610aaa90612fdc565b610bcb81670de0b6b3a7640000613100565b60095550565b6000610bde848484611783565b6001600160a01b038416600090815260016020526040812081610bff6116cb565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610c425760405162461bcd60e51b8152600401610aaa90612de5565b610c5685610c4e6116cb565b8584036116cf565b506001949350505050565b61dead81565b610c6f6116cb565b6001600160a01b0316610c80610f5d565b6001600160a01b031614610ca65760405162461bcd60e51b8152600401610aaa90612e2d565b6012805462ff00001961ff001990911661010017166201000017905542600f55565b600e5481565b600d5460ff1681565b601290565b6000610a23610ce96116cb565b848460016000610cf76116cb565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610d2b91906130c8565b6116cf565b6006546001600160a01b031681565b60125460ff1681565b6001600160a01b0381166000908152601a602052604090205460ff165b919050565b60165481565b60125462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610da26116cb565b6001600160a01b0316610db3610f5d565b6001600160a01b031614610dd95760405162461bcd60e51b8152600401610aaa90612e2d565b610de36000611eb6565b565b610ded6116cb565b6001600160a01b0316610dfe610f5d565b6001600160a01b031614610e245760405162461bcd60e51b8152600401610aaa90612e2d565b610258831015610e465760405162461bcd60e51b8152600401610aaa90612a98565b6103e88211158015610e56575060015b610e725760405162461bcd60e51b8152600401610aaa90612c28565b600e92909255600c55600d805460ff1916911515919091179055565b6000610e986116cb565b6001600160a01b0316610ea9610f5d565b6001600160a01b031614610ecf5760405162461bcd60e51b8152600401610aaa90612e2d565b506012805460ff19169055600190565b610ee76116cb565b6001600160a01b0316610ef8610f5d565b6001600160a01b031614610f1e5760405162461bcd60e51b8152600401610aaa90612e2d565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b600581565b6005546001600160a01b031690565b6008546001600160a01b031681565b610f836116cb565b6001600160a01b0316610f94610f5d565b6001600160a01b031614610fba5760405162461bcd60e51b8152600401610aaa90612e2d565b60128054911515620100000262ff000019909216919091179055565b60606004805461098c90613136565b610fed6116cb565b6001600160a01b0316610ffe610f5d565b6001600160a01b0316146110245760405162461bcd60e51b8152600401610aaa90612e2d565b6006546001600160a01b03838116911614156110525760405162461bcd60e51b8152600401610aaa90612b2f565b61105c8282611f08565b5050565b600181565b60115481565b60195481565b600080600160006110806116cb565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156110cc5760405162461bcd60e51b8152600401610aaa90612f97565b6110e06110d76116cb565b858584036116cf565b5060019392505050565b600f5481565b6000610a236110fd6116cb565b8484611783565b61110c6116cb565b6001600160a01b031661111d610f5d565b6001600160a01b0316146111435760405162461bcd60e51b8152600401610aaa90612e2d565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b601c6020526000908152604090205460ff1681565b601254610100900460ff1681565b6111cb6116cb565b6001600160a01b03166111dc610f5d565b6001600160a01b0316146112025760405162461bcd60e51b8152600401610aaa90612e2d565b6001600160a01b0382166000818152601a602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79061125690849061293f565b60405180910390a25050565b61126a6116cb565b6001600160a01b031661127b610f5d565b6001600160a01b0316146112a15760405162461bcd60e51b8152600401610aaa90612e2d565b670de0b6b3a76400006103e86112b5610a65565b6112c0906005613100565b6112ca91906130e0565b6112d491906130e0565b8110156112f35760405162461bcd60e51b8152600401610aaa90612aeb565b61130581670de0b6b3a7640000613100565b600b5550565b60145460ff1681565b60095481565b60006113246116cb565b6001600160a01b0316611335610f5d565b6001600160a01b03161461135b5760405162461bcd60e51b8152600401610aaa90612e2d565b620186a0611367610a65565b611372906001613100565b61137c91906130e0565b82101561139b5760405162461bcd60e51b8152600401610aaa90612c78565b6103e86113a6610a65565b6113b1906005613100565b6113bb91906130e0565b8211156113da5760405162461bcd60e51b8152600401610aaa90612ccd565b50600a55600190565b60155481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600a5481565b60006114246116cb565b6001600160a01b0316611435610f5d565b6001600160a01b03161461145b5760405162461bcd60e51b8152600401610aaa90612e2d565b506014805460ff19169055600190565b6114736116cb565b6001600160a01b0316611484610f5d565b6001600160a01b0316146114aa5760405162461bcd60e51b8152600401610aaa90612e2d565b6001600160a01b0381166114d05760405162461bcd60e51b8152600401610aaa90612a10565b6114d981611eb6565b50565b600b5481565b60006114ec6116cb565b6001600160a01b03166114fd610f5d565b6001600160a01b0316146115235760405162461bcd60e51b8152600401610aaa90612e2d565b60105460115461153391906130c8565b42116115515760405162461bcd60e51b8152600401610aaa90612ef1565b6103e88211156115735760405162461bcd60e51b8152600401610aaa90612e62565b426011556006546040516370a0823160e01b815260009130916370a08231916115aa916001600160a01b03909116906004016128f0565b60206040518083038186803b1580156115c257600080fd5b505afa1580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fa9190612874565b9050600061161461271061160e8487611f5c565b90611f6f565b9050801561163557600654611635906001600160a01b031661dead83611f7b565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561167f57600080fd5b505af1158015611693573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b3390565b6001600160a01b0383166116f55760405162461bcd60e51b8152600401610aaa90612f26565b6001600160a01b03821661171b5760405162461bcd60e51b8152600401610aaa90612a56565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061177690859061302b565b60405180910390a3505050565b6001600160a01b0383166117a95760405162461bcd60e51b8152600401610aaa90612eac565b6001600160a01b0382166117cf5760405162461bcd60e51b8152600401610aaa9061299d565b806117e5576117e083836000611f7b565b611eb1565b60125460ff1615611b05576117f8610f5d565b6001600160a01b0316836001600160a01b031614158015611832575061181c610f5d565b6001600160a01b0316826001600160a01b031614155b801561184657506001600160a01b03821615155b801561185d57506001600160a01b03821661dead14155b80156118735750600654600160a01b900460ff16155b15611b0557601254610100900460ff166118e2576001600160a01b0383166000908152601a602052604090205460ff16806118c657506001600160a01b0382166000908152601a602052604090205460ff165b6118e25760405162461bcd60e51b8152600401610aaa906129e0565b60145460ff16156119a8576118f5610f5d565b6001600160a01b0316826001600160a01b03161415801561194857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561196257506006546001600160a01b03838116911614155b156119a8573260009081526013602052604090205443116119955760405162461bcd60e51b8152600401610aaa90612d76565b3260009081526013602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff1680156119e957506001600160a01b0382166000908152601b602052604090205460ff16155b15611a4957600954811115611a105760405162461bcd60e51b8152600401610aaa90612d21565b600b54611a1c83610d7f565b611a2690836130c8565b1115611a445760405162461bcd60e51b8152600401610aaa90612f6a565b611b05565b6001600160a01b0382166000908152601c602052604090205460ff168015611a8a57506001600160a01b0383166000908152601b602052604090205460ff16155b15611ab157600954811115611a445760405162461bcd60e51b8152600401610aaa90612bd2565b6001600160a01b0382166000908152601b602052604090205460ff16611b0557600b54611add83610d7f565b611ae790836130c8565b1115611b055760405162461bcd60e51b8152600401610aaa90612f6a565b6000611b1030610d7f565b600a5490915081108015908190611b2f575060125462010000900460ff165b8015611b455750600654600160a01b900460ff16155b8015611b6a57506001600160a01b0385166000908152601c602052604090205460ff16155b8015611b8f57506001600160a01b0385166000908152601a602052604090205460ff16155b8015611bb457506001600160a01b0384166000908152601a602052604090205460ff16155b15611be2576006805460ff60a01b1916600160a01b179055611bd46120a5565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611c1457506001600160a01b0384166000908152601c602052604090205460ff165b8015611c225750600d5460ff165b8015611c3d5750600e54600f54611c3991906130c8565b4210155b8015611c6257506001600160a01b0385166000908152601a602052604090205460ff16155b15611c7157611c6f6122f1565b505b6006546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611cbf57506001600160a01b0385166000908152601a602052604090205460ff165b15611cc8575060005b60008115611ea1576001600160a01b0386166000908152601c602052604090205460ff168015611cfa57506000601654115b15611dac57611d19606461160e60165488611f5c90919063ffffffff16565b601654909150611d2a600183613100565b611d3491906130e0565b60186000828254611d4591906130c8565b9091555050601654611d58600183613100565b611d6291906130e0565b60196000828254611d7391906130c8565b9091555050601654611d86600583613100565b611d9091906130e0565b60176000828254611da191906130c8565b90915550611e839050565b6001600160a01b0387166000908152601c602052604090205460ff168015611dd657506000601554115b15611e8357611df5606461160e60155488611f5c90919063ffffffff16565b601554909150611e06600183613100565b611e1091906130e0565b60186000828254611e2191906130c8565b9091555050601554611e34600183613100565b611e3e91906130e0565b60196000828254611e4f91906130c8565b9091555050601554611e62600583613100565b611e6c91906130e0565b60176000828254611e7d91906130c8565b90915550505b8015611e9457611e94873083611f7b565b611e9e818661311f565b94505b611eac878787611f7b565b505050505b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000611f688284613100565b9392505050565b6000611f6882846130e0565b6001600160a01b038316611fa15760405162461bcd60e51b8152600401610aaa90612eac565b6001600160a01b038216611fc75760405162461bcd60e51b8152600401610aaa9061299d565b611fd2838383611eb1565b6001600160a01b0383166000908152602081905260409020548181101561200b5760405162461bcd60e51b8152600401610aaa90612b8c565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120429084906130c8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208c919061302b565b60405180910390a361209f848484611eb1565b50505050565b60006120b030610d7f565b905060006019546017546018546120c791906130c8565b6120d191906130c8565b905060008215806120e0575081155b156120ed57505050610de3565b600a546120fb906014613100565b83111561211357600a54612110906014613100565b92505b6000600283601854866121269190613100565b61213091906130e0565b61213a91906130e0565b90506000612148858361244d565b90504761215482612459565b6000612160478361244d565b9050600061217d8761160e60175485611f5c90919063ffffffff16565b9050600061219a8861160e60195486611f5c90919063ffffffff16565b90506000816121a9848661311f565b6121b3919061311f565b6000601881905560178190556019556008546040519192506001600160a01b03169083906121e0906128ed565b60006040518083038185875af1925050503d806000811461221d576040519150601f19603f3d011682016040523d82523d6000602084013e612222565b606091505b509098505086158015906122365750600081115b15612283576122458782612644565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260185460405161227a939291906130a4565b60405180910390a15b6007546040516001600160a01b039091169047906122a0906128ed565b60006040518083038185875af1925050503d80600081146122dd576040519150601f19603f3d011682016040523d82523d6000602084013e6122e2565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b8152600091829130916370a0823191612328916001600160a01b0316906004016128f0565b60206040518083038186803b15801561234057600080fd5b505afa158015612354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123789190612874565b9050600061239761271061160e600c5485611f5c90919063ffffffff16565b905080156123b8576006546123b8906001600160a01b031661dead83611f7b565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561240257600080fd5b505af1158015612416573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000611f68828461311f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061249c57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561251557600080fd5b505afa158015612529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254d919061274f565b8160018151811061256e57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250506125b9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116cf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061260e908590600090869030904290600401613034565b600060405180830381600087803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b505050505050565b61266f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116cf565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d7199083906126ca9030908790600090819061dead904290600401612904565b6060604051808303818588803b1580156126e357600080fd5b505af11580156126f7573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061271c91906128c0565b5050505050565b80358015158114610d6557600080fd5b600060208284031215612744578081fd5b8135611f6881613187565b600060208284031215612760578081fd5b8151611f6881613187565b6000806040838503121561277d578081fd5b823561278881613187565b9150602083013561279881613187565b809150509250929050565b6000806000606084860312156127b7578081fd5b83356127c281613187565b925060208401356127d281613187565b929592945050506040919091013590565b600080604083850312156127f5578182fd5b823561280081613187565b915061280e60208401612723565b90509250929050565b60008060408385031215612829578182fd5b823561283481613187565b946020939093013593505050565b600060208284031215612853578081fd5b611f6882612723565b60006020828403121561286d578081fd5b5035919050565b600060208284031215612885578081fd5b5051919050565b6000806000606084860312156128a0578283fd5b83359250602084013591506128b760408501612723565b90509250925092565b6000806000606084860312156128d4578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b818110156129765785810183015185820160400152820161295a565b818111156129875783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526033908201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604082015272616e206576657279203130206d696e7574657360681b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526030908201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560408201526f747765656e20302520616e642031302560801b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60408201526906b656e7320696e204c560b41b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156130835784516001600160a01b03168352938301939183019160010161305e565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156130db576130db613171565b500190565b6000826130fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561311a5761311a613171565b500290565b60008282101561313157613131613171565b500390565b60028104600182168061314a57607f821691505b6020821081141561316b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146114d957600080fdfea26469706673582212206cb4e1b57eed9762c47ef74ce164a5cf3f0bbe0fbebffbf8b50c2cbec60a85b864736f6c63430008000033

Deployed Bytecode Sourcemap

28203:18238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10799:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13107:210;;;;;;;;;;-1:-1:-1;13107:210:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29898:63::-;;;;;;;;;;-1:-1:-1;29898:63:0;;;;;:::i;:::-;;:::i;28278:51::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11919:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35819:157::-;;;;;;;;;;-1:-1:-1;35819:157:0;;;;;:::i;:::-;;:::i;:::-;;28834:47;;;;;;;;;;;;;:::i;28648:36::-;;;;;;;;;;;;;:::i;29682:33::-;;;;;;;;;;;;;:::i;29642:::-;;;;;;;;;;;;;:::i;33964:275::-;;;;;;;;;;-1:-1:-1;33964:275:0;;;;;:::i;:::-;;:::i;13799:529::-;;;;;;;;;;-1:-1:-1;13799:529:0;;;;;:::i;:::-;;:::i;28371:53::-;;;;;;;;;;;;;:::i;32866:154::-;;;;;;;;;;;;;:::i;28744:45::-;;;;;;;;;;;;;:::i;28704:33::-;;;;;;;;;;;;;:::i;11761:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14737:297::-;;;;;;;;;;-1:-1:-1;14737:297:0;;;;;:::i;:::-;;:::i;28336:28::-;;;;;;;;;;;;;:::i;28932:33::-;;;;;;;;;;;;;:::i;35984:126::-;;;;;;;;;;-1:-1:-1;35984:126:0;;;;;:::i;:::-;;:::i;29458:28::-;;;;;;;;;;;;;:::i;29012:31::-;;;;;;;;;;;;;:::i;12090:177::-;;;;;;;;;;-1:-1:-1;12090:177:0;;;;;:::i;:::-;;:::i;4595:103::-;;;;;;;;;;;;;:::i;44023:555::-;;;;;;;;;;-1:-1:-1;44023:555:0;;;;;:::i;:::-;;:::i;33072:121::-;;;;;;;;;;;;;:::i;34511:167::-;;;;;;;;;;-1:-1:-1;34511:167:0;;;;;:::i;:::-;;:::i;28463:30::-;;;;;;;;;;;;;:::i;29312:43::-;;;;;;;;;;;;;:::i;3944:87::-;;;;;;;;;;;;;:::i;28500:24::-;;;;;;;;;;;;;:::i;34774:100::-;;;;;;;;;;-1:-1:-1;34774:100:0;;;;;:::i;:::-;;:::i;11018:104::-;;;;;;;;;;;;;:::i;35072:304::-;;;;;;;;;;-1:-1:-1;35072:304:0;;;;;:::i;:::-;;:::i;29412:37::-;;;;;;;;;;;;;:::i;28888:35::-;;;;;;;;;;;;;:::i;29722:27::-;;;;;;;;;;;;;:::i;15537:482::-;;;;;;;;;;-1:-1:-1;15537:482:0;;;;;:::i;:::-;;:::i;28796:29::-;;;;;;;;;;;;;:::i;12480:216::-;;;;;;;;;;-1:-1:-1;12480:216:0;;;;;:::i;:::-;;:::i;35580:231::-;;;;;;;;;;-1:-1:-1;35580:231:0;;;;;:::i;:::-;;:::i;30119:57::-;;;;;;;;;;-1:-1:-1;30119:57:0;;;;;:::i;:::-;;:::i;28972:33::-;;;;;;;;;;;;;:::i;34882:182::-;;;;;;;;;;-1:-1:-1;34882:182:0;;;;;:::i;:::-;;:::i;34247:256::-;;;;;;;;;;-1:-1:-1;34247:256:0;;;;;:::i;:::-;;:::i;29230:39::-;;;;;;;;;;;;;:::i;28533:35::-;;;;;;;;;;;;;:::i;33459:497::-;;;;;;;;;;-1:-1:-1;33459:497:0;;;;;:::i;:::-;;:::i;29278:27::-;;;;;;;;;;;;;:::i;12759:201::-;;;;;;;;;;-1:-1:-1;12759:201:0;;;;;:::i;:::-;;:::i;28575:33::-;;;;;;;;;;;;;:::i;33254:135::-;;;;;;;;;;;;;:::i;4853:238::-;;;;;;;;;;-1:-1:-1;4853:238:0;;;;;:::i;:::-;;:::i;28615:24::-;;;;;;;;;;;;;:::i;45382:1056::-;;;;;;;;;;-1:-1:-1;45382:1056:0;;;;;:::i;:::-;;:::i;10799:100::-;10853:13;10886:5;10879:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10799:100;:::o;13107:210::-;13226:4;13248:39;13257:12;:10;:12::i;:::-;13271:7;13280:6;13248:8;:39::i;:::-;-1:-1:-1;13305:4:0;13107:210;;;;:::o;29898:63::-;;;;;;;;;;;;;;;:::o;28278:51::-;;;:::o;11919:108::-;12007:12;;11919:108;:::o;35819:157::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;;;;;;;;;35926:9:::1;::::0;35898:38:::1;::::0;-1:-1:-1;;;;;35926:9:0;;::::1;::::0;35898:38;::::1;::::0;::::1;::::0;35926:9:::1;::::0;35898:38:::1;35947:9;:21:::0;;-1:-1:-1;;;;;;35947:21:0::1;-1:-1:-1::0;;;;;35947:21:0;;;::::1;::::0;;;::::1;::::0;;35819:157::o;28834:47::-;;;;:::o;28648:36::-;;;;:::o;29682:33::-;;;;:::o;29642:::-;;;;:::o;33964:275::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;34101:4:::1;34093;34072:13;:11;:13::i;:::-;:17;::::0;34088:1:::1;34072:17;:::i;:::-;34071:26;;;;:::i;:::-;34070:35;;;;:::i;:::-;34060:6;:45;;34038:142;;;;-1:-1:-1::0;;;34038:142:0::1;;;;;;;:::i;:::-;34214:17;:6:::0;34224::::1;34214:17;:::i;:::-;34191:20;:40:::0;-1:-1:-1;33964:275:0:o;13799:529::-;13939:4;13956:36;13966:6;13974:9;13985:6;13956:9;:36::i;:::-;-1:-1:-1;;;;;14032:19:0;;14005:24;14032:19;;;:11;:19;;;;;14005:24;14052:12;:10;:12::i;:::-;-1:-1:-1;;;;;14032:33:0;-1:-1:-1;;;;;14032:33:0;;;;;;;;;;;;;14005:60;;14118:6;14098:16;:26;;14076:116;;;;-1:-1:-1;;;14076:116:0;;;;;;;:::i;:::-;14228:57;14237:6;14245:12;:10;:12::i;:::-;14278:6;14259:16;:25;14228:8;:57::i;:::-;-1:-1:-1;14316:4:0;;13799:529;-1:-1:-1;;;;13799:529:0:o;28371:53::-;28417:6;28371:53;:::o;32866:154::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;32920:13:::1;:20:::0;;-1:-1:-1;;;;32920:20:0;;::::1;;;32951:18;::::0;::::1;::::0;;32997:15:::1;32980:14;:32:::0;32866:154::o;28744:45::-;;;;:::o;28704:33::-;;;;;;:::o;11761:93::-;11844:2;11761:93;:::o;14737:297::-;14852:4;14874:130;14897:12;:10;:12::i;:::-;14924:7;14983:10;14946:11;:25;14958:12;:10;:12::i;:::-;-1:-1:-1;;;;;14946:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14946:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;14874:8;:130::i;28336:28::-;;;-1:-1:-1;;;;;28336:28:0;;:::o;28932:33::-;;;;;;:::o;35984:126::-;-1:-1:-1;;;;;36074:28:0;;36050:4;36074:28;;;:19;:28;;;;;;;;35984:126;;;;:::o;29458:28::-;;;;:::o;29012:31::-;;;;;;;;;:::o;12090:177::-;-1:-1:-1;;;;;12241:18:0;12209:7;12241:18;;;;;;;;;;;;12090:177::o;4595:103::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;4660:30:::1;4687:1;4660:18;:30::i;:::-;4595:103::o:0;44023:555::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;44225:3:::1;44202:19;:26;;44180:127;;;;-1:-1:-1::0;;;44180:127:0::1;;;;;;;:::i;:::-;44352:4;44340:8;:16;;:33;;;;-1:-1:-1::0;44360:13:0;44340:33:::1;44318:131;;;;-1:-1:-1::0;;;44318:131:0::1;;;;;;;:::i;:::-;44460:15;:37:::0;;;;44508:16:::1;:27:::0;44546:13:::1;:24:::0;;-1:-1:-1;;44546:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44023:555::o;33072:121::-;33124:4;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;33141:14:0::1;:22:::0;;-1:-1:-1;;33141:22:0::1;::::0;;;33072:121;:::o;34511:167::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34624:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;34624:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34511:167::o;28463:30::-;;;-1:-1:-1;;;;;28463:30:0;;:::o;29312:43::-;29354:1;29312:43;:::o;3944:87::-;4017:6;;-1:-1:-1;;;;;4017:6:0;3944:87;:::o;28500:24::-;;;-1:-1:-1;;;;;28500:24:0;;:::o;34774:100::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;34845:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;34845:21:0;;::::1;::::0;;;::::1;::::0;;34774:100::o;11018:104::-;11074:13;11107:7;11100:14;;;;;:::i;35072:304::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;35216:13:::1;::::0;-1:-1:-1;;;;;35208:21:0;;::::1;35216:13:::0;::::1;35208:21;;35186:128;;;;-1:-1:-1::0;;;35186:128:0::1;;;;;;;:::i;:::-;35327:41;35356:4;35362:5;35327:28;:41::i;:::-;35072:304:::0;;:::o;29412:37::-;29448:1;29412:37;:::o;28888:35::-;;;;:::o;29722:27::-;;;;:::o;15537:482::-;15657:4;15679:24;15706:11;:25;15718:12;:10;:12::i;:::-;-1:-1:-1;;;;;15706:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15706:25:0;;;:34;;;;;;;;;;;-1:-1:-1;15773:35:0;;;;15751:122;;;;-1:-1:-1;;;15751:122:0;;;;;;;:::i;:::-;15909:67;15918:12;:10;:12::i;:::-;15932:7;15960:15;15941:16;:34;15909:8;:67::i;:::-;-1:-1:-1;16007:4:0;;15537:482;-1:-1:-1;;;15537:482:0:o;28796:29::-;;;;:::o;12480:216::-;12602:4;12624:42;12634:12;:10;:12::i;:::-;12648:9;12659:6;12624:9;:42::i;35580:231::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;35740:15:::1;::::0;35697:59:::1;::::0;-1:-1:-1;;;;;35740:15:0;;::::1;::::0;35697:59;::::1;::::0;::::1;::::0;35740:15:::1;::::0;35697:59:::1;35767:15;:36:::0;;-1:-1:-1;;;;;;35767:36:0::1;-1:-1:-1::0;;;;;35767:36:0;;;::::1;::::0;;;::::1;::::0;;35580:231::o;30119:57::-;;;;;;;;;;;;;;;:::o;28972:33::-;;;;;;;;;:::o;34882:182::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34967:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;:39;;-1:-1:-1;;34967:39:0::1;::::0;::::1;;;::::0;;35022:34;::::1;::::0;::::1;::::0;34967:39;;35022:34:::1;:::i;:::-;;;;;;;;34882:182:::0;;:::o;34247:256::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;34387:4:::1;34379;34358:13;:11;:13::i;:::-;:17;::::0;34374:1:::1;34358:17;:::i;:::-;34357:26;;;;:::i;:::-;34356:35;;;;:::i;:::-;34346:6;:45;;34324:131;;;;-1:-1:-1::0;;;34324:131:0::1;;;;;;;:::i;:::-;34478:17;:6:::0;34488::::1;34478:17;:::i;:::-;34466:9;:29:::0;-1:-1:-1;34247:256:0:o;29230:39::-;;;;;;:::o;28533:35::-;;;;:::o;33459:497::-;33567:4;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;33646:6:::1;33625:13;:11;:13::i;:::-;:17;::::0;33641:1:::1;33625:17;:::i;:::-;33624:28;;;;:::i;:::-;33611:9;:41;;33589:144;;;;-1:-1:-1::0;;;33589:144:0::1;;;;;;;:::i;:::-;33801:4;33780:13;:11;:13::i;:::-;:17;::::0;33796:1:::1;33780:17;:::i;:::-;33779:26;;;;:::i;:::-;33766:9;:39;;33744:141;;;;-1:-1:-1::0;;;33744:141:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;33896:18:0::1;:30:::0;33944:4:::1;::::0;33459:497::o;29278:27::-;;;;:::o;12759:201::-;-1:-1:-1;;;;;12925:18:0;;;12893:7;12925:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12759:201::o;28575:33::-;;;;:::o;33254:135::-;33314:4;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;33331:20:0::1;:28:::0;;-1:-1:-1;;33331:28:0::1;::::0;;;33254:135;:::o;4853:238::-;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4956:22:0;::::1;4934:110;;;;-1:-1:-1::0;;;4934:110:0::1;;;;;;;:::i;:::-;5055:28;5074:8;5055:18;:28::i;:::-;4853:238:::0;:::o;28615:24::-;;;;:::o;45382:1056::-;45493:4;4175:12;:10;:12::i;:::-;-1:-1:-1;;;;;4164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4164:23:0;;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;45578:19:::1;;45555:20;;:42;;;;:::i;:::-;45537:15;:60;45515:142;;;;-1:-1:-1::0;;;45515:142:0::1;;;;;;;:::i;:::-;45687:4;45676:7;:15;;45668:70;;;;-1:-1:-1::0;;;45668:70:0::1;;;;;;;:::i;:::-;45772:15;45749:20;:38:::0;45888:13:::1;::::0;45873:29:::1;::::0;-1:-1:-1;;;45873:29:0;;45842:28:::1;::::0;45873:4:::1;::::0;:14:::1;::::0;:29:::1;::::0;-1:-1:-1;;;;;45888:13:0;;::::1;::::0;45873:29:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45842:60:::0;-1:-1:-1;45952:20:0::1;45975:44;46013:5;45975:33;45842:60:::0;46000:7;45975:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;45952:67:::0;-1:-1:-1;46124:16:0;;46120:110:::1;;46173:13;::::0;46157:61:::1;::::0;-1:-1:-1;;;;;46173:13:0::1;46196:6;46205:12:::0;46157:15:::1;:61::i;:::-;46342:13;::::0;46367:11:::1;::::0;;-1:-1:-1;;;;;;46367:11:0;;;;-1:-1:-1;;;;;46342:13:0;;::::1;::::0;;;46367:9:::1;::::0;:11:::1;::::0;;::::1;::::0;46305:19:::1;::::0;46367:11;;;;;;;46305:19;46342:13;46367:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;46394:14:0::1;::::0;::::1;::::0;-1:-1:-1;46394:14:0;;-1:-1:-1;46394:14:0::1;-1:-1:-1::0;46426:4:0::1;::::0;45382:1056;-1:-1:-1;;;;45382:1056:0:o;2786:98::-;2866:10;2786:98;:::o;19327:380::-;-1:-1:-1;;;;;19463:19:0;;19455:68;;;;-1:-1:-1;;;19455:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19542:21:0;;19534:68;;;;-1:-1:-1;;;19534:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19615:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;19667:32;;;;;19645:6;;19667:32;:::i;:::-;;;;;;;;19327:380;;;:::o;36118:5011::-;-1:-1:-1;;;;;36250:18:0;;36242:68;;;;-1:-1:-1;;;36242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36329:16:0;;36321:64;;;;-1:-1:-1;;;36321:64:0;;;;;;;:::i;:::-;36402:11;36398:93;;36430:28;36446:4;36452:2;36456:1;36430:15;:28::i;:::-;36473:7;;36398:93;36507:14;;;;36503:2487;;;36568:7;:5;:7::i;:::-;-1:-1:-1;;;;;36560:15:0;:4;-1:-1:-1;;;;;36560:15:0;;;:49;;;;;36602:7;:5;:7::i;:::-;-1:-1:-1;;;;;36596:13:0;:2;-1:-1:-1;;;;;36596:13:0;;;36560:49;:86;;;;-1:-1:-1;;;;;;36630:16:0;;;;36560:86;:128;;;;-1:-1:-1;;;;;;36667:21:0;;36681:6;36667:21;;36560:128;:158;;;;-1:-1:-1;36710:8:0;;-1:-1:-1;;;36710:8:0;;;;36709:9;36560:158;36538:2441;;;36758:13;;;;;;;36753:223;;-1:-1:-1;;;;;36830:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36859:23:0;;;;;;:19;:23;;;;;;;;36830:52;36796:160;;;;-1:-1:-1;;;36796:160:0;;;;;;;:::i;:::-;37132:20;;;;37128:641;;;37213:7;:5;:7::i;:::-;-1:-1:-1;;;;;37207:13:0;:2;-1:-1:-1;;;;;37207:13:0;;;:72;;;;;37263:15;-1:-1:-1;;;;;37249:30:0;:2;-1:-1:-1;;;;;37249:30:0;;;37207:72;:129;;;;-1:-1:-1;37322:13:0;;-1:-1:-1;;;;;37308:28:0;;;37322:13;;37308:28;;37207:129;37177:573;;;37454:9;37425:39;;;;:28;:39;;;;;;37500:12;-1:-1:-1;37387:258:0;;;;-1:-1:-1;;;37387:258:0;;;;;;;:::i;:::-;37701:9;37672:39;;;;:28;:39;;;;;37714:12;37672:54;;37177:573;-1:-1:-1;;;;;37843:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;37900:35:0;;;;;;:31;:35;;;;;;;;37899:36;37843:92;37817:1147;;;38022:20;;38012:6;:30;;37978:169;;;;-1:-1:-1;;;37978:169:0;;;;;;;:::i;:::-;38230:9;;38213:13;38223:2;38213:9;:13::i;:::-;38204:22;;:6;:22;:::i;:::-;:35;;38170:140;;;;-1:-1:-1;;;38170:140:0;;;;;;;:::i;:::-;37817:1147;;;-1:-1:-1;;;;;38408:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;38463:37:0;;;;;;:31;:37;;;;;;;;38462:38;38408:92;38382:582;;;38587:20;;38577:6;:30;;38543:170;;;;-1:-1:-1;;;38543:170:0;;;;;;;:::i;38382:582::-;-1:-1:-1;;;;;38744:35:0;;;;;;:31;:35;;;;;;;;38739:225;;38864:9;;38847:13;38857:2;38847:9;:13::i;:::-;38838:22;;:6;:22;:::i;:::-;:35;;38804:140;;;;-1:-1:-1;;;38804:140:0;;;;;;;:::i;:::-;39002:28;39033:24;39051:4;39033:9;:24::i;:::-;39109:18;;39002:55;;-1:-1:-1;39085:42:0;;;;;;;39158:35;;-1:-1:-1;39182:11:0;;;;;;;39158:35;:61;;;;-1:-1:-1;39211:8:0;;-1:-1:-1;;;39211:8:0;;;;39210:9;39158:61;:110;;;;-1:-1:-1;;;;;;39237:31:0;;;;;;:25;:31;;;;;;;;39236:32;39158:110;:153;;;;-1:-1:-1;;;;;;39286:25:0;;;;;;:19;:25;;;;;;;;39285:26;39158:153;:194;;;;-1:-1:-1;;;;;;39329:23:0;;;;;;:19;:23;;;;;;;;39328:24;39158:194;39140:326;;;39379:8;:15;;-1:-1:-1;;;;39379:15:0;-1:-1:-1;;;39379:15:0;;;39411:10;:8;:10::i;:::-;39438:8;:16;;-1:-1:-1;;;;39438:16:0;;;39140:326;39497:8;;-1:-1:-1;;;39497:8:0;;;;39496:9;:55;;;;-1:-1:-1;;;;;;39522:29:0;;;;;;:25;:29;;;;;;;;39496:55;:85;;;;-1:-1:-1;39568:13:0;;;;39496:85;:153;;;;;39634:15;;39617:14;;:32;;;;:::i;:::-;39598:15;:51;;39496:153;:196;;;;-1:-1:-1;;;;;;39667:25:0;;;;;;:19;:25;;;;;;;;39666:26;39496:196;39478:282;;;39719:29;:27;:29::i;:::-;;39478:282;39788:8;;-1:-1:-1;;;;;39898:25:0;;39772:12;39898:25;;;:19;:25;;;;;;39788:8;-1:-1:-1;;;39788:8:0;;;;;39787:9;;39898:25;;:52;;-1:-1:-1;;;;;;39927:23:0;;;;;;:19;:23;;;;;;;;39898:52;39894:100;;;-1:-1:-1;39977:5:0;39894:100;40006:12;40111:7;40107:969;;;-1:-1:-1;;;;;40163:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40212:1;40196:13;;:17;40163:50;40159:768;;;40241:34;40271:3;40241:25;40252:13;;40241:6;:10;;:25;;;;:::i;:34::-;40344:13;;40234:41;;-1:-1:-1;40317:23:0;29587:1;40234:41;40317:23;:::i;:::-;40316:41;;;;:::i;:::-;40294:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40414:13:0;;40393:17;29632:1;40393:4;:17;:::i;:::-;40392:35;;;;:::i;:::-;40376:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;40496:13:0;;40469:23;29536:1;40469:4;:23;:::i;:::-;40468:41;;;;:::i;:::-;40446:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;40159:768:0;;-1:-1:-1;40159:768:0;;-1:-1:-1;;;;;40571:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40621:1;40606:12;;:16;40571:51;40567:360;;;40650:33;40679:3;40650:24;40661:12;;40650:6;:10;;:24;;;;:::i;:33::-;40751:12;;40643:40;;-1:-1:-1;40725:22:0;29404:1;40643:40;40725:22;:::i;:::-;40724:39;;;;:::i;:::-;40702:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40819:12:0;;40799:16;29448:1;40799:4;:16;:::i;:::-;40798:33;;;;:::i;:::-;40782:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;40899:12:0;;40873:22;29354:1;40873:4;:22;:::i;:::-;40872:39;;;;:::i;:::-;40850:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40567:360:0;40947:8;;40943:91;;40976:42;40992:4;41006;41013;40976:15;:42::i;:::-;41050:14;41060:4;41050:14;;:::i;:::-;;;40107:969;41088:33;41104:4;41110:2;41114:6;41088:15;:33::i;:::-;36118:5011;;;;;;;;:::o;5251:191::-;5344:6;;;-1:-1:-1;;;;;5361:17:0;;;-1:-1:-1;;;;;;5361:17:0;;;;;;;5394:40;;5344:6;;;5361:17;5344:6;;5394:40;;5325:16;;5394:40;5251:191;;:::o;35384:188::-;-1:-1:-1;;;;;35467:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35467:39:0;;;;;;;;;;35524:40;;35467:39;;:31;35524:40;;;35384:188;;:::o;24776:98::-;24834:7;24861:5;24865:1;24861;:5;:::i;:::-;24854:12;24776:98;-1:-1:-1;;;24776:98:0:o;25175:::-;25233:7;25260:5;25264:1;25260;:5;:::i;16509:770::-;-1:-1:-1;;;;;16649:20:0;;16641:70;;;;-1:-1:-1;;;16641:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16730:23:0;;16722:71;;;;-1:-1:-1;;;16722:71:0;;;;;;;:::i;:::-;16806:47;16827:6;16835:9;16846:6;16806:20;:47::i;:::-;-1:-1:-1;;;;;16890:17:0;;16866:21;16890:17;;;;;;;;;;;16940:23;;;;16918:111;;;;-1:-1:-1;;;16918:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17065:17:0;;;:9;:17;;;;;;;;;;;17085:22;;;17065:42;;17129:20;;;;;;;;:30;;17101:6;;17065:9;17129:30;;17101:6;;17129:30;:::i;:::-;;;;;;;;17194:9;-1:-1:-1;;;;;17177:35:0;17186:6;-1:-1:-1;;;;;17177:35:0;;17205:6;17177:35;;;;;;:::i;:::-;;;;;;;;17225:46;17245:6;17253:9;17264:6;17225:19;:46::i;:::-;16509:770;;;;:::o;42259:1756::-;42298:23;42324:24;42342:4;42324:9;:24::i;:::-;42298:50;;42359:25;42455:12;;42421:18;;42387;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;42359:108;-1:-1:-1;42478:12:0;42507:20;;;:46;;-1:-1:-1;42531:22:0;;42507:46;42503:85;;;42570:7;;;;;42503:85;42622:18;;:23;;42643:2;42622:23;:::i;:::-;42604:15;:41;42600:115;;;42680:18;;:23;;42701:2;42680:23;:::i;:::-;42662:41;;42600:115;42776:23;42889:1;42856:17;42821:18;;42803:15;:36;;;;:::i;:::-;42802:71;;;;:::i;:::-;:88;;;;:::i;:::-;42776:114;-1:-1:-1;42901:26:0;42930:36;:15;42776:114;42930:19;:36::i;:::-;42901:65;-1:-1:-1;43007:21:0;43041:36;42901:65;43041:16;:36::i;:::-;43090:18;43111:44;:21;43137:17;43111:25;:44::i;:::-;43090:65;;43168:23;43194:81;43247:17;43194:34;43209:18;;43194:10;:14;;:34;;;;:::i;:81::-;43168:107;;43286:17;43306:51;43339:17;43306:28;43321:12;;43306:10;:14;;:28;;;;:::i;:51::-;43286:71;-1:-1:-1;43370:23:0;43286:71;43396:28;43409:15;43396:10;:28;:::i;:::-;:40;;;;:::i;:::-;43470:1;43449:18;:22;;;43482:18;:22;;;43515:12;:16;43566:9;;43558:45;;43370:66;;-1:-1:-1;;;;;;43566:9:0;;43589;;43558:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43544:59:0;;-1:-1:-1;;43620:19:0;;;;;:42;;;43661:1;43643:15;:19;43620:42;43616:278;;;43679:46;43692:15;43709;43679:12;:46::i;:::-;43745:137;43778:18;43815:15;43849:18;;43745:137;;;;;;;;:::i;:::-;;;;;;;;43616:278;43928:15;;43920:87;;-1:-1:-1;;;;;43928:15:0;;;;43971:21;;43920:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;42259:1756:0:o;44586:788::-;44677:15;44660:14;:32;44793:13;;44778:29;;-1:-1:-1;;;44778:29:0;;44643:4;;;;44778;;:14;;:29;;-1:-1:-1;;;;;44793:13:0;;44778:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44747:60;;44857:20;44880:77;44941:5;44880:42;44905:16;;44880:20;:24;;:42;;;;:::i;:77::-;44857:100;-1:-1:-1;45062:16:0;;45058:110;;45111:13;;45095:61;;-1:-1:-1;;;;;45111:13:0;45134:6;45143:12;45095:15;:61::i;:::-;45280:13;;45305:11;;;-1:-1:-1;;;;;;45305:11:0;;;;-1:-1:-1;;;;;45280:13:0;;;;;;45305:9;;:11;;;;;45243:19;;45305:11;;;;;;;45243:19;45280:13;45305:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45332:12:0;;;;-1:-1:-1;45332:12:0;;-1:-1:-1;45332:12:0;45362:4;45355:11;;;;;44586:788;:::o;24419:98::-;24477:7;24504:5;24508:1;24504;:5;:::i;41137:589::-;41287:16;;;41301:1;41287:16;;;;;;;;41263:21;;41287:16;;;;;;;;;;-1:-1:-1;41287:16:0;41263:40;;41332:4;41314;41319:1;41314:7;;;;;;-1:-1:-1;;;41314:7:0;;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41314:23:0;;;-1:-1:-1;;;;;41314:23:0;;;;;41358:15;-1:-1:-1;;;;;41358:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41348:4;41353:1;41348:7;;;;;;-1:-1:-1;;;41348:7:0;;;;;;;;;;;;;;:32;-1:-1:-1;;;;;41348:32:0;;;-1:-1:-1;;;;;41348:32:0;;;;;41393:62;41410:4;41425:15;41443:11;41393:8;:62::i;:::-;41494:224;;-1:-1:-1;;;41494:224:0;;-1:-1:-1;;;;;41494:15:0;:66;;;;:224;;41575:11;;41601:1;;41645:4;;41672;;41692:15;;41494:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41137:589;;:::o;41734:517::-;41882:62;41899:4;41914:15;41932:11;41882:8;:62::i;:::-;41987:256;;-1:-1:-1;;;41987:256:0;;-1:-1:-1;;;;;41987:15:0;:31;;;;42026:9;;41987:256;;42059:4;;42079:11;;42105:1;;;;28417:6;;42217:15;;41987:256;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41734:517;;:::o;14:162:1:-;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;713:402::-;;;842:2;830:9;821:7;817:23;813:32;810:2;;;863:6;855;848:22;810:2;907:9;894:23;926:33;953:5;926:33;:::i;:::-;978:5;-1:-1:-1;1035:2:1;1020:18;;1007:32;1048:35;1007:32;1048:35;:::i;:::-;1102:7;1092:17;;;800:315;;;;;:::o;1120:470::-;;;;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1331:9;1318:23;1350:33;1377:5;1350:33;:::i;:::-;1402:5;-1:-1:-1;1459:2:1;1444:18;;1431:32;1472:35;1431:32;1472:35;:::i;:::-;1224:366;;1526:7;;-1:-1:-1;;;1580:2:1;1565:18;;;;1552:32;;1224:366::o;1595:329::-;;;1721:2;1709:9;1700:7;1696:23;1692:32;1689:2;;;1742:6;1734;1727:22;1689:2;1786:9;1773:23;1805:33;1832:5;1805:33;:::i;:::-;1857:5;-1:-1:-1;1881:37:1;1914:2;1899:18;;1881:37;:::i;:::-;1871:47;;1679:245;;;;;:::o;1929:327::-;;;2058:2;2046:9;2037:7;2033:23;2029:32;2026:2;;;2079:6;2071;2064:22;2026:2;2123:9;2110:23;2142:33;2169:5;2142:33;:::i;:::-;2194:5;2246:2;2231:18;;;;2218:32;;-1:-1:-1;;;2016:240:1:o;2261:192::-;;2370:2;2358:9;2349:7;2345:23;2341:32;2338:2;;;2391:6;2383;2376:22;2338:2;2419:28;2437:9;2419:28;:::i;2458:190::-;;2570:2;2558:9;2549:7;2545:23;2541:32;2538:2;;;2591:6;2583;2576:22;2538:2;-1:-1:-1;2619:23:1;;2528:120;-1:-1:-1;2528:120:1:o;2653:194::-;;2776:2;2764:9;2755:7;2751:23;2747:32;2744:2;;;2797:6;2789;2782:22;2744:2;-1:-1:-1;2825:16:1;;2734:113;-1:-1:-1;2734:113:1:o;2852:328::-;;;;2995:2;2983:9;2974:7;2970:23;2966:32;2963:2;;;3016:6;3008;3001:22;2963:2;3057:9;3044:23;3034:33;;3114:2;3103:9;3099:18;3086:32;3076:42;;3137:37;3170:2;3159:9;3155:18;3137:37;:::i;:::-;3127:47;;2953:227;;;;;:::o;3185:316::-;;;;3342:2;3330:9;3321:7;3317:23;3313:32;3310:2;;;3363:6;3355;3348:22;3310:2;3397:9;3391:16;3381:26;;3447:2;3436:9;3432:18;3426:25;3416:35;;3491:2;3480:9;3476:18;3470:25;3460:35;;3300:201;;;;;:::o;3506:205::-;3706:3;3697:14::o;3716:203::-;-1:-1:-1;;;;;3880:32:1;;;;3862:51;;3850:2;3835:18;;3817:102::o;3924:607::-;-1:-1:-1;;;;;4283:15:1;;;4265:34;;4330:2;4315:18;;4308:34;;;;4373:2;4358:18;;4351:34;;;;4416:2;4401:18;;4394:34;;;;4465:15;;;4459:3;4444:19;;4437:44;4245:3;4497:19;;4490:35;;;;4214:3;4199:19;;4181:350::o;4536:187::-;4701:14;;4694:22;4676:41;;4664:2;4649:18;;4631:92::o;4961:603::-;;5102:2;5131;5120:9;5113:21;5163:6;5157:13;5206:6;5201:2;5190:9;5186:18;5179:34;5231:4;5244:140;5258:6;5255:1;5252:13;5244:140;;;5353:14;;;5349:23;;5343:30;5319:17;;;5338:2;5315:26;5308:66;5273:10;;5244:140;;;5402:6;5399:1;5396:13;5393:2;;;5472:4;5467:2;5458:6;5447:9;5443:22;5439:31;5432:45;5393:2;-1:-1:-1;5548:2:1;5527:15;-1:-1:-1;;5523:29:1;5508:45;;;;5555:2;5504:54;;5082:482;-1:-1:-1;;;5082:482:1:o;5569:399::-;5771:2;5753:21;;;5810:2;5790:18;;;5783:30;5849:34;5844:2;5829:18;;5822:62;-1:-1:-1;;;5915:2:1;5900:18;;5893:33;5958:3;5943:19;;5743:225::o;5973:346::-;6175:2;6157:21;;;6214:2;6194:18;;;6187:30;-1:-1:-1;;;6248:2:1;6233:18;;6226:52;6310:2;6295:18;;6147:172::o;6324:402::-;6526:2;6508:21;;;6565:2;6545:18;;;6538:30;6604:34;6599:2;6584:18;;6577:62;-1:-1:-1;;;6670:2:1;6655:18;;6648:36;6716:3;6701:19;;6498:228::o;6731:398::-;6933:2;6915:21;;;6972:2;6952:18;;;6945:30;7011:34;7006:2;6991:18;;6984:62;-1:-1:-1;;;7077:2:1;7062:18;;7055:32;7119:3;7104:19;;6905:224::o;7134:415::-;7336:2;7318:21;;;7375:2;7355:18;;;7348:30;7414:34;7409:2;7394:18;;7387:62;-1:-1:-1;;;7480:2:1;7465:18;;7458:49;7539:3;7524:19;;7308:241::o;7554:400::-;7756:2;7738:21;;;7795:2;7775:18;;;7768:30;7834:34;7829:2;7814:18;;7807:62;-1:-1:-1;;;7900:2:1;7885:18;;7878:34;7944:3;7929:19;;7728:226::o;7959:421::-;8161:2;8143:21;;;8200:2;8180:18;;;8173:30;8239:34;8234:2;8219:18;;8212:62;8310:27;8305:2;8290:18;;8283:55;8370:3;8355:19;;8133:247::o;8385:402::-;8587:2;8569:21;;;8626:2;8606:18;;;8599:30;8665:34;8660:2;8645:18;;8638:62;-1:-1:-1;;;8731:2:1;8716:18;;8709:36;8777:3;8762:19;;8559:228::o;8792:418::-;8994:2;8976:21;;;9033:2;9013:18;;;9006:30;9072:34;9067:2;9052:18;;9045:62;-1:-1:-1;;;9138:2:1;9123:18;;9116:52;9200:3;9185:19;;8966:244::o;9215:412::-;9417:2;9399:21;;;9456:2;9436:18;;;9429:30;9495:34;9490:2;9475:18;;9468:62;-1:-1:-1;;;9561:2:1;9546:18;;9539:46;9617:3;9602:19;;9389:238::o;9632:417::-;9834:2;9816:21;;;9873:2;9853:18;;;9846:30;9912:34;9907:2;9892:18;;9885:62;-1:-1:-1;;;9978:2:1;9963:18;;9956:51;10039:3;10024:19;;9806:243::o;10054:416::-;10256:2;10238:21;;;10295:2;10275:18;;;10268:30;10334:34;10329:2;10314:18;;10307:62;-1:-1:-1;;;10400:2:1;10385:18;;10378:50;10460:3;10445:19;;10228:242::o;10475:417::-;10677:2;10659:21;;;10716:2;10696:18;;;10689:30;10755:34;10750:2;10735:18;;10728:62;-1:-1:-1;;;10821:2:1;10806:18;;10799:51;10882:3;10867:19;;10649:243::o;10897:477::-;11099:2;11081:21;;;11138:2;11118:18;;;11111:30;11177:34;11172:2;11157:18;;11150:62;11248:34;11243:2;11228:18;;11221:62;-1:-1:-1;;;11314:3:1;11299:19;;11292:40;11364:3;11349:19;;11071:303::o;11379:404::-;11581:2;11563:21;;;11620:2;11600:18;;;11593:30;11659:34;11654:2;11639:18;;11632:62;-1:-1:-1;;;11725:2:1;11710:18;;11703:38;11773:3;11758:19;;11553:230::o;11788:356::-;11990:2;11972:21;;;12009:18;;;12002:30;12068:34;12063:2;12048:18;;12041:62;12135:2;12120:18;;11962:182::o;12149:406::-;12351:2;12333:21;;;12390:2;12370:18;;;12363:30;12429:34;12424:2;12409:18;;12402:62;-1:-1:-1;;;12495:2:1;12480:18;;12473:40;12545:3;12530:19;;12323:232::o;12560:401::-;12762:2;12744:21;;;12801:2;12781:18;;;12774:30;12840:34;12835:2;12820:18;;12813:62;-1:-1:-1;;;12906:2:1;12891:18;;12884:35;12951:3;12936:19;;12734:227::o;12966:356::-;13168:2;13150:21;;;13187:18;;;13180:30;13246:34;13241:2;13226:18;;13219:62;13313:2;13298:18;;13140:182::o;13327:400::-;13529:2;13511:21;;;13568:2;13548:18;;;13541:30;13607:34;13602:2;13587:18;;13580:62;-1:-1:-1;;;13673:2:1;13658:18;;13651:34;13717:3;13702:19;;13501:226::o;13732:343::-;13934:2;13916:21;;;13973:2;13953:18;;;13946:30;-1:-1:-1;;;14007:2:1;13992:18;;13985:49;14066:2;14051:18;;13906:169::o;14080:401::-;14282:2;14264:21;;;14321:2;14301:18;;;14294:30;14360:34;14355:2;14340:18;;14333:62;-1:-1:-1;;;14426:2:1;14411:18;;14404:35;14471:3;14456:19;;14254:227::o;14486:411::-;14688:2;14670:21;;;14727:2;14707:18;;;14700:30;14766:34;14761:2;14746:18;;14739:62;-1:-1:-1;;;14832:2:1;14817:18;;14810:45;14887:3;14872:19;;14660:237::o;14902:177::-;15048:25;;;15036:2;15021:18;;15003:76::o;15084:983::-;;15394:3;15383:9;15379:19;15425:6;15414:9;15407:25;15451:2;15489:6;15484:2;15473:9;15469:18;15462:34;15532:3;15527:2;15516:9;15512:18;15505:31;15556:6;15591;15585:13;15622:6;15614;15607:22;15660:3;15649:9;15645:19;15638:26;;15699:2;15691:6;15687:15;15673:29;;15720:4;15733:195;15747:6;15744:1;15741:13;15733:195;;;15812:13;;-1:-1:-1;;;;;15808:39:1;15796:52;;15903:15;;;;15868:12;;;;15844:1;15762:9;15733:195;;;-1:-1:-1;;;;;;;15984:32:1;;;;15979:2;15964:18;;15957:60;-1:-1:-1;;;16048:3:1;16033:19;16026:35;15945:3;15355:712;-1:-1:-1;;;15355:712:1:o;16072:319::-;16274:25;;;16330:2;16315:18;;16308:34;;;;16373:2;16358:18;;16351:34;16262:2;16247:18;;16229:162::o;16396:184::-;16568:4;16556:17;;;;16538:36;;16526:2;16511:18;;16493:87::o;16585:128::-;;16656:1;16652:6;16649:1;16646:13;16643:2;;;16662:18;;:::i;:::-;-1:-1:-1;16698:9:1;;16633:80::o;16718:217::-;;16784:1;16774:2;;-1:-1:-1;;;16809:31:1;;16863:4;16860:1;16853:15;16891:4;16816:1;16881:15;16774:2;-1:-1:-1;16920:9:1;;16764:171::o;16940:168::-;;17046:1;17042;17038:6;17034:14;17031:1;17028:21;17023:1;17016:9;17009:17;17005:45;17002:2;;;17053:18;;:::i;:::-;-1:-1:-1;17093:9:1;;16992:116::o;17113:125::-;;17181:1;17178;17175:8;17172:2;;;17186:18;;:::i;:::-;-1:-1:-1;17223:9:1;;17162:76::o;17243:380::-;17328:1;17318:12;;17375:1;17365:12;;;17386:2;;17440:4;17432:6;17428:17;17418:27;;17386:2;17493;17485:6;17482:14;17462:18;17459:38;17456:2;;;17539:10;17534:3;17530:20;17527:1;17520:31;17574:4;17571:1;17564:15;17602:4;17599:1;17592:15;17456:2;;17298:325;;;:::o;17628:127::-;17689:10;17684:3;17680:20;17677:1;17670:31;17720:4;17717:1;17710:15;17744:4;17741:1;17734:15;17760:133;-1:-1:-1;;;;;17837:31:1;;17827:42;;17817:2;;17883:1;17880;17873:12

Swarm Source

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