ETH Price: $2,392.05 (-4.67%)

Token

StoneColdRockCenaMachoMcMahonSmackdown10Inu (SMACKDOWN)
 

Overview

Max Total Supply

1,000,000,000 SMACKDOWN

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,054,628.570442633712252117 SMACKDOWN

Value
$0.00
0x88816953f668e8a7c964eda8dac01f50f5ffb465
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:
SMACKDOWN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-30
*/

/**
 * SPDX-License-Identifier: MIT
 * https://twitter.com/SmackdownInu
 * https://t.me/SmackdownETH 
 * https://smackdown.pro 
 */
pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        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
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

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

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

    function WETH() external pure returns (address);

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

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

    IUniV2Router public immutable uniV2Router;
    address public immutable uniV2Pair;

    // Swapback
    bool private duringSwapBack;
    bool public swapForFeesEnabled = false;
    uint256 public minSwapbackTreshold;
    uint256 public maxSwapbackLimit;

    //Anti-whale
    bool public earlyLimits = true;
    bool public earlyDelay = true;
    uint256 public walletLimit;
    uint256 public txLimit;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    // Fee receivers
    address public addressForProjectFee;
    address public addressForTreasuryFee;

    bool public _trdOpen = false;

    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;

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

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("StoneColdRockCenaMachoMcMahonSmackdown10Inu", "SMACKDOWN") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        exemptFromTxLimits(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uniV2Pair = IUniV2Factory(_uniV2Router.factory())
            .createPair(address(this), _uniV2Router.WETH());
        exemptFromTxLimits(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);

        uint256 tokenSupply = 1000000000 * 1e18;

        txLimit = (tokenSupply * 1) / 100; // 1% of total supply
        walletLimit = (tokenSupply * 1) / 100; // 1% of total supply

        minSwapbackTreshold = (tokenSupply * 5) / 10000; // 0.05% swapback trigger
        maxSwapbackLimit = (tokenSupply * 5) / 100; // 5% max swapback

        buyFee1 = 25;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 90;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        addressForProjectFee = address(0x00000Ce52E24480E17a8e1B9bdCbaE98A4a36D3E);
        addressForTreasuryFee = address(msg.sender);

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

        exemptFromTxLimits(owner(), true);
        exemptFromTxLimits(address(this), true);
        exemptFromTxLimits(address(0xdead), true);
        exemptFromTxLimits(addressForProjectFee, true);

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

    receive() external payable {}

    /// @notice Launches the token and enables trading. Irriversable.
    function smackdown() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeTxLimits() external onlyOwner returns (bool) {
        earlyLimits = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function removeSameBlockRestriction() external onlyOwner returns (bool) {
        earlyDelay = false;
        return true;
    }

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

    function changeMaxSwapbackLimit(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= minSwapbackTreshold,
            "Swap amount cannot be lower than minSwapbackTreshold"
        );
        maxSwapbackLimit = newAmount;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set txLimit lower than 0.2%");
        txLimit = (newNum * totalSupply()) / 1000;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set walletLimit lower than 0.5%");
        walletLimit = (newNum * totalSupply()) / 1000;
    }

    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function exemptFromTxLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function changeSwapForFeesEnabled(bool enabled) external onlyOwner {
        swapForFeesEnabled = enabled;
    }

    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setBuyFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        buyFee1 = _fee1;
        buyFee2 = _fee2;
        buyFeeT = buyFee1 + buyFee2;
        require(buyFeeT <= 12, "Must keep fees at 12% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setSellFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        sellFee1 = _fee1;
        sellFee2 = _fee2;
        sellFeeT = sellFee1 + sellFee2;
        require(sellFeeT <= 12, "Must keep fees at 12% or less");
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function exemptFromSwapFees(address account, bool excluded) public onlyOwner {
        wlForFees[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    function changeAddressIsDexPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniV2Pair,
            "The pair cannot be removed from ammPairs"
        );

        SetAsDexPair(pair, value);
    }

    function SetAsDexPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetDexPair(pair, value);
    }

    /// @notice Sets a wallet as the new fee receiver 1 wallet
    /// @param newFeeReceiver1 The new fee receiver 1 wallet
    function changeFeeReceiver1(
        address newFeeReceiver1
    ) external onlyOwner {
        emit addressForProjectFeeUpdated(newFeeReceiver1, addressForProjectFee);
        addressForProjectFee = newFeeReceiver1;
    }

    /// @notice Sets a wallet as the new fee receiver 2 wallet
    /// @param newFeeReceiver2 The new fee receiver 2 wallet
    function changeFeeReceiver2(address newFeeReceiver2) external onlyOwner {
        emit addressForTreasuryFeeUpdated(newFeeReceiver2, addressForTreasuryFee);
        addressForTreasuryFee = newFeeReceiver2;
    }

    function isAddressWhitelistedFromFees(address account) public view returns (bool) {
        return wlForFees[account];
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (earlyLimits) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {
                if (!_trdOpen) {
                    require(
                        wlForFees[from] || wlForFees[to],
                        "Trading is not active."
                    );
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

        if (
            canSwap &&
            swapForFeesEnabled &&
            !duringSwapBack &&
            !ammPairs[from] &&
            !wlForFees[from] &&
            !wlForFees[to]
        ) {
            duringSwapBack = true;

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFeeT > 0) {
                fees = amount.mul(sellFeeT).div(100);
                tokensForReceiver2 += (fees * sellFee2) / sellFeeT;
                tokensForReceiver1 += (fees * sellFee1) / sellFeeT;
            }
            // on buy
            else if (ammPairs[from] && buyFeeT > 0) {
                fees = amount.mul(buyFeeT).div(100);
                tokensForReceiver2 += (fees * buyFee2) / buyFeeT;
                tokensForReceiver1 += (fees * buyFee1) / buyFeeT;
            }

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

            amount -= fees;
        }

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

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

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

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

    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2;
        bool success;

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

        if (contractBalance > maxSwapbackLimit) {
            contractBalance = maxSwapbackLimit;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

        uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap);

        tokensForReceiver1 = 0;
        tokensForReceiver2 = 0;

        (success, ) = address(addressForTreasuryFee).call{value: ethForProject}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"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":"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":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForProjectFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForTreasuryFeeUpdated","type":"event"},{"inputs":[],"name":"_trdOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForProjectFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForTreasuryFee","outputs":[{"internalType":"address","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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"changeAddressIsDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver1","type":"address"}],"name":"changeFeeReceiver1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver2","type":"address"}],"name":"changeFeeReceiver2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMaxSwapbackLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"changeSwapForFeesEnabled","outputs":[],"stateMutability":"nonpayable","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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromSwapFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromTxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAddressWhitelistedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeSameBlockRestriction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smackdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff60a01b191690553480156200003a57600080fd5b506040518060600160405280602b815260200162003c12602b913960408051808201909152600981526829a6a0a1a5a227aba760b91b602082015260036200008383826200136f565b5060046200009282826200136f565b505050620000af620000a96200040160201b60201c565b62000405565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d181600162000457565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014291906200143b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000190573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b691906200143b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a91906200143b565b6001600160a01b031660a08190526200024590600162000457565b60a05162000255906001620004d1565b6b033b2e3c9fd0803ce800000060646200027182600162001483565b6200027d91906200149d565b600a5560646200028f82600162001483565b6200029b91906200149d565b600955612710620002ae82600562001483565b620002ba91906200149d565b6006556064620002cc82600562001483565b620002d891906200149d565b6007556019600f81905560006010819055620002f491620014c0565b600e55605a6012819055600060138190556200031091620014c0565b601155600c80546001600160a01b0319908116710ce52e24480e17a8e1b9bdcbae98a4a36d3e17909155600d805490911633179055620003646200035c6005546001600160a01b031690565b600162000525565b6200037130600162000525565b6200038061dead600162000525565b600c5462000399906001600160a01b0316600162000525565b620003b8620003b06005546001600160a01b031690565b600162000457565b620003c530600162000457565b620003d461dead600162000457565b600c54620003ed906001600160a01b0316600162000457565b620003f93382620005cf565b505062001575565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004a65760405162461bcd60e51b8152602060048201819052602482015260008051602062003c3d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b03163314620005705760405162461bcd60e51b8152602060048201819052602482015260008051602062003c3d83398151915260448201526064016200049d565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620005fb5760405163ec442f0560e01b8152600060048201526024016200049d565b62000609600083836200060d565b5050565b806000036200062957620006248383600062000dc0565b505050565b60085460ff161562000abe576005546001600160a01b038481169116148015906200066257506005546001600160a01b03838116911614155b80156200067757506001600160a01b03821615155b80156200068f57506001600160a01b03821661dead14155b8015620006a65750600554600160a01b900460ff16155b1562000abe57600d54600160a01b900460ff166200074c576001600160a01b03831660009081526016602052604090205460ff1680620006fe57506001600160a01b03821660009081526016602052604090205460ff165b6200074c5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016200049d565b600854610100900460ff161562000860576005546001600160a01b038381169116148015906200079057506080516001600160a01b0316826001600160a01b031614155b8015620007b1575060a0516001600160a01b0316826001600160a01b031614155b156200086057326000908152600b602052604090205443116200084d5760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a4016200049d565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff168015620008a257506001600160a01b03821660009081526017602052604090205460ff16155b156200098157600a548111156200090d5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016200049d565b6009546001600160a01b038316600090815260208190526040902054620009359083620014c0565b11156200097b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200049d565b62000abe565b6001600160a01b03821660009081526018602052604090205460ff168015620009c357506001600160a01b03831660009081526017602052604090205460ff16155b1562000a2f57600a548111156200097b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016200049d565b6001600160a01b03821660009081526017602052604090205460ff1662000abe576009546001600160a01b03831660009081526020819052604090205462000a789083620014c0565b111562000abe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200049d565b306000908152602081905260409020546006548110801590819062000aec5750600554600160a81b900460ff165b801562000b035750600554600160a01b900460ff16155b801562000b2957506001600160a01b03851660009081526018602052604090205460ff16155b801562000b4f57506001600160a01b03851660009081526016602052604090205460ff16155b801562000b7557506001600160a01b03841660009081526016602052604090205460ff16155b1562000ba6576005805460ff60a01b1916600160a01b17905562000b9862000ef3565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168062000bf557506001600160a01b03851660009081526016602052604090205460ff165b1562000bff575060005b6000811562000daa576001600160a01b03861660009081526018602052604090205460ff16801562000c3357506000601154115b1562000cce5760115462000c589060649062000c5190889062001040565b9062001057565b90506011546013548262000c6d919062001483565b62000c7991906200149d565b6015600082825462000c8c9190620014c0565b909155505060115460125462000ca3908362001483565b62000caf91906200149d565b6014600082825462000cc29190620014c0565b9091555062000d879050565b6001600160a01b03871660009081526018602052604090205460ff16801562000cf957506000600e54115b1562000d8757600e5462000d179060649062000c5190889062001040565b9050600e546010548262000d2c919062001483565b62000d3891906200149d565b6015600082825462000d4b9190620014c0565b9091555050600e54600f5462000d62908362001483565b62000d6e91906200149d565b6014600082825462000d819190620014c0565b90915550505b801562000d9b5762000d9b87308362000dc0565b62000da78186620014d6565b94505b62000db787878762000dc0565b50505050505050565b6001600160a01b03831662000def57806002600082825462000de39190620014c0565b9091555062000e639050565b6001600160a01b0383166000908152602081905260409020548181101562000e445760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200049d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000e815760028054829003905562000ea0565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ee691815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145462000f199190620014c0565b9050600082158062000f29575081155b1562000f3457505050565b60075483111562000f455760075492505b4762000f518462001065565b600062000f5f4783620011e0565b9050600062000f7f8562000c51601554856200104060201b90919060201c565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d806000811462000fd9576040519150601f19603f3d011682016040523d82523d6000602084013e62000fde565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d806000811462001030576040519150601f19603f3d011682016040523d82523d6000602084013e62001035565b606091505b505050505050505050565b60006200104e828462001483565b90505b92915050565b60006200104e82846200149d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106200109d576200109d620014ec565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620010fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200112491906200143b565b816001815181106200113a576200113a620014ec565b60200260200101906001600160a01b031690816001600160a01b0316815250506200116f3060805184620011ee60201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b8152600401620011a895949392919062001502565b600060405180830381600087803b158015620011c357600080fd5b505af1158015620011d8573d6000803e3d6000fd5b505050505050565b60006200104e8284620014d6565b6200062483838360016001600160a01b038416620012235760405163e602df0560e01b8152600060048201526024016200049d565b6001600160a01b0383166200124f57604051634a1406b160e11b8152600060048201526024016200049d565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015620012cd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620012c491815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620012fe57607f821691505b6020821081036200131f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062457600081815260208120601f850160051c810160208610156200134e5750805b601f850160051c820191505b81811015620011d8578281556001016200135a565b81516001600160401b038111156200138b576200138b620012d3565b620013a3816200139c8454620012e9565b8462001325565b602080601f831160018114620013db5760008415620013c25750858301515b600019600386901b1c1916600185901b178555620011d8565b600085815260208120601f198616915b828110156200140c57888601518255948401946001909101908401620013eb565b50858210156200142b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200144e57600080fd5b81516001600160a01b03811681146200146657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200105157620010516200146d565b600082620014bb57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200105157620010516200146d565b818103818111156200105157620010516200146d565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620015545784516001600160a01b0316835293830193918301916001016200152d565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a05161264d620015c5600039600081816107210152818161116f015261187901526000818161079e0152818161183b0152818161215901528181612212015261224e015261264d6000f3fe6080604052600436106103035760003560e01c806365e0071911610190578063a457c2d7116100dc578063d026ba4211610095578063ed8a2fda1161006f578063ed8a2fda1461090a578063f2fde38b14610920578063f66d2e1514610940578063fb0ecfa41461096057600080fd5b8063d026ba42146108b5578063dd62ed3e146108ca578063dfd028f0146108ea57600080fd5b8063a457c2d7146107d5578063a72905a2146107f5578063a9059cbb14610825578063aaa1fe4514610845578063bb27b8b814610875578063c72d783e1461089557600080fd5b806376006273116101495780638da5cb5b116101235780638da5cb5b1461075957806390be162814610777578063958c2e521461078c57806395d89b41146107c057600080fd5b806376006273146106f95780638bcea9391461070f5780638c900a711461074357600080fd5b806365e00719146106425780636886ad3e146106585780636ac9a870146106785780636caae8321461069857806370a08231146106ae578063715018a6146106e457600080fd5b80632765cddd1161024f5780633c8463a11161020857806346e97361116101e257806346e97361146105a8578063522ef4c7146105c857806358915a86146105e95780635e92fef61461060957600080fd5b80633c8463a11461055d5780633d56af6b1461057357806345d83d4a1461058957600080fd5b80632765cddd146104bf57806329563769146104d5578063313ce567146104eb57806335c094a414610507578063383041de1461051d578063395093511461053d57600080fd5b8063106d0583116102bc57806318160ddd1161029657806318160ddd1461044857806318c39fb31461045d57806323b872dd1461047f5780632548dd3e1461049f57600080fd5b8063106d0583146103ee578063159a522014610412578063171a65861461042857600080fd5b80630106aaef1461030f57806304571cdd14610339578063061231601461037157806306fdde031461039257806307b1faea146103b4578063095ea7b3146103ce57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610980565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50600c54610359906001600160a01b031681565b6040516001600160a01b039091168152602001610330565b34801561037d57600080fd5b50600d5461032490600160a01b900460ff1681565b34801561039e57600080fd5b506103a76109c6565b60405161033091906122ce565b3480156103c057600080fd5b506008546103249060ff1681565b3480156103da57600080fd5b506103246103e9366004612331565b610a58565b3480156103fa57600080fd5b50610404600f5481565b604051908152602001610330565b34801561041e57600080fd5b5061040460125481565b34801561043457600080fd5b5061032461044336600461235d565b610a72565b34801561045457600080fd5b50600254610404565b34801561046957600080fd5b5061047d610478366004612376565b610c2d565b005b34801561048b57600080fd5b5061032461049a366004612393565b610cb4565b3480156104ab57600080fd5b5061047d6104ba366004612376565b610cd8565b3480156104cb57600080fd5b5061040460105481565b3480156104e157600080fd5b5061040460135481565b3480156104f757600080fd5b5060405160128152602001610330565b34801561051357600080fd5b5061040460145481565b34801561052957600080fd5b5061032461053836600461235d565b610d5f565b34801561054957600080fd5b50610324610558366004612331565b610e04565b34801561056957600080fd5b5061040460095481565b34801561057f57600080fd5b5061040460155481565b34801561059557600080fd5b5060085461032490610100900460ff1681565b3480156105b457600080fd5b50600d54610359906001600160a01b031681565b3480156105d457600080fd5b5060055461032490600160a81b900460ff1681565b3480156105f557600080fd5b5061047d61060436600461235d565b610e26565b34801561061557600080fd5b50610324610624366004612376565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561064e57600080fd5b5061040460075481565b34801561066457600080fd5b5061047d6106733660046123e4565b610ed2565b34801561068457600080fd5b5061047d610693366004612419565b610f27565b3480156106a457600080fd5b50610404600a5481565b3480156106ba57600080fd5b506104046106c9366004612376565b6001600160a01b031660009081526020819052604090205490565b3480156106f057600080fd5b5061047d610fbe565b34801561070557600080fd5b5061040460065481565b34801561071b57600080fd5b506103597f000000000000000000000000000000000000000000000000000000000000000081565b34801561074f57600080fd5b50610404600e5481565b34801561076557600080fd5b506005546001600160a01b0316610359565b34801561078357600080fd5b5061047d610ff4565b34801561079857600080fd5b506103597f000000000000000000000000000000000000000000000000000000000000000081565b3480156107cc57600080fd5b506103a7611046565b3480156107e157600080fd5b506103246107f0366004612331565b611055565b34801561080157600080fd5b50610324610810366004612376565b60186020526000908152604090205460ff1681565b34801561083157600080fd5b50610324610840366004612331565b6110ac565b34801561085157600080fd5b50610324610860366004612376565b60176020526000908152604090205460ff1681565b34801561088157600080fd5b5061047d6108903660046123e4565b6110ba565b3480156108a157600080fd5b5061047d6108b03660046123e4565b611143565b3480156108c157600080fd5b50610324611209565b3480156108d657600080fd5b506104046108e536600461243b565b611247565b3480156108f657600080fd5b5061047d61090536600461235d565b611272565b34801561091657600080fd5b5061040460115481565b34801561092c57600080fd5b5061047d61093b366004612376565b611322565b34801561094c57600080fd5b5061047d61095b366004612474565b6113bd565b34801561096c57600080fd5b5061047d61097b366004612419565b611405565b6005546000906001600160a01b031633146109b65760405162461bcd60e51b81526004016109ad9061248f565b60405180910390fd5b506008805460ff19169055600190565b6060600380546109d5906124c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a01906124c4565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b600033610a66818585611498565b60019150505b92915050565b6005546000906001600160a01b03163314610a9f5760405162461bcd60e51b81526004016109ad9061248f565b620186a0610aac60025490565b610ab69190612514565b821015610b235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109ad565b620186a0610b3060025490565b610b3c906101f4612536565b610b469190612514565b821115610bb25760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109ad565b600754821115610c1f5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b60648201526084016109ad565b50600681905560015b919050565b6005546001600160a01b03163314610c575760405162461bcd60e51b81526004016109ad9061248f565b600d546040516001600160a01b03918216918316907f5a2a8de49950f56035905047a5163910ea79ce591f658de17cd3485c00a8307290600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610cc28582856114aa565b610ccd858585611510565b506001949350505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b81526004016109ad9061248f565b600c546040516001600160a01b03918216918316907ff8334e6b387fa891393a5f4800c21ca07baeeee05f794c24ade54f6a847bb67790600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610d8c5760405162461bcd60e51b81526004016109ad9061248f565b600654821015610dfb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273081b5a5b94ddd85c189858dad51c995cda1bdb1960621b60648201526084016109ad565b50600755600190565b600033610a66818585610e178383611247565b610e21919061254d565b611498565b6005546001600160a01b03163314610e505760405162461bcd60e51b81526004016109ad9061248f565b6002811015610eac5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b60648201526084016109ad565b6103e8610eb860025490565b610ec29083612536565b610ecc9190612514565b600a5550565b6005546001600160a01b03163314610efc5760405162461bcd60e51b81526004016109ad9061248f565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016109ad9061248f565b60128290556013819055610f65818361254d565b6011819055600c1015610fba5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c65737300000060448201526064016109ad565b5050565b6005546001600160a01b03163314610fe85760405162461bcd60e51b81526004016109ad9061248f565b610ff2600061156f565b565b6005546001600160a01b0316331461101e5760405162461bcd60e51b81526004016109ad9061248f565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6060600480546109d5906124c4565b600033816110638286611247565b90508381101561109f57604051632983c0c360e21b81526001600160a01b038616600482015260248101829052604481018590526064016109ad565b610ccd8286868403611498565b600033610a66818585611510565b6005546001600160a01b031633146110e45760405162461bcd60e51b81526004016109ad9061248f565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b0316331461116d5760405162461bcd60e51b81526004016109ad9061248f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111ff5760405162461bcd60e51b815260206004820152602860248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d20604482015267616d6d506169727360c01b60648201526084016109ad565b610fba82826115c1565b6005546000906001600160a01b031633146112365760405162461bcd60e51b81526004016109ad9061248f565b506008805461ff0019169055600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461129c5760405162461bcd60e51b81526004016109ad9061248f565b60058110156112fc5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b60648201526084016109ad565b6103e861130860025490565b6113129083612536565b61131c9190612514565b60095550565b6005546001600160a01b0316331461134c5760405162461bcd60e51b81526004016109ad9061248f565b6001600160a01b0381166113b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ad565b6113ba8161156f565b50565b6005546001600160a01b031633146113e75760405162461bcd60e51b81526004016109ad9061248f565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b0316331461142f5760405162461bcd60e51b81526004016109ad9061248f565b600f8290556010819055611443818361254d565b600e819055600c1015610fba5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c65737300000060448201526064016109ad565b6114a58383836001611615565b505050565b60006114b68484611247565b9050600019811461150a57818110156114fb57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016109ad565b61150a84848484036000611615565b50505050565b6001600160a01b03831661153a57604051634b637e8f60e11b8152600060048201526024016109ad565b6001600160a01b0382166115645760405163ec442f0560e01b8152600060048201526024016109ad565b6114a58383836116ea565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661163f5760405163e602df0560e01b8152600060048201526024016109ad565b6001600160a01b03831661166957604051634a1406b160e11b8152600060048201526024016109ad565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561150a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116dc91815260200190565b60405180910390a350505050565b806000036116fe576114a583836000611e7c565b60085460ff1615611ba6576005546001600160a01b0384811691161480159061173557506005546001600160a01b03838116911614155b801561174957506001600160a01b03821615155b801561176057506001600160a01b03821661dead14155b80156117765750600554600160a01b900460ff16155b15611ba657600d54600160a01b900460ff16611810576001600160a01b03831660009081526016602052604090205460ff16806117cb57506001600160a01b03821660009081526016602052604090205460ff165b6118105760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ad565b600854610100900460ff161561195a576005546001600160a01b0383811691161480159061187057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156118ae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561195a57326000908152600b602052604090205443116119475760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a4016109ad565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff16801561199b57506001600160a01b03821660009081526017602052604090205460ff16155b15611a7257600a54811115611a035760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016109ad565b6009546001600160a01b038316600090815260208190526040902054611a29908361254d565b1115611a6d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ad565b611ba6565b6001600160a01b03821660009081526018602052604090205460ff168015611ab357506001600160a01b03831660009081526017602052604090205460ff16155b15611b1c57600a54811115611a6d5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016109ad565b6001600160a01b03821660009081526017602052604090205460ff16611ba6576009546001600160a01b038316600090815260208190526040902054611b62908361254d565b1115611ba65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ad565b3060009081526020819052604090205460065481108015908190611bd35750600554600160a81b900460ff165b8015611be95750600554600160a01b900460ff16155b8015611c0e57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c3357506001600160a01b03851660009081526016602052604090205460ff16155b8015611c5857506001600160a01b03841660009081526016602052604090205460ff16155b15611c86576005805460ff60a01b1916600160a01b179055611c78611fa6565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611cd457506001600160a01b03851660009081526016602052604090205460ff165b15611cdd575060005b60008115611e68576001600160a01b03861660009081526018602052604090205460ff168015611d0f57506000601154115b15611d9d57611d346064611d2e601154886120e390919063ffffffff16565b906120f6565b905060115460135482611d479190612536565b611d519190612514565b60156000828254611d62919061254d565b9091555050601154601254611d779083612536565b611d819190612514565b60146000828254611d92919061254d565b90915550611e4a9050565b6001600160a01b03871660009081526018602052604090205460ff168015611dc757506000600e54115b15611e4a57611de66064611d2e600e54886120e390919063ffffffff16565b9050600e5460105482611df99190612536565b611e039190612514565b60156000828254611e14919061254d565b9091555050600e54600f54611e299083612536565b611e339190612514565b60146000828254611e44919061254d565b90915550505b8015611e5b57611e5b873083611e7c565b611e658186612560565b94505b611e73878787611e7c565b50505050505050565b6001600160a01b038316611ea7578060026000828254611e9c919061254d565b90915550611f199050565b6001600160a01b03831660009081526020819052604090205481811015611efa5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016109ad565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611f3557600280548290039055611f54565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f9991815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601554601454611fca919061254d565b90506000821580611fd9575081155b15611fe357505050565b600754831115611ff35760075492505b47611ffd84612102565b600061200947836122c2565b9050600061202685611d2e601554856120e390919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d806000811461207e576040519150601f19603f3d011682016040523d82523d6000602084013e612083565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d80600081146120d3576040519150601f19603f3d011682016040523d82523d6000602084013e6120d8565b606091505b505050505050505050565b60006120ef8284612536565b9392505050565b60006120ef8284612514565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061213757612137612573565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d99190612589565b816001815181106121ec576121ec612573565b60200260200101906001600160a01b031690816001600160a01b031681525050612237307f000000000000000000000000000000000000000000000000000000000000000084611498565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061228c9085906000908690309042906004016125a6565b600060405180830381600087803b1580156122a657600080fd5b505af11580156122ba573d6000803e3d6000fd5b505050505050565b60006120ef8284612560565b600060208083528351808285015260005b818110156122fb578581018301518582016040015282016122df565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113ba57600080fd5b6000806040838503121561234457600080fd5b823561234f8161231c565b946020939093013593505050565b60006020828403121561236f57600080fd5b5035919050565b60006020828403121561238857600080fd5b81356120ef8161231c565b6000806000606084860312156123a857600080fd5b83356123b38161231c565b925060208401356123c38161231c565b929592945050506040919091013590565b80358015158114610c2857600080fd5b600080604083850312156123f757600080fd5b82356124028161231c565b9150612410602084016123d4565b90509250929050565b6000806040838503121561242c57600080fd5b50508035926020909101359150565b6000806040838503121561244e57600080fd5b82356124598161231c565b915060208301356124698161231c565b809150509250929050565b60006020828403121561248657600080fd5b6120ef826123d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806124d857607f821691505b6020821081036124f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261253157634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610a6c57610a6c6124fe565b80820180821115610a6c57610a6c6124fe565b81810381811115610a6c57610a6c6124fe565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561259b57600080fd5b81516120ef8161231c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125f65784516001600160a01b0316835293830193918301916001016125d1565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204bc5eedecf96d9c07be07cc6b09b24d27bd01c1305bb574cca0ec75a2e839e0b64736f6c6343000813003353746f6e65436f6c64526f636b43656e614d6163686f4d634d61686f6e536d61636b646f776e3130496e754f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103035760003560e01c806365e0071911610190578063a457c2d7116100dc578063d026ba4211610095578063ed8a2fda1161006f578063ed8a2fda1461090a578063f2fde38b14610920578063f66d2e1514610940578063fb0ecfa41461096057600080fd5b8063d026ba42146108b5578063dd62ed3e146108ca578063dfd028f0146108ea57600080fd5b8063a457c2d7146107d5578063a72905a2146107f5578063a9059cbb14610825578063aaa1fe4514610845578063bb27b8b814610875578063c72d783e1461089557600080fd5b806376006273116101495780638da5cb5b116101235780638da5cb5b1461075957806390be162814610777578063958c2e521461078c57806395d89b41146107c057600080fd5b806376006273146106f95780638bcea9391461070f5780638c900a711461074357600080fd5b806365e00719146106425780636886ad3e146106585780636ac9a870146106785780636caae8321461069857806370a08231146106ae578063715018a6146106e457600080fd5b80632765cddd1161024f5780633c8463a11161020857806346e97361116101e257806346e97361146105a8578063522ef4c7146105c857806358915a86146105e95780635e92fef61461060957600080fd5b80633c8463a11461055d5780633d56af6b1461057357806345d83d4a1461058957600080fd5b80632765cddd146104bf57806329563769146104d5578063313ce567146104eb57806335c094a414610507578063383041de1461051d578063395093511461053d57600080fd5b8063106d0583116102bc57806318160ddd1161029657806318160ddd1461044857806318c39fb31461045d57806323b872dd1461047f5780632548dd3e1461049f57600080fd5b8063106d0583146103ee578063159a522014610412578063171a65861461042857600080fd5b80630106aaef1461030f57806304571cdd14610339578063061231601461037157806306fdde031461039257806307b1faea146103b4578063095ea7b3146103ce57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610980565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50600c54610359906001600160a01b031681565b6040516001600160a01b039091168152602001610330565b34801561037d57600080fd5b50600d5461032490600160a01b900460ff1681565b34801561039e57600080fd5b506103a76109c6565b60405161033091906122ce565b3480156103c057600080fd5b506008546103249060ff1681565b3480156103da57600080fd5b506103246103e9366004612331565b610a58565b3480156103fa57600080fd5b50610404600f5481565b604051908152602001610330565b34801561041e57600080fd5b5061040460125481565b34801561043457600080fd5b5061032461044336600461235d565b610a72565b34801561045457600080fd5b50600254610404565b34801561046957600080fd5b5061047d610478366004612376565b610c2d565b005b34801561048b57600080fd5b5061032461049a366004612393565b610cb4565b3480156104ab57600080fd5b5061047d6104ba366004612376565b610cd8565b3480156104cb57600080fd5b5061040460105481565b3480156104e157600080fd5b5061040460135481565b3480156104f757600080fd5b5060405160128152602001610330565b34801561051357600080fd5b5061040460145481565b34801561052957600080fd5b5061032461053836600461235d565b610d5f565b34801561054957600080fd5b50610324610558366004612331565b610e04565b34801561056957600080fd5b5061040460095481565b34801561057f57600080fd5b5061040460155481565b34801561059557600080fd5b5060085461032490610100900460ff1681565b3480156105b457600080fd5b50600d54610359906001600160a01b031681565b3480156105d457600080fd5b5060055461032490600160a81b900460ff1681565b3480156105f557600080fd5b5061047d61060436600461235d565b610e26565b34801561061557600080fd5b50610324610624366004612376565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561064e57600080fd5b5061040460075481565b34801561066457600080fd5b5061047d6106733660046123e4565b610ed2565b34801561068457600080fd5b5061047d610693366004612419565b610f27565b3480156106a457600080fd5b50610404600a5481565b3480156106ba57600080fd5b506104046106c9366004612376565b6001600160a01b031660009081526020819052604090205490565b3480156106f057600080fd5b5061047d610fbe565b34801561070557600080fd5b5061040460065481565b34801561071b57600080fd5b506103597f000000000000000000000000992c36112c0c37e8e4b44f66b5929c74b0d9187581565b34801561074f57600080fd5b50610404600e5481565b34801561076557600080fd5b506005546001600160a01b0316610359565b34801561078357600080fd5b5061047d610ff4565b34801561079857600080fd5b506103597f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156107cc57600080fd5b506103a7611046565b3480156107e157600080fd5b506103246107f0366004612331565b611055565b34801561080157600080fd5b50610324610810366004612376565b60186020526000908152604090205460ff1681565b34801561083157600080fd5b50610324610840366004612331565b6110ac565b34801561085157600080fd5b50610324610860366004612376565b60176020526000908152604090205460ff1681565b34801561088157600080fd5b5061047d6108903660046123e4565b6110ba565b3480156108a157600080fd5b5061047d6108b03660046123e4565b611143565b3480156108c157600080fd5b50610324611209565b3480156108d657600080fd5b506104046108e536600461243b565b611247565b3480156108f657600080fd5b5061047d61090536600461235d565b611272565b34801561091657600080fd5b5061040460115481565b34801561092c57600080fd5b5061047d61093b366004612376565b611322565b34801561094c57600080fd5b5061047d61095b366004612474565b6113bd565b34801561096c57600080fd5b5061047d61097b366004612419565b611405565b6005546000906001600160a01b031633146109b65760405162461bcd60e51b81526004016109ad9061248f565b60405180910390fd5b506008805460ff19169055600190565b6060600380546109d5906124c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a01906124c4565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b600033610a66818585611498565b60019150505b92915050565b6005546000906001600160a01b03163314610a9f5760405162461bcd60e51b81526004016109ad9061248f565b620186a0610aac60025490565b610ab69190612514565b821015610b235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109ad565b620186a0610b3060025490565b610b3c906101f4612536565b610b469190612514565b821115610bb25760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109ad565b600754821115610c1f5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b60648201526084016109ad565b50600681905560015b919050565b6005546001600160a01b03163314610c575760405162461bcd60e51b81526004016109ad9061248f565b600d546040516001600160a01b03918216918316907f5a2a8de49950f56035905047a5163910ea79ce591f658de17cd3485c00a8307290600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610cc28582856114aa565b610ccd858585611510565b506001949350505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b81526004016109ad9061248f565b600c546040516001600160a01b03918216918316907ff8334e6b387fa891393a5f4800c21ca07baeeee05f794c24ade54f6a847bb67790600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610d8c5760405162461bcd60e51b81526004016109ad9061248f565b600654821015610dfb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273081b5a5b94ddd85c189858dad51c995cda1bdb1960621b60648201526084016109ad565b50600755600190565b600033610a66818585610e178383611247565b610e21919061254d565b611498565b6005546001600160a01b03163314610e505760405162461bcd60e51b81526004016109ad9061248f565b6002811015610eac5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b60648201526084016109ad565b6103e8610eb860025490565b610ec29083612536565b610ecc9190612514565b600a5550565b6005546001600160a01b03163314610efc5760405162461bcd60e51b81526004016109ad9061248f565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016109ad9061248f565b60128290556013819055610f65818361254d565b6011819055600c1015610fba5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c65737300000060448201526064016109ad565b5050565b6005546001600160a01b03163314610fe85760405162461bcd60e51b81526004016109ad9061248f565b610ff2600061156f565b565b6005546001600160a01b0316331461101e5760405162461bcd60e51b81526004016109ad9061248f565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6060600480546109d5906124c4565b600033816110638286611247565b90508381101561109f57604051632983c0c360e21b81526001600160a01b038616600482015260248101829052604481018590526064016109ad565b610ccd8286868403611498565b600033610a66818585611510565b6005546001600160a01b031633146110e45760405162461bcd60e51b81526004016109ad9061248f565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b0316331461116d5760405162461bcd60e51b81526004016109ad9061248f565b7f000000000000000000000000992c36112c0c37e8e4b44f66b5929c74b0d918756001600160a01b0316826001600160a01b0316036111ff5760405162461bcd60e51b815260206004820152602860248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d20604482015267616d6d506169727360c01b60648201526084016109ad565b610fba82826115c1565b6005546000906001600160a01b031633146112365760405162461bcd60e51b81526004016109ad9061248f565b506008805461ff0019169055600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461129c5760405162461bcd60e51b81526004016109ad9061248f565b60058110156112fc5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b60648201526084016109ad565b6103e861130860025490565b6113129083612536565b61131c9190612514565b60095550565b6005546001600160a01b0316331461134c5760405162461bcd60e51b81526004016109ad9061248f565b6001600160a01b0381166113b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ad565b6113ba8161156f565b50565b6005546001600160a01b031633146113e75760405162461bcd60e51b81526004016109ad9061248f565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b0316331461142f5760405162461bcd60e51b81526004016109ad9061248f565b600f8290556010819055611443818361254d565b600e819055600c1015610fba5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c65737300000060448201526064016109ad565b6114a58383836001611615565b505050565b60006114b68484611247565b9050600019811461150a57818110156114fb57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016109ad565b61150a84848484036000611615565b50505050565b6001600160a01b03831661153a57604051634b637e8f60e11b8152600060048201526024016109ad565b6001600160a01b0382166115645760405163ec442f0560e01b8152600060048201526024016109ad565b6114a58383836116ea565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661163f5760405163e602df0560e01b8152600060048201526024016109ad565b6001600160a01b03831661166957604051634a1406b160e11b8152600060048201526024016109ad565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561150a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116dc91815260200190565b60405180910390a350505050565b806000036116fe576114a583836000611e7c565b60085460ff1615611ba6576005546001600160a01b0384811691161480159061173557506005546001600160a01b03838116911614155b801561174957506001600160a01b03821615155b801561176057506001600160a01b03821661dead14155b80156117765750600554600160a01b900460ff16155b15611ba657600d54600160a01b900460ff16611810576001600160a01b03831660009081526016602052604090205460ff16806117cb57506001600160a01b03821660009081526016602052604090205460ff165b6118105760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ad565b600854610100900460ff161561195a576005546001600160a01b0383811691161480159061187057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156118ae57507f000000000000000000000000992c36112c0c37e8e4b44f66b5929c74b0d918756001600160a01b0316826001600160a01b031614155b1561195a57326000908152600b602052604090205443116119475760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a4016109ad565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff16801561199b57506001600160a01b03821660009081526017602052604090205460ff16155b15611a7257600a54811115611a035760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016109ad565b6009546001600160a01b038316600090815260208190526040902054611a29908361254d565b1115611a6d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ad565b611ba6565b6001600160a01b03821660009081526018602052604090205460ff168015611ab357506001600160a01b03831660009081526017602052604090205460ff16155b15611b1c57600a54811115611a6d5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016109ad565b6001600160a01b03821660009081526017602052604090205460ff16611ba6576009546001600160a01b038316600090815260208190526040902054611b62908361254d565b1115611ba65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ad565b3060009081526020819052604090205460065481108015908190611bd35750600554600160a81b900460ff165b8015611be95750600554600160a01b900460ff16155b8015611c0e57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c3357506001600160a01b03851660009081526016602052604090205460ff16155b8015611c5857506001600160a01b03841660009081526016602052604090205460ff16155b15611c86576005805460ff60a01b1916600160a01b179055611c78611fa6565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611cd457506001600160a01b03851660009081526016602052604090205460ff165b15611cdd575060005b60008115611e68576001600160a01b03861660009081526018602052604090205460ff168015611d0f57506000601154115b15611d9d57611d346064611d2e601154886120e390919063ffffffff16565b906120f6565b905060115460135482611d479190612536565b611d519190612514565b60156000828254611d62919061254d565b9091555050601154601254611d779083612536565b611d819190612514565b60146000828254611d92919061254d565b90915550611e4a9050565b6001600160a01b03871660009081526018602052604090205460ff168015611dc757506000600e54115b15611e4a57611de66064611d2e600e54886120e390919063ffffffff16565b9050600e5460105482611df99190612536565b611e039190612514565b60156000828254611e14919061254d565b9091555050600e54600f54611e299083612536565b611e339190612514565b60146000828254611e44919061254d565b90915550505b8015611e5b57611e5b873083611e7c565b611e658186612560565b94505b611e73878787611e7c565b50505050505050565b6001600160a01b038316611ea7578060026000828254611e9c919061254d565b90915550611f199050565b6001600160a01b03831660009081526020819052604090205481811015611efa5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016109ad565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611f3557600280548290039055611f54565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f9991815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601554601454611fca919061254d565b90506000821580611fd9575081155b15611fe357505050565b600754831115611ff35760075492505b47611ffd84612102565b600061200947836122c2565b9050600061202685611d2e601554856120e390919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d806000811461207e576040519150601f19603f3d011682016040523d82523d6000602084013e612083565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d80600081146120d3576040519150601f19603f3d011682016040523d82523d6000602084013e6120d8565b606091505b505050505050505050565b60006120ef8284612536565b9392505050565b60006120ef8284612514565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061213757612137612573565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121d99190612589565b816001815181106121ec576121ec612573565b60200260200101906001600160a01b031690816001600160a01b031681525050612237307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611498565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061228c9085906000908690309042906004016125a6565b600060405180830381600087803b1580156122a657600080fd5b505af11580156122ba573d6000803e3d6000fd5b505050505050565b60006120ef8284612560565b600060208083528351808285015260005b818110156122fb578581018301518582016040015282016122df565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113ba57600080fd5b6000806040838503121561234457600080fd5b823561234f8161231c565b946020939093013593505050565b60006020828403121561236f57600080fd5b5035919050565b60006020828403121561238857600080fd5b81356120ef8161231c565b6000806000606084860312156123a857600080fd5b83356123b38161231c565b925060208401356123c38161231c565b929592945050506040919091013590565b80358015158114610c2857600080fd5b600080604083850312156123f757600080fd5b82356124028161231c565b9150612410602084016123d4565b90509250929050565b6000806040838503121561242c57600080fd5b50508035926020909101359150565b6000806040838503121561244e57600080fd5b82356124598161231c565b915060208301356124698161231c565b809150509250929050565b60006020828403121561248657600080fd5b6120ef826123d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806124d857607f821691505b6020821081036124f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261253157634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610a6c57610a6c6124fe565b80820180821115610a6c57610a6c6124fe565b81810381811115610a6c57610a6c6124fe565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561259b57600080fd5b81516120ef8161231c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125f65784516001600160a01b0316835293830193918301916001016125d1565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204bc5eedecf96d9c07be07cc6b09b24d27bd01c1305bb574cca0ec75a2e839e0b64736f6c63430008130033

