ETH Price: $2,973.53 (-4.20%)
Gas: 1 Gwei

Token

Cristiano Ronaldo (CR7)
 

Overview

Max Total Supply

70,000,000,000 CR7

Holders

211

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
103,037,961.510132993231395426 CR7

Value
$0.00
0xcaa2a6b1214268f45939d39e7e1d6b4354d70d4e
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:
CR7

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*

https://t.me/Cr7Portal
https://twitter.com/cr7erctoken
https://cristianoronaldo.run

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    function version() external view returns (uint256);

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

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

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

pragma solidity >=0.6.2;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
}

pragma solidity ^0.8.0;

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

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

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

    constructor() payable ERC20("Cristiano Ronaldo", "CR7") {
        _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 = 70000000000 * 1e18;
        _maxTransactionAmount = (totalSupply * 2) / 100;
        _maxWallet = (totalSupply * 2) / 100;
        _swapTokensAtAmount = (totalSupply * 10) / 10000;
        _marketingFee = 50;
        _developmentFee = 20;
        _liquidityFee = 20;
        _additionalSellFee = 0;
        _additionalBuyFee = 0;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        _marketingWallet = address(0x161fe5e59D14b8820559A0e758Dd2380e3691F6B);
        _devWallet = address(0x6186B4b637041ae5005358c81d5A12e76bbd18Ea);
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWallet, true);
        excludeFromFees(_devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingWallet, true);
        excludeFromMaxTransaction(_devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(owner(), totalSupply);
        enableTrading();
    }

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

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

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

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

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

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

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

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

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

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

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        _swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

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

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

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

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

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + 
            _tokensForDevelopment;
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount) {
            contractBalance = _swapTokensAtAmount;
        }
        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        _swapTokensForEth(amountToSwapForETH);
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;

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

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

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

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_oraclePriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint80","name":"","type":"uint80"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAdditionalBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setManualETHvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feed","type":"address"}],"name":"updateOraclePriceFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"verifySetFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600e805461ffff19166001908117909155601955600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601d80546001600160a81b0319166001600160a01b039290921691909117600160a01b1790556866ffcbfd5e5a300000601e556040805180820182526011815270437269737469616e6f20526f6e616c646f60781b602080830191909152825180840190935260038084526243523760e81b91840191909152909190620000da8382620008ba565b506004620000e98282620008ba565b5050506200010662000100620004e660201b60201c565b620004ea565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200016b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000191919062000986565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000986565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000268573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028e919062000986565b600780546001600160a01b0319166001600160a01b03929092169182179055620002ba9060016200053c565b600654620002d3906001600160a01b03166001620005a8565b601d54601c80546001600160a01b0319166001600160a01b039092169190911790556be22ea493b30310a770000000606462000311826002620009ce565b6200031d9190620009ee565b600b5560646200032f826002620009ce565b6200033b9190620009ee565b600d556127106200034e82600a620009ce565b6200035a9190620009ee565b600c55603260118190556014601381905560128190556000808255601555906200038690829062000a11565b62000392919062000a11565b601055600980546001600160a01b031990811673161fe5e59d14b8820559a0e758dd2380e3691f6b17909155600a8054909116736186b4b637041ae5005358c81d5a12e76bbd18ea179055620003fc620003f46005546001600160a01b031690565b600162000622565b60095462000415906001600160a01b0316600162000622565b600a546200042e906001600160a01b0316600162000622565b6200043b30600162000622565b6200044a61dead600162000622565b62000469620004616005546001600160a01b031690565b6001620005a8565b60095462000482906001600160a01b03166001620005a8565b600a546200049b906001600160a01b03166001620005a8565b620004a8306001620005a8565b620004b761dead6001620005a8565b620004d5620004ce6005546001600160a01b031690565b82620006cc565b620004df620007b1565b5062000a27565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556200056c8282620005a8565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620005f75760405162461bcd60e51b815260206004820181905260248201526000805160206200394883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200066d5760405162461bcd60e51b81526020600482018190526024820152600080516020620039488339815191526044820152606401620005ee565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005ee565b806002600082825462000738919062000a11565b90915550506001600160a01b038216600090815260208190526040812080548392906200076790849062000a11565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620007fc5760405162461bcd60e51b81526020600482018190526024820152600080516020620039488339815191526044820152606401620005ee565b600e805461ff00191661010017905542600855565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200084157607f821691505b6020821081036200086257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200081157600081815260208120601f850160051c81016020861015620008915750805b601f850160051c820191505b81811015620008b2578281556001016200089d565b505050505050565b81516001600160401b03811115620008d657620008d662000816565b620008ee81620008e784546200082c565b8462000868565b602080601f8311600181146200092657600084156200090d5750858301515b600019600386901b1c1916600185901b178555620008b2565b600085815260208120601f198616915b82811015620009575788860151825594840194600190910190840162000936565b5085821015620009765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200099957600080fd5b81516001600160a01b0381168114620009b157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009e857620009e8620009b8565b92915050565b60008262000a0c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009e857620009e8620009b8565b612f118062000a376000396000f3fe6080604052600436106102b25760003560e01c806382247ec011610175578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd14610862578063f2fde38b1461087c578063fea4fa4d1461089c578063fefa5ce3146108b257600080fd5b8063dd1e1ca914610818578063dd62ed3e1461082d578063df778d261461084d57600080fd5b8063b62496f514610753578063c024666814610783578063c18bc195146107a3578063c862c28b146107c3578063cb94a370146107d8578063d257b34f146107f857600080fd5b80639a7a23d61161012e5780639a7a23d6146106915780639c74daf0146106b1578063a457c2d7146106d1578063a9059cbb146106f1578063ae76b09014610711578063b1d920851461072657600080fd5b806382247ec0146105c75780638a8c523c146105dd5780638da5cb5b146105f25780638e15f473146106105780638e1a9efb1461065c57806395d89b411461067c57600080fd5b80632fd689e311610219578063583e0568116101d2578063583e0568146104ef5780636d77ecd11461052757806370a0823114610547578063715018a61461057d578063751039fc146105925780637571336a146105a757600080fd5b80632fd689e31461043a578063313ce56714610450578063339578fe1461046c57806339509351146104815780634b94f50e146104a15780634fbee193146104b657600080fd5b8063199ffc721161026b578063199ffc7214610385578063203e727e1461039b57806322429085146103bb57806323b872dd146103db57806323bf4c86146103fb57806327f4d7d51461041b57600080fd5b806304beaeb8146102be57806306fdde03146102e7578063095ea7b314610309578063121a35531461033957806312b77e8a1461035957806318160ddd1461037057600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600b5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc6108d2565b6040516102de919061291b565b34801561031557600080fd5b5061032961032436600461297e565b610964565b60405190151581526020016102de565b34801561034557600080fd5b506103296103543660046129aa565b61097e565b34801561036557600080fd5b5061036e610a7c565b005b34801561037c57600080fd5b506002546102d4565b34801561039157600080fd5b506102d460195481565b3480156103a757600080fd5b5061036e6103b63660046129e3565b610b12565b3480156103c757600080fd5b5061036e6103d63660046129fc565b610bef565b3480156103e757600080fd5b506103296103f6366004612a28565b610c97565b34801561040757600080fd5b5061036e610416366004612a69565b610cbb565b34801561042757600080fd5b50600e5461032990610100900460ff1681565b34801561044657600080fd5b506102d4600c5481565b34801561045c57600080fd5b50604051601281526020016102de565b34801561047857600080fd5b5061036e610d11565b34801561048d57600080fd5b5061032961049c36600461297e565b610d42565b3480156104ad57600080fd5b506102d4610d64565b3480156104c257600080fd5b506103296104d1366004612a69565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104fb57600080fd5b5060065461050f906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561053357600080fd5b50601d5461050f906001600160a01b031681565b34801561055357600080fd5b506102d4610562366004612a69565b6001600160a01b031660009081526020819052604090205490565b34801561058957600080fd5b5061036e6110a9565b34801561059e57600080fd5b506103296110df565b3480156105b357600080fd5b5061036e6105c2366004612a86565b61111c565b3480156105d357600080fd5b506102d4600d5481565b3480156105e957600080fd5b5061036e611171565b3480156105fe57600080fd5b506005546001600160a01b031661050f565b34801561061c57600080fd5b506106256111b0565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a0016102de565b34801561066857600080fd5b5061036e610677366004612a69565b61124c565b34801561068857600080fd5b506102fc611298565b34801561069d57600080fd5b5061036e6106ac366004612a86565b6112a7565b3480156106bd57600080fd5b5060075461050f906001600160a01b031681565b3480156106dd57600080fd5b506103296106ec36600461297e565b61139b565b3480156106fd57600080fd5b5061032961070c36600461297e565b611416565b34801561071d57600080fd5b5061036e611424565b34801561073257600080fd5b506102d4610741366004612a69565b600f6020526000908152604090205481565b34801561075f57600080fd5b5061032961076e366004612a69565b601f6020526000908152604090205460ff1681565b34801561078f57600080fd5b5061036e61079e366004612a86565b611455565b3480156107af57600080fd5b5061036e6107be3660046129e3565b6114de565b3480156107cf57600080fd5b5061036e6115af565b3480156107e457600080fd5b5061036e6107f3366004612a69565b611648565b34801561080457600080fd5b506103296108133660046129e3565b611694565b34801561082457600080fd5b5061036e6117eb565b34801561083957600080fd5b506102d46108483660046129aa565b611882565b34801561085957600080fd5b5061036e6118ad565b34801561086e57600080fd5b50600e546103299060ff1681565b34801561088857600080fd5b5061036e610897366004612a69565b6118f0565b3480156108a857600080fd5b506102d460105481565b3480156108be57600080fd5b5061036e6108cd3660046129e3565b611988565b6060600380546108e190612ab9565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612ab9565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000336109728185856119ca565b60019150505b92915050565b60075460009081906001600160a01b0385811691161480156109ae57506006546001600160a01b03848116911614155b90508080156109d557506001600160a01b0383166000908152601a602052604090205460ff165b156109df57426008555b6001600160a01b0384166000908152601a602052604081205460ff1680610a1e57506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b0385811691161460008380610a3d5750815b601054909150158015908190610a5d5750600754600160a01b900460ff16155b8015610a67575083155b8015610a705750815b98975050505050505050565b6005546001600160a01b03163314610aaf5760405162461bcd60e51b8152600401610aa690612af3565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610afc576040519150601f19603f3d011682016040523d82523d6000602084013e610b01565b606091505b5050905080610b0f57600080fd5b50565b6005546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610aa690612af3565b670de0b6b3a76400006103e8610b5160025490565b610b5c906001612b3e565b610b669190612b55565b610b709190612b55565b811015610bd75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610aa6565b610be981670de0b6b3a7640000612b3e565b600b5550565b6005546001600160a01b03163314610c195760405162461bcd60e51b8152600401610aa690612af3565b60118390556013829055601281905580610c338385612b77565b610c3d9190612b77565b6010819055600a1015610c925760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610aa6565b505050565b600033610ca5858285611aee565b610cb0858585611b68565b506001949350505050565b6005546001600160a01b03163314610ce55760405162461bcd60e51b8152600401610aa690612af3565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610aa690612af3565b6000601555565b600033610972818585610d558383611882565b610d5f9190612b77565b6119ca565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190612b8a565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e599190612b8a565b600854600e546201000090046001600160a01b03166000908152600f602052604090205491925010610e8a57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f049190612bbe565b50601e54601d5492945090925090600160a01b900460ff1615610f8b57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610f5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f839190612c28565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fef9190612c78565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190612c78565b6110629060ff16600a612d7f565b611075846001600160701b038716612b3e565b61107f9190612b3e565b6110899190612b55565b905061109e6001600160701b03851682612b55565b965050505050505090565b6005546001600160a01b031633146110d35760405162461bcd60e51b8152600401610aa690612af3565b6110dd60006120a1565b565b6005546000906001600160a01b0316331461110c5760405162461bcd60e51b8152600401610aa690612af3565b50600e805460ff19169055600190565b6005546001600160a01b031633146111465760405162461bcd60e51b8152600401610aa690612af3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461119b5760405162461bcd60e51b8152600401610aa690612af3565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611212573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112369190612c28565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112765760405162461bcd60e51b8152600401610aa690612af3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546108e190612ab9565b6005546001600160a01b031633146112d15760405162461bcd60e51b8152600401610aa690612af3565b6007546001600160a01b03908116908316036113555760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610aa6565b61135f82826120f3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b600033816113a98286611882565b9050838110156114095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610aa6565b610cb082868684036119ca565b600033610972818585611b68565b6005546001600160a01b0316331461144e5760405162461bcd60e51b8152600401610aa690612af3565b6000601455565b6005546001600160a01b0316331461147f5760405162461bcd60e51b8152600401610aa690612af3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115085760405162461bcd60e51b8152600401610aa690612af3565b670de0b6b3a76400006103e861151d60025490565b611528906005612b3e565b6115329190612b55565b61153c9190612b55565b8110156115975760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610aa6565b6115a981670de0b6b3a7640000612b3e565b600d5550565b6005546001600160a01b031633146115d95760405162461bcd60e51b8152600401610aa690612af3565b601d54600160a01b900460ff16156116335760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610aa6565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146116725760405162461bcd60e51b8152600401610aa690612af3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146116c15760405162461bcd60e51b8152600401610aa690612af3565b620186a06116ce60025490565b6116d9906001612b3e565b6116e39190612b55565b8210156117505760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610aa6565b6103e861175c60025490565b611767906005612b3e565b6117719190612b55565b8211156117dd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610aa6565b50600c81905560015b919050565b6005546001600160a01b031633146118155760405162461bcd60e51b8152600401610aa690612af3565b601d54600160a01b900460ff1615156001146118735760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610aa6565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146118d75760405162461bcd60e51b8152600401610aa690612af3565b30600090815260208190526040902054610aaf90612121565b6005546001600160a01b0316331461191a5760405162461bcd60e51b8152600401610aa690612af3565b6001600160a01b03811661197f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa6565b610b0f816120a1565b6005546001600160a01b031633146119b25760405162461bcd60e51b8152600401610aa690612af3565b6119c481670de0b6b3a764000061227b565b601e5550565b6001600160a01b038316611a2c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610aa6565b6001600160a01b038216611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610aa6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611afa8484611882565b90506000198114611b625781811015611b555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610aa6565b611b6284848484036119ca565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ba757506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611bcf5760405162461bcd60e51b8152600401610aa690612d8b565b6001600160a01b038316611bf55760405162461bcd60e51b8152600401610aa690612dd0565b81600003611c0957611b628484600061228e565b6007546000906001600160a01b038681169116148015611c4257506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611c7e57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611c946005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611cc057506005546001600160a01b038781169116145b905060006001600160a01b0387161580611ce457506001600160a01b03871661dead145b905060008280611cf15750815b80611d055750600754600160a01b900460ff165b600e5490915060ff168015611d18575080155b15611f1057600e54610100900460ff1680611d305750855b611d755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610aa6565b8415611e5a57600b54871115611deb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610aa6565b600d546001600160a01b038916600090815260208190526040902054611e119089612b77565b1115611e555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610aa6565b611f10565b83611f10576001600160a01b0388166000908152601b602052604090205460ff16158015611ea157506001600160a01b0389166000908152601b602052604090205460ff16155b15611f1057600d546001600160a01b038916600090815260208190526040902054611ecc9089612b77565b1115611f105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610aa6565b6001600160a01b0389166000908152601f602052604090205460ff1615611f71576001600160a01b0388166000908152600f60205260408120549003611f6c576001600160a01b0388166000908152600f602052604090204290555b611fa5565b600754600160a01b900460ff16611fa557600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff16158015611fd857506001600160a01b0389166000908152601f602052604090205460ff16155b8015611ffd57506001600160a01b0389166000908152601a602052604090205460ff16155b801561202257506001600160a01b0388166000908152601a602052604090205460ff16155b156120895730600090815260208190526040902054600c548110156120456123e2565b801561204e5750805b8015612058575087155b15612086576007805460ff60a01b1916600160a01b1790556120786123fe565b6007805460ff60a01b191690555b50505b612096898989878961263d565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561135f828261111c565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061215657612156612e13565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d39190612b8a565b816001815181106121e6576121e6612e13565b6001600160a01b03928316602091820292909201015260065461220c91309116846119ca565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612245908590600090869030904290600401612e29565b600060405180830381600087803b15801561225f57600080fd5b505af1158015612273573d6000803e3d6000fd5b505050505050565b60006122878284612b3e565b9392505050565b6001600160a01b0383166122b45760405162461bcd60e51b8152600401610aa690612d8b565b6001600160a01b0382166122da5760405162461bcd60e51b8152600401610aa690612dd0565b6001600160a01b038316600090815260208190526040902054818110156123525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610aa6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612389908490612b77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d591815260200190565b60405180910390a3611b62565b6000806123ed610d64565b116123f85750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546124259190612b77565b61242f9190612b77565b905081158061243c575080155b15612445575050565b600c5482111561245557600c5491505b6000600282601854856124689190612b3e565b6124729190612b55565b61247c9190612b55565b9050600061248a84836127b0565b90504761249682612121565b60006124a247836127b0565b905060006124c5866124bf6016548561227b90919063ffffffff16565b906127bc565b905060006124e2876124bf6017548661227b90919063ffffffff16565b90506000816124f18486612e9a565b6124fb9190612e9a565b905060008711801561250d5750600081115b156125605761251c87826127c8565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50509050806125d057600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d806000811461261d576040519150601f19603f3d011682016040523d82523d6000602084013e612622565b606091505b505090508061263057600080fd5b5050505050505050505050565b6000612649868661097e565b6001600160a01b0387166000908152601a602052604090205490915060ff161561267e57612678868686612896565b506127a9565b801561279e5760105460115484156126b5576014546010546126a09190612b77565b91506014546011546126b29190612b77565b90505b83156126e0576015546010546126cb9190612b77565b91506015546011546126dd9190612b77565b90505b60006126f160646124bf898661227b565b905082601254826127029190612b3e565b61270c9190612b55565b6018600082825461271d9190612b77565b9091555083905061272e8383612b3e565b6127389190612b55565b601660008282546127499190612b77565b9091555050601354839061275d9083612b3e565b6127679190612b55565b601760008282546127789190612b77565b9091555050801561278e5761278e89308361228e565b6127988188612e9a565b96505050505b61227386868661228e565b5050505050565b60006122878284612e9a565b60006122878284612b55565b6006546127e09030906001600160a01b0316846119ca565b6006546001600160a01b031663f305d7198230856000806128096005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612871573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a99190612ead565b6001600160a01b0383166128bc5760405162461bcd60e51b8152600401610aa690612d8b565b6001600160a01b0382166128e25760405162461bcd60e51b8152600401610aa690612dd0565b6001600160a01b038084166000908152602081905260408082208054858103909155928516825281208054849290612389908490612b77565b600060208083528351808285015260005b818110156129485785810183015185820160400152820161292c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b0f57600080fd5b6000806040838503121561299157600080fd5b823561299c81612969565b946020939093013593505050565b600080604083850312156129bd57600080fd5b82356129c881612969565b915060208301356129d881612969565b809150509250929050565b6000602082840312156129f557600080fd5b5035919050565b600080600060608486031215612a1157600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612a3d57600080fd5b8335612a4881612969565b92506020840135612a5881612969565b929592945050506040919091013590565b600060208284031215612a7b57600080fd5b813561228781612969565b60008060408385031215612a9957600080fd5b8235612aa481612969565b9150602083013580151581146129d857600080fd5b600181811c90821680612acd57607f821691505b602082108103612aed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097857610978612b28565b600082612b7257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097857610978612b28565b600060208284031215612b9c57600080fd5b815161228781612969565b80516001600160701b03811681146117e657600080fd5b600080600060608486031215612bd357600080fd5b612bdc84612ba7565b9250612bea60208501612ba7565b9150604084015163ffffffff81168114612c0357600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146117e657600080fd5b600080600080600060a08688031215612c4057600080fd5b612c4986612c0e565b9450602086015193506040860151925060608601519150612c6c60808701612c0e565b90509295509295909350565b600060208284031215612c8a57600080fd5b815160ff8116811461228757600080fd5b600181815b80851115612cd6578160001904821115612cbc57612cbc612b28565b80851615612cc957918102915b93841c9390800290612ca0565b509250929050565b600082612ced57506001610978565b81612cfa57506000610978565b8160018114612d105760028114612d1a57612d36565b6001915050610978565b60ff841115612d2b57612d2b612b28565b50506001821b610978565b5060208310610133831016604e8410600b8410161715612d59575081810a610978565b612d638383612c9b565b8060001904821115612d7757612d77612b28565b029392505050565b60006122878383612cde565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e795784516001600160a01b031683529383019391830191600101612e54565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561097857610978612b28565b600080600060608486031215612ec257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cf88543e31f25812e5cde8bbd28e792e8001eb444eafdc32e383eba7aafc267f64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102b25760003560e01c806382247ec011610175578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd14610862578063f2fde38b1461087c578063fea4fa4d1461089c578063fefa5ce3146108b257600080fd5b8063dd1e1ca914610818578063dd62ed3e1461082d578063df778d261461084d57600080fd5b8063b62496f514610753578063c024666814610783578063c18bc195146107a3578063c862c28b146107c3578063cb94a370146107d8578063d257b34f146107f857600080fd5b80639a7a23d61161012e5780639a7a23d6146106915780639c74daf0146106b1578063a457c2d7146106d1578063a9059cbb146106f1578063ae76b09014610711578063b1d920851461072657600080fd5b806382247ec0146105c75780638a8c523c146105dd5780638da5cb5b146105f25780638e15f473146106105780638e1a9efb1461065c57806395d89b411461067c57600080fd5b80632fd689e311610219578063583e0568116101d2578063583e0568146104ef5780636d77ecd11461052757806370a0823114610547578063715018a61461057d578063751039fc146105925780637571336a146105a757600080fd5b80632fd689e31461043a578063313ce56714610450578063339578fe1461046c57806339509351146104815780634b94f50e146104a15780634fbee193146104b657600080fd5b8063199ffc721161026b578063199ffc7214610385578063203e727e1461039b57806322429085146103bb57806323b872dd146103db57806323bf4c86146103fb57806327f4d7d51461041b57600080fd5b806304beaeb8146102be57806306fdde03146102e7578063095ea7b314610309578063121a35531461033957806312b77e8a1461035957806318160ddd1461037057600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600b5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc6108d2565b6040516102de919061291b565b34801561031557600080fd5b5061032961032436600461297e565b610964565b60405190151581526020016102de565b34801561034557600080fd5b506103296103543660046129aa565b61097e565b34801561036557600080fd5b5061036e610a7c565b005b34801561037c57600080fd5b506002546102d4565b34801561039157600080fd5b506102d460195481565b3480156103a757600080fd5b5061036e6103b63660046129e3565b610b12565b3480156103c757600080fd5b5061036e6103d63660046129fc565b610bef565b3480156103e757600080fd5b506103296103f6366004612a28565b610c97565b34801561040757600080fd5b5061036e610416366004612a69565b610cbb565b34801561042757600080fd5b50600e5461032990610100900460ff1681565b34801561044657600080fd5b506102d4600c5481565b34801561045c57600080fd5b50604051601281526020016102de565b34801561047857600080fd5b5061036e610d11565b34801561048d57600080fd5b5061032961049c36600461297e565b610d42565b3480156104ad57600080fd5b506102d4610d64565b3480156104c257600080fd5b506103296104d1366004612a69565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156104fb57600080fd5b5060065461050f906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561053357600080fd5b50601d5461050f906001600160a01b031681565b34801561055357600080fd5b506102d4610562366004612a69565b6001600160a01b031660009081526020819052604090205490565b34801561058957600080fd5b5061036e6110a9565b34801561059e57600080fd5b506103296110df565b3480156105b357600080fd5b5061036e6105c2366004612a86565b61111c565b3480156105d357600080fd5b506102d4600d5481565b3480156105e957600080fd5b5061036e611171565b3480156105fe57600080fd5b506005546001600160a01b031661050f565b34801561061c57600080fd5b506106256111b0565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a0016102de565b34801561066857600080fd5b5061036e610677366004612a69565b61124c565b34801561068857600080fd5b506102fc611298565b34801561069d57600080fd5b5061036e6106ac366004612a86565b6112a7565b3480156106bd57600080fd5b5060075461050f906001600160a01b031681565b3480156106dd57600080fd5b506103296106ec36600461297e565b61139b565b3480156106fd57600080fd5b5061032961070c36600461297e565b611416565b34801561071d57600080fd5b5061036e611424565b34801561073257600080fd5b506102d4610741366004612a69565b600f6020526000908152604090205481565b34801561075f57600080fd5b5061032961076e366004612a69565b601f6020526000908152604090205460ff1681565b34801561078f57600080fd5b5061036e61079e366004612a86565b611455565b3480156107af57600080fd5b5061036e6107be3660046129e3565b6114de565b3480156107cf57600080fd5b5061036e6115af565b3480156107e457600080fd5b5061036e6107f3366004612a69565b611648565b34801561080457600080fd5b506103296108133660046129e3565b611694565b34801561082457600080fd5b5061036e6117eb565b34801561083957600080fd5b506102d46108483660046129aa565b611882565b34801561085957600080fd5b5061036e6118ad565b34801561086e57600080fd5b50600e546103299060ff1681565b34801561088857600080fd5b5061036e610897366004612a69565b6118f0565b3480156108a857600080fd5b506102d460105481565b3480156108be57600080fd5b5061036e6108cd3660046129e3565b611988565b6060600380546108e190612ab9565b80601f016020809104026020016040519081016040528092919081815260200182805461090d90612ab9565b801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000336109728185856119ca565b60019150505b92915050565b60075460009081906001600160a01b0385811691161480156109ae57506006546001600160a01b03848116911614155b90508080156109d557506001600160a01b0383166000908152601a602052604090205460ff165b156109df57426008555b6001600160a01b0384166000908152601a602052604081205460ff1680610a1e57506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b0385811691161460008380610a3d5750815b601054909150158015908190610a5d5750600754600160a01b900460ff16155b8015610a67575083155b8015610a705750815b98975050505050505050565b6005546001600160a01b03163314610aaf5760405162461bcd60e51b8152600401610aa690612af3565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610afc576040519150601f19603f3d011682016040523d82523d6000602084013e610b01565b606091505b5050905080610b0f57600080fd5b50565b6005546001600160a01b03163314610b3c5760405162461bcd60e51b8152600401610aa690612af3565b670de0b6b3a76400006103e8610b5160025490565b610b5c906001612b3e565b610b669190612b55565b610b709190612b55565b811015610bd75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610aa6565b610be981670de0b6b3a7640000612b3e565b600b5550565b6005546001600160a01b03163314610c195760405162461bcd60e51b8152600401610aa690612af3565b60118390556013829055601281905580610c338385612b77565b610c3d9190612b77565b6010819055600a1015610c925760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610aa6565b505050565b600033610ca5858285611aee565b610cb0858585611b68565b506001949350505050565b6005546001600160a01b03163314610ce55760405162461bcd60e51b8152600401610aa690612af3565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610aa690612af3565b6000601555565b600033610972818585610d558383611882565b610d5f9190612b77565b6119ca565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190612b8a565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e599190612b8a565b600854600e546201000090046001600160a01b03166000908152600f602052604090205491925010610e8a57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f049190612bbe565b50601e54601d5492945090925090600160a01b900460ff1615610f8b57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610f5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f839190612c28565b509193505050505b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fef9190612c78565b60ff16866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110549190612c78565b6110629060ff16600a612d7f565b611075846001600160701b038716612b3e565b61107f9190612b3e565b6110899190612b55565b905061109e6001600160701b03851682612b55565b965050505050505090565b6005546001600160a01b031633146110d35760405162461bcd60e51b8152600401610aa690612af3565b6110dd60006120a1565b565b6005546000906001600160a01b0316331461110c5760405162461bcd60e51b8152600401610aa690612af3565b50600e805460ff19169055600190565b6005546001600160a01b031633146111465760405162461bcd60e51b8152600401610aa690612af3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461119b5760405162461bcd60e51b8152600401610aa690612af3565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611212573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112369190612c28565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112765760405162461bcd60e51b8152600401610aa690612af3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600480546108e190612ab9565b6005546001600160a01b031633146112d15760405162461bcd60e51b8152600401610aa690612af3565b6007546001600160a01b03908116908316036113555760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610aa6565b61135f82826120f3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b600033816113a98286611882565b9050838110156114095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610aa6565b610cb082868684036119ca565b600033610972818585611b68565b6005546001600160a01b0316331461144e5760405162461bcd60e51b8152600401610aa690612af3565b6000601455565b6005546001600160a01b0316331461147f5760405162461bcd60e51b8152600401610aa690612af3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115085760405162461bcd60e51b8152600401610aa690612af3565b670de0b6b3a76400006103e861151d60025490565b611528906005612b3e565b6115329190612b55565b61153c9190612b55565b8110156115975760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610aa6565b6115a981670de0b6b3a7640000612b3e565b600d5550565b6005546001600160a01b031633146115d95760405162461bcd60e51b8152600401610aa690612af3565b601d54600160a01b900460ff16156116335760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610aa6565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146116725760405162461bcd60e51b8152600401610aa690612af3565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146116c15760405162461bcd60e51b8152600401610aa690612af3565b620186a06116ce60025490565b6116d9906001612b3e565b6116e39190612b55565b8210156117505760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610aa6565b6103e861175c60025490565b611767906005612b3e565b6117719190612b55565b8211156117dd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610aa6565b50600c81905560015b919050565b6005546001600160a01b031633146118155760405162461bcd60e51b8152600401610aa690612af3565b601d54600160a01b900460ff1615156001146118735760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610aa6565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146118d75760405162461bcd60e51b8152600401610aa690612af3565b30600090815260208190526040902054610aaf90612121565b6005546001600160a01b0316331461191a5760405162461bcd60e51b8152600401610aa690612af3565b6001600160a01b03811661197f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa6565b610b0f816120a1565b6005546001600160a01b031633146119b25760405162461bcd60e51b8152600401610aa690612af3565b6119c481670de0b6b3a764000061227b565b601e5550565b6001600160a01b038316611a2c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610aa6565b6001600160a01b038216611a8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610aa6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611afa8484611882565b90506000198114611b625781811015611b555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610aa6565b611b6284848484036119ca565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ba757506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611bcf5760405162461bcd60e51b8152600401610aa690612d8b565b6001600160a01b038316611bf55760405162461bcd60e51b8152600401610aa690612dd0565b81600003611c0957611b628484600061228e565b6007546000906001600160a01b038681169116148015611c4257506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611c7e57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611c946005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611cc057506005546001600160a01b038781169116145b905060006001600160a01b0387161580611ce457506001600160a01b03871661dead145b905060008280611cf15750815b80611d055750600754600160a01b900460ff165b600e5490915060ff168015611d18575080155b15611f1057600e54610100900460ff1680611d305750855b611d755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610aa6565b8415611e5a57600b54871115611deb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610aa6565b600d546001600160a01b038916600090815260208190526040902054611e119089612b77565b1115611e555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610aa6565b611f10565b83611f10576001600160a01b0388166000908152601b602052604090205460ff16158015611ea157506001600160a01b0389166000908152601b602052604090205460ff16155b15611f1057600d546001600160a01b038916600090815260208190526040902054611ecc9089612b77565b1115611f105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610aa6565b6001600160a01b0389166000908152601f602052604090205460ff1615611f71576001600160a01b0388166000908152600f60205260408120549003611f6c576001600160a01b0388166000908152600f602052604090204290555b611fa5565b600754600160a01b900460ff16611fa557600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff16158015611fd857506001600160a01b0389166000908152601f602052604090205460ff16155b8015611ffd57506001600160a01b0389166000908152601a602052604090205460ff16155b801561202257506001600160a01b0388166000908152601a602052604090205460ff16155b156120895730600090815260208190526040902054600c548110156120456123e2565b801561204e5750805b8015612058575087155b15612086576007805460ff60a01b1916600160a01b1790556120786123fe565b6007805460ff60a01b191690555b50505b612096898989878961263d565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561135f828261111c565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061215657612156612e13565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d39190612b8a565b816001815181106121e6576121e6612e13565b6001600160a01b03928316602091820292909201015260065461220c91309116846119ca565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612245908590600090869030904290600401612e29565b600060405180830381600087803b15801561225f57600080fd5b505af1158015612273573d6000803e3d6000fd5b505050505050565b60006122878284612b3e565b9392505050565b6001600160a01b0383166122b45760405162461bcd60e51b8152600401610aa690612d8b565b6001600160a01b0382166122da5760405162461bcd60e51b8152600401610aa690612dd0565b6001600160a01b038316600090815260208190526040902054818110156123525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610aa6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612389908490612b77565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d591815260200190565b60405180910390a3611b62565b6000806123ed610d64565b116123f85750600090565b50600190565b30600090815260208190526040812054905060006017546016546018546124259190612b77565b61242f9190612b77565b905081158061243c575080155b15612445575050565b600c5482111561245557600c5491505b6000600282601854856124689190612b3e565b6124729190612b55565b61247c9190612b55565b9050600061248a84836127b0565b90504761249682612121565b60006124a247836127b0565b905060006124c5866124bf6016548561227b90919063ffffffff16565b906127bc565b905060006124e2876124bf6017548661227b90919063ffffffff16565b90506000816124f18486612e9a565b6124fb9190612e9a565b905060008711801561250d5750600081115b156125605761251c87826127c8565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146125bd576040519150601f19603f3d011682016040523d82523d6000602084013e6125c2565b606091505b50509050806125d057600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d806000811461261d576040519150601f19603f3d011682016040523d82523d6000602084013e612622565b606091505b505090508061263057600080fd5b5050505050505050505050565b6000612649868661097e565b6001600160a01b0387166000908152601a602052604090205490915060ff161561267e57612678868686612896565b506127a9565b801561279e5760105460115484156126b5576014546010546126a09190612b77565b91506014546011546126b29190612b77565b90505b83156126e0576015546010546126cb9190612b77565b91506015546011546126dd9190612b77565b90505b60006126f160646124bf898661227b565b905082601254826127029190612b3e565b61270c9190612b55565b6018600082825461271d9190612b77565b9091555083905061272e8383612b3e565b6127389190612b55565b601660008282546127499190612b77565b9091555050601354839061275d9083612b3e565b6127679190612b55565b601760008282546127789190612b77565b9091555050801561278e5761278e89308361228e565b6127988188612e9a565b96505050505b61227386868661228e565b5050505050565b60006122878284612e9a565b60006122878284612b55565b6006546127e09030906001600160a01b0316846119ca565b6006546001600160a01b031663f305d7198230856000806128096005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612871573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127a99190612ead565b6001600160a01b0383166128bc5760405162461bcd60e51b8152600401610aa690612d8b565b6001600160a01b0382166128e25760405162461bcd60e51b8152600401610aa690612dd0565b6001600160a01b038084166000908152602081905260408082208054858103909155928516825281208054849290612389908490612b77565b600060208083528351808285015260005b818110156129485785810183015185820160400152820161292c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b0f57600080fd5b6000806040838503121561299157600080fd5b823561299c81612969565b946020939093013593505050565b600080604083850312156129bd57600080fd5b82356129c881612969565b915060208301356129d881612969565b809150509250929050565b6000602082840312156129f557600080fd5b5035919050565b600080600060608486031215612a1157600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612a3d57600080fd5b8335612a4881612969565b92506020840135612a5881612969565b929592945050506040919091013590565b600060208284031215612a7b57600080fd5b813561228781612969565b60008060408385031215612a9957600080fd5b8235612aa481612969565b9150602083013580151581146129d857600080fd5b600181811c90821680612acd57607f821691505b602082108103612aed57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097857610978612b28565b600082612b7257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561097857610978612b28565b600060208284031215612b9c57600080fd5b815161228781612969565b80516001600160701b03811681146117e657600080fd5b600080600060608486031215612bd357600080fd5b612bdc84612ba7565b9250612bea60208501612ba7565b9150604084015163ffffffff81168114612c0357600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146117e657600080fd5b600080600080600060a08688031215612c4057600080fd5b612c4986612c0e565b9450602086015193506040860151925060608601519150612c6c60808701612c0e565b90509295509295909350565b600060208284031215612c8a57600080fd5b815160ff8116811461228757600080fd5b600181815b80851115612cd6578160001904821115612cbc57612cbc612b28565b80851615612cc957918102915b93841c9390800290612ca0565b509250929050565b600082612ced57506001610978565b81612cfa57506000610978565b8160018114612d105760028114612d1a57612d36565b6001915050610978565b60ff841115612d2b57612d2b612b28565b50506001821b610978565b5060208310610133831016604e8410600b8410161715612d59575081810a610978565b612d638383612c9b565b8060001904821115612d7757612d77612b28565b029392505050565b60006122878383612cde565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e795784516001600160a01b031683529383019391830191600101612e54565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561097857610978612b28565b600080600060608486031215612ec257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cf88543e31f25812e5cde8bbd28e792e8001eb444eafdc32e383eba7aafc267f64736f6c63430008120033

