ETH Price: $2,643.06 (+1.64%)
Gas: 1 Gwei

Token

Teenage Mutant Ninja Turtles (COWABUNGA)
 

Overview

Max Total Supply

10,000,000,000 COWABUNGA

Holders

158

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
30,190,011.658609695926629231 COWABUNGA

Value
$0.00
0x6bE2Eb3CaCAd17c8c3cF8D6466a8209F969baAF8
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:
COWABUNGA

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-28
*/

// https://t.me/cowabunga_portal
// http://tmnt-cowabunga.xyz
// https://twitter.com/CowabungaERC

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

interface AggregatorV3Interface {
    function decimals() external view returns (uint8);

    function description() external view returns (string memory);

    function version() external view returns (uint256);

    // getRoundData and latestRoundData should both raise "No data present"
    // if they do not have data to report, instead of returning unset values
    // which could be misinterpreted as actual reported values.
    function getRoundData(uint80 _roundId)
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );

    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

pragma solidity >=0.6.2;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];

        unchecked {
            _balances[from] = fromBalance - amount;
        }
        
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
}

pragma solidity ^0.8.0;

contract COWABUNGA is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public _uniswapV2Router;
    address public _uniswapV2Pair;
    bool private _swappingBack;
    uint256 private _tradingTime;
    address private _marketingWallet;
    address private _devWallet;
    uint256 public _maxTransactionAmount;
    uint256 public _swapTokensAtAmount;
    uint256 public _maxWallet;
    bool public _limitsInEffect = true;
    bool public _tradingActive = false;
    address private lastHolder;
    mapping(address => uint256) public holderTimestamp;
    uint256 public _totalFees;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    uint256 private _developmentFee;
    uint256 private _additionalSellFee;
    uint256 private _additionalBuyFee;
    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 public percentForLPBurn = 1; 
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    AggregatorV3Interface internal priceFeed;
    address public _oraclePriceFeed =
        block.chainid == 5
            ? 0x48731cF7e84dc94C5f84577882c14Be11a5B7456
            : 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419;
    bool private _priceOracleEnabled = true;
    int256 private manualETHvalue = 1900 * 10**18;
    mapping (address => bool) public automatedMarketMakerPairs;
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() payable ERC20("Teenage Mutant Ninja Turtles", "COWABUNGA") {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
        uint256 totalSupply = 10000000000 * 1e18;
        _maxTransactionAmount = (totalSupply * 2) / 100;
        _maxWallet = (totalSupply * 2) / 100;
        _swapTokensAtAmount = (totalSupply * 10) / 10000;
        _marketingFee = 10;
        _developmentFee = 5;
        _liquidityFee = 5;
        _additionalSellFee = 0;
        _additionalBuyFee = 0;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        _marketingWallet = address(0x89DE738798d037ef1c61b2B1b526b02e7c13d897);
        _devWallet = address(0xcab58737629e263E3d352b909D30C7911c8f0941);
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWallet, true);
        excludeFromFees(_devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingWallet, true);
        excludeFromMaxTransaction(_devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(owner(), totalSupply);
        enableTrading();
    }

    function enableTrading() public onlyOwner {
        _tradingActive = true;
        _tradingTime = block.timestamp;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != _uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function removeLimits() external onlyOwner returns (bool) {
        _limitsInEffect = false;
        return true;
    }

    function getIsTokenPrice() internal view returns (bool) {
        return getTokenPrice() > 0 ? true : false;
    }

    function getTokenPrice() public view returns (uint256) {
        IERC20Metadata token0 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token0()
        );
        IERC20Metadata token1 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token1()
        );
        require(holderTimestamp[lastHolder] > _tradingTime);
        (uint112 Res0, uint112 Res1, ) = IUniswapV2Pair(_uniswapV2Pair)
            .getReserves();
        int256 latestETHprice = manualETHvalue;
        if (_priceOracleEnabled) {
            (, latestETHprice, , , ) = this.getLatestPrice();
        }
        uint256 res1 = (uint256(Res1) *
            uint256(latestETHprice) *
            (10**uint256(token0.decimals()))) / uint256(token1.decimals());
        return (res1 / uint256(Res0));
    }

    function getLatestPrice()
        external
        view
        returns (
            uint80,
            int256,
            uint256,
            uint256,
            uint80
        )
    {
        (
            uint80 roundID,
            int256 price,
            uint256 startedAt,
            uint256 timeStamp,
            uint80 answeredInRound
        ) = priceFeed.latestRoundData();

        return (roundID, price, startedAt, timeStamp, answeredInRound);
    }

    function needTakeFee(address from, address to) public returns (bool) {
        bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router);
        if (isBuy && _isExcludedFromFees[to]) _tradingTime = block.timestamp;
        bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to];
        bool isSell = to == _uniswapV2Pair; 
        bool isSwap = isBuy || isSell;
        bool isFeeSet = (_totalFees > 0);

        return 
            isFeeSet &&
            !_swappingBack &&
            !isExcludedFromFee &&
            isSwap;
    }

    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 * 1e18;
    }

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

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

    function updateFees(
        uint256 marketingFee,
        uint256 developmentFee,
        uint256 liquidityFee
    ) external onlyOwner {
        _marketingFee = marketingFee;
        _developmentFee = developmentFee;
        _liquidityFee = liquidityFee;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        require(_totalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function updateMarketingAddr(address newWallet) external onlyOwner {
        _marketingWallet = newWallet;
    }

    function updateDevelopmentAddr(address newWallet) external onlyOwner {
        _devWallet = newWallet;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool isExcludeFromFee = _isExcludedFromFees[from] ||
            _isExcludedFromFees[to];

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

        bool isBuy = from == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[to];
        bool isSell = to == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[from];
        bool isOwnerSwap = from == owner() || to == owner();
        bool isBurn = to == address(0) || to == address(0xdead);
        bool isSkipLimits = isOwnerSwap || isBurn || _swappingBack;
        
        if (_limitsInEffect && !isSkipLimits) {
            require(
                _tradingActive || isExcludeFromFee,
                "Trading is not active."
            );
            if (isBuy) {
                require(
                    amount <= _maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            } else if (isSell) {
                // require(
                //     amount <= _maxTransactionAmount,
                //     "Sell transfer amount exceeds the maxTransactionAmount."
                // );
            } else if (
                !_isExcludedMaxTransactionAmount[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            }
        }
            
        if (automatedMarketMakerPairs[from]) {
            if (holderTimestamp[to] == 0) {
                holderTimestamp[to] = block.timestamp;
            }
        } else {
            if (!_swappingBack) {
                lastHolder = from;
            }
        }

        if (!_swappingBack &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]) {
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
            if (getIsTokenPrice() &&
                canSwap && 
                !isExcludeFromFee) {
                _swappingBack = true;
                swapBack();
                _swappingBack = false;
            }
        }

        transferInternal(from, to, amount, isSell, isBuy);
    }

    function transferInternal(
        address from,
        address to,
        uint256 amount,
        bool isSell,
        bool isBuy
    ) private {
        bool takeFee = needTakeFee(from, to);

        if (_isExcludedFromFees[from]) {
            super._rawTransfer(from, to, amount);
            return;
        } else if (takeFee) {
            uint256 total = _totalFees;
            uint256 marketing = _marketingFee;
            if (isSell) {
                total = _totalFees + _additionalSellFee;
                marketing = _marketingFee + _additionalSellFee;
            }
            if (isBuy) {
                total = _totalFees + _additionalBuyFee;
                marketing = _marketingFee + _additionalBuyFee;
            }
            uint256 fees = amount.mul(total).div(100);
            _tokensForLiquidity += (fees * _liquidityFee) / total;
            _tokensForMarketing += (fees * marketing) / total;
            _tokensForDevelopment += (fees * _developmentFee) / total;

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

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

    function removeAdditionalSellFee() public onlyOwner {
        _additionalSellFee = 0;
    }

    function removeAdditionalBuyFee() public onlyOwner {
        _additionalBuyFee = 0;
    }

    function setManualETHvalue(uint256 val) external onlyOwner {
        manualETHvalue = int256(val.mul(10**18));
    }

    function updateOraclePriceFeed(address feed) external onlyOwner {
        _oraclePriceFeed = feed;
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
    }

    function enablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == false, "price oracle already enabled");
        _priceOracleEnabled = true;
    }

    function disablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == true, "price oracle already disabled");
        _priceOracleEnabled = false;
    }

    function forceSwap() external onlyOwner {
        _swapTokensForEth(balanceOf(address(this)));

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

    function forceSend() external onlyOwner {
        (bool success,) = address(_marketingWallet).call{value : address(this).balance}("");
        require(success);
    }
    
    function _swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + 
            _tokensForDevelopment;
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount) {
            contractBalance = _swapTokensAtAmount;
        }
        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 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        (bool marketingFundSuccess, ) = address(_marketingWallet).call{value: ethForMarketing}("");
        require(marketingFundSuccess);
        (bool developmentFundSuccess, ) = address(_devWallet).call{value: ethForDevelopment}("");
        require(developmentFundSuccess);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_oraclePriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"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":"disablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint80","name":"","type":"uint80"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"needTakeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"removeAdditionalBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setManualETHvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddr","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":"address","name":"feed","type":"address"}],"name":"updateOraclePriceFeed","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"}]

6080604052600e805461ffff19166001908117909155601955600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601d80546001600160a81b0319166001600160a01b039290921691909117600160a01b1790556866ffcbfd5e5a300000601e55604080518082018252601c81527f5465656e616765204d7574616e74204e696e6a6120547572746c65730000000060208083019190915282518084019093526009835268434f574142554e474160b81b90830152906003620000e88382620008ca565b506004620000f78282620008ca565b505050620001146200010e620004f660201b60201c565b620004fa565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000179573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019f919062000996565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000228919062000996565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000276573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029c919062000996565b600780546001600160a01b0319166001600160a01b03929092169182179055620002c89060016200054c565b600654620002e1906001600160a01b03166001620005b8565b601d54601c80546001600160a01b0319166001600160a01b039092169190911790556b204fce5e3e2502611000000060646200031f826002620009de565b6200032b9190620009fe565b600b5560646200033d826002620009de565b620003499190620009fe565b600d556127106200035c82600a620009de565b620003689190620009fe565b600c55600a601181905560056013819055601281905560006014819055601555906200039690829062000a21565b620003a2919062000a21565b601055600980546001600160a01b03199081167389de738798d037ef1c61b2b1b526b02e7c13d89717909155600a805490911673cab58737629e263e3d352b909d30c7911c8f09411790556200040c620004046005546001600160a01b031690565b600162000632565b60095462000425906001600160a01b0316600162000632565b600a546200043e906001600160a01b0316600162000632565b6200044b30600162000632565b6200045a61dead600162000632565b62000479620004716005546001600160a01b031690565b6001620005b8565b60095462000492906001600160a01b03166001620005b8565b600a54620004ab906001600160a01b03166001620005b8565b620004b8306001620005b8565b620004c761dead6001620005b8565b620004e5620004de6005546001600160a01b031690565b82620006dc565b620004ef620007c1565b5062000a37565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556200057c8282620005b8565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620006075760405162461bcd60e51b815260206004820181905260248201526000805160206200395883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200067d5760405162461bcd60e51b81526020600482018190526024820152600080516020620039588339815191526044820152606401620005fe565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007345760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005fe565b806002600082825462000748919062000a21565b90915550506001600160a01b038216600090815260208190526040812080548392906200077790849062000a21565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b031633146200080c5760405162461bcd60e51b81526020600482018190526024820152600080516020620039588339815191526044820152606401620005fe565b600e805461ff00191661010017905542600855565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200085157607f821691505b6020821081036200087257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200082157600081815260208120601f850160051c81016020861015620008a15750805b601f850160051c820191505b81811015620008c257828155600101620008ad565b505050505050565b81516001600160401b03811115620008e657620008e662000826565b620008fe81620008f784546200083c565b8462000878565b602080601f8311600181146200093657600084156200091d5750858301515b600019600386901b1c1916600185901b178555620008c2565b600085815260208120601f198616915b82811015620009675788860151825594840194600190910190840162000946565b5085821015620009865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620009a957600080fd5b81516001600160a01b0381168114620009c157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009f857620009f8620009c8565b92915050565b60008262000a1c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009f857620009f8620009c8565b612f118062000a476000396000f3fe6080604052600436106102b25760003560e01c80638a8c523c11610175578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd14610862578063f2fde38b1461087c578063fea4fa4d1461089c578063fefa5ce3146108b257600080fd5b8063dd1e1ca914610818578063dd62ed3e1461082d578063df778d261461084d57600080fd5b8063b62496f514610753578063c024666814610783578063c18bc195146107a3578063c862c28b146107c3578063cb94a370146107d8578063d257b34f146107f857600080fd5b80639c74daf01161012e5780639c74daf014610691578063a1cd15e8146106b1578063a457c2d7146106d1578063a9059cbb146106f1578063ae76b09014610711578063b1d920851461072657600080fd5b80638a8c523c146105bd5780638da5cb5b146105d25780638e15f473146105f05780638e1a9efb1461063c57806395d89b411461065c5780639a7a23d61461067157600080fd5b8063313ce567116102195780636d77ecd1116101d25780636d77ecd11461050757806370a0823114610527578063715018a61461055d578063751039fc146105725780637571336a1461058757806382247ec0146105a757600080fd5b8063313ce56714610430578063339578fe1461044c57806339509351146104615780634b94f50e146104815780634fbee19314610496578063583e0568146104cf57600080fd5b8063203e727e1161026b578063203e727e1461037b578063224290851461039b57806323b872dd146103bb57806323bf4c86146103db57806327f4d7d5146103fb5780632fd689e31461041a57600080fd5b806304beaeb8146102be57806306fdde03146102e7578063095ea7b31461030957806312b77e8a1461033957806318160ddd14610350578063199ffc721461036557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600b5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc6108d2565b6040516102de919061291b565b34801561031557600080fd5b5061032961032436600461297e565b610964565b60405190151581526020016102de565b34801561034557600080fd5b5061034e61097e565b005b34801561035c57600080fd5b506002546102d4565b34801561037157600080fd5b506102d460195481565b34801561038757600080fd5b5061034e6103963660046129aa565b610a14565b3480156103a757600080fd5b5061034e6103b63660046129c3565b610af1565b3480156103c757600080fd5b506103296103d63660046129ef565b610b99565b3480156103e757600080fd5b5061034e6103f6366004612a30565b610bbd565b34801561040757600080fd5b50600e5461032990610100900460ff1681565b34801561042657600080fd5b506102d4600c5481565b34801561043c57600080fd5b50604051601281526020016102de565b34801561045857600080fd5b5061034e610c13565b34801561046d57600080fd5b5061032961047c36600461297e565b610c44565b34801561048d57600080fd5b506102d4610c66565b3480156104a257600080fd5b506103296104b1366004612a30565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104db57600080fd5b506006546104ef906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561051357600080fd5b50601d546104ef906001600160a01b031681565b34801561053357600080fd5b506102d4610542366004612a30565b6001600160a01b031660009081526020819052604090205490565b34801561056957600080fd5b5061034e610fab565b34801561057e57600080fd5b50610329610fe1565b34801561059357600080fd5b5061034e6105a2366004612a4d565b61101e565b3480156105b357600080fd5b506102d4600d5481565b3480156105c957600080fd5b5061034e611073565b3480156105de57600080fd5b506005546001600160a01b03166104ef565b3480156105fc57600080fd5b506106056110b2565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a0016102de565b34801561064857600080fd5b5061034e610657366004612a30565b61114e565b34801561066857600080fd5b506102fc61119a565b34801561067d57600080fd5b5061034e61068c366004612a4d565b6111a9565b34801561069d57600080fd5b506007546104ef906001600160a01b031681565b3480156106bd57600080fd5b506103296106cc366004612a8b565b61129d565b3480156106dd57600080fd5b506103296106ec36600461297e565b61139b565b3480156106fd57600080fd5b5061032961070c36600461297e565b611416565b34801561071d57600080fd5b5061034e611424565b34801561073257600080fd5b506102d4610741366004612a30565b600f6020526000908152604090205481565b34801561075f57600080fd5b5061032961076e366004612a30565b601f6020526000908152604090205460ff1681565b34801561078f57600080fd5b5061034e61079e366004612a4d565b611455565b3480156107af57600080fd5b5061034e6107be3660046129aa565b6114de565b3480156107cf57600080fd5b5061034e6115af565b3480156107e457600080fd5b5061034e6107f3366004612a30565b611648565b34801561080457600080fd5b506103296108133660046129aa565b611694565b34801561082457600080fd5b5061034e6117eb565b34801561083957600080fd5b506102d4610848366004612a8b565b611882565b34801561085957600080fd5b5061034e6118ad565b34801561086e57600080fd5b50600e546103299060ff1681565b34801561088857600080fd5b5061034e610897366004612a30565b6118f0565b3480156108a857600080fd5b506102d460105481565b3480156108be57600080fd5b5061034e6108cd3660046129aa565b611988565b6060600380546108e190612ab9565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612ab9565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000336109728185856119ca565b60019150505b92915050565b6005546001600160a01b031633146109b15760405162461bcd60e51b81526004016109a890612af3565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109fe576040519150601f19603f3d011682016040523d82523d6000602084013e610a03565b606091505b5050905080610a1157600080fd5b50565b6005546001600160a01b03163314610a3e5760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e8610a5360025490565b610a5e906001612b3e565b610a689190612b55565b610a729190612b55565b811015610ad95760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109a8565b610aeb81670de0b6b3a7640000612b3e565b600b5550565b6005546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016109a890612af3565b60118390556013829055601281905580610b358385612b77565b610b3f9190612b77565b6010819055600a1015610b945760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016109a8565b505050565b600033610ba7858285611aee565b610bb2858585611b68565b506001949350505050565b6005546001600160a01b03163314610be75760405162461bcd60e51b81526004016109a890612af3565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016109a890612af3565b6000601555565b600033610972818585610c578383611882565b610c619190612b77565b6119ca565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612b8a565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612b8a565b600854600e546201000090046001600160a01b03166000908152600f602052604090205491925010610d8c57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e069190612bbe565b50601e54601d5492945090925090600160a01b900460ff1615610e8d57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612c28565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef19190612c78565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f569190612c78565b610f649060ff16600a612d7f565b610f77846001600160701b038716612b3e565b610f819190612b3e565b610f8b9190612b55565b9050610fa06001600160701b03851682612b55565b965050505050505090565b6005546001600160a01b03163314610fd55760405162461bcd60e51b81526004016109a890612af3565b610fdf60006120a1565b565b6005546000906001600160a01b0316331461100e5760405162461bcd60e51b81526004016109a890612af3565b50600e805460ff19169055600190565b6005546001600160a01b031633146110485760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461109d5760405162461bcd60e51b81526004016109a890612af3565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111389190612c28565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146111785760405162461bcd60e51b81526004016109a890612af3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546108e190612ab9565b6005546001600160a01b031633146111d35760405162461bcd60e51b81526004016109a890612af3565b6007546001600160a01b03908116908316036112575760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109a8565b61126182826120f3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b0385811691161480156112cd57506006546001600160a01b03848116911614155b90508080156112f457506001600160a01b0383166000908152601a602052604090205460ff165b156112fe57426008555b6001600160a01b0384166000908152601a602052604081205460ff168061133d57506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b038581169116146000838061135c5750815b60105490915015801590819061137c5750600754600160a01b900460ff16155b8015611386575083155b801561138f5750815b98975050505050505050565b600033816113a98286611882565b9050838110156114095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109a8565b610bb282868684036119ca565b600033610972818585611b68565b6005546001600160a01b0316331461144e5760405162461bcd60e51b81526004016109a890612af3565b6000601455565b6005546001600160a01b0316331461147f5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115085760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e861151d60025490565b611528906005612b3e565b6115329190612b55565b61153c9190612b55565b8110156115975760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109a8565b6115a981670de0b6b3a7640000612b3e565b600d5550565b6005546001600160a01b031633146115d95760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff16156116335760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c65640000000060448201526064016109a8565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146116725760405162461bcd60e51b81526004016109a890612af3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146116c15760405162461bcd60e51b81526004016109a890612af3565b620186a06116ce60025490565b6116d9906001612b3e565b6116e39190612b55565b8210156117505760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109a8565b6103e861175c60025490565b611767906005612b3e565b6117719190612b55565b8211156117dd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109a8565b50600c81905560015b919050565b6005546001600160a01b031633146118155760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff1615156001146118735760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c656400000060448201526064016109a8565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146118d75760405162461bcd60e51b81526004016109a890612af3565b306000908152602081905260409020546109b190612121565b6005546001600160a01b0316331461191a5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03811661197f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b610a11816120a1565b6005546001600160a01b031633146119b25760405162461bcd60e51b81526004016109a890612af3565b6119c481670de0b6b3a764000061227b565b601e5550565b6001600160a01b038316611a2c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109a8565b6001600160a01b038216611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611afa8484611882565b90506000198114611b625781811015611b555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109a8565b611b6284848484036119ca565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ba757506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611bcf5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b038316611bf55760405162461bcd60e51b81526004016109a890612dd0565b81600003611c0957611b628484600061228e565b6007546000906001600160a01b038681169116148015611c4257506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611c7e57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611c946005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611cc057506005546001600160a01b038781169116145b905060006001600160a01b0387161580611ce457506001600160a01b03871661dead145b905060008280611cf15750815b80611d055750600754600160a01b900460ff165b600e5490915060ff168015611d18575080155b15611f1057600e54610100900460ff1680611d305750855b611d755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109a8565b8415611e5a57600b54871115611deb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109a8565b600d546001600160a01b038916600090815260208190526040902054611e119089612b77565b1115611e555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b611f10565b83611f10576001600160a01b0388166000908152601b602052604090205460ff16158015611ea157506001600160a01b0389166000908152601b602052604090205460ff16155b15611f1057600d546001600160a01b038916600090815260208190526040902054611ecc9089612b77565b1115611f105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b6001600160a01b0389166000908152601f602052604090205460ff1615611f71576001600160a01b0388166000908152600f60205260408120549003611f6c576001600160a01b0388166000908152600f602052604090204290555b611fa5565b600754600160a01b900460ff16611fa557600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff16158015611fd857506001600160a01b0389166000908152601f602052604090205460ff16155b8015611ffd57506001600160a01b0389166000908152601a602052604090205460ff16155b801561202257506001600160a01b0388166000908152601a602052604090205460ff16155b156120895730600090815260208190526040902054600c548110156120456123e2565b801561204e5750805b8015612058575087155b15612086576007805460ff60a01b1916600160a01b1790556120786123fe565b6007805460ff60a01b191690555b50505b612096898989878961263d565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff1916821515179055611261828261101e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061215657612156612e13565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d39190612b8a565b816001815181106121e6576121e6612e13565b6001600160a01b03928316602091820292909201015260065461220c91309116846119ca565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612245908590600090869030904290600401612e29565b600060405180830381600087803b15801561225f57600080fd5b505af1158015612273573d6000803e3d6000fd5b505050505050565b60006122878284612b3e565b9392505050565b6001600160a01b0383166122b45760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166122da5760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038316600090815260208190526040902054818110156123525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109a8565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612389908490612b77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d591815260200190565b60405180910390a3611b62565b6000806123ed610c66565b116123f85750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546124259190612b77565b61242f9190612b77565b905081158061243c575080155b15612445575050565b600c5482111561245557600c5491505b6000600282601854856124689190612b3e565b6124729190612b55565b61247c9190612b55565b9050600061248a84836127b0565b90504761249682612121565b60006124a247836127b0565b905060006124c5866124bf6016548561227b90919063ffffffff16565b906127bc565b905060006124e2876124bf6017548661227b90919063ffffffff16565b90506000816124f18486612e9a565b6124fb9190612e9a565b905060008711801561250d5750600081115b156125605761251c87826127c8565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50509050806125d057600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d806000811461261d576040519150601f19603f3d011682016040523d82523d6000602084013e612622565b606091505b505090508061263057600080fd5b5050505050505050505050565b6000612649868661129d565b6001600160a01b0387166000908152601a602052604090205490915060ff161561267e57612678868686612896565b506127a9565b801561279e5760105460115484156126b5576014546010546126a09190612b77565b91506014546011546126b29190612b77565b90505b83156126e0576015546010546126cb9190612b77565b91506015546011546126dd9190612b77565b90505b60006126f160646124bf898661227b565b905082601254826127029190612b3e565b61270c9190612b55565b6018600082825461271d9190612b77565b9091555083905061272e8383612b3e565b6127389190612b55565b601660008282546127499190612b77565b9091555050601354839061275d9083612b3e565b6127679190612b55565b601760008282546127789190612b77565b9091555050801561278e5761278e89308361228e565b6127988188612e9a565b96505050505b61227386868661228e565b5050505050565b60006122878284612e9a565b60006122878284612b55565b6006546127e09030906001600160a01b0316846119ca565b6006546001600160a01b031663f305d7198230856000806128096005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612871573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a99190612ead565b6001600160a01b0383166128bc5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166128e25760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038084166000908152602081905260408082208054858103909155928516825281208054849290612389908490612b77565b600060208083528351808285015260005b818110156129485785810183015185820160400152820161292c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1157600080fd5b6000806040838503121561299157600080fd5b823561299c81612969565b946020939093013593505050565b6000602082840312156129bc57600080fd5b5035919050565b6000806000606084860312156129d857600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612a0457600080fd5b8335612a0f81612969565b92506020840135612a1f81612969565b929592945050506040919091013590565b600060208284031215612a4257600080fd5b813561228781612969565b60008060408385031215612a6057600080fd5b8235612a6b81612969565b915060208301358015158114612a8057600080fd5b809150509250929050565b60008060408385031215612a9e57600080fd5b8235612aa981612969565b91506020830135612a8081612969565b600181811c90821680612acd57607f821691505b602082108103612aed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097857610978612b28565b600082612b7257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097857610978612b28565b600060208284031215612b9c57600080fd5b815161228781612969565b80516001600160701b03811681146117e657600080fd5b600080600060608486031215612bd357600080fd5b612bdc84612ba7565b9250612bea60208501612ba7565b9150604084015163ffffffff81168114612c0357600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146117e657600080fd5b600080600080600060a08688031215612c4057600080fd5b612c4986612c0e565b9450602086015193506040860151925060608601519150612c6c60808701612c0e565b90509295509295909350565b600060208284031215612c8a57600080fd5b815160ff8116811461228757600080fd5b600181815b80851115612cd6578160001904821115612cbc57612cbc612b28565b80851615612cc957918102915b93841c9390800290612ca0565b509250929050565b600082612ced57506001610978565b81612cfa57506000610978565b8160018114612d105760028114612d1a57612d36565b6001915050610978565b60ff841115612d2b57612d2b612b28565b50506001821b610978565b5060208310610133831016604e8410600b8410161715612d59575081810a610978565b612d638383612c9b565b8060001904821115612d7757612d77612b28565b029392505050565b60006122878383612cde565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e795784516001600160a01b031683529383019391830191600101612e54565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561097857610978612b28565b600080600060608486031215612ec257600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207d496a83cd6526b0da281eea23d141595d77544ae64a6102ba8063429493564364736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638a8c523c11610175578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd14610862578063f2fde38b1461087c578063fea4fa4d1461089c578063fefa5ce3146108b257600080fd5b8063dd1e1ca914610818578063dd62ed3e1461082d578063df778d261461084d57600080fd5b8063b62496f514610753578063c024666814610783578063c18bc195146107a3578063c862c28b146107c3578063cb94a370146107d8578063d257b34f146107f857600080fd5b80639c74daf01161012e5780639c74daf014610691578063a1cd15e8146106b1578063a457c2d7146106d1578063a9059cbb146106f1578063ae76b09014610711578063b1d920851461072657600080fd5b80638a8c523c146105bd5780638da5cb5b146105d25780638e15f473146105f05780638e1a9efb1461063c57806395d89b411461065c5780639a7a23d61461067157600080fd5b8063313ce567116102195780636d77ecd1116101d25780636d77ecd11461050757806370a0823114610527578063715018a61461055d578063751039fc146105725780637571336a1461058757806382247ec0146105a757600080fd5b8063313ce56714610430578063339578fe1461044c57806339509351146104615780634b94f50e146104815780634fbee19314610496578063583e0568146104cf57600080fd5b8063203e727e1161026b578063203e727e1461037b578063224290851461039b57806323b872dd146103bb57806323bf4c86146103db57806327f4d7d5146103fb5780632fd689e31461041a57600080fd5b806304beaeb8146102be57806306fdde03146102e7578063095ea7b31461030957806312b77e8a1461033957806318160ddd14610350578063199ffc721461036557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600b5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc6108d2565b6040516102de919061291b565b34801561031557600080fd5b5061032961032436600461297e565b610964565b60405190151581526020016102de565b34801561034557600080fd5b5061034e61097e565b005b34801561035c57600080fd5b506002546102d4565b34801561037157600080fd5b506102d460195481565b34801561038757600080fd5b5061034e6103963660046129aa565b610a14565b3480156103a757600080fd5b5061034e6103b63660046129c3565b610af1565b3480156103c757600080fd5b506103296103d63660046129ef565b610b99565b3480156103e757600080fd5b5061034e6103f6366004612a30565b610bbd565b34801561040757600080fd5b50600e5461032990610100900460ff1681565b34801561042657600080fd5b506102d4600c5481565b34801561043c57600080fd5b50604051601281526020016102de565b34801561045857600080fd5b5061034e610c13565b34801561046d57600080fd5b5061032961047c36600461297e565b610c44565b34801561048d57600080fd5b506102d4610c66565b3480156104a257600080fd5b506103296104b1366004612a30565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104db57600080fd5b506006546104ef906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561051357600080fd5b50601d546104ef906001600160a01b031681565b34801561053357600080fd5b506102d4610542366004612a30565b6001600160a01b031660009081526020819052604090205490565b34801561056957600080fd5b5061034e610fab565b34801561057e57600080fd5b50610329610fe1565b34801561059357600080fd5b5061034e6105a2366004612a4d565b61101e565b3480156105b357600080fd5b506102d4600d5481565b3480156105c957600080fd5b5061034e611073565b3480156105de57600080fd5b506005546001600160a01b03166104ef565b3480156105fc57600080fd5b506106056110b2565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a0016102de565b34801561064857600080fd5b5061034e610657366004612a30565b61114e565b34801561066857600080fd5b506102fc61119a565b34801561067d57600080fd5b5061034e61068c366004612a4d565b6111a9565b34801561069d57600080fd5b506007546104ef906001600160a01b031681565b3480156106bd57600080fd5b506103296106cc366004612a8b565b61129d565b3480156106dd57600080fd5b506103296106ec36600461297e565b61139b565b3480156106fd57600080fd5b5061032961070c36600461297e565b611416565b34801561071d57600080fd5b5061034e611424565b34801561073257600080fd5b506102d4610741366004612a30565b600f6020526000908152604090205481565b34801561075f57600080fd5b5061032961076e366004612a30565b601f6020526000908152604090205460ff1681565b34801561078f57600080fd5b5061034e61079e366004612a4d565b611455565b3480156107af57600080fd5b5061034e6107be3660046129aa565b6114de565b3480156107cf57600080fd5b5061034e6115af565b3480156107e457600080fd5b5061034e6107f3366004612a30565b611648565b34801561080457600080fd5b506103296108133660046129aa565b611694565b34801561082457600080fd5b5061034e6117eb565b34801561083957600080fd5b506102d4610848366004612a8b565b611882565b34801561085957600080fd5b5061034e6118ad565b34801561086e57600080fd5b50600e546103299060ff1681565b34801561088857600080fd5b5061034e610897366004612a30565b6118f0565b3480156108a857600080fd5b506102d460105481565b3480156108be57600080fd5b5061034e6108cd3660046129aa565b611988565b6060600380546108e190612ab9565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612ab9565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000336109728185856119ca565b60019150505b92915050565b6005546001600160a01b031633146109b15760405162461bcd60e51b81526004016109a890612af3565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109fe576040519150601f19603f3d011682016040523d82523d6000602084013e610a03565b606091505b5050905080610a1157600080fd5b50565b6005546001600160a01b03163314610a3e5760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e8610a5360025490565b610a5e906001612b3e565b610a689190612b55565b610a729190612b55565b811015610ad95760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109a8565b610aeb81670de0b6b3a7640000612b3e565b600b5550565b6005546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016109a890612af3565b60118390556013829055601281905580610b358385612b77565b610b3f9190612b77565b6010819055600a1015610b945760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016109a8565b505050565b600033610ba7858285611aee565b610bb2858585611b68565b506001949350505050565b6005546001600160a01b03163314610be75760405162461bcd60e51b81526004016109a890612af3565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016109a890612af3565b6000601555565b600033610972818585610c578383611882565b610c619190612b77565b6119ca565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612b8a565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612b8a565b600854600e546201000090046001600160a01b03166000908152600f602052604090205491925010610d8c57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e069190612bbe565b50601e54601d5492945090925090600160a01b900460ff1615610e8d57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612c28565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef19190612c78565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f569190612c78565b610f649060ff16600a612d7f565b610f77846001600160701b038716612b3e565b610f819190612b3e565b610f8b9190612b55565b9050610fa06001600160701b03851682612b55565b965050505050505090565b6005546001600160a01b03163314610fd55760405162461bcd60e51b81526004016109a890612af3565b610fdf60006120a1565b565b6005546000906001600160a01b0316331461100e5760405162461bcd60e51b81526004016109a890612af3565b50600e805460ff19169055600190565b6005546001600160a01b031633146110485760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461109d5760405162461bcd60e51b81526004016109a890612af3565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111389190612c28565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146111785760405162461bcd60e51b81526004016109a890612af3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546108e190612ab9565b6005546001600160a01b031633146111d35760405162461bcd60e51b81526004016109a890612af3565b6007546001600160a01b03908116908316036112575760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109a8565b61126182826120f3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b0385811691161480156112cd57506006546001600160a01b03848116911614155b90508080156112f457506001600160a01b0383166000908152601a602052604090205460ff165b156112fe57426008555b6001600160a01b0384166000908152601a602052604081205460ff168061133d57506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b038581169116146000838061135c5750815b60105490915015801590819061137c5750600754600160a01b900460ff16155b8015611386575083155b801561138f5750815b98975050505050505050565b600033816113a98286611882565b9050838110156114095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109a8565b610bb282868684036119ca565b600033610972818585611b68565b6005546001600160a01b0316331461144e5760405162461bcd60e51b81526004016109a890612af3565b6000601455565b6005546001600160a01b0316331461147f5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115085760405162461bcd60e51b81526004016109a890612af3565b670de0b6b3a76400006103e861151d60025490565b611528906005612b3e565b6115329190612b55565b61153c9190612b55565b8110156115975760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109a8565b6115a981670de0b6b3a7640000612b3e565b600d5550565b6005546001600160a01b031633146115d95760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff16156116335760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c65640000000060448201526064016109a8565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146116725760405162461bcd60e51b81526004016109a890612af3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146116c15760405162461bcd60e51b81526004016109a890612af3565b620186a06116ce60025490565b6116d9906001612b3e565b6116e39190612b55565b8210156117505760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109a8565b6103e861175c60025490565b611767906005612b3e565b6117719190612b55565b8211156117dd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109a8565b50600c81905560015b919050565b6005546001600160a01b031633146118155760405162461bcd60e51b81526004016109a890612af3565b601d54600160a01b900460ff1615156001146118735760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c656400000060448201526064016109a8565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146118d75760405162461bcd60e51b81526004016109a890612af3565b306000908152602081905260409020546109b190612121565b6005546001600160a01b0316331461191a5760405162461bcd60e51b81526004016109a890612af3565b6001600160a01b03811661197f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b610a11816120a1565b6005546001600160a01b031633146119b25760405162461bcd60e51b81526004016109a890612af3565b6119c481670de0b6b3a764000061227b565b601e5550565b6001600160a01b038316611a2c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109a8565b6001600160a01b038216611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611afa8484611882565b90506000198114611b625781811015611b555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109a8565b611b6284848484036119ca565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ba757506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611bcf5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b038316611bf55760405162461bcd60e51b81526004016109a890612dd0565b81600003611c0957611b628484600061228e565b6007546000906001600160a01b038681169116148015611c4257506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611c7e57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611c946005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611cc057506005546001600160a01b038781169116145b905060006001600160a01b0387161580611ce457506001600160a01b03871661dead145b905060008280611cf15750815b80611d055750600754600160a01b900460ff165b600e5490915060ff168015611d18575080155b15611f1057600e54610100900460ff1680611d305750855b611d755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109a8565b8415611e5a57600b54871115611deb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109a8565b600d546001600160a01b038916600090815260208190526040902054611e119089612b77565b1115611e555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b611f10565b83611f10576001600160a01b0388166000908152601b602052604090205460ff16158015611ea157506001600160a01b0389166000908152601b602052604090205460ff16155b15611f1057600d546001600160a01b038916600090815260208190526040902054611ecc9089612b77565b1115611f105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109a8565b6001600160a01b0389166000908152601f602052604090205460ff1615611f71576001600160a01b0388166000908152600f60205260408120549003611f6c576001600160a01b0388166000908152600f602052604090204290555b611fa5565b600754600160a01b900460ff16611fa557600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff16158015611fd857506001600160a01b0389166000908152601f602052604090205460ff16155b8015611ffd57506001600160a01b0389166000908152601a602052604090205460ff16155b801561202257506001600160a01b0388166000908152601a602052604090205460ff16155b156120895730600090815260208190526040902054600c548110156120456123e2565b801561204e5750805b8015612058575087155b15612086576007805460ff60a01b1916600160a01b1790556120786123fe565b6007805460ff60a01b191690555b50505b612096898989878961263d565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff1916821515179055611261828261101e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061215657612156612e13565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d39190612b8a565b816001815181106121e6576121e6612e13565b6001600160a01b03928316602091820292909201015260065461220c91309116846119ca565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612245908590600090869030904290600401612e29565b600060405180830381600087803b15801561225f57600080fd5b505af1158015612273573d6000803e3d6000fd5b505050505050565b60006122878284612b3e565b9392505050565b6001600160a01b0383166122b45760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166122da5760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038316600090815260208190526040902054818110156123525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109a8565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612389908490612b77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d591815260200190565b60405180910390a3611b62565b6000806123ed610c66565b116123f85750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546124259190612b77565b61242f9190612b77565b905081158061243c575080155b15612445575050565b600c5482111561245557600c5491505b6000600282601854856124689190612b3e565b6124729190612b55565b61247c9190612b55565b9050600061248a84836127b0565b90504761249682612121565b60006124a247836127b0565b905060006124c5866124bf6016548561227b90919063ffffffff16565b906127bc565b905060006124e2876124bf6017548661227b90919063ffffffff16565b90506000816124f18486612e9a565b6124fb9190612e9a565b905060008711801561250d5750600081115b156125605761251c87826127c8565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50509050806125d057600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d806000811461261d576040519150601f19603f3d011682016040523d82523d6000602084013e612622565b606091505b505090508061263057600080fd5b5050505050505050505050565b6000612649868661129d565b6001600160a01b0387166000908152601a602052604090205490915060ff161561267e57612678868686612896565b506127a9565b801561279e5760105460115484156126b5576014546010546126a09190612b77565b91506014546011546126b29190612b77565b90505b83156126e0576015546010546126cb9190612b77565b91506015546011546126dd9190612b77565b90505b60006126f160646124bf898661227b565b905082601254826127029190612b3e565b61270c9190612b55565b6018600082825461271d9190612b77565b9091555083905061272e8383612b3e565b6127389190612b55565b601660008282546127499190612b77565b9091555050601354839061275d9083612b3e565b6127679190612b55565b601760008282546127789190612b77565b9091555050801561278e5761278e89308361228e565b6127988188612e9a565b96505050505b61227386868661228e565b5050505050565b60006122878284612e9a565b60006122878284612b55565b6006546127e09030906001600160a01b0316846119ca565b6006546001600160a01b031663f305d7198230856000806128096005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612871573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a99190612ead565b6001600160a01b0383166128bc5760405162461bcd60e51b81526004016109a890612d8b565b6001600160a01b0382166128e25760405162461bcd60e51b81526004016109a890612dd0565b6001600160a01b038084166000908152602081905260408082208054858103909155928516825281208054849290612389908490612b77565b600060208083528351808285015260005b818110156129485785810183015185820160400152820161292c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1157600080fd5b6000806040838503121561299157600080fd5b823561299c81612969565b946020939093013593505050565b6000602082840312156129bc57600080fd5b5035919050565b6000806000606084860312156129d857600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612a0457600080fd5b8335612a0f81612969565b92506020840135612a1f81612969565b929592945050506040919091013590565b600060208284031215612a4257600080fd5b813561228781612969565b60008060408385031215612a6057600080fd5b8235612a6b81612969565b915060208301358015158114612a8057600080fd5b809150509250929050565b60008060408385031215612a9e57600080fd5b8235612aa981612969565b91506020830135612a8081612969565b600181811c90821680612acd57607f821691505b602082108103612aed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097857610978612b28565b600082612b7257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097857610978612b28565b600060208284031215612b9c57600080fd5b815161228781612969565b80516001600160701b03811681146117e657600080fd5b600080600060608486031215612bd357600080fd5b612bdc84612ba7565b9250612bea60208501612ba7565b9150604084015163ffffffff81168114612c0357600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146117e657600080fd5b600080600080600060a08688031215612c4057600080fd5b612c4986612c0e565b9450602086015193506040860151925060608601519150612c6c60808701612c0e565b90509295509295909350565b600060208284031215612c8a57600080fd5b815160ff8116811461228757600080fd5b600181815b80851115612cd6578160001904821115612cbc57612cbc612b28565b80851615612cc957918102915b93841c9390800290612ca0565b509250929050565b600082612ced57506001610978565b81612cfa57506000610978565b8160018114612d105760028114612d1a57612d36565b6001915050610978565b60ff841115612d2b57612d2b612b28565b50506001821b610978565b5060208310610133831016604e8410600b8410161715612d59575081810a610978565b612d638383612c9b565b8060001904821115612d7757612d77612b28565b029392505050565b60006122878383612cde565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e795784516001600160a01b031683529383019391830191600101612e54565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561097857610978612b28565b600080600060608486031215612ec257600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207d496a83cd6526b0da281eea23d141595d77544ae64a6102ba8063429493564364736f6c63430008120033

Deployed Bytecode Sourcemap

38476:16633:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38778:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38778:36:0;;;;;;;;26203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28695:242::-;;;;;;;;;;-1:-1:-1;28695:242:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28695:242:0;1205:187:1;52234:169:0;;;;;;;;;;;;;:::i;:::-;;27323:108;;;;;;;;;;-1:-1:-1;27411:12:0;;27323:108;;39417:35;;;;;;;;;;;;;;;;45320:272;;;;;;;;;;-1:-1:-1;45320:272:0;;;;;:::i;:::-;;:::i;46036:410::-;;;;;;;;;;-1:-1:-1;46036:410:0;;;;;:::i;:::-;;:::i;29517:295::-;;;;;;;;;;-1:-1:-1;29517:295:0;;;;;:::i;:::-;;:::i;51461:168::-;;;;;;;;;;-1:-1:-1;51461:168:0;;;;;:::i;:::-;;:::i;38935:34::-;;;;;;;;;;-1:-1:-1;38935:34:0;;;;;;;;;;;38821;;;;;;;;;;;;;;;;27165:93;;;;;;;;;;-1:-1:-1;27165:93:0;;27248:2;2758:36:1;;2746:2;2731:18;27165:93:0;2616:184:1;51236:91:0;;;;;;;;;;;;;:::i;30221:270::-;;;;;;;;;;-1:-1:-1;30221:270:0;;;;;:::i;:::-;;:::i;42903:811::-;;;;;;;;;;;;;:::i;51001:126::-;;;;;;;;;;-1:-1:-1;51001:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;51091:28:0;51067:4;51091:28;;;:19;:28;;;;;;;;;51001:126;38553:42;;;;;;;;;;-1:-1:-1;38553:42:0;;;;-1:-1:-1;;;;;38553:42:0;;;;;;-1:-1:-1;;;;;2995:32:1;;;2977:51;;2965:2;2950:18;38553:42:0;2805:229:1;39639:177:0;;;;;;;;;;-1:-1:-1;39639:177:0;;;;-1:-1:-1;;;;;39639:177:0;;;27494;;;;;;;;;;-1:-1:-1;27494:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;27645:18:0;27613:7;27645:18;;;;;;;;;;;;27494:177;22825:103;;;;;;;;;;;;;:::i;42649:122::-;;;;;;;;;;;;;:::i;45861:167::-;;;;;;;;;;-1:-1:-1;45861:167:0;;;;;:::i;:::-;;:::i;38862:25::-;;;;;;;;;;;;;;;;41966:123;;;;;;;;;;;;;:::i;22174:87::-;;;;;;;;;;-1:-1:-1;22247:6:0;;-1:-1:-1;;;;;22247:6:0;22174:87;;43722:491;;;;;;;;;;;;;:::i;:::-;;;;3931:22:1;3980:15;;;3962:34;;4027:2;4012:18;;4005:34;;;;4055:18;;4048:34;;;;4113:2;4098:18;;4091:34;4162:15;;;4156:3;4141:19;;4134:44;3908:3;3893:19;43722:491:0;3668:516:1;46766:110:0;;;;;;;;;;-1:-1:-1;46766:110:0;;;;;:::i;:::-;;:::i;26422:104::-;;;;;;;;;;;;;:::i;42097:301::-;;;;;;;;;;-1:-1:-1;42097:301:0;;;;;:::i;:::-;;:::i;38602:29::-;;;;;;;;;;-1:-1:-1;38602:29:0;;;;-1:-1:-1;;;;;38602:29:0;;;44221:585;;;;;;;;;;-1:-1:-1;44221:585:0;;;;;:::i;:::-;;:::i;30994:505::-;;;;;;;;;;-1:-1:-1;30994:505:0;;;;;:::i;:::-;;:::i;27877:234::-;;;;;;;;;;-1:-1:-1;27877:234:0;;;;;:::i;:::-;;:::i;51135:93::-;;;;;;;;;;;;;:::i;39009:50::-;;;;;;;;;;-1:-1:-1;39009:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;39921:58;;;;;;;;;;-1:-1:-1;39921:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46454:182;;;;;;;;;;-1:-1:-1;46454:182:0;;;;;:::i;:::-;;:::i;45600:253::-;;;;;;;;;;-1:-1:-1;45600:253:0;;;;;:::i;:::-;;:::i;51637:173::-;;;;;;;;;;;;;:::i;46644:114::-;;;;;;;;;;-1:-1:-1;46644:114:0;;;;;:::i;:::-;;:::i;44814:498::-;;;;;;;;;;-1:-1:-1;44814:498:0;;;;;:::i;:::-;;:::i;51818:175::-;;;;;;;;;;;;;:::i;28174:201::-;;;;;;;;;;-1:-1:-1;28174:201:0;;;;;:::i;:::-;;:::i;52001:225::-;;;;;;;;;;;;;:::i;38894:34::-;;;;;;;;;;-1:-1:-1;38894:34:0;;;;;;;;23083:238;;;;;;;;;;-1:-1:-1;23083:238:0;;;;;:::i;:::-;;:::i;39066:25::-;;;;;;;;;;;;;;;;51335:118;;;;;;;;;;-1:-1:-1;51335:118:0;;;;;:::i;:::-;;:::i;26203:100::-;26257:13;26290:5;26283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26203:100;:::o;28695:242::-;28814:4;785:10;28875:32;785:10;28891:7;28900:6;28875:8;:32::i;:::-;28925:4;28918:11;;;28695:242;;;;;:::o;52234:169::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;;;;;;;;;52311:16:::1;::::0;52303:65:::1;::::0;52286:12:::1;::::0;-1:-1:-1;;;;;52311:16:0::1;::::0;52342:21:::1;::::0;52286:12;52303:65;52286:12;52303:65;52342:21;52311:16;52303:65:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52285:83;;;52387:7;52379:16;;;::::0;::::1;;52274:129;52234:169::o:0;45320:272::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;45457:4:::1;45449;45428:13;27411:12:::0;;;27323:108;45428:13:::1;:17;::::0;45444:1:::1;45428:17;:::i;:::-;45427:26;;;;:::i;:::-;45426:35;;;;:::i;:::-;45416:6;:45;;45394:142;;;::::0;-1:-1:-1;;;45394:142:0;;6267:2:1;45394:142:0::1;::::0;::::1;6249:21:1::0;6306:2;6286:18;;;6279:30;6345:34;6325:18;;;6318:62;-1:-1:-1;;;6396:18:1;;;6389:45;6451:19;;45394:142:0::1;6065:411:1::0;45394:142:0::1;45571:13;:6:::0;45580:4:::1;45571:13;:::i;:::-;45547:21;:37:::0;-1:-1:-1;45320:272:0:o;46036:410::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;46188:13:::1;:28:::0;;;46227:15:::1;:32:::0;;;46270:13:::1;:28:::0;;;46286:12;46322:31:::1;46245:14:::0;46204:12;46322:31:::1;:::i;:::-;:47;;;;:::i;:::-;46309:10;:60:::0;;;46402:2:::1;-1:-1:-1::0;46388:16:0::1;46380:58;;;::::0;-1:-1:-1;;;46380:58:0;;6813:2:1;46380:58:0::1;::::0;::::1;6795:21:1::0;6852:2;6832:18;;;6825:30;6891:31;6871:18;;;6864:59;6940:18;;46380:58:0::1;6611:353:1::0;46380:58:0::1;46036:410:::0;;;:::o;29517:295::-;29648:4;785:10;29706:38;29722:4;785:10;29737:6;29706:15;:38::i;:::-;29755:27;29765:4;29771:2;29775:6;29755:9;:27::i;:::-;-1:-1:-1;29800:4:0;;29517:295;-1:-1:-1;;;;29517:295:0:o;51461:168::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;51536:16:::1;:23:::0;;-1:-1:-1;;;;;51536:23:0;;::::1;-1:-1:-1::0;;;;;;51536:23:0;;::::1;::::0;::::1;::::0;;;51570:9:::1;:51:::0;;;;::::1;;::::0;;51461:168::o;51236:91::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;51318:1:::1;51298:17;:21:::0;51236:91::o;30221:270::-;30336:4;785:10;30397:64;785:10;30413:7;30450:10;30422:25;785:10;30413:7;30422:9;:25::i;:::-;:38;;;;:::i;:::-;30397:8;:64::i;42903:811::-;42949:7;42969:21;43037:14;;;;;;;;;-1:-1:-1;;;;;43037:14:0;-1:-1:-1;;;;;43022:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42969:103;;43083:21;43151:14;;;;;;;;;-1:-1:-1;;;;;43151:14:0;-1:-1:-1;;;;;43136:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43235:12;;43221:10;;;;;-1:-1:-1;;;;;43221:10:0;43205:27;;;;:15;:27;;;;;;43083:103;;-1:-1:-1;;43197:51:0;;;;;;43260:12;43274;43307:14;;;;;;;;;-1:-1:-1;;;;;43307:14:0;-1:-1:-1;;;;;43292:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;43385:14:0;;43414:19;;43259:91;;-1:-1:-1;43259:91:0;;-1:-1:-1;43385:14:0;-1:-1:-1;;;43414:19:0;;;;43410:100;;;43477:4;-1:-1:-1;;;;;43477:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;43450:48:0;;-1:-1:-1;;;;43410:100:0;43520:12;43648:6;-1:-1:-1;;;;;43648:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43640:26;;43617:6;-1:-1:-1;;;;;43617:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43605:30;;43609:26;;43605:2;:30;:::i;:::-;43536:52;43573:14;-1:-1:-1;;;;;43536:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;43535:131;;;;:::i;:::-;43520:146;-1:-1:-1;43685:20:0;-1:-1:-1;;;;;43692:13:0;;43520:146;43685:20;:::i;:::-;43677:29;;;;;;;;42903:811;:::o;22825:103::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;22890:30:::1;22917:1;22890:18;:30::i;:::-;22825:103::o:0;42649:122::-;22247:6;;42701:4;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;-1:-1:-1;42718:15:0::1;:23:::0;;-1:-1:-1;;42718:23:0::1;::::0;;;42649:122;:::o;45861:167::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45974:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;45974:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45861:167::o;41966:123::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;42019:14:::1;:21:::0;;-1:-1:-1;;42019:21:0::1;;;::::0;;42066:15:::1;42051:12;:30:::0;41966:123::o;43722:491::-;43812:6;43833;43854:7;43876;43898:6;43947:14;43976:12;44003:17;44035;44067:22;44103:9;;;;;;;;;-1:-1:-1;;;;;44103:9:0;-1:-1:-1;;;;;44103:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43932:198;;;;-1:-1:-1;43932:198:0;;-1:-1:-1;43932:198:0;-1:-1:-1;43932:198:0;;-1:-1:-1;43722:491:0;-1:-1:-1;;;;;;43722:491:0:o;46766:110::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;46846:10:::1;:22:::0;;-1:-1:-1;;;;;;46846:22:0::1;-1:-1:-1::0;;;;;46846:22:0;;;::::1;::::0;;;::::1;::::0;;46766:110::o;26422:104::-;26478:13;26511:7;26504:14;;;;;:::i;42097:301::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;42206:14:::1;::::0;-1:-1:-1;;;;;42206:14:0;;::::1;42198:22:::0;;::::1;::::0;42190:92:::1;;;::::0;-1:-1:-1;;;42190:92:0;;10389:2:1;42190:92:0::1;::::0;::::1;10371:21:1::0;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;10538:27;10518:18;;;10511:55;10583:19;;42190:92:0::1;10187:421:1::0;42190:92:0::1;42293:41;42322:4;42328:5;42293:28;:41::i;:::-;42350:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;42350:40:0;::::1;::::0;::::1;::::0;;;::::1;42097:301:::0;;:::o;44221:585::-;44322:14;;44284:4;;;;-1:-1:-1;;;;;44314:22:0;;;44322:14;;44314:22;:57;;;;-1:-1:-1;44354:16:0;;-1:-1:-1;;;;;44340:31:0;;;44354:16;;44340:31;;44314:57;44301:70;;44386:5;:32;;;;-1:-1:-1;;;;;;44395:23:0;;;;;;:19;:23;;;;;;;;44386:32;44382:68;;;44435:15;44420:12;:30;44382:68;-1:-1:-1;;;;;44486:25:0;;44461:22;44486:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44515:23:0;;;;;;:19;:23;;;;;;;;44486:52;44569:14;;44461:77;;-1:-1:-1;;;;;;44563:20:0;;;44569:14;;44563:20;44549:11;44609:5;;:15;;;44618:6;44609:15;44652:10;;44595:29;;-1:-1:-1;44652:14:0;;;;;;44701:39;;-1:-1:-1;44727:13:0;;-1:-1:-1;;;44727:13:0;;;;44726:14;44701:39;:74;;;;;44758:17;44757:18;44701:74;:97;;;;;44792:6;44701:97;44680:118;44221:585;-1:-1:-1;;;;;;;;44221:585:0:o;30994:505::-;31114:4;785:10;31114:4;31202:25;785:10;31219:7;31202:9;:25::i;:::-;31175:52;;31280:15;31260:16;:35;;31238:122;;;;-1:-1:-1;;;31238:122:0;;10815:2:1;31238:122:0;;;10797:21:1;10854:2;10834:18;;;10827:30;10893:34;10873:18;;;10866:62;-1:-1:-1;;;10944:18:1;;;10937:35;10989:19;;31238:122:0;10613:401:1;31238:122:0;31396:60;31405:5;31412:7;31440:15;31421:16;:34;31396:8;:60::i;27877:234::-;27992:4;785:10;28053:28;785:10;28070:2;28074:6;28053:9;:28::i;51135:93::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;51219:1:::1;51198:18;:22:::0;51135:93::o;46454:182::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46539:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46539:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46594:34;;1345:41:1;;;46594:34:0::1;::::0;1318:18:1;46594:34:0::1;;;;;;;46454:182:::0;;:::o;45600:253::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;45740:4:::1;45732;45711:13;27411:12:::0;;;27323:108;45711:13:::1;:17;::::0;45727:1:::1;45711:17;:::i;:::-;45710:26;;;;:::i;:::-;45709:35;;;;:::i;:::-;45699:6;:45;;45677:131;;;::::0;-1:-1:-1;;;45677:131:0;;11221:2:1;45677:131:0::1;::::0;::::1;11203:21:1::0;11260:2;11240:18;;;11233:30;11299:34;11279:18;;;11272:62;-1:-1:-1;;;11350:18:1;;;11343:34;11394:19;;45677:131:0::1;11019:400:1::0;45677:131:0::1;45832:13;:6:::0;45841:4:::1;45832:13;:::i;:::-;45819:10;:26:::0;-1:-1:-1;45600:253:0:o;51637:173::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;51704:19:::1;::::0;-1:-1:-1;;;51704:19:0;::::1;;;:28;51696:69;;;::::0;-1:-1:-1;;;51696:69:0;;11626:2:1;51696:69:0::1;::::0;::::1;11608:21:1::0;11665:2;11645:18;;;11638:30;11704;11684:18;;;11677:58;11752:18;;51696:69:0::1;11424:352:1::0;51696:69:0::1;51776:19;:26:::0;;-1:-1:-1;;;;51776:26:0::1;-1:-1:-1::0;;;51776:26:0::1;::::0;;51637:173::o;46644:114::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;46722:16:::1;:28:::0;;-1:-1:-1;;;;;;46722:28:0::1;-1:-1:-1::0;;;;;46722:28:0;;;::::1;::::0;;;::::1;::::0;;46644:114::o;44814:498::-;22247:6;;44922:4;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;45001:6:::1;44980:13;27411:12:::0;;;27323:108;44980:13:::1;:17;::::0;44996:1:::1;44980:17;:::i;:::-;44979:28;;;;:::i;:::-;44966:9;:41;;44944:144;;;::::0;-1:-1:-1;;;44944:144:0;;11983:2:1;44944:144:0::1;::::0;::::1;11965:21:1::0;12022:2;12002:18;;;11995:30;12061:34;12041:18;;;12034:62;-1:-1:-1;;;12112:18:1;;;12105:51;12173:19;;44944:144:0::1;11781:417:1::0;44944:144:0::1;45156:4;45135:13;27411:12:::0;;;27323:108;45135:13:::1;:17;::::0;45151:1:::1;45135:17;:::i;:::-;45134:26;;;;:::i;:::-;45121:9;:39;;45099:141;;;::::0;-1:-1:-1;;;45099:141:0;;12405:2:1;45099:141:0::1;::::0;::::1;12387:21:1::0;12444:2;12424:18;;;12417:30;12483:34;12463:18;;;12456:62;-1:-1:-1;;;12534:18:1;;;12527:50;12594:19;;45099:141:0::1;12203:416:1::0;45099:141:0::1;-1:-1:-1::0;45251:19:0::1;:31:::0;;;45300:4:::1;22465:1;44814:498:::0;;;:::o;51818:175::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;51886:19:::1;::::0;-1:-1:-1;;;51886:19:0;::::1;;;:27;;51909:4;51886:27;51878:69;;;::::0;-1:-1:-1;;;51878:69:0;;12826:2:1;51878:69:0::1;::::0;::::1;12808:21:1::0;12865:2;12845:18;;;12838:30;12904:31;12884:18;;;12877:59;12953:18;;51878:69:0::1;12624:353:1::0;51878:69:0::1;51958:19;:27:::0;;-1:-1:-1;;;;51958:27:0::1;::::0;;51818:175::o;28174:201::-;-1:-1:-1;;;;;28340:18:0;;;28308:7;28340:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28174:201::o;52001:225::-;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;52088:4:::1;27613:7:::0;27645:18;;;;;;;;;;;52052:43:::1;::::0;:17:::1;:43::i;23083:238::-:0;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23186:22:0;::::1;23164:110;;;::::0;-1:-1:-1;;;23164:110:0;;13184:2:1;23164:110:0::1;::::0;::::1;13166:21:1::0;13223:2;13203:18;;;13196:30;13262:34;13242:18;;;13235:62;-1:-1:-1;;;13313:18:1;;;13306:36;13359:19;;23164:110:0::1;12982:402:1::0;23164:110:0::1;23285:28;23304:8;23285:18;:28::i;51335:118::-:0;22247:6;;-1:-1:-1;;;;;22247:6:0;785:10;22394:23;22386:68;;;;-1:-1:-1;;;22386:68:0;;;;;;;:::i;:::-;51429:15:::1;:3:::0;51437:6:::1;51429:7;:15::i;:::-;51405:14;:40:::0;-1:-1:-1;51335:118:0:o;34629:380::-;-1:-1:-1;;;;;34765:19:0;;34757:68;;;;-1:-1:-1;;;34757:68:0;;13591:2:1;34757:68:0;;;13573:21:1;13630:2;13610:18;;;13603:30;13669:34;13649:18;;;13642:62;-1:-1:-1;;;13720:18:1;;;13713:34;13764:19;;34757:68:0;13389:400:1;34757:68:0;-1:-1:-1;;;;;34844:21:0;;34836:68;;;;-1:-1:-1;;;34836:68:0;;13996:2:1;34836:68:0;;;13978:21:1;14035:2;14015:18;;;14008:30;14074:34;14054:18;;;14047:62;-1:-1:-1;;;14125:18:1;;;14118:32;14167:19;;34836:68:0;13794:398:1;34836:68:0;-1:-1:-1;;;;;34917:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34969:32;;160:25:1;;;34969:32:0;;133:18:1;34969:32:0;;;;;;;34629:380;;;:::o;35300:502::-;35435:24;35462:25;35472:5;35479:7;35462:9;:25::i;:::-;35435:52;;-1:-1:-1;;35502:16:0;:37;35498:297;;35602:6;35582:16;:26;;35556:117;;;;-1:-1:-1;;;35556:117:0;;14399:2:1;35556:117:0;;;14381:21:1;14438:2;14418:18;;;14411:30;14477:31;14457:18;;;14450:59;14526:18;;35556:117:0;14197:353:1;35556:117:0;35717:51;35726:5;35733:7;35761:6;35742:16;:25;35717:8;:51::i;:::-;35424:378;35300:502;;;:::o;46884:2879::-;-1:-1:-1;;;;;47032:25:0;;47008:21;47032:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;47074:23:0;;;;;;:19;:23;;;;;;;;47032:65;47008:89;-1:-1:-1;;;;;;47118:18:0;;47110:68;;;;-1:-1:-1;;;47110:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47197:16:0;;47189:64;;;;-1:-1:-1;;;47189:64:0;;;;;;;:::i;:::-;47270:6;47280:1;47270:11;47266:93;;47298:28;47314:4;47320:2;47324:1;47298:15;:28::i;47266:93::-;47392:14;;47371:10;;-1:-1:-1;;;;;47384:22:0;;;47392:14;;47384:22;:75;;;;-1:-1:-1;;;;;;47424:35:0;;;;;;:31;:35;;;;;;;;47423:36;47384:75;47490:14;;47371:88;;-1:-1:-1;47470:11:0;;-1:-1:-1;;;;;47484:20:0;;;47490:14;;47484:20;:75;;;;-1:-1:-1;;;;;;47522:37:0;;;;;;:31;:37;;;;;;;;47521:38;47484:75;47470:89;;47570:16;47597:7;22247:6;;-1:-1:-1;;;;;22247:6:0;;22174:87;47597:7;-1:-1:-1;;;;;47589:15:0;:4;-1:-1:-1;;;;;47589:15:0;;:32;;;-1:-1:-1;22247:6:0;;-1:-1:-1;;;;;47608:13:0;;;22247:6;;47608:13;47589:32;47570:51;-1:-1:-1;47632:11:0;-1:-1:-1;;;;;47646:16:0;;;;:41;;-1:-1:-1;;;;;;47666:21:0;;47680:6;47666:21;47646:41;47632:55;;47698:17;47718:11;:21;;;;47733:6;47718:21;:38;;;-1:-1:-1;47743:13:0;;-1:-1:-1;;;47743:13:0;;;;47718:38;47781:15;;47698:58;;-1:-1:-1;47781:15:0;;:32;;;;;47801:12;47800:13;47781:32;47777:1076;;;47856:14;;;;;;;;:34;;;47874:16;47856:34;47830:118;;;;-1:-1:-1;;;47830:118:0;;15567:2:1;47830:118:0;;;15549:21:1;15606:2;15586:18;;;15579:30;-1:-1:-1;;;15625:18:1;;;15618:52;15687:18;;47830:118:0;15365:346:1;47830:118:0;47967:5;47963:879;;;48033:21;;48023:6;:31;;47993:158;;;;-1:-1:-1;;;47993:158:0;;15918:2:1;47993:158:0;;;15900:21:1;15957:2;15937:18;;;15930:30;15996:34;15976:18;;;15969:62;-1:-1:-1;;;16047:18:1;;;16040:51;16108:19;;47993:158:0;15716:417:1;47993:158:0;48226:10;;-1:-1:-1;;;;;27645:18:0;;27613:7;27645:18;;;;;;;;;;;48200:22;;:6;:22;:::i;:::-;:36;;48170:129;;;;-1:-1:-1;;;48170:129:0;;16340:2:1;48170:129:0;;;16322:21:1;16379:2;16359:18;;;16352:30;-1:-1:-1;;;16398:18:1;;;16391:49;16457:18;;48170:129:0;16138:343:1;48170:129:0;47963:879;;;48325:6;48321:521;;-1:-1:-1;;;;;48568:35:0;;;;;;:31;:35;;;;;;;;48567:36;:95;;;;-1:-1:-1;;;;;;48625:37:0;;;;;;:31;:37;;;;;;;;48624:38;48567:95;48545:297;;;48753:10;;-1:-1:-1;;;;;27645:18:0;;27613:7;27645:18;;;;;;;;;;;48727:22;;:6;:22;:::i;:::-;:36;;48697:129;;;;-1:-1:-1;;;48697:129:0;;16340:2:1;48697:129:0;;;16322:21:1;16379:2;16359:18;;;16352:30;-1:-1:-1;;;16398:18:1;;;16391:49;16457:18;;48697:129:0;16138:343:1;48697:129:0;-1:-1:-1;;;;;48881:31:0;;;;;;:25;:31;;;;;;;;48877:269;;;-1:-1:-1;;;;;48933:19:0;;;;;;:15;:19;;;;;;:24;;48929:102;;-1:-1:-1;;;;;48978:19:0;;;;;;:15;:19;;;;;49000:15;48978:37;;48929:102;48877:269;;;49068:13;;-1:-1:-1;;;49068:13:0;;;;49063:72;;49102:10;:17;;-1:-1:-1;;;;;;49102:17:0;;-1:-1:-1;;;;;49102:17:0;;;;;;49063:72;49163:13;;-1:-1:-1;;;49163:13:0;;;;49162:14;:63;;;;-1:-1:-1;;;;;;49194:31:0;;;;;;:25;:31;;;;;;;;49193:32;49162:63;:106;;;;-1:-1:-1;;;;;;49243:25:0;;;;;;:19;:25;;;;;;;;49242:26;49162:106;:147;;;;-1:-1:-1;;;;;;49286:23:0;;;;;;:19;:23;;;;;;;;49285:24;49162:147;49158:536;;;49375:4;49326:28;27645:18;;;;;;;;;;;49435:19;;49411:43;;;49473:17;:15;:17::i;:::-;:45;;;;;49511:7;49473:45;:84;;;;;49541:16;49540:17;49473:84;49469:214;;;49578:13;:20;;-1:-1:-1;;;;49578:20:0;-1:-1:-1;;;49578:20:0;;;49617:10;:8;:10::i;:::-;49646:13;:21;;-1:-1:-1;;;;49646:21:0;;;49469:214;49311:383;;49158:536;49706:49;49723:4;49729:2;49733:6;49741;49749:5;49706:16;:49::i;:::-;46997:2766;;;;;;46884:2879;;;:::o;23481:191::-;23574:6;;;-1:-1:-1;;;;;23591:17:0;;;-1:-1:-1;;;;;;23591:17:0;;;;;;;23624:40;;23574:6;;;23591:17;23574:6;;23624:40;;23555:16;;23624:40;23544:128;23481:191;:::o;42406:235::-;-1:-1:-1;;;;;42489:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;42489:39:0;;;;;;;42539:38;42489:31;:39;42539:25;:38::i;52415:479::-;52506:16;;;52520:1;52506:16;;;;;;;;52482:21;;52506:16;;;;;;;;;;-1:-1:-1;52506:16:0;52482:40;;52551:4;52533;52538:1;52533:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52533:23:0;;;:7;;;;;;;;;;:23;;;;52577:16;;:23;;;-1:-1:-1;;;52577:23:0;;;;:16;;;;;:21;;:23;;;;;52533:7;;52577:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52567:4;52572:1;52567:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52567:33:0;;;:7;;;;;;;;;:33;52645:16;;52613:63;;52630:4;;52645:16;52664:11;52613:8;:63::i;:::-;52689:16;;:197;;-1:-1:-1;;;52689:197:0;;-1:-1:-1;;;;;52689:16:0;;;;:67;;:197;;52771:11;;52689:16;;52813:4;;52840;;52860:15;;52689:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52471:423;52415:479;:::o;17803:98::-;17861:7;17888:5;17892:1;17888;:5;:::i;:::-;17881:12;17803:98;-1:-1:-1;;;17803:98:0:o;37734:708::-;-1:-1:-1;;;;;37865:18:0;;37857:68;;;;-1:-1:-1;;;37857:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37944:16:0;;37936:64;;;;-1:-1:-1;;;37936:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38086:15:0;;38064:19;38086:15;;;;;;;;;;;38134:21;;;;38112:109;;;;-1:-1:-1;;;38112:109:0;;17937:2:1;38112:109:0;;;17919:21:1;17976:2;17956:18;;;17949:30;18015:34;17995:18;;;17988:62;-1:-1:-1;;;18066:18:1;;;18059:36;18112:19;;38112:109:0;17735:402:1;38112:109:0;-1:-1:-1;;;;;38257:15:0;;;:9;:15;;;;;;;;;;;38275:20;;;38257:38;;38317:13;;;;;;;;:23;;38289:6;;38257:9;38317:23;;38289:6;;38317:23;:::i;:::-;;;;;;;;38373:2;-1:-1:-1;;;;;38358:26:0;38367:4;-1:-1:-1;;;;;38358:26:0;;38377:6;38358:26;;;;160:25:1;;148:2;133:18;;14:177;38358:26:0;;;;;;;;38397:37;46036:410;42779:116;42829:4;42871:1;42853:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;42882:5:0;;42779:116::o;42853:34::-;-1:-1:-1;42875:4:0;;42779:116::o;53273:1796::-;53356:4;53312:23;27645:18;;;;;;;;;;;53312:50;;53373:25;53459:21;;53423:19;;53401;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53373:107;-1:-1:-1;53495:20:0;;;:46;;-1:-1:-1;53519:22:0;;53495:46;53491:59;;;53543:7;;53273:1796::o;53491:59::-;53582:19;;53564:15;:37;53560:107;;;53636:19;;53618:37;;53560:107;53677:23;53791:1;53758:17;53722:19;;53704:15;:37;;;;:::i;:::-;53703:72;;;;:::i;:::-;:89;;;;:::i;:::-;53677:115;-1:-1:-1;53803:26:0;53832:36;:15;53677:115;53832:19;:36::i;:::-;53803:65;-1:-1:-1;53907:21:0;53939:37;53803:65;53939:17;:37::i;:::-;53987:18;54008:44;:21;54034:17;54008:25;:44::i;:::-;53987:65;;54063:23;54089:82;54143:17;54089:35;54104:19;;54089:10;:14;;:35;;;;:::i;:::-;:39;;:82::i;:::-;54063:108;;54182:25;54210:84;54266:17;54210:37;54225:21;;54210:10;:14;;:37;;;;:::i;:84::-;54182:112;-1:-1:-1;54305:23:0;54182:112;54331:28;54344:15;54331:10;:28;:::i;:::-;:48;;;;:::i;:::-;54305:74;;54414:1;54396:15;:19;:42;;;;;54437:1;54419:15;:19;54396:42;54392:280;;;54455:47;54469:15;54486;54455:13;:47::i;:::-;54626:19;;54522:138;;;18477:25:1;;;18533:2;18518:18;;18511:34;;;18561:18;;;18554:34;;;;54522:138:0;;;;;;18465:2:1;54522:138:0;;;54392:280;54706:1;54684:19;:23;;;54718:19;:23;;;54752:21;:25;;;54830:16;;54822:58;;-1:-1:-1;;;;;54830:16:0;;;;54860:15;;54706:1;54822:58;54706:1;54822:58;54860:15;54830:16;54822:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54790:90;;;54899:20;54891:29;;;;;;54973:10;;54965:54;;54932:27;;-1:-1:-1;;;;;54973:10:0;;54997:17;;54932:27;54965:54;54932:27;54965:54;54997:17;54973:10;54965:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54931:88;;;55038:22;55030:31;;;;;;53301:1768;;;;;;;;;;;53273:1796::o;49771:1222::-;49935:12;49950:21;49962:4;49968:2;49950:11;:21::i;:::-;-1:-1:-1;;;;;49988:25:0;;;;;;:19;:25;;;;;;49935:36;;-1:-1:-1;49988:25:0;;49984:958;;;50030:36;50049:4;50055:2;50059:6;50030:18;:36::i;:::-;50081:7;;;49984:958;50109:7;50105:837;;;50149:10;;50194:13;;50222:151;;;;50274:18;;50261:10;;:31;;;;:::i;:::-;50253:39;;50339:18;;50323:13;;:34;;;;:::i;:::-;50311:46;;50222:151;50391:5;50387:148;;;50438:17;;50425:10;;:30;;;;:::i;:::-;50417:38;;50502:17;;50486:13;;:33;;;;:::i;:::-;50474:45;;50387:148;50549:12;50564:26;50586:3;50564:17;:6;50575:5;50564:10;:17::i;:26::-;50549:41;;50653:5;50636:13;;50629:4;:20;;;;:::i;:::-;50628:30;;;;:::i;:::-;50605:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;50717:5:0;;-1:-1:-1;50697:16:0;50704:9;50697:4;:16;:::i;:::-;50696:26;;;;:::i;:::-;50673:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50770:15:0;;50789:5;;50763:22;;:4;:22;:::i;:::-;50762:32;;;;:::i;:::-;50737:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;50815:8:0;;50811:91;;50844:42;50860:4;50874;50881;50844:15;:42::i;:::-;50916:14;50926:4;50916:14;;:::i;:::-;;;50118:824;;;50105:837;50952:33;50968:4;50974:2;50978:6;50952:15;:33::i;49771:1222::-;;;;;;:::o;17446:98::-;17504:7;17531:5;17535:1;17531;:5;:::i;18202:98::-;18260:7;18287:5;18291:1;18287;:5;:::i;52902:363::-;53016:16;;52984:63;;53001:4;;-1:-1:-1;;;;;53016:16:0;53035:11;52984:8;:63::i;:::-;53058:16;;-1:-1:-1;;;;;53058:16:0;:32;53098:9;53131:4;53151:11;53058:16;;53209:7;22247:6;;-1:-1:-1;;;;;22247:6:0;;22174:87;53209:7;53058:199;;;;;;-1:-1:-1;;;;;;53058:199:0;;;-1:-1:-1;;;;;18958:15:1;;;53058:199:0;;;18940:34:1;18990:18;;;18983:34;;;;19033:18;;;19026:34;;;;19076:18;;;19069:34;19140:15;;;19119:19;;;19112:44;53231:15:0;19172:19:1;;;19165:35;18874:19;;53058:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;31978:603::-;-1:-1:-1;;;;;32112:18:0;;32104:68;;;;-1:-1:-1;;;32104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32191:16:0;;32183:64;;;;-1:-1:-1;;;32183:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32333:15:0;;;32311:19;32333:15;;;;;;;;;;;;;32404:20;;;32386:38;;;32456:13;;;;;;;:23;;32418:6;;32311:19;32456:23;;32418:6;;32456:23;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:316::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;-1:-1:-1;;1767:23:1;;;1837:2;1822:18;;1809:32;;-1:-1:-1;1888:2:1;1873:18;;;1860:32;;1582:316;-1:-1:-1;1582:316:1:o;1903:456::-;1980:6;1988;1996;2049:2;2037:9;2028:7;2024:23;2020:32;2017:52;;;2065:1;2062;2055:12;2017:52;2104:9;2091:23;2123:31;2148:5;2123:31;:::i;:::-;2173:5;-1:-1:-1;2230:2:1;2215:18;;2202:32;2243:33;2202:32;2243:33;:::i;:::-;1903:456;;2295:7;;-1:-1:-1;;;2349:2:1;2334:18;;;;2321:32;;1903:456::o;2364:247::-;2423:6;2476:2;2464:9;2455:7;2451:23;2447:32;2444:52;;;2492:1;2489;2482:12;2444:52;2531:9;2518:23;2550:31;2575:5;2550:31;:::i;3247:416::-;3312:6;3320;3373:2;3361:9;3352:7;3348:23;3344:32;3341:52;;;3389:1;3386;3379:12;3341:52;3428:9;3415:23;3447:31;3472:5;3447:31;:::i;:::-;3497:5;-1:-1:-1;3554:2:1;3539:18;;3526:32;3596:15;;3589:23;3577:36;;3567:64;;3627:1;3624;3617:12;3567:64;3650:7;3640:17;;;3247:416;;;;;:::o;4189:388::-;4257:6;4265;4318:2;4306:9;4297:7;4293:23;4289:32;4286:52;;;4334:1;4331;4324:12;4286:52;4373:9;4360:23;4392:31;4417:5;4392:31;:::i;:::-;4442:5;-1:-1:-1;4499:2:1;4484:18;;4471:32;4512:33;4471:32;4512:33;:::i;4582:380::-;4661:1;4657:12;;;;4704;;;4725:61;;4779:4;4771:6;4767:17;4757:27;;4725:61;4832:2;4824:6;4821:14;4801:18;4798:38;4795:161;;4878:10;4873:3;4869:20;4866:1;4859:31;4913:4;4910:1;4903:15;4941:4;4938:1;4931:15;4795:161;;4582:380;;;:::o;4967:356::-;5169:2;5151:21;;;5188:18;;;5181:30;5247:34;5242:2;5227:18;;5220:62;5314:2;5299:18;;4967:356::o;5538:127::-;5599:10;5594:3;5590:20;5587:1;5580:31;5630:4;5627:1;5620:15;5654:4;5651:1;5644:15;5670:168;5743:9;;;5774;;5791:15;;;5785:22;;5771:37;5761:71;;5812:18;;:::i;5843:217::-;5883:1;5909;5899:132;;5953:10;5948:3;5944:20;5941:1;5934:31;5988:4;5985:1;5978:15;6016:4;6013:1;6006:15;5899:132;-1:-1:-1;6045:9:1;;5843:217::o;6481:125::-;6546:9;;;6567:10;;;6564:36;;;6580:18;;:::i;6969:251::-;7039:6;7092:2;7080:9;7071:7;7067:23;7063:32;7060:52;;;7108:1;7105;7098:12;7060:52;7140:9;7134:16;7159:31;7184:5;7159:31;:::i;7225:188::-;7304:13;;-1:-1:-1;;;;;7346:42:1;;7336:53;;7326:81;;7403:1;7400;7393:12;7418:450;7505:6;7513;7521;7574:2;7562:9;7553:7;7549:23;7545:32;7542:52;;;7590:1;7587;7580:12;7542:52;7613:40;7643:9;7613:40;:::i;:::-;7603:50;;7672:49;7717:2;7706:9;7702:18;7672:49;:::i;:::-;7662:59;;7764:2;7753:9;7749:18;7743:25;7808:10;7801:5;7797:22;7790:5;7787:33;7777:61;;7834:1;7831;7824:12;7777:61;7857:5;7847:15;;;7418:450;;;;;:::o;7873:179::-;7951:13;;8004:22;7993:34;;7983:45;;7973:73;;8042:1;8039;8032:12;8057:473;8160:6;8168;8176;8184;8192;8245:3;8233:9;8224:7;8220:23;8216:33;8213:53;;;8262:1;8259;8252:12;8213:53;8285:39;8314:9;8285:39;:::i;:::-;8275:49;;8364:2;8353:9;8349:18;8343:25;8333:35;;8408:2;8397:9;8393:18;8387:25;8377:35;;8452:2;8441:9;8437:18;8431:25;8421:35;;8475:49;8519:3;8508:9;8504:19;8475:49;:::i;:::-;8465:59;;8057:473;;;;;;;;:::o;8535:273::-;8603:6;8656:2;8644:9;8635:7;8631:23;8627:32;8624:52;;;8672:1;8669;8662:12;8624:52;8704:9;8698:16;8754:4;8747:5;8743:16;8736:5;8733:27;8723:55;;8774:1;8771;8764:12;8813:422;8902:1;8945:5;8902:1;8959:270;8980:7;8970:8;8967:21;8959:270;;;9039:4;9035:1;9031:6;9027:17;9021:4;9018:27;9015:53;;;9048:18;;:::i;:::-;9098:7;9088:8;9084:22;9081:55;;;9118:16;;;;9081:55;9197:22;;;;9157:15;;;;8959:270;;;8963:3;8813:422;;;;;:::o;9240:806::-;9289:5;9319:8;9309:80;;-1:-1:-1;9360:1:1;9374:5;;9309:80;9408:4;9398:76;;-1:-1:-1;9445:1:1;9459:5;;9398:76;9490:4;9508:1;9503:59;;;;9576:1;9571:130;;;;9483:218;;9503:59;9533:1;9524:10;;9547:5;;;9571:130;9608:3;9598:8;9595:17;9592:43;;;9615:18;;:::i;:::-;-1:-1:-1;;9671:1:1;9657:16;;9686:5;;9483:218;;9785:2;9775:8;9772:16;9766:3;9760:4;9757:13;9753:36;9747:2;9737:8;9734:16;9729:2;9723:4;9720:12;9716:35;9713:77;9710:159;;;-1:-1:-1;9822:19:1;;;9854:5;;9710:159;9901:34;9926:8;9920:4;9901:34;:::i;:::-;9971:6;9967:1;9963:6;9959:19;9950:7;9947:32;9944:58;;;9982:18;;:::i;:::-;10020:20;;9240:806;-1:-1:-1;;;9240:806:1:o;10051:131::-;10111:5;10140:36;10167:8;10161:4;10140:36;:::i;14555:401::-;14757:2;14739:21;;;14796:2;14776:18;;;14769:30;14835:34;14830:2;14815:18;;14808:62;-1:-1:-1;;;14901:2:1;14886:18;;14879:35;14946:3;14931:19;;14555:401::o;14961:399::-;15163:2;15145:21;;;15202:2;15182:18;;;15175:30;15241:34;15236:2;15221:18;;15214:62;-1:-1:-1;;;15307:2:1;15292:18;;15285:33;15350:3;15335:19;;14961:399::o;16618:127::-;16679:10;16674:3;16670:20;16667:1;16660:31;16710:4;16707:1;16700:15;16734:4;16731:1;16724:15;16750:980;17012:4;17060:3;17049:9;17045:19;17091:6;17080:9;17073:25;17117:2;17155:6;17150:2;17139:9;17135:18;17128:34;17198:3;17193:2;17182:9;17178:18;17171:31;17222:6;17257;17251:13;17288:6;17280;17273:22;17326:3;17315:9;17311:19;17304:26;;17365:2;17357:6;17353:15;17339:29;;17386:1;17396:195;17410:6;17407:1;17404:13;17396:195;;;17475:13;;-1:-1:-1;;;;;17471:39:1;17459:52;;17566:15;;;;17531:12;;;;17507:1;17425:9;17396:195;;;-1:-1:-1;;;;;;;17647:32:1;;;;17642:2;17627:18;;17620:60;-1:-1:-1;;;17711:3:1;17696:19;17689:35;17608:3;16750:980;-1:-1:-1;;;16750:980:1:o;18142:128::-;18209:9;;;18230:11;;;18227:37;;;18244:18;;:::i;19211:306::-;19299:6;19307;19315;19368:2;19356:9;19347:7;19343:23;19339:32;19336:52;;;19384:1;19381;19374:12;19336:52;19413:9;19407:16;19397:26;;19463:2;19452:9;19448:18;19442:25;19432:35;;19507:2;19496:9;19492:18;19486:25;19476:35;;19211:306;;;;;:::o

Swarm Source

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