Deployed Bytecode Sourcemap

26353:14697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30323:120;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;30323:120:0;;;;;;;;26989:35;;;;;;;;;;-1:-1:-1;26989:35:0;;;;-1:-1:-1;;;;;26989:35:0;;;;;;-1:-1:-1;;;;;370:32:1;;;352:51;;340:2;325:18;26989:35:0;206:203:1;27076:28:0;;;;;;;;;;-1:-1:-1;27076:28:0;;;;-1:-1:-1;;;27076:28:0;;;;;;12823:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26718:30::-;;;;;;;;;;-1:-1:-1;26718:30:0;;;;;;;;15116:190;;;;;;;;;;-1:-1:-1;15116:190:0;;;;;:::i;:::-;;:::i;27142:22::-;;;;;;;;;;;;;;;;;;;1569:25:1;;;1557:2;1542:18;27142:22:0;1423:177:1;27232:23:0;;;;;;;;;;;;;;;;30653:621;;;;;;;;;;-1:-1:-1;30653:621:0;;;;;:::i;:::-;;:::i;13925:99::-;;;;;;;;;;-1:-1:-1;14004:12:0;;13925:99;;35068:214;;;;;;;;;;-1:-1:-1;35068:214:0;;;;;:::i;:::-;;:::i;:::-;;15884:249;;;;;;;;;;-1:-1:-1;15884:249:0;;;;;:::i;:::-;;:::i;34707:227::-;;;;;;;;;;-1:-1:-1;34707:227:0;;;;;:::i;:::-;;:::i;27171:22::-;;;;;;;;;;;;;;;;27262:23;;;;;;;;;;;;;;;;13776:84;;;;;;;;;;-1:-1:-1;13776:84:0;;13850:2;2645:36:1;;2633:2;2618:18;13776:84:0;2503:184:1;27294:33:0;;;;;;;;;;;;;;;;31282:315;;;;;;;;;;-1:-1:-1;31282:315:0;;;;;:::i;:::-;;:::i;16542:238::-;;;;;;;;;;-1:-1:-1;16542:238:0;;;;;:::i;:::-;;:::i;26791:26::-;;;;;;;;;;;;;;;;27334:33;;;;;;;;;;;;;;;;26755:29;;;;;;;;;;-1:-1:-1;26755:29:0;;;;;;;;;;;27031:36;;;;;;;;;;-1:-1:-1;27031:36:0;;;;-1:-1:-1;;;;;27031:36:0;;;26574:38;;;;;;;;;;-1:-1:-1;26574:38:0;;;;-1:-1:-1;;;26574:38:0;;;;;;31755:200;;;;;;;;;;-1:-1:-1;31755:200:0;;;;;:::i;:::-;;:::i;35290:126::-;;;;;;;;;;-1:-1:-1;35290:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35390:18:0;35366:4;35390:18;;;:9;:18;;;;;;;;;35290:126;26660:31;;;;;;;;;;;;;;;;32473:149;;;;;;;;;;-1:-1:-1;32473:149:0;;;;;:::i;:::-;;:::i;33414:264::-;;;;;;;;;;-1:-1:-1;33414:264:0;;;;;:::i;:::-;;:::i;26824:22::-;;;;;;;;;;;;;;;;14087:118;;;;;;;;;;-1:-1:-1;14087:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14179:18:0;14152:7;14179:18;;;;;;;;;;;;14087:118;24984:103;;;;;;;;;;;;;:::i;26619:34::-;;;;;;;;;;;;;;;;26480;;;;;;;;;;;;;;;27113:22;;;;;;;;;;;;;;;;24333:87;;;;;;;;;;-1:-1:-1;24406:6:0;;-1:-1:-1;;;;;24406:6:0;24333:87;;30138:110;;;;;;;;;;;;;:::i;26432:41::-;;;;;;;;;;;;;;;13033:95;;;;;;;;;;;;;:::i;17468:504::-;;;;;;;;;;-1:-1:-1;17468:504:0;;;;;:::i;:::-;;:::i;27714:40::-;;;;;;;;;;-1:-1:-1;27714:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14410:182;;;;;;;;;;-1:-1:-1;14410:182:0;;;;;:::i;:::-;;:::i;27506:50::-;;;;;;;;;;-1:-1:-1;27506:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33845:183;;;;;;;;;;-1:-1:-1;33845:183:0;;;;;:::i;:::-;;:::i;34163:264::-;;;;;;;;;;-1:-1:-1;34163:264:0;;;;;:::i;:::-;;:::i;30514:131::-;;;;;;;;;;;;;:::i;14655:142::-;;;;;;;;;;-1:-1:-1;14655:142:0;;;;;:::i;:::-;;:::i;32080:207::-;;;;;;;;;;-1:-1:-1;32080:207:0;;;;;:::i;:::-;;:::i;27202:23::-;;;;;;;;;;;;;;;;25242:238;;;;;;;;;;-1:-1:-1;25242:238:0;;;;;:::i;:::-;;:::i;32740:114::-;;;;;;;;;;-1:-1:-1;32740:114:0;;;;;:::i;:::-;;:::i;33005:257::-;;;;;;;;;;-1:-1:-1;33005:257:0;;;;;:::i;:::-;;:::i;30323:120::-;24406:6;;30377:4;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;30394:11:0::1;:19:::0;;-1:-1:-1;;30394:19:0::1;::::0;;;30323:120;:::o;12823:91::-;12868:13;12901:5;12894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12823:91;:::o;15116:190::-;15189:4;9992:10;15245:31;9992:10;15261:7;15270:5;15245:8;:31::i;:::-;15294:4;15287:11;;;15116:190;;;;;:::o;30653:621::-;24406:6;;30751:4;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;30819:6:::1;30803:13;14004:12:::0;;;13925:99;30803:13:::1;:22;;;;:::i;:::-;30790:9;:35;;30768:138;;;::::0;-1:-1:-1;;;30768:138:0;;5539:2:1;30768:138:0::1;::::0;::::1;5521:21:1::0;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;-1:-1:-1;;;5668:18:1;;;5661:51;5729:19;;30768:138:0::1;5337:417:1::0;30768:138:0::1;30976:6;30959:13;14004:12:::0;;;13925:99;30959:13:::1;30953:19;::::0;:3:::1;:19;:::i;:::-;30952:30;;;;:::i;:::-;30939:9;:43;;30917:145;;;::::0;-1:-1:-1;;;30917:145:0;;6134:2:1;30917:145:0::1;::::0;::::1;6116:21:1::0;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;-1:-1:-1;;;6263:18:1;;;6256:50;6323:19;;30917:145:0::1;5932:416:1::0;30917:145:0::1;31108:16;;31095:9;:29;;31073:129;;;::::0;-1:-1:-1;;;31073:129:0;;6555:2:1;31073:129:0::1;::::0;::::1;6537:21:1::0;6594:2;6574:18;;;6567:30;6633:34;6613:18;;;6606:62;-1:-1:-1;;;6684:18:1;;;6677:48;6742:19;;31073:129:0::1;6353:414:1::0;31073:129:0::1;-1:-1:-1::0;31213:19:0::1;:31:::0;;;31262:4:::1;24624:1;30653:621:::0;;;:::o;35068:214::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;35202:21:::1;::::0;35156:68:::1;::::0;-1:-1:-1;;;;;35202:21:0;;::::1;::::0;35156:68;::::1;::::0;::::1;::::0;35202:21:::1;::::0;35156:68:::1;35235:21;:39:::0;;-1:-1:-1;;;;;;35235:39:0::1;-1:-1:-1::0;;;;;35235:39:0;;;::::1;::::0;;;::::1;::::0;;35068:214::o;15884:249::-;15971:4;9992:10;16029:37;16045:4;9992:10;16060:5;16029:15;:37::i;:::-;16077:26;16087:4;16093:2;16097:5;16077:9;:26::i;:::-;-1:-1:-1;16121:4:0;;15884:249;-1:-1:-1;;;;15884:249:0:o;34707:227::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;34856:20:::1;::::0;34811:66:::1;::::0;-1:-1:-1;;;;;34856:20:0;;::::1;::::0;34811:66;::::1;::::0;::::1;::::0;34856:20:::1;::::0;34811:66:::1;34888:20;:38:::0;;-1:-1:-1;;;;;;34888:38:0::1;-1:-1:-1::0;;;;;34888:38:0;;;::::1;::::0;;;::::1;::::0;;34707:227::o;31282:315::-;24406:6;;31377:4;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;31429:19:::1;;31416:9;:32;;31394:134;;;::::0;-1:-1:-1;;;31394:134:0;;6974:2:1;31394:134:0::1;::::0;::::1;6956:21:1::0;7013:2;6993:18;;;6986:30;7052:34;7032:18;;;7025:62;-1:-1:-1;;;7103:18:1;;;7096:50;7163:19;;31394:134:0::1;6772:416:1::0;31394:134:0::1;-1:-1:-1::0;31539:16:0::1;:28:::0;31585:4:::1;::::0;31282:315::o;16542:238::-;16630:4;9992:10;16686:64;9992:10;16702:7;16739:10;16711:25;9992:10;16702:7;16711:9;:25::i;:::-;:38;;;;:::i;:::-;16686:8;:64::i;31755:200::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;31855:1:::1;31845:6;:11;;31837:58;;;::::0;-1:-1:-1;;;31837:58:0;;7525:2:1;31837:58:0::1;::::0;::::1;7507:21:1::0;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:32;7696:19;;31837:58:0::1;7323:398:1::0;31837:58:0::1;31943:4;31926:13;14004:12:::0;;;13925:99;31926:13:::1;31917:22;::::0;:6;:22:::1;:::i;:::-;31916:31;;;;:::i;:::-;31906:7;:41:::0;-1:-1:-1;31755:200:0:o;32473:149::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32581:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32581:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32473:149::o;33414:264::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;33519:8:::1;:16:::0;;;33546:8:::1;:16:::0;;;33584:19:::1;33557:5:::0;33530;33584:19:::1;:::i;:::-;33573:8;:30:::0;;;33634:2:::1;-1:-1:-1::0;33622:14:0::1;33614:56;;;::::0;-1:-1:-1;;;33614:56:0;;7928:2:1;33614:56:0::1;::::0;::::1;7910:21:1::0;7967:2;7947:18;;;7940:30;8006:31;7986:18;;;7979:59;8055:18;;33614:56:0::1;7726:353:1::0;33614:56:0::1;33414:264:::0;;:::o;24984:103::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;25049:30:::1;25076:1;25049:18;:30::i;:::-;24984:103::o:0;30138:110::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;30189:8:::1;:15:::0;;-1:-1:-1;;;;30189:15:0::1;-1:-1:-1::0;;;30189:15:0::1;::::0;;30215:18:::1;:25:::0;;-1:-1:-1;;;;30215:25:0::1;-1:-1:-1::0;;;30215:25:0::1;::::0;;30138:110::o;13033:95::-;13080:13;13113:7;13106:14;;;;;:::i;17468:504::-;17563:4;9992:10;17563:4;17646:25;9992:10;17663:7;17646:9;:25::i;:::-;17619:52;;17705:17;17686:16;:36;17682:150;;;17746:74;;-1:-1:-1;;;17746:74:0;;-1:-1:-1;;;;;8304:32:1;;17746:74:0;;;8286:51:1;8353:18;;;8346:34;;;8396:18;;;8389:34;;;8259:18;;17746:74:0;8084:345:1;17682:150:0;17867:62;17876:5;17883:7;17911:17;17892:16;:36;17867:8;:62::i;14410:182::-;14479:4;9992:10;14535:27;9992:10;14552:2;14556:5;14535:9;:27::i;33845:183::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33933:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;33933:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33978:42;;154:41:1;;;33978:42:0::1;::::0;127:18:1;33978:42:0::1;;;;;;;33845:183:::0;;:::o;34163:264::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;34304:9:::1;-1:-1:-1::0;;;;;34296:17:0::1;:4;-1:-1:-1::0;;;;;34296:17:0::1;::::0;34274:107:::1;;;::::0;-1:-1:-1;;;34274:107:0;;8636:2:1;34274:107:0::1;::::0;::::1;8618:21:1::0;8675:2;8655:18;;;8648:30;8714:34;8694:18;;;8687:62;-1:-1:-1;;;8765:18:1;;;8758:38;8813:19;;34274:107:0::1;8434:404:1::0;34274:107:0::1;34394:25;34407:4;34413:5;34394:12;:25::i;30514:131::-:0;24406:6;;30580:4;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;-1:-1:-1;30597:10:0::1;:18:::0;;-1:-1:-1;;30597:18:0::1;::::0;;:10:::1;30514:131:::0;:::o;14655:142::-;-1:-1:-1;;;;;14762:18:0;;;14735:7;14762:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14655:142::o;32080:207::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;32179:1:::1;32169:6;:11;;32161:62;;;::::0;-1:-1:-1;;;32161:62:0;;9045:2:1;32161:62:0::1;::::0;::::1;9027:21:1::0;9084:2;9064:18;;;9057:30;9123:34;9103:18;;;9096:62;-1:-1:-1;;;9174:18:1;;;9167:36;9220:19;;32161:62:0::1;8843:402:1::0;32161:62:0::1;32275:4;32258:13;14004:12:::0;;;13925:99;32258:13:::1;32249:22;::::0;:6;:22:::1;:::i;:::-;32248:31;;;;:::i;:::-;32234:11;:45:::0;-1:-1:-1;32080:207:0:o;25242:238::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25345:22:0;::::1;25323:110;;;::::0;-1:-1:-1;;;25323:110:0;;9452:2:1;25323:110:0::1;::::0;::::1;9434:21:1::0;9491:2;9471:18;;;9464:30;9530:34;9510:18;;;9503:62;-1:-1:-1;;;9581:18:1;;;9574:36;9627:19;;25323:110:0::1;9250:402:1::0;25323:110:0::1;25444:28;25463:8;25444:18;:28::i;:::-;25242:238:::0;:::o;32740:114::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;32818:18:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;32818:28:0::1;-1:-1:-1::0;;;;32818:28:0;;::::1;::::0;;;::::1;::::0;;32740:114::o;33005:257::-;24406:6;;-1:-1:-1;;;;;24406:6:0;9992:10;24553:23;24545:68;;;;-1:-1:-1;;;24545:68:0;;;;;;;:::i;:::-;33109:7:::1;:15:::0;;;33135:7:::1;:15:::0;;;33171:17:::1;33145:5:::0;33119;33171:17:::1;:::i;:::-;33161:7;:27:::0;;;33218:2:::1;-1:-1:-1::0;33207:13:0::1;33199:55;;;::::0;-1:-1:-1;;;33199:55:0;;7928:2:1;33199:55:0::1;::::0;::::1;7910:21:1::0;7967:2;7947:18;;;7940:30;8006:31;7986:18;;;7979:59;8055:18;;33199:55:0::1;7726:353:1::0;21665:138:0;21758:37;21767:5;21774:7;21783:5;21790:4;21758:8;:37::i;:::-;21665:138;;;:::o;23402:487::-;23502:24;23529:25;23539:5;23546:7;23529:9;:25::i;:::-;23502:52;;-1:-1:-1;;23569:16:0;:37;23565:317;;23646:5;23627:16;:24;23623:132;;;23679:60;;-1:-1:-1;;;23679:60:0;;-1:-1:-1;;;;;8304:32:1;;23679:60:0;;;8286:51:1;8353:18;;;8346:34;;;8396:18;;;8389:34;;;8259:18;;23679:60:0;8084:345:1;23623:132:0;23798:57;23807:5;23814:7;23842:5;23823:16;:24;23849:5;23798:8;:57::i;:::-;23491:398;23402:487;;;:::o;18357:308::-;-1:-1:-1;;;;;18441:18:0;;18437:88;;18483:30;;-1:-1:-1;;;18483:30:0;;18510:1;18483:30;;;352:51:1;325:18;;18483:30:0;206:203:1;18437:88:0;-1:-1:-1;;;;;18539:16:0;;18535:88;;18579:32;;-1:-1:-1;;;18579:32:0;;18608:1;18579:32;;;352:51:1;325:18;;18579:32:0;206:203:1;18535:88:0;18633:24;18641:4;18647:2;18651:5;18633:7;:24::i;25640:191::-;25733:6;;;-1:-1:-1;;;;;25750:17:0;;;-1:-1:-1;;;;;;25750:17:0;;;;;;;25783:40;;25733:6;;;25750:17;25733:6;;25783:40;;25714:16;;25783:40;25703:128;25640:191;:::o;34435:138::-;-1:-1:-1;;;;;34502:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;34502:22:0;;;;;;;;;;34542:23;;34502:22;;:14;34542:23;;;34435:138;;:::o;22670:443::-;-1:-1:-1;;;;;22783:19:0;;22779:91;;22826:32;;-1:-1:-1;;;22826:32:0;;22855:1;22826:32;;;352:51:1;325:18;;22826:32:0;206:203:1;22779:91:0;-1:-1:-1;;;;;22884:21:0;;22880:92;;22929:31;;-1:-1:-1;;;22929:31:0;;22957:1;22929:31;;;352:51:1;325:18;;22929:31:0;206:203:1;22880:92:0;-1:-1:-1;;;;;22982:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23028:78;;;;23079:7;-1:-1:-1;;;;;23063:31:0;23072:5;-1:-1:-1;;;;;23063:31:0;;23088:5;23063:31;;;;1569:25:1;;1557:2;1542:18;;1423:177;23063:31:0;;;;;;;;22670:443;;;;:::o;35424:4024::-;35550:6;35560:1;35550:11;35546:91;;35578:26;35592:4;35598:2;35602:1;35578:13;:26::i;35546:91::-;35653:11;;;;35649:2220;;;24406:6;;-1:-1:-1;;;;;35703:15:0;;;24406:6;;35703:15;;;;:49;;-1:-1:-1;24406:6:0;;-1:-1:-1;;;;;35739:13:0;;;24406:6;;35739:13;;35703:49;:86;;;;-1:-1:-1;;;;;;35773:16:0;;;;35703:86;:128;;;;-1:-1:-1;;;;;;35810:21:0;;35824:6;35810:21;;35703:128;:164;;;;-1:-1:-1;35853:14:0;;-1:-1:-1;;;35853:14:0;;;;35852:15;35703:164;35681:2177;;;35907:8;;-1:-1:-1;;;35907:8:0;;;;35902:198;;-1:-1:-1;;;;;35974:15:0;;;;;;:9;:15;;;;;;;;;:32;;-1:-1:-1;;;;;;35993:13:0;;;;;;:9;:13;;;;;;;;35974:32;35940:140;;;;-1:-1:-1;;;35940:140:0;;9859:2:1;35940:140:0;;;9841:21:1;9898:2;9878:18;;;9871:30;-1:-1:-1;;;9917:18:1;;;9910:52;9979:18;;35940:140:0;9657:346:1;35940:140:0;36256:10;;;;;;;36252:599;;;24406:6;;-1:-1:-1;;;;;36321:13:0;;;24406:6;;36321:13;;;;:68;;;36377:11;-1:-1:-1;;;;;36363:26:0;:2;-1:-1:-1;;;;;36363:26:0;;;36321:68;:121;;;;;36432:9;-1:-1:-1;;;;;36418:24:0;:2;-1:-1:-1;;;;;36418:24:0;;;36321:121;36291:541;;;36549:9;36531:28;;;;:17;:28;;;;;;36595:12;-1:-1:-1;36493:245:0;;;;-1:-1:-1;;;36493:245:0;;10210:2:1;36493:245:0;;;10192:21:1;10249:2;10229:18;;;10222:30;10288:34;10268:18;;;10261:62;10359:34;10339:18;;;10332:62;-1:-1:-1;;;10410:19:1;;;10403:38;10458:19;;36493:245:0;10008:475:1;36493:245:0;36783:9;36765:28;;;;:17;:28;;;;;36796:12;36765:43;;36291:541;-1:-1:-1;;;;;36903:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;36922:22:0;;;;;;:18;:22;;;;;;;;36921:23;36903:41;36899:944;;;37013:7;;37003:6;:17;;36969:143;;;;-1:-1:-1;;;36969:143:0;;10690:2:1;36969:143:0;;;10672:21:1;10729:2;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;-1:-1:-1;;;10819:18:1;;;10812:38;10867:19;;36969:143:0;10488:404:1;36969:143:0;37195:11;;-1:-1:-1;;;;;14179:18:0;;14152:7;14179:18;;;;;;;;;;;37169:22;;:6;:22;:::i;:::-;:37;;37135:142;;;;-1:-1:-1;;;37135:142:0;;11099:2:1;37135:142:0;;;11081:21:1;11138:2;11118:18;;;11111:30;-1:-1:-1;;;11157:18:1;;;11150:49;11216:18;;37135:142:0;10897:343:1;37135:142:0;36899:944;;;-1:-1:-1;;;;;37375:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;37392:24:0;;;;;;:18;:24;;;;;;;;37391:25;37375:41;37349:494;;;37503:7;;37493:6;:17;;37459:144;;;;-1:-1:-1;;;37459:144:0;;11447:2:1;37459:144:0;;;11429:21:1;11486:2;11466:18;;;11459:30;11525:34;11505:18;;;11498:62;-1:-1:-1;;;11576:18:1;;;11569:39;11625:19;;37459:144:0;11245:405:1;37349:494:0;-1:-1:-1;;;;;37634:22:0;;;;;;:18;:22;;;;;;;;37629:214;;37741:11;;-1:-1:-1;;;;;14179:18:0;;14152:7;14179:18;;;;;;;;;;;37715:22;;:6;:22;:::i;:::-;:37;;37681:142;;;;-1:-1:-1;;;37681:142:0;;11099:2:1;37681:142:0;;;11081:21:1;11138:2;11118:18;;;11111:30;-1:-1:-1;;;11157:18:1;;;11150:49;11216:18;;37681:142:0;10897:343:1;37681:142:0;37930:4;37881:28;14179:18;;;;;;;;;;;37988:19;;37964:43;;;;;;;38038:42;;-1:-1:-1;38062:18:0;;-1:-1:-1;;;38062:18:0;;;;38038:42;:74;;;;-1:-1:-1;38098:14:0;;-1:-1:-1;;;38098:14:0;;;;38097:15;38038:74;:106;;;;-1:-1:-1;;;;;;38130:14:0;;;;;;:8;:14;;;;;;;;38129:15;38038:106;:139;;;;-1:-1:-1;;;;;;38162:15:0;;;;;;:9;:15;;;;;;;;38161:16;38038:139;:170;;;;-1:-1:-1;;;;;;38195:13:0;;;;;;:9;:13;;;;;;;;38194:14;38038:170;38020:321;;;38235:14;:21;;-1:-1:-1;;;;38235:21:0;-1:-1:-1;;;38235:21:0;;;38273:17;:15;:17::i;:::-;38307:14;:22;;-1:-1:-1;;;;38307:22:0;;;38020:321;38369:14;;-1:-1:-1;;;;;38485:15:0;;38353:12;38485:15;;;:9;:15;;;;;;38369:14;-1:-1:-1;;;38369:14:0;;;;;38368:15;;38485;;:32;;-1:-1:-1;;;;;;38504:13:0;;;;;;:9;:13;;;;;;;;38485:32;38481:80;;;-1:-1:-1;38544:5:0;38481:80;38573:12;38678:7;38674:723;;;-1:-1:-1;;;;;38730:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;38757:1;38746:8;;:12;38730:28;38726:524;;;38786:29;38811:3;38786:20;38797:8;;38786:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;38779:36;;38876:8;;38864;;38857:4;:15;;;;:::i;:::-;38856:28;;;;:::i;:::-;38834:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;38945:8:0;;38933;;38926:15;;:4;:15;:::i;:::-;38925:28;;;;:::i;:::-;38903:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;38726:524:0;;-1:-1:-1;38726:524:0;;-1:-1:-1;;;;;39015:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;39043:1;39033:7;;:11;39015:29;39011:239;;;39072:28;39096:3;39072:19;39083:7;;39072:6;:10;;:19;;;;:::i;:28::-;39065:35;;39160:7;;39149;;39142:4;:14;;;;:::i;:::-;39141:26;;;;:::i;:::-;39119:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;39227:7:0;;39216;;39209:14;;:4;:14;:::i;:::-;39208:26;;;;:::i;:::-;39186:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;39011:239:0;39270:8;;39266:89;;39299:40;39313:4;39327;39334;39299:13;:40::i;:::-;39371:14;39381:4;39371:14;;:::i;:::-;;;38674:723;39409:31;39423:4;39429:2;39433:6;39409:13;:31::i;:::-;35535:3913;;;;35424:4024;;;:::o;18981:1135::-;-1:-1:-1;;;;;19071:18:0;;19067:552;;19225:5;19209:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19067:552:0;;-1:-1:-1;19067:552:0;;-1:-1:-1;;;;;19285:15:0;;19263:19;19285:15;;;;;;;;;;;19319:19;;;19315:117;;;19366:50;;-1:-1:-1;;;19366:50:0;;-1:-1:-1;;;;;8304:32:1;;19366:50:0;;;8286:51:1;8353:18;;;8346:34;;;8396:18;;;8389:34;;;8259:18;;19366:50:0;8084:345:1;19315:117:0;-1:-1:-1;;;;;19555:15:0;;:9;:15;;;;;;;;;;19573:19;;;;19555:37;;19067:552;-1:-1:-1;;;;;19635:16:0;;19631:435;;19801:12;:21;;;;;;;19631:435;;;-1:-1:-1;;;;;20017:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19631:435;20098:2;-1:-1:-1;;;;;20083:25:0;20092:4;-1:-1:-1;;;;;20083:25:0;;20102:5;20083:25;;;;1569::1;;1557:2;1542:18;;1423:177;20083:25:0;;;;;;;;18981:1135;;;:::o;40059:988::-;40149:4;40105:23;14179:18;;;;;;;;;;;40105:50;;40166:25;40215:18;;40194;;:39;;;;:::i;:::-;40166:67;-1:-1:-1;40244:12:0;40273:20;;;:46;;-1:-1:-1;40297:22:0;;40273:46;40269:85;;;40336:7;;;40059:988::o;40269:85::-;40388:16;;40370:15;:34;40366:101;;;40439:16;;40421:34;;40366:101;40507:21;40541:51;40576:15;40541:34;:51::i;:::-;40605:18;40626:44;:21;40652:17;40626:25;:44::i;:::-;40605:65;;40683:21;40707:57;40746:17;40707:34;40722:18;;40707:10;:14;;:34;;;;:::i;:57::-;40798:1;40777:18;:22;;;40810:18;:22;;;40867:21;;40859:61;;40683:81;;-1:-1:-1;;;;;;40867:21:0;;40683:81;;40859:61;40798:1;40859:61;40683:81;40867:21;40859:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40955:20:0;;40947:92;;40845:75;;-1:-1:-1;;;;;;40955:20:0;;41003:21;;40947:92;;;;41003:21;40955:20;40947:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;40059:988:0:o;3379:98::-;3437:7;3464:5;3468:1;3464;:5;:::i;:::-;3457:12;3379:98;-1:-1:-1;;;3379:98:0:o;3778:::-;3836:7;3863:5;3867:1;3863;:5;:::i;39456:595::-;39624:16;;;39638:1;39624:16;;;;;;;;39600:21;;39624:16;;;;;;;;;;-1:-1:-1;39624:16:0;39600:40;;39669:4;39651;39656:1;39651:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39651:23:0;;;-1:-1:-1;;;;;39651:23:0;;;;;39695:11;-1:-1:-1;;;;;39695:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39685:4;39690:1;39685:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;39685:28:0;;;-1:-1:-1;;;;;39685:28:0;;;;;39726:58;39743:4;39758:11;39772;39726:8;:58::i;:::-;39823:220;;-1:-1:-1;;;39823:220:0;;-1:-1:-1;;;;;39823:11:0;:62;;;;:220;;39900:11;;39926:1;;39970:4;;39997;;40017:15;;39823:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39529:522;39456:595;:::o;3022:98::-;3080:7;3107:5;3111:1;3107;:5;:::i;414:548:1:-;526:4;555:2;584;573:9;566:21;616:6;610:13;659:6;654:2;643:9;639:18;632:34;684:1;694:140;708:6;705:1;702:13;694:140;;;803:14;;;799:23;;793:30;769:17;;;788:2;765:26;758:66;723:10;;694:140;;;698:3;883:1;878:2;869:6;858:9;854:22;850:31;843:42;953:2;946;942:7;937:2;929:6;925:15;921:29;910:9;906:45;902:54;894:62;;;;414:548;;;;:::o;967:131::-;-1:-1:-1;;;;;1042:31:1;;1032:42;;1022:70;;1088:1;1085;1078:12;1103:315;1171:6;1179;1232:2;1220:9;1211:7;1207:23;1203:32;1200:52;;;1248:1;1245;1238:12;1200:52;1287:9;1274:23;1306:31;1331:5;1306:31;:::i;:::-;1356:5;1408:2;1393:18;;;;1380:32;;-1:-1:-1;;;1103:315:1:o;1605:180::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;-1:-1:-1;1756:23:1;;1605:180;-1:-1:-1;1605:180:1:o;1790:247::-;1849:6;1902:2;1890:9;1881:7;1877:23;1873:32;1870:52;;;1918:1;1915;1908:12;1870:52;1957:9;1944:23;1976:31;2001:5;1976:31;:::i;2042:456::-;2119:6;2127;2135;2188:2;2176:9;2167:7;2163:23;2159:32;2156:52;;;2204:1;2201;2194:12;2156:52;2243:9;2230:23;2262:31;2287:5;2262:31;:::i;:::-;2312:5;-1:-1:-1;2369:2:1;2354:18;;2341:32;2382:33;2341:32;2382:33;:::i;:::-;2042:456;;2434:7;;-1:-1:-1;;;2488:2:1;2473:18;;;;2460:32;;2042:456::o;2692:160::-;2757:20;;2813:13;;2806:21;2796:32;;2786:60;;2842:1;2839;2832:12;2857:315;2922:6;2930;2983:2;2971:9;2962:7;2958:23;2954:32;2951:52;;;2999:1;2996;2989:12;2951:52;3038:9;3025:23;3057:31;3082:5;3057:31;:::i;:::-;3107:5;-1:-1:-1;3131:35:1;3162:2;3147:18;;3131:35;:::i;:::-;3121:45;;2857:315;;;;;:::o;3177:248::-;3245:6;3253;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;-1:-1:-1;;3345:23:1;;;3415:2;3400:18;;;3387:32;;-1:-1:-1;3177:248:1:o;3659:388::-;3727:6;3735;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3843:9;3830:23;3862:31;3887:5;3862:31;:::i;:::-;3912:5;-1:-1:-1;3969:2:1;3954:18;;3941:32;3982:33;3941:32;3982:33;:::i;:::-;4034:7;4024:17;;;3659:388;;;;;:::o;4052:180::-;4108:6;4161:2;4149:9;4140:7;4136:23;4132:32;4129:52;;;4177:1;4174;4167:12;4129:52;4200:26;4216:9;4200:26;:::i;4237:356::-;4439:2;4421:21;;;4458:18;;;4451:30;4517:34;4512:2;4497:18;;4490:62;4584:2;4569:18;;4237:356::o;4598:380::-;4677:1;4673:12;;;;4720;;;4741:61;;4795:4;4787:6;4783:17;4773:27;;4741:61;4848:2;4840:6;4837:14;4817:18;4814:38;4811:161;;4894:10;4889:3;4885:20;4882:1;4875:31;4929:4;4926:1;4919:15;4957:4;4954:1;4947:15;4811:161;;4598:380;;;:::o;4983:127::-;5044:10;5039:3;5035:20;5032:1;5025:31;5075:4;5072:1;5065:15;5099:4;5096:1;5089:15;5115:217;5155:1;5181;5171:132;;5225:10;5220:3;5216:20;5213:1;5206:31;5260:4;5257:1;5250:15;5288:4;5285:1;5278:15;5171:132;-1:-1:-1;5317:9:1;;5115:217::o;5759:168::-;5832:9;;;5863;;5880:15;;;5874:22;;5860:37;5850:71;;5901:18;;:::i;7193:125::-;7258:9;;;7279:10;;;7276:36;;;7292:18;;:::i;11655:128::-;11722:9;;;11743:11;;;11740:37;;;11757:18;;:::i;12130:127::-;12191:10;12186:3;12182:20;12179:1;12172:31;12222:4;12219:1;12212:15;12246:4;12243:1;12236:15;12262:251;12332:6;12385:2;12373:9;12364:7;12360:23;12356:32;12353:52;;;12401:1;12398;12391:12;12353:52;12433:9;12427:16;12452:31;12477:5;12452:31;:::i;12518:980::-;12780:4;12828:3;12817:9;12813:19;12859:6;12848:9;12841:25;12885:2;12923:6;12918:2;12907:9;12903:18;12896:34;12966:3;12961:2;12950:9;12946:18;12939:31;12990:6;13025;13019:13;13056:6;13048;13041:22;13094:3;13083:9;13079:19;13072:26;;13133:2;13125:6;13121:15;13107:29;;13154:1;13164:195;13178:6;13175:1;13172:13;13164:195;;;13243:13;;-1:-1:-1;;;;;13239:39:1;13227:52;;13334:15;;;;13299:12;;;;13275:1;13193:9;13164:195;;;-1:-1:-1;;;;;;;13415:32:1;;;;13410:2;13395:18;;13388:60;-1:-1:-1;;;13479:3:1;13464:19;13457:35;13376:3;12518:980;-1:-1:-1;;;12518:980:1:o

Swarm Source

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