Deployed Bytecode Sourcemap

38479:16617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38775:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38775:36:0;;;;;;;;26201:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28693:242::-;;;;;;;;;;-1:-1:-1;28693:242:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28693:242:0;1205:187:1;44203:586:0;;;;;;;;;;-1:-1:-1;44203:586:0;;;;;:::i;:::-;;:::i;52221:169::-;;;;;;;;;;;;;:::i;:::-;;27321:108;;;;;;;;;;-1:-1:-1;27409:12:0;;27321:108;;39414:35;;;;;;;;;;;;;;;;45303:272;;;;;;;;;;-1:-1:-1;45303:272:0;;;;;:::i;:::-;;:::i;46019:410::-;;;;;;;;;;-1:-1:-1;46019:410:0;;;;;:::i;:::-;;:::i;29515:295::-;;;;;;;;;;-1:-1:-1;29515:295:0;;;;;:::i;:::-;;:::i;51448:168::-;;;;;;;;;;-1:-1:-1;51448:168:0;;;;;:::i;:::-;;:::i;38932:34::-;;;;;;;;;;-1:-1:-1;38932:34:0;;;;;;;;;;;38818;;;;;;;;;;;;;;;;27163:93;;;;;;;;;;-1:-1:-1;27163:93:0;;27246:2;3151:36:1;;3139:2;3124:18;27163:93:0;3009:184:1;51223:91:0;;;;;;;;;;;;;:::i;30219:270::-;;;;;;;;;;-1:-1:-1;30219:270:0;;;;;:::i;:::-;;:::i;42885:811::-;;;;;;;;;;;;;:::i;50988:126::-;;;;;;;;;;-1:-1:-1;50988:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;51078:28:0;51054:4;51078:28;;;:19;:28;;;;;;;;;50988:126;38550:42;;;;;;;;;;-1:-1:-1;38550:42:0;;;;-1:-1:-1;;;;;38550:42:0;;;;;;-1:-1:-1;;;;;3388:32:1;;;3370:51;;3358:2;3343:18;38550:42:0;3198:229:1;39636:177:0;;;;;;;;;;-1:-1:-1;39636:177:0;;;;-1:-1:-1;;;;;39636:177:0;;;27492;;;;;;;;;;-1:-1:-1;27492:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;27643:18:0;27611:7;27643:18;;;;;;;;;;;;27492:177;22823:103;;;;;;;;;;;;;:::i;42631:122::-;;;;;;;;;;;;;:::i;45844:167::-;;;;;;;;;;-1:-1:-1;45844:167:0;;;;;:::i;:::-;;:::i;38859:25::-;;;;;;;;;;;;;;;;41948:123;;;;;;;;;;;;;:::i;22172:87::-;;;;;;;;;;-1:-1:-1;22245:6:0;;-1:-1:-1;;;;;22245:6:0;22172:87;;43704:491;;;;;;;;;;;;;:::i;:::-;;;;4324:22:1;4373:15;;;4355:34;;4420:2;4405:18;;4398:34;;;;4448:18;;4441:34;;;;4506:2;4491:18;;4484:34;4555:15;;;4549:3;4534:19;;4527:44;4301:3;4286:19;43704:491:0;4061:516:1;46749:110:0;;;;;;;;;;-1:-1:-1;46749:110:0;;;;;:::i;:::-;;:::i;26420:104::-;;;;;;;;;;;;;:::i;42079:301::-;;;;;;;;;;-1:-1:-1;42079:301:0;;;;;:::i;:::-;;:::i;38599:29::-;;;;;;;;;;-1:-1:-1;38599:29:0;;;;-1:-1:-1;;;;;38599:29:0;;;30992:505;;;;;;;;;;-1:-1:-1;30992:505:0;;;;;:::i;:::-;;:::i;27875:234::-;;;;;;;;;;-1:-1:-1;27875:234:0;;;;;:::i;:::-;;:::i;51122:93::-;;;;;;;;;;;;;:::i;39006:50::-;;;;;;;;;;-1:-1:-1;39006:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;39918:58;;;;;;;;;;-1:-1:-1;39918:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46437:182;;;;;;;;;;-1:-1:-1;46437:182:0;;;;;:::i;:::-;;:::i;45583:253::-;;;;;;;;;;-1:-1:-1;45583:253:0;;;;;:::i;:::-;;:::i;51624:173::-;;;;;;;;;;;;;:::i;46627:114::-;;;;;;;;;;-1:-1:-1;46627:114:0;;;;;:::i;:::-;;:::i;44797:498::-;;;;;;;;;;-1:-1:-1;44797:498:0;;;;;:::i;:::-;;:::i;51805:175::-;;;;;;;;;;;;;:::i;28172:201::-;;;;;;;;;;-1:-1:-1;28172:201:0;;;;;:::i;:::-;;:::i;51988:225::-;;;;;;;;;;;;;:::i;38891:34::-;;;;;;;;;;-1:-1:-1;38891:34:0;;;;;;;;23081:238;;;;;;;;;;-1:-1:-1;23081:238:0;;;;;:::i;:::-;;:::i;39063:25::-;;;;;;;;;;;;;;;;51322:118;;;;;;;;;;-1:-1:-1;51322:118:0;;;;;:::i;:::-;;:::i;26201:100::-;26255:13;26288:5;26281:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26201:100;:::o;28693:242::-;28812:4;783:10;28873:32;783:10;28889:7;28898:6;28873:8;:32::i;:::-;28923:4;28916:11;;;28693:242;;;;;:::o;44203:586::-;44305:14;;44267:4;;;;-1:-1:-1;;;;;44297:22:0;;;44305:14;;44297:22;:57;;;;-1:-1:-1;44337:16:0;;-1:-1:-1;;;;;44323:31:0;;;44337:16;;44323:31;;44297:57;44284:70;;44369:5;:32;;;;-1:-1:-1;;;;;;44378:23:0;;;;;;:19;:23;;;;;;;;44369:32;44365:68;;;44418:15;44403:12;:30;44365:68;-1:-1:-1;;;;;44469:25:0;;44444:22;44469:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44498:23:0;;;;;;:19;:23;;;;;;;;44469:52;44552:14;;44444:77;;-1:-1:-1;;;;;;44546:20:0;;;44552:14;;44546:20;44532:11;44592:5;;:15;;;44601:6;44592:15;44635:10;;44578:29;;-1:-1:-1;44635:14:0;;;;;;44684:39;;-1:-1:-1;44710:13:0;;-1:-1:-1;;;44710:13:0;;;;44709:14;44684:39;:74;;;;;44741:17;44740:18;44684:74;:97;;;;;44775:6;44684:97;44663:118;44203:586;-1:-1:-1;;;;;;;;44203:586:0:o;52221:169::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;;;;;;;;;52298:16:::1;::::0;52290:65:::1;::::0;52273:12:::1;::::0;-1:-1:-1;;;;;52298:16:0::1;::::0;52329:21:::1;::::0;52273:12;52290:65;52273:12;52290:65;52329:21;52298:16;52290:65:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52272:83;;;52374:7;52366:16;;;::::0;::::1;;52261:129;52221:169::o:0;45303:272::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;45440:4:::1;45432;45411:13;27409:12:::0;;;27321:108;45411:13:::1;:17;::::0;45427:1:::1;45411:17;:::i;:::-;45410:26;;;;:::i;:::-;45409:35;;;;:::i;:::-;45399:6;:45;;45377:142;;;::::0;-1:-1:-1;;;45377:142:0;;6267:2:1;45377:142:0::1;::::0;::::1;6249:21:1::0;6306:2;6286:18;;;6279:30;6345:34;6325:18;;;6318:62;-1:-1:-1;;;6396:18:1;;;6389:45;6451:19;;45377:142:0::1;6065:411:1::0;45377:142:0::1;45554:13;:6:::0;45563:4:::1;45554:13;:::i;:::-;45530:21;:37:::0;-1:-1:-1;45303:272:0:o;46019:410::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;46171:13:::1;:28:::0;;;46210:15:::1;:32:::0;;;46253:13:::1;:28:::0;;;46269:12;46305:31:::1;46228:14:::0;46187:12;46305:31:::1;:::i;:::-;:47;;;;:::i;:::-;46292:10;:60:::0;;;46385:2:::1;-1:-1:-1::0;46371:16:0::1;46363:58;;;::::0;-1:-1:-1;;;46363:58:0;;6813:2:1;46363:58:0::1;::::0;::::1;6795:21:1::0;6852:2;6832:18;;;6825:30;6891:31;6871:18;;;6864:59;6940:18;;46363:58:0::1;6611:353:1::0;46363:58:0::1;46019:410:::0;;;:::o;29515:295::-;29646:4;783:10;29704:38;29720:4;783:10;29735:6;29704:15;:38::i;:::-;29753:27;29763:4;29769:2;29773:6;29753:9;:27::i;:::-;-1:-1:-1;29798:4:0;;29515:295;-1:-1:-1;;;;29515:295:0:o;51448:168::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;51523:16:::1;:23:::0;;-1:-1:-1;;;;;51523:23:0;;::::1;-1:-1:-1::0;;;;;;51523:23:0;;::::1;::::0;::::1;::::0;;;51557:9:::1;:51:::0;;;;::::1;;::::0;;51448:168::o;51223:91::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;51305:1:::1;51285:17;:21:::0;51223:91::o;30219:270::-;30334:4;783:10;30395:64;783:10;30411:7;30448:10;30420:25;783:10;30411:7;30420:9;:25::i;:::-;:38;;;;:::i;:::-;30395:8;:64::i;42885:811::-;42931:7;42951:21;43019:14;;;;;;;;;-1:-1:-1;;;;;43019:14:0;-1:-1:-1;;;;;43004:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42951:103;;43065:21;43133:14;;;;;;;;;-1:-1:-1;;;;;43133:14:0;-1:-1:-1;;;;;43118:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43217:12;;43203:10;;;;;-1:-1:-1;;;;;43203:10:0;43187:27;;;;:15;:27;;;;;;43065:103;;-1:-1:-1;;43179:51:0;;;;;;43242:12;43256;43289:14;;;;;;;;;-1:-1:-1;;;;;43289:14:0;-1:-1:-1;;;;;43274:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;43367:14:0;;43396:19;;43241:91;;-1:-1:-1;43241:91:0;;-1:-1:-1;43367:14:0;-1:-1:-1;;;43396:19:0;;;;43392:100;;;43459:4;-1:-1:-1;;;;;43459:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;43432:48:0;;-1:-1:-1;;;;43392:100:0;43502:12;43630:6;-1:-1:-1;;;;;43630:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43622:26;;43599:6;-1:-1:-1;;;;;43599:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43587:30;;43591:26;;43587:2;:30;:::i;:::-;43518:52;43555:14;-1:-1:-1;;;;;43518:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;43517:131;;;;:::i;:::-;43502:146;-1:-1:-1;43667:20:0;-1:-1:-1;;;;;43674:13:0;;43502:146;43667:20;:::i;:::-;43659:29;;;;;;;;42885:811;:::o;22823:103::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;22888:30:::1;22915:1;22888:18;:30::i;:::-;22823:103::o:0;42631:122::-;22245:6;;42683:4;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;-1:-1:-1;42700:15:0::1;:23:::0;;-1:-1:-1;;42700:23:0::1;::::0;;;42631:122;:::o;45844:167::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45957:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;45957:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45844:167::o;41948:123::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;42001:14:::1;:21:::0;;-1:-1:-1;;42001:21:0::1;;;::::0;;42048:15:::1;42033:12;:30:::0;41948:123::o;43704:491::-;43794:6;43815;43836:7;43858;43880:6;43929:14;43958:12;43985:17;44017;44049:22;44085:9;;;;;;;;;-1:-1:-1;;;;;44085:9:0;-1:-1:-1;;;;;44085:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43914:198;;;;-1:-1:-1;43914:198:0;;-1:-1:-1;43914:198:0;-1:-1:-1;43914:198:0;;-1:-1:-1;43704:491:0;-1:-1:-1;;;;;;43704:491:0:o;46749:110::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;46829:10:::1;:22:::0;;-1:-1:-1;;;;;;46829:22:0::1;-1:-1:-1::0;;;;;46829:22:0;;;::::1;::::0;;;::::1;::::0;;46749:110::o;26420:104::-;26476:13;26509:7;26502:14;;;;;:::i;42079:301::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;42188:14:::1;::::0;-1:-1:-1;;;;;42188:14:0;;::::1;42180:22:::0;;::::1;::::0;42172:92:::1;;;::::0;-1:-1:-1;;;42172:92:0;;10389:2:1;42172:92:0::1;::::0;::::1;10371:21:1::0;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;10538:27;10518:18;;;10511:55;10583:19;;42172:92:0::1;10187:421:1::0;42172:92:0::1;42275:41;42304:4;42310:5;42275:28;:41::i;:::-;42332:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;42332:40:0;::::1;::::0;::::1;::::0;;;::::1;42079:301:::0;;:::o;30992:505::-;31112:4;783:10;31112:4;31200:25;783:10;31217:7;31200:9;:25::i;:::-;31173:52;;31278:15;31258:16;:35;;31236:122;;;;-1:-1:-1;;;31236:122:0;;10815:2:1;31236:122:0;;;10797:21:1;10854:2;10834:18;;;10827:30;10893:34;10873:18;;;10866:62;-1:-1:-1;;;10944:18:1;;;10937:35;10989:19;;31236:122:0;10613:401:1;31236:122:0;31394:60;31403:5;31410:7;31438:15;31419:16;:34;31394:8;:60::i;27875:234::-;27990:4;783:10;28051:28;783:10;28068:2;28072:6;28051:9;:28::i;51122:93::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;51206:1:::1;51185:18;:22:::0;51122:93::o;46437:182::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46522:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46522:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46577:34;;1345:41:1;;;46577:34:0::1;::::0;1318:18:1;46577:34:0::1;;;;;;;46437:182:::0;;:::o;45583:253::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;45723:4:::1;45715;45694:13;27409:12:::0;;;27321:108;45694:13:::1;:17;::::0;45710:1:::1;45694:17;:::i;:::-;45693:26;;;;:::i;:::-;45692:35;;;;:::i;:::-;45682:6;:45;;45660:131;;;::::0;-1:-1:-1;;;45660:131:0;;11221:2:1;45660:131:0::1;::::0;::::1;11203:21:1::0;11260:2;11240:18;;;11233:30;11299:34;11279:18;;;11272:62;-1:-1:-1;;;11350:18:1;;;11343:34;11394:19;;45660:131:0::1;11019:400:1::0;45660:131:0::1;45815:13;:6:::0;45824:4:::1;45815:13;:::i;:::-;45802:10;:26:::0;-1:-1:-1;45583:253:0:o;51624:173::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;51691:19:::1;::::0;-1:-1:-1;;;51691:19:0;::::1;;;:28;51683:69;;;::::0;-1:-1:-1;;;51683:69:0;;11626:2:1;51683:69:0::1;::::0;::::1;11608:21:1::0;11665:2;11645:18;;;11638:30;11704;11684:18;;;11677:58;11752:18;;51683:69:0::1;11424:352:1::0;51683:69:0::1;51763:19;:26:::0;;-1:-1:-1;;;;51763:26:0::1;-1:-1:-1::0;;;51763:26:0::1;::::0;;51624:173::o;46627:114::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;46705:16:::1;:28:::0;;-1:-1:-1;;;;;;46705:28:0::1;-1:-1:-1::0;;;;;46705:28:0;;;::::1;::::0;;;::::1;::::0;;46627:114::o;44797:498::-;22245:6;;44905:4;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;44984:6:::1;44963:13;27409:12:::0;;;27321:108;44963:13:::1;:17;::::0;44979:1:::1;44963:17;:::i;:::-;44962:28;;;;:::i;:::-;44949:9;:41;;44927:144;;;::::0;-1:-1:-1;;;44927:144:0;;11983:2:1;44927:144:0::1;::::0;::::1;11965:21:1::0;12022:2;12002:18;;;11995:30;12061:34;12041:18;;;12034:62;-1:-1:-1;;;12112:18:1;;;12105:51;12173:19;;44927:144:0::1;11781:417:1::0;44927:144:0::1;45139:4;45118:13;27409:12:::0;;;27321:108;45118:13:::1;:17;::::0;45134:1:::1;45118:17;:::i;:::-;45117:26;;;;:::i;:::-;45104:9;:39;;45082:141;;;::::0;-1:-1:-1;;;45082:141:0;;12405:2:1;45082:141:0::1;::::0;::::1;12387:21:1::0;12444:2;12424:18;;;12417:30;12483:34;12463:18;;;12456:62;-1:-1:-1;;;12534:18:1;;;12527:50;12594:19;;45082:141:0::1;12203:416:1::0;45082:141:0::1;-1:-1:-1::0;45234:19:0::1;:31:::0;;;45283:4:::1;22463:1;44797:498:::0;;;:::o;51805:175::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;51873:19:::1;::::0;-1:-1:-1;;;51873:19:0;::::1;;;:27;;51896:4;51873:27;51865:69;;;::::0;-1:-1:-1;;;51865:69:0;;12826:2:1;51865:69:0::1;::::0;::::1;12808:21:1::0;12865:2;12845:18;;;12838:30;12904:31;12884:18;;;12877:59;12953:18;;51865:69:0::1;12624:353:1::0;51865:69:0::1;51945:19;:27:::0;;-1:-1:-1;;;;51945:27:0::1;::::0;;51805:175::o;28172:201::-;-1:-1:-1;;;;;28338:18:0;;;28306:7;28338:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28172:201::o;51988:225::-;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;52075:4:::1;27611:7:::0;27643:18;;;;;;;;;;;52039:43:::1;::::0;:17:::1;:43::i;23081:238::-:0;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23184:22:0;::::1;23162:110;;;::::0;-1:-1:-1;;;23162:110:0;;13184:2:1;23162:110:0::1;::::0;::::1;13166:21:1::0;13223:2;13203:18;;;13196:30;13262:34;13242:18;;;13235:62;-1:-1:-1;;;13313:18:1;;;13306:36;13359:19;;23162:110:0::1;12982:402:1::0;23162:110:0::1;23283:28;23302:8;23283:18;:28::i;51322:118::-:0;22245:6;;-1:-1:-1;;;;;22245:6:0;783:10;22392:23;22384:68;;;;-1:-1:-1;;;22384:68:0;;;;;;;:::i;:::-;51416:15:::1;:3:::0;51424:6:::1;51416:7;:15::i;:::-;51392:14;:40:::0;-1:-1:-1;51322:118:0:o;34632:380::-;-1:-1:-1;;;;;34768:19:0;;34760:68;;;;-1:-1:-1;;;34760:68:0;;13591:2:1;34760:68:0;;;13573:21:1;13630:2;13610:18;;;13603:30;13669:34;13649:18;;;13642:62;-1:-1:-1;;;13720:18:1;;;13713:34;13764:19;;34760:68:0;13389:400:1;34760:68:0;-1:-1:-1;;;;;34847:21:0;;34839:68;;;;-1:-1:-1;;;34839:68:0;;13996:2:1;34839:68:0;;;13978:21:1;14035:2;14015:18;;;14008:30;14074:34;14054:18;;;14047:62;-1:-1:-1;;;14125:18:1;;;14118:32;14167:19;;34839:68:0;13794:398:1;34839:68:0;-1:-1:-1;;;;;34920:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34972:32;;160:25:1;;;34972:32:0;;133:18:1;34972:32:0;;;;;;;34632:380;;;:::o;35303:502::-;35438:24;35465:25;35475:5;35482:7;35465:9;:25::i;:::-;35438:52;;-1:-1:-1;;35505:16:0;:37;35501:297;;35605:6;35585:16;:26;;35559:117;;;;-1:-1:-1;;;35559:117:0;;14399:2:1;35559:117:0;;;14381:21:1;14438:2;14418:18;;;14411:30;14477:31;14457:18;;;14450:59;14526:18;;35559:117:0;14197:353:1;35559:117:0;35720:51;35729:5;35736:7;35764:6;35745:16;:25;35720:8;:51::i;:::-;35427:378;35303:502;;;:::o;46867:2879::-;-1:-1:-1;;;;;47015:25:0;;46991:21;47015:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;47057:23:0;;;;;;:19;:23;;;;;;;;47015:65;46991:89;-1:-1:-1;;;;;;47101:18:0;;47093:68;;;;-1:-1:-1;;;47093:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47180:16:0;;47172:64;;;;-1:-1:-1;;;47172:64:0;;;;;;;:::i;:::-;47253:6;47263:1;47253:11;47249:93;;47281:28;47297:4;47303:2;47307:1;47281:15;:28::i;47249:93::-;47375:14;;47354:10;;-1:-1:-1;;;;;47367:22:0;;;47375:14;;47367:22;:75;;;;-1:-1:-1;;;;;;47407:35:0;;;;;;:31;:35;;;;;;;;47406:36;47367:75;47473:14;;47354:88;;-1:-1:-1;47453:11:0;;-1:-1:-1;;;;;47467:20:0;;;47473:14;;47467:20;:75;;;;-1:-1:-1;;;;;;47505:37:0;;;;;;:31;:37;;;;;;;;47504:38;47467:75;47453:89;;47553:16;47580:7;22245:6;;-1:-1:-1;;;;;22245:6:0;;22172:87;47580:7;-1:-1:-1;;;;;47572:15:0;:4;-1:-1:-1;;;;;47572:15:0;;:32;;;-1:-1:-1;22245:6:0;;-1:-1:-1;;;;;47591:13:0;;;22245:6;;47591:13;47572:32;47553:51;-1:-1:-1;47615:11:0;-1:-1:-1;;;;;47629:16:0;;;;:41;;-1:-1:-1;;;;;;47649:21:0;;47663:6;47649:21;47629:41;47615:55;;47681:17;47701:11;:21;;;;47716:6;47701:21;:38;;;-1:-1:-1;47726:13:0;;-1:-1:-1;;;47726:13:0;;;;47701:38;47764:15;;47681:58;;-1:-1:-1;47764:15:0;;:32;;;;;47784:12;47783:13;47764:32;47760:1076;;;47839:14;;;;;;;;:34;;;47857:16;47839:34;47813:118;;;;-1:-1:-1;;;47813:118:0;;15567:2:1;47813:118:0;;;15549:21:1;15606:2;15586:18;;;15579:30;-1:-1:-1;;;15625:18:1;;;15618:52;15687:18;;47813:118:0;15365:346:1;47813:118:0;47950:5;47946:879;;;48016:21;;48006:6;:31;;47976:158;;;;-1:-1:-1;;;47976:158:0;;15918:2:1;47976:158:0;;;15900:21:1;15957:2;15937:18;;;15930:30;15996:34;15976:18;;;15969:62;-1:-1:-1;;;16047:18:1;;;16040:51;16108:19;;47976:158:0;15716:417:1;47976:158:0;48209:10;;-1:-1:-1;;;;;27643:18:0;;27611:7;27643:18;;;;;;;;;;;48183:22;;:6;:22;:::i;:::-;:36;;48153:129;;;;-1:-1:-1;;;48153:129:0;;16340:2:1;48153:129:0;;;16322:21:1;16379:2;16359:18;;;16352:30;-1:-1:-1;;;16398:18:1;;;16391:49;16457:18;;48153:129:0;16138:343:1;48153:129:0;47946:879;;;48308:6;48304:521;;-1:-1:-1;;;;;48551:35:0;;;;;;:31;:35;;;;;;;;48550:36;:95;;;;-1:-1:-1;;;;;;48608:37:0;;;;;;:31;:37;;;;;;;;48607:38;48550:95;48528:297;;;48736:10;;-1:-1:-1;;;;;27643:18:0;;27611:7;27643:18;;;;;;;;;;;48710:22;;:6;:22;:::i;:::-;:36;;48680:129;;;;-1:-1:-1;;;48680:129:0;;16340:2:1;48680:129:0;;;16322:21:1;16379:2;16359:18;;;16352:30;-1:-1:-1;;;16398:18:1;;;16391:49;16457:18;;48680:129:0;16138:343:1;48680:129:0;-1:-1:-1;;;;;48864:31:0;;;;;;:25;:31;;;;;;;;48860:269;;;-1:-1:-1;;;;;48916:19:0;;;;;;:15;:19;;;;;;:24;;48912:102;;-1:-1:-1;;;;;48961:19:0;;;;;;:15;:19;;;;;48983:15;48961:37;;48912:102;48860:269;;;49051:13;;-1:-1:-1;;;49051:13:0;;;;49046:72;;49085:10;:17;;-1:-1:-1;;;;;;49085:17:0;;-1:-1:-1;;;;;49085:17:0;;;;;;49046:72;49146:13;;-1:-1:-1;;;49146:13:0;;;;49145:14;:63;;;;-1:-1:-1;;;;;;49177:31:0;;;;;;:25;:31;;;;;;;;49176:32;49145:63;:106;;;;-1:-1:-1;;;;;;49226:25:0;;;;;;:19;:25;;;;;;;;49225:26;49145:106;:147;;;;-1:-1:-1;;;;;;49269:23:0;;;;;;:19;:23;;;;;;;;49268:24;49145:147;49141:536;;;49358:4;49309:28;27643:18;;;;;;;;;;;49418:19;;49394:43;;;49456:17;:15;:17::i;:::-;:45;;;;;49494:7;49456:45;:84;;;;;49524:16;49523:17;49456:84;49452:214;;;49561:13;:20;;-1:-1:-1;;;;49561:20:0;-1:-1:-1;;;49561:20:0;;;49600:10;:8;:10::i;:::-;49629:13;:21;;-1:-1:-1;;;;49629:21:0;;;49452:214;49294:383;;49141:536;49689:49;49706:4;49712:2;49716:6;49724;49732:5;49689:16;:49::i;:::-;46980:2766;;;;;;46867:2879;;;:::o;23479:191::-;23572:6;;;-1:-1:-1;;;;;23589:17:0;;;-1:-1:-1;;;;;;23589:17:0;;;;;;;23622:40;;23572:6;;;23589:17;23572:6;;23622:40;;23553:16;;23622:40;23542:128;23479:191;:::o;42388:235::-;-1:-1:-1;;;;;42471:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;42471:39:0;;;;;;;42521:38;42471:31;:39;42521:25;:38::i;52402:479::-;52493:16;;;52507:1;52493:16;;;;;;;;52469:21;;52493:16;;;;;;;;;;-1:-1:-1;52493:16:0;52469:40;;52538:4;52520;52525:1;52520:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52520:23:0;;;:7;;;;;;;;;;:23;;;;52564:16;;:23;;;-1:-1:-1;;;52564:23:0;;;;:16;;;;;:21;;:23;;;;;52520:7;;52564:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52554:4;52559:1;52554:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52554:33:0;;;:7;;;;;;;;;:33;52632:16;;52600:63;;52617:4;;52632:16;52651:11;52600:8;:63::i;:::-;52676:16;;:197;;-1:-1:-1;;;52676:197:0;;-1:-1:-1;;;;;52676:16:0;;;;:67;;:197;;52758:11;;52676:16;;52800:4;;52827;;52847:15;;52676:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52458:423;52402:479;:::o;17801:98::-;17859:7;17886:5;17890:1;17886;:5;:::i;:::-;17879:12;17801:98;-1:-1:-1;;;17801:98:0:o;37737:708::-;-1:-1:-1;;;;;37868:18:0;;37860:68;;;;-1:-1:-1;;;37860:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37947:16:0;;37939:64;;;;-1:-1:-1;;;37939:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38089:15:0;;38067:19;38089:15;;;;;;;;;;;38137:21;;;;38115:109;;;;-1:-1:-1;;;38115:109:0;;17937:2:1;38115:109:0;;;17919:21:1;17976:2;17956:18;;;17949:30;18015:34;17995:18;;;17988:62;-1:-1:-1;;;18066:18:1;;;18059:36;18112:19;;38115:109:0;17735:402:1;38115:109:0;-1:-1:-1;;;;;38260:15:0;;;:9;:15;;;;;;;;;;;38278:20;;;38260:38;;38320:13;;;;;;;;:23;;38292:6;;38260:9;38320:23;;38292:6;;38320:23;:::i;:::-;;;;;;;;38376:2;-1:-1:-1;;;;;38361:26:0;38370:4;-1:-1:-1;;;;;38361:26:0;;38380:6;38361:26;;;;160:25:1;;148:2;133:18;;14:177;38361:26:0;;;;;;;;38400:37;46019:410;42761:116;42811:4;42853:1;42835:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;42864:5:0;;42761:116::o;42835:34::-;-1:-1:-1;42857:4:0;;42761:116::o;53260:1796::-;53343:4;53299:23;27643:18;;;;;;;;;;;53299:50;;53360:25;53446:21;;53410:19;;53388;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53360:107;-1:-1:-1;53482:20:0;;;:46;;-1:-1:-1;53506:22:0;;53482:46;53478:59;;;53530:7;;53260:1796::o;53478:59::-;53569:19;;53551:15;:37;53547:107;;;53623:19;;53605:37;;53547:107;53664:23;53778:1;53745:17;53709:19;;53691:15;:37;;;;:::i;:::-;53690:72;;;;:::i;:::-;:89;;;;:::i;:::-;53664:115;-1:-1:-1;53790:26:0;53819:36;:15;53664:115;53819:19;:36::i;:::-;53790:65;-1:-1:-1;53894:21:0;53926:37;53790:65;53926:17;:37::i;:::-;53974:18;53995:44;:21;54021:17;53995:25;:44::i;:::-;53974:65;;54050:23;54076:82;54130:17;54076:35;54091:19;;54076:10;:14;;:35;;;;:::i;:::-;:39;;:82::i;:::-;54050:108;;54169:25;54197:84;54253:17;54197:37;54212:21;;54197:10;:14;;:37;;;;:::i;:84::-;54169:112;-1:-1:-1;54292:23:0;54169:112;54318:28;54331:15;54318:10;:28;:::i;:::-;:48;;;;:::i;:::-;54292:74;;54401:1;54383:15;:19;:42;;;;;54424:1;54406:15;:19;54383:42;54379:280;;;54442:47;54456:15;54473;54442:13;:47::i;:::-;54613:19;;54509:138;;;18477:25:1;;;18533:2;18518:18;;18511:34;;;18561:18;;;18554:34;;;;54509:138:0;;;;;;18465:2:1;54509:138:0;;;54379:280;54693:1;54671:19;:23;;;54705:19;:23;;;54739:21;:25;;;54817:16;;54809:58;;-1:-1:-1;;;;;54817:16:0;;;;54847:15;;54693:1;54809:58;54693:1;54809:58;54847:15;54817:16;54809:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54777:90;;;54886:20;54878:29;;;;;;54960:10;;54952:54;;54919:27;;-1:-1:-1;;;;;54960:10:0;;54984:17;;54919:27;54952:54;54919:27;54952:54;54984:17;54960:10;54952:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54918:88;;;55025:22;55017:31;;;;;;53288:1768;;;;;;;;;;;53260:1796::o;49754:1226::-;49918:11;49932:22;49945:4;49951:2;49932:12;:22::i;:::-;-1:-1:-1;;;;;49971:25:0;;;;;;:19;:25;;;;;;49918:36;;-1:-1:-1;49971:25:0;;49967:962;;;50013:41;50037:4;50043:2;50047:6;50013:23;:41::i;:::-;50069:7;;;49967:962;50097:6;50093:836;;;50136:10;;50181:13;;50209:151;;;;50261:18;;50248:10;;:31;;;;:::i;:::-;50240:39;;50326:18;;50310:13;;:34;;;;:::i;:::-;50298:46;;50209:151;50378:5;50374:148;;;50425:17;;50412:10;;:30;;;;:::i;:::-;50404:38;;50489:17;;50473:13;;:33;;;;:::i;:::-;50461:45;;50374:148;50536:12;50551:26;50573:3;50551:17;:6;50562:5;50551:10;:17::i;:26::-;50536:41;;50640:5;50623:13;;50616:4;:20;;;;:::i;:::-;50615:30;;;;:::i;:::-;50592:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;50704:5:0;;-1:-1:-1;50684:16:0;50691:9;50684:4;:16;:::i;:::-;50683:26;;;;:::i;:::-;50660:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50757:15:0;;50776:5;;50750:22;;:4;:22;:::i;:::-;50749:32;;;;:::i;:::-;50724:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;50802:8:0;;50798:91;;50831:42;50847:4;50861;50868;50831:15;:42::i;:::-;50903:14;50913:4;50903:14;;:::i;:::-;;;50105:824;;;50093:836;50939:33;50955:4;50961:2;50965:6;50939:15;:33::i;49754:1226::-;;;;;;:::o;17444:98::-;17502:7;17529:5;17533:1;17529;:5;:::i;18200:98::-;18258:7;18285:5;18289:1;18285;:5;:::i;52889:363::-;53003:16;;52971:63;;52988:4;;-1:-1:-1;;;;;53003:16:0;53022:11;52971:8;:63::i;:::-;53045:16;;-1:-1:-1;;;;;53045:16:0;:32;53085:9;53118:4;53138:11;53045:16;;53196:7;22245:6;;-1:-1:-1;;;;;22245:6:0;;22172:87;53196:7;53045:199;;;;;;-1:-1:-1;;;;;;53045:199:0;;;-1:-1:-1;;;;;18958:15:1;;;53045:199:0;;;18940:34:1;18990:18;;;18983:34;;;;19033:18;;;19026:34;;;;19076:18;;;19069:34;19140:15;;;19119:19;;;19112:44;53218:15:0;19172:19:1;;;19165:35;18874:19;;53045:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;31976:608::-;-1:-1:-1;;;;;32115:18:0;;32107:68;;;;-1:-1:-1;;;32107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32194:16:0;;32186:64;;;;-1:-1:-1;;;32186:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32336:15:0;;;32314:19;32336:15;;;;;;;;;;;;;32407:20;;;32389:38;;;32459:13;;;;;;;:23;;32421:6;;32314:19;32459:23;;32421:6;;32459:23;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:388::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1720:33;1679:32;1720:33;:::i;:::-;1772:7;1762:17;;;1397:388;;;;;:::o;1790:180::-;1849:6;1902:2;1890:9;1881:7;1877:23;1873:32;1870:52;;;1918:1;1915;1908:12;1870:52;-1:-1:-1;1941:23:1;;1790:180;-1:-1:-1;1790:180:1:o;1975:316::-;2052:6;2060;2068;2121:2;2109:9;2100:7;2096:23;2092:32;2089:52;;;2137:1;2134;2127:12;2089:52;-1:-1:-1;;2160:23:1;;;2230:2;2215:18;;2202:32;;-1:-1:-1;2281:2:1;2266:18;;;2253:32;;1975:316;-1:-1:-1;1975:316:1:o;2296:456::-;2373:6;2381;2389;2442:2;2430:9;2421:7;2417:23;2413:32;2410:52;;;2458:1;2455;2448:12;2410:52;2497:9;2484:23;2516:31;2541:5;2516:31;:::i;:::-;2566:5;-1:-1:-1;2623:2:1;2608:18;;2595:32;2636:33;2595:32;2636:33;:::i;:::-;2296:456;;2688:7;;-1:-1:-1;;;2742:2:1;2727:18;;;;2714:32;;2296:456::o;2757:247::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:31;2968:5;2943:31;:::i;3640:416::-;3705:6;3713;3766:2;3754:9;3745:7;3741:23;3737:32;3734:52;;;3782:1;3779;3772:12;3734:52;3821:9;3808:23;3840:31;3865:5;3840:31;:::i;:::-;3890:5;-1:-1:-1;3947:2:1;3932:18;;3919:32;3989:15;;3982:23;3970:36;;3960:64;;4020:1;4017;4010:12;4582:380;4661:1;4657:12;;;;4704;;;4725:61;;4779:4;4771:6;4767:17;4757:27;;4725:61;4832:2;4824:6;4821:14;4801:18;4798:38;4795:161;;4878:10;4873:3;4869:20;4866:1;4859:31;4913:4;4910:1;4903:15;4941:4;4938:1;4931:15;4795:161;;4582:380;;;:::o;4967:356::-;5169:2;5151:21;;;5188:18;;;5181:30;5247:34;5242:2;5227:18;;5220:62;5314:2;5299:18;;4967:356::o;5538:127::-;5599:10;5594:3;5590:20;5587:1;5580:31;5630:4;5627:1;5620:15;5654:4;5651:1;5644:15;5670:168;5743:9;;;5774;;5791:15;;;5785:22;;5771:37;5761:71;;5812:18;;:::i;5843:217::-;5883:1;5909;5899:132;;5953:10;5948:3;5944:20;5941:1;5934:31;5988:4;5985:1;5978:15;6016:4;6013:1;6006:15;5899:132;-1:-1:-1;6045:9:1;;5843:217::o;6481:125::-;6546:9;;;6567:10;;;6564:36;;;6580:18;;:::i;6969:251::-;7039:6;7092:2;7080:9;7071:7;7067:23;7063:32;7060:52;;;7108:1;7105;7098:12;7060:52;7140:9;7134:16;7159:31;7184:5;7159:31;:::i;7225:188::-;7304:13;;-1:-1:-1;;;;;7346:42:1;;7336:53;;7326:81;;7403:1;7400;7393:12;7418:450;7505:6;7513;7521;7574:2;7562:9;7553:7;7549:23;7545:32;7542:52;;;7590:1;7587;7580:12;7542:52;7613:40;7643:9;7613:40;:::i;:::-;7603:50;;7672:49;7717:2;7706:9;7702:18;7672:49;:::i;:::-;7662:59;;7764:2;7753:9;7749:18;7743:25;7808:10;7801:5;7797:22;7790:5;7787:33;7777:61;;7834:1;7831;7824:12;7777:61;7857:5;7847:15;;;7418:450;;;;;:::o;7873:179::-;7951:13;;8004:22;7993:34;;7983:45;;7973:73;;8042:1;8039;8032:12;8057:473;8160:6;8168;8176;8184;8192;8245:3;8233:9;8224:7;8220:23;8216:33;8213:53;;;8262:1;8259;8252:12;8213:53;8285:39;8314:9;8285:39;:::i;:::-;8275:49;;8364:2;8353:9;8349:18;8343:25;8333:35;;8408:2;8397:9;8393:18;8387:25;8377:35;;8452:2;8441:9;8437:18;8431:25;8421:35;;8475:49;8519:3;8508:9;8504:19;8475:49;:::i;:::-;8465:59;;8057:473;;;;;;;;:::o;8535:273::-;8603:6;8656:2;8644:9;8635:7;8631:23;8627:32;8624:52;;;8672:1;8669;8662:12;8624:52;8704:9;8698:16;8754:4;8747:5;8743:16;8736:5;8733:27;8723:55;;8774:1;8771;8764:12;8813:422;8902:1;8945:5;8902:1;8959:270;8980:7;8970:8;8967:21;8959:270;;;9039:4;9035:1;9031:6;9027:17;9021:4;9018:27;9015:53;;;9048:18;;:::i;:::-;9098:7;9088:8;9084:22;9081:55;;;9118:16;;;;9081:55;9197:22;;;;9157:15;;;;8959:270;;;8963:3;8813:422;;;;;:::o;9240:806::-;9289:5;9319:8;9309:80;;-1:-1:-1;9360:1:1;9374:5;;9309:80;9408:4;9398:76;;-1:-1:-1;9445:1:1;9459:5;;9398:76;9490:4;9508:1;9503:59;;;;9576:1;9571:130;;;;9483:218;;9503:59;9533:1;9524:10;;9547:5;;;9571:130;9608:3;9598:8;9595:17;9592:43;;;9615:18;;:::i;:::-;-1:-1:-1;;9671:1:1;9657:16;;9686:5;;9483:218;;9785:2;9775:8;9772:16;9766:3;9760:4;9757:13;9753:36;9747:2;9737:8;9734:16;9729:2;9723:4;9720:12;9716:35;9713:77;9710:159;;;-1:-1:-1;9822:19:1;;;9854:5;;9710:159;9901:34;9926:8;9920:4;9901:34;:::i;:::-;9971:6;9967:1;9963:6;9959:19;9950:7;9947:32;9944:58;;;9982:18;;:::i;:::-;10020:20;;9240:806;-1:-1:-1;;;9240:806:1:o;10051:131::-;10111:5;10140:36;10167:8;10161:4;10140:36;:::i;14555:401::-;14757:2;14739:21;;;14796:2;14776:18;;;14769:30;14835:34;14830:2;14815:18;;14808:62;-1:-1:-1;;;14901:2:1;14886:18;;14879:35;14946:3;14931:19;;14555:401::o;14961:399::-;15163:2;15145:21;;;15202:2;15182:18;;;15175:30;15241:34;15236:2;15221:18;;15214:62;-1:-1:-1;;;15307:2:1;15292:18;;15285:33;15350:3;15335:19;;14961:399::o;16618:127::-;16679:10;16674:3;16670:20;16667:1;16660:31;16710:4;16707:1;16700:15;16734:4;16731:1;16724:15;16750:980;17012:4;17060:3;17049:9;17045:19;17091:6;17080:9;17073:25;17117:2;17155:6;17150:2;17139:9;17135:18;17128:34;17198:3;17193:2;17182:9;17178:18;17171:31;17222:6;17257;17251:13;17288:6;17280;17273:22;17326:3;17315:9;17311:19;17304:26;;17365:2;17357:6;17353:15;17339:29;;17386:1;17396:195;17410:6;17407:1;17404:13;17396:195;;;17475:13;;-1:-1:-1;;;;;17471:39:1;17459:52;;17566:15;;;;17531:12;;;;17507:1;17425:9;17396:195;;;-1:-1:-1;;;;;;;17647:32:1;;;;17642:2;17627:18;;17620:60;-1:-1:-1;;;17711:3:1;17696:19;17689:35;17608:3;16750:980;-1:-1:-1;;;16750:980:1:o;18142:128::-;18209:9;;;18230:11;;;18227:37;;;18244:18;;:::i;19211:306::-;19299:6;19307;19315;19368:2;19356:9;19347:7;19343:23;19339:32;19336:52;;;19384:1;19381;19374:12;19336:52;19413:9;19407:16;19397:26;;19463:2;19452:9;19448:18;19442:25;19432:35;;19507:2;19496:9;19492:18;19486:25;19476:35;;19211:306;;;;;:::o

Swarm Source

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