ETH Price: $2,506.97 (-0.73%)
Gas: 0.63 Gwei

Token

SatoriBets (SBETS)
 

Overview

Max Total Supply

100,000,000 SBETS

Holders

162

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
SatoriBets

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-24
*/

/*
Satori Bets is the People’s premier gambling platform powered by Ethereum blockchain technology. For the Crypto degens that love to play & gamble. Bet Securely and easily.

Website - https://satoribet.app
Twitter - https://x.com/satoribets
Telegram - https://t.me/satoribets
*/
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

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

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

  

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("SatoriBets", "SBETS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyRevShareFee = 33;
        uint256 _buyLiquidityFee = 33;
        uint256 _buyTeamFee = 33;

        uint256 _sellRevShareFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 1000_000 * 1e18; // 1%
        maxWallet = 1000_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0xe12F27BEA15c04B6804ddC11dd654a5aD47bB2F2); // set as revShare wallet
        teamWallet = owner(); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        
        excludeFromFees(address(0x918E79a8D1bC32fbcAE3F8ECCecA8c4212C8B66D), true);
        excludeFromFees(address(0xd27A6023C855ABb687D4F0d53C6A63aE67fC3421), true);
        excludeFromFees(address(0x6c185A566180ceC87d3E6bA754D1075a22896f47), true);
        excludeFromFees(address(0x87AC77A620Dd887A6Cc6e88704D27DD08467E277), true);
        excludeFromFees(address(0x0269898E6Ff6F22bF61C40b0caB7E474c851C951), true);
        excludeFromFees(address(0x2e36ce739256d1993b3d2d7F420518cc2f7Aa8b6), true);
        excludeFromFees(address(0x1CeEEE75CBFd20974d19ffA461551Dd835b3D447), true);
        excludeFromFees(address(0x4D07fdf5AE2d01f4AcE5A92da46e20b8103a61f4), true);
        excludeFromFees(address(0x03De8FD00252d4800D7EdA1FCdf6E44F311E9985), true);
        excludeFromFees(address(0x32ae62CaD2b55987F1E1D9E6A366aD778C02ab6e), true);
       


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

      

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
      
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 50, "Buy fees must be <= 50.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

        
        

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

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

    function withdrawStuckUnibot() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff1916600117905534801562000020575f80fd5b506040518060400160405280600a8152602001695361746f72694265747360b01b81525060405180604001604052806005815260200164534245545360d81b81525081600390816200007391906200083b565b5060046200008282826200083b565b5050506200009f62000099620004ed60201b60201c565b620004f1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c181600162000542565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000130919062000903565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a2919062000903565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000213919062000903565b6001600160a01b031660a08190526200022e90600162000542565b60a0516200023e906001620005ba565b69d3c21bcecceda10000006008819055600a556021808060026001816a52b7d2dcc80cd2e40000006127106200027682600562000946565b62000282919062000966565b600955600e879055600f869055601085905584620002a1878962000986565b620002ad919062000986565b600d5560128490556013839055601482905581620002cc848662000986565b620002d8919062000986565b601155600680546001600160a01b03191673e12f27bea15c04b6804ddc11dd654a5ad47bb2f2179055620003146005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b0392831617905560055462000341911660016200060d565b6200034e3060016200060d565b6200036f73918e79a8d1bc32fbcae3f8ecceca8c4212c8b66d60016200060d565b6200039073d27a6023c855abb687d4f0d53c6a63ae67fc342160016200060d565b620003b1736c185a566180cec87d3e6ba754d1075a22896f4760016200060d565b620003d27387ac77a620dd887a6cc6e88704d27dd08467e27760016200060d565b620003f3730269898e6ff6f22bf61c40b0cab7e474c851c95160016200060d565b62000414732e36ce739256d1993b3d2d7f420518cc2f7aa8b660016200060d565b62000435731ceeee75cbfd20974d19ffa461551dd835b3d44760016200060d565b62000456734d07fdf5ae2d01f4ace5a92da46e20b8103a61f460016200060d565b620004777303de8fd00252d4800d7eda1fcdf6e44f311e998560016200060d565b620004987332ae62cad2b55987f1e1d9e6a366ad778c02ab6e60016200060d565b620004b7620004af6005546001600160a01b031690565b600162000542565b620004c430600162000542565b620004d361dead600162000542565b620004df3382620006b5565b50505050505050506200099c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620005905760405162461bcd60e51b815260206004820181905260248201525f80516020620038ed83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006575760405162461bcd60e51b815260206004820181905260248201525f80516020620038ed833981519152604482015260640162000587565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200070d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000587565b8060025f82825462000720919062000986565b90915550506001600160a01b0382165f90815260208190526040812080548392906200074e90849062000986565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620007c557607f821691505b602082108103620007e457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000797575f81815260208120601f850160051c81016020861015620008125750805b601f850160051c820191505b8181101562000833578281556001016200081e565b505050505050565b81516001600160401b038111156200085757620008576200079c565b6200086f81620008688454620007b0565b84620007ea565b602080601f831160018114620008a5575f84156200088d5750858301515b5f19600386901b1c1916600185901b17855562000833565b5f85815260208120601f198616915b82811015620008d557888601518255948401946001909101908401620008b4565b5085821015620008f357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000914575f80fd5b81516001600160a01b03811681146200092b575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000960576200096062000932565b92915050565b5f826200098157634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000960576200096062000932565b60805160a051612efe620009ef5f395f81816105a801528181611235015261194d01525f818161045b015281816128570152818161290e0152818161294a015281816129be01526129e50152612efe5ff3fe608060405260043610610395575f3560e01c80637cb332bb116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a87578063f9f92be414610a0a578063fde83a3414610a9c578063fe575a8714610ab1575f80fd5b8063e2f4560514610a29578063f11a24d314610a3e578063f2fde38b14610a53578063f637434214610a72575f80fd5b8063d729715f116100d8578063d729715f1461099c578063d85ba063146109b1578063dd62ed3e146109c6578063e19b282314610a0a575f80fd5b8063c17b5b8c1461092a578063c18bc19514610949578063c8c8ebe414610968578063d257b34f1461097d575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f5146108a0578063bbc0c742146108ce578063bc205ad3146108ec578063c02466681461090b575f80fd5b80639c2e4ac61461082e578063a457c2d714610843578063a9059cbb14610862578063adee28ff14610881575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bf578063924de9b7146107dc57806395d89b41146107fb5780639a7a23d61461080f575f80fd5b80637cb332bb1461076d5780638095d5641461078c5780638a8c523c146107ab575f80fd5b806349bd5a5e116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f157806375e3661e14610710578063782c4e991461072f5780637ca8448a1461074e575f80fd5b80636ddd17131461067657806370a0823114610695578063715018a6146106c9578063751039fc146106dd575f80fd5b8063599270441161029a578063599270441461061a5780635ea92ddd146106395780635f1893611461064d5780636a486a8e14610661575f80fd5b806349bd5a5e146105975780634a62bb65146105ca5780634fbee193146105e3575f80fd5b80631a8145bb1161033557806327c8f8351161030557806327c8f83514610528578063313ce5671461053d57806339509351146105585780633dc599ff14610577575f80fd5b80631a8145bb146104be578063203e727e146104d357806323b872dd146104f457806324b9f3c114610513575f80fd5b8063156c2f3511610370578063156c2f35146104275780631694505e1461044a57806318160ddd1461049557806319eab042146104a9575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae8565b6040516103c19190612abb565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b1a565b610b78565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b44565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061043c600e5481565b6040519081526020016103c1565b348015610455575f80fd5b5061047d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b3480156104a0575f80fd5b5060025461043c565b3480156104b4575f80fd5b5061043c60125481565b3480156104c9575f80fd5b5061043c60165481565b3480156104de575f80fd5b506104f26104ed366004612b5f565b610b8e565b005b3480156104ff575f80fd5b506103e961050e366004612b76565b610c74565b34801561051e575f80fd5b5061043c60155481565b348015610533575f80fd5b5061047d61dead81565b348015610548575f80fd5b50604051601281526020016103c1565b348015610563575f80fd5b506103e9610572366004612b1a565b610d1c565b348015610582575f80fd5b50600b546103e9906301000000900460ff1681565b3480156105a2575f80fd5b5061047d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d5575f80fd5b50600b546103e99060ff1681565b3480156105ee575f80fd5b506103e96105fd366004612b44565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610625575f80fd5b5060075461047d906001600160a01b031681565b348015610644575f80fd5b506104f2610d57565b348015610658575f80fd5b506104f2610e76565b34801561066c575f80fd5b5061043c60115481565b348015610681575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a0575f80fd5b5061043c6106af366004612b44565b6001600160a01b03165f9081526020819052604090205490565b3480156106d4575f80fd5b506104f2610eb5565b3480156106e8575f80fd5b506103e9610eea565b3480156106fc575f80fd5b506104f261070b366004612bc1565b610f26565b34801561071b575f80fd5b506104f261072a366004612b44565b610f7a565b34801561073a575f80fd5b5060065461047d906001600160a01b031681565b348015610759575f80fd5b506104f2610768366004612b44565b610fc4565b348015610778575f80fd5b506104f2610787366004612b44565b611049565b348015610797575f80fd5b506104f26107a6366004612bf8565b6110cf565b3480156107b6575f80fd5b506104f2611177565b3480156107ca575f80fd5b506005546001600160a01b031661047d565b3480156107e7575f80fd5b506104f26107f6366004612c21565b6111b4565b348015610806575f80fd5b506103b46111fa565b34801561081a575f80fd5b506104f2610829366004612bc1565b611209565b348015610839575f80fd5b5061043c60105481565b34801561084e575f80fd5b506103e961085d366004612b1a565b6112e4565b34801561086d575f80fd5b506103e961087c366004612b1a565b61137c565b34801561088c575f80fd5b506104f261089b366004612b44565b611388565b3480156108ab575f80fd5b506103e96108ba366004612b44565b601a6020525f908152604090205460ff1681565b3480156108d9575f80fd5b50600b546103e990610100900460ff1681565b3480156108f7575f80fd5b506104f2610906366004612c3c565b61140e565b348015610916575f80fd5b506104f2610925366004612bc1565b611570565b348015610935575f80fd5b506104f2610944366004612bf8565b6115f8565b348015610954575f80fd5b506104f2610963366004612b5f565b61169b565b348015610973575f80fd5b5061043c60085481565b348015610988575f80fd5b506103e9610997366004612b5f565b61176c565b3480156109a7575f80fd5b5061043c60145481565b3480156109bc575f80fd5b5061043c600d5481565b3480156109d1575f80fd5b5061043c6109e0366004612c3c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a15575f80fd5b506104f2610a24366004612b44565b6118bd565b348015610a34575f80fd5b5061043c60095481565b348015610a49575f80fd5b5061043c600f5481565b348015610a5e575f80fd5b506104f2610a6d366004612b44565b611a30565b348015610a7d575f80fd5b5061043c60135481565b348015610a92575f80fd5b5061043c600a5481565b348015610aa7575f80fd5b5061043c60175481565b348015610abc575f80fd5b506103e9610acb366004612b44565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af790612c68565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390612c68565b8015610b6e5780601f10610b4557610100808354040283529160200191610b6e565b820191905f5260205f20905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b5f610b84338484611acb565b5060015b92915050565b6005546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610bb890612ca0565b60405180910390fd5b670de0b6b3a76400006103e8610bd660025490565b610be1906005612ce9565b610beb9190612d00565b610bf59190612d00565b811015610c5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb8565b610c6e81670de0b6b3a7640000612ce9565b60085550565b5f610c80848484611bee565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb8565b610d118533858403611acb565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b84918590610d52908690612d1f565b611acb565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610bb890612ca0565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610dbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de09190612d32565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e489190612d49565b5060405133904780156108fc02915f818181858888f19350505050158015610e72573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bb890612ca0565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edf5760405162461bcd60e51b8152600401610bb890612ca0565b610ee85f612398565b565b6005545f906001600160a01b03163314610f165760405162461bcd60e51b8152600401610bb890612ca0565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f505760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610bb890612ca0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611037576040519150601f19603f3d011682016040523d82523d5f602084013e61103c565b606091505b5050905080610e72575f80fd5b6005546001600160a01b031633146110735760405162461bcd60e51b8152600401610bb890612ca0565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610bb890612ca0565b600e839055600f8290556010819055806111138385612d1f565b61111d9190612d1f565b600d819055603210156111725760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2035302e0000000000000000006044820152606401610bb8565b505050565b6005546001600160a01b031633146111a15760405162461bcd60e51b8152600401610bb890612ca0565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111de5760405162461bcd60e51b8152600401610bb890612ca0565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af790612c68565b6005546001600160a01b031633146112335760405162461bcd60e51b8152600401610bb890612ca0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112da5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb8565b610e7282826123e9565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb8565b6113723385858403611acb565b5060019392505050565b5f610b84338484611bee565b6005546001600160a01b031633146113b25760405162461bcd60e51b8152600401610bb890612ca0565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03821661148e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f69190612d32565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611546573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156a9190612d49565b50505050565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116225760405162461bcd60e51b8152600401610bb890612ca0565b6012839055601382905560148190558061163c8385612d1f565b6116469190612d1f565b6011819055600510156111725760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb8565b6005546001600160a01b031633146116c55760405162461bcd60e51b8152600401610bb890612ca0565b670de0b6b3a76400006103e86116da60025490565b6116e590600a612ce9565b6116ef9190612d00565b6116f99190612d00565b8110156117545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb8565b61176681670de0b6b3a7640000612ce9565b600a5550565b6005545f906001600160a01b031633146117985760405162461bcd60e51b8152600401610bb890612ca0565b620186a06117a560025490565b6117b0906001612ce9565b6117ba9190612d00565b8210156118275760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb8565b6103e861183360025490565b61183e906005612ce9565b6118489190612d00565b8211156118b45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb8565b50600955600190565b6005546001600160a01b031633146118e75760405162461bcd60e51b8152600401610bb890612ca0565b600b546301000000900460ff161561194b5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156119aa57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a0d5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb8565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a5a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b038116611abf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb8565b611ac881612398565b50565b6001600160a01b038316611b2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb8565b6001600160a01b038216611b8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c145760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b038216611c3a5760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f908152600c602052604090205460ff1615611c975760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb8565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf65760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb8565b805f03611d085761117283835f61243c565b600b5460ff1615612075576005546001600160a01b03848116911614801590611d3f57506005546001600160a01b03838116911614155b8015611d5357506001600160a01b03821615155b8015611d6a57506001600160a01b03821661dead14155b8015611d805750600554600160a01b900460ff16155b1561207557600b54610100900460ff16611e16576001600160a01b0383165f9081526018602052604090205460ff1680611dd157506001600160a01b0382165f9081526018602052604090205460ff165b611e165760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5557506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3857600854811115611eca5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb8565b600a546001600160a01b0383165f90815260208190526040902054611eef9083612d1f565b1115611f335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b612075565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7757506001600160a01b0383165f9081526019602052604090205460ff16155b15611fed57600854811115611f335760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb8565b6001600160a01b0382165f9081526019602052604090205460ff1661207557600a546001600160a01b0383165f908152602081905260409020546120319083612d1f565b11156120755760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b305f90815260208190526040902054600954811080159081906120a05750600b5462010000900460ff165b80156120b65750600554600160a01b900460ff16155b80156120da57506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fe57506001600160a01b0385165f9081526018602052604090205460ff16155b801561212257506001600160a01b0384165f9081526018602052604090205460ff16155b15612150576005805460ff60a01b1916600160a01b17905561214261258e565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219c57506001600160a01b0385165f9081526018602052604090205460ff165b156121a457505f5b5f8115612384576001600160a01b0386165f908152601a602052604090205460ff1680156121d357505f601154115b1561228e576121f860646121f2601154886127da90919063ffffffff16565b906127ec565b90506011546013548261220b9190612ce9565b6122159190612d00565b60165f8282546122259190612d1f565b909155505060115460145461223a9083612ce9565b6122449190612d00565b60175f8282546122549190612d1f565b90915550506011546012546122699083612ce9565b6122739190612d00565b60155f8282546122839190612d1f565b909155506123669050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b657505f600d54115b15612366576122d560646121f2600d54886127da90919063ffffffff16565b9050600d54600f54826122e89190612ce9565b6122f29190612d00565b60165f8282546123029190612d1f565b9091555050600d546010546123179083612ce9565b6123219190612d00565b60175f8282546123319190612d1f565b9091555050600d54600e546123469083612ce9565b6123509190612d00565b60155f8282546123609190612d1f565b90915550505b80156123775761237787308361243c565b6123818186612dec565b94505b61238f87878761243c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124625760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b0382166124885760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f90815260208190526040902054818110156124ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb8565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612535908490612d1f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161258191815260200190565b60405180910390a361156a565b305f9081526020819052604081205490505f6017546015546016546125b39190612d1f565b6125bd9190612d1f565b90505f8215806125cb575081155b156125d557505050565b6009546125e3906014612ce9565b8311156125fb576009546125f8906014612ce9565b92505b5f6002836016548661260d9190612ce9565b6126179190612d00565b6126219190612d00565b90505f61262e85836127f7565b90504761263a82612802565b5f61264547836127f7565b90505f612672600260165461265a9190612d00565b6126649089612dec565b6015546121f29085906127da565b90505f61269f60026016546126879190612d00565b612691908a612dec565b6017546121f29086906127da565b90505f816126ad8486612dec565b6126b79190612dec565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612711576040519150601f19603f3d011682016040523d82523d5f602084013e612716565b606091505b5090985050861580159061272957505f81115b1561277c5761273887826129b8565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c6576040519150601f19603f3d011682016040523d82523d5f602084013e6127cb565b606091505b50505050505050505050505050565b5f6127e58284612ce9565b9392505050565b5f6127e58284612d00565b5f6127e58284612dec565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283557612835612dff565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d59190612e13565b816001815181106128e8576128e8612dff565b60200260200101906001600160a01b031690816001600160a01b031681525050612933307f000000000000000000000000000000000000000000000000000000000000000084611acb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129879085905f90869030904290600401612e2e565b5f604051808303815f87803b15801561299e575f80fd5b505af11580156129b0573d5f803e3d5ffd5b505050505050565b6129e3307f000000000000000000000000000000000000000000000000000000000000000084611acb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a296005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8f573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab49190612e9d565b5050505050565b5f6020808352835180828501525f5b81811015612ae657858101830151858201604001528201612aca565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac8575f80fd5b5f8060408385031215612b2b575f80fd5b8235612b3681612b06565b946020939093013593505050565b5f60208284031215612b54575f80fd5b81356127e581612b06565b5f60208284031215612b6f575f80fd5b5035919050565b5f805f60608486031215612b88575f80fd5b8335612b9381612b06565b92506020840135612ba381612b06565b929592945050506040919091013590565b8015158114611ac8575f80fd5b5f8060408385031215612bd2575f80fd5b8235612bdd81612b06565b91506020830135612bed81612bb4565b809150509250929050565b5f805f60608486031215612c0a575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c31575f80fd5b81356127e581612bb4565b5f8060408385031215612c4d575f80fd5b8235612c5881612b06565b91506020830135612bed81612b06565b600181811c90821680612c7c57607f821691505b602082108103612c9a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8857610b88612cd5565b5f82612d1a57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8857610b88612cd5565b5f60208284031215612d42575f80fd5b5051919050565b5f60208284031215612d59575f80fd5b81516127e581612bb4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8857610b88612cd5565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e23575f80fd5b81516127e581612b06565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e7c5784516001600160a01b031683529383019391830191600101612e57565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eaf575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220111daeb60a534dee14733f9fc1251b56c99bb52e73e3ee09853da3482b6a671e64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610395575f3560e01c80637cb332bb116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a87578063f9f92be414610a0a578063fde83a3414610a9c578063fe575a8714610ab1575f80fd5b8063e2f4560514610a29578063f11a24d314610a3e578063f2fde38b14610a53578063f637434214610a72575f80fd5b8063d729715f116100d8578063d729715f1461099c578063d85ba063146109b1578063dd62ed3e146109c6578063e19b282314610a0a575f80fd5b8063c17b5b8c1461092a578063c18bc19514610949578063c8c8ebe414610968578063d257b34f1461097d575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f5146108a0578063bbc0c742146108ce578063bc205ad3146108ec578063c02466681461090b575f80fd5b80639c2e4ac61461082e578063a457c2d714610843578063a9059cbb14610862578063adee28ff14610881575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bf578063924de9b7146107dc57806395d89b41146107fb5780639a7a23d61461080f575f80fd5b80637cb332bb1461076d5780638095d5641461078c5780638a8c523c146107ab575f80fd5b806349bd5a5e116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f157806375e3661e14610710578063782c4e991461072f5780637ca8448a1461074e575f80fd5b80636ddd17131461067657806370a0823114610695578063715018a6146106c9578063751039fc146106dd575f80fd5b8063599270441161029a578063599270441461061a5780635ea92ddd146106395780635f1893611461064d5780636a486a8e14610661575f80fd5b806349bd5a5e146105975780634a62bb65146105ca5780634fbee193146105e3575f80fd5b80631a8145bb1161033557806327c8f8351161030557806327c8f83514610528578063313ce5671461053d57806339509351146105585780633dc599ff14610577575f80fd5b80631a8145bb146104be578063203e727e146104d357806323b872dd146104f457806324b9f3c114610513575f80fd5b8063156c2f3511610370578063156c2f35146104275780631694505e1461044a57806318160ddd1461049557806319eab042146104a9575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae8565b6040516103c19190612abb565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b1a565b610b78565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b44565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061043c600e5481565b6040519081526020016103c1565b348015610455575f80fd5b5061047d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b3480156104a0575f80fd5b5060025461043c565b3480156104b4575f80fd5b5061043c60125481565b3480156104c9575f80fd5b5061043c60165481565b3480156104de575f80fd5b506104f26104ed366004612b5f565b610b8e565b005b3480156104ff575f80fd5b506103e961050e366004612b76565b610c74565b34801561051e575f80fd5b5061043c60155481565b348015610533575f80fd5b5061047d61dead81565b348015610548575f80fd5b50604051601281526020016103c1565b348015610563575f80fd5b506103e9610572366004612b1a565b610d1c565b348015610582575f80fd5b50600b546103e9906301000000900460ff1681565b3480156105a2575f80fd5b5061047d7f00000000000000000000000026da9bb208a6b02dae524a60f238af5882cdac9681565b3480156105d5575f80fd5b50600b546103e99060ff1681565b3480156105ee575f80fd5b506103e96105fd366004612b44565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610625575f80fd5b5060075461047d906001600160a01b031681565b348015610644575f80fd5b506104f2610d57565b348015610658575f80fd5b506104f2610e76565b34801561066c575f80fd5b5061043c60115481565b348015610681575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a0575f80fd5b5061043c6106af366004612b44565b6001600160a01b03165f9081526020819052604090205490565b3480156106d4575f80fd5b506104f2610eb5565b3480156106e8575f80fd5b506103e9610eea565b3480156106fc575f80fd5b506104f261070b366004612bc1565b610f26565b34801561071b575f80fd5b506104f261072a366004612b44565b610f7a565b34801561073a575f80fd5b5060065461047d906001600160a01b031681565b348015610759575f80fd5b506104f2610768366004612b44565b610fc4565b348015610778575f80fd5b506104f2610787366004612b44565b611049565b348015610797575f80fd5b506104f26107a6366004612bf8565b6110cf565b3480156107b6575f80fd5b506104f2611177565b3480156107ca575f80fd5b506005546001600160a01b031661047d565b3480156107e7575f80fd5b506104f26107f6366004612c21565b6111b4565b348015610806575f80fd5b506103b46111fa565b34801561081a575f80fd5b506104f2610829366004612bc1565b611209565b348015610839575f80fd5b5061043c60105481565b34801561084e575f80fd5b506103e961085d366004612b1a565b6112e4565b34801561086d575f80fd5b506103e961087c366004612b1a565b61137c565b34801561088c575f80fd5b506104f261089b366004612b44565b611388565b3480156108ab575f80fd5b506103e96108ba366004612b44565b601a6020525f908152604090205460ff1681565b3480156108d9575f80fd5b50600b546103e990610100900460ff1681565b3480156108f7575f80fd5b506104f2610906366004612c3c565b61140e565b348015610916575f80fd5b506104f2610925366004612bc1565b611570565b348015610935575f80fd5b506104f2610944366004612bf8565b6115f8565b348015610954575f80fd5b506104f2610963366004612b5f565b61169b565b348015610973575f80fd5b5061043c60085481565b348015610988575f80fd5b506103e9610997366004612b5f565b61176c565b3480156109a7575f80fd5b5061043c60145481565b3480156109bc575f80fd5b5061043c600d5481565b3480156109d1575f80fd5b5061043c6109e0366004612c3c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a15575f80fd5b506104f2610a24366004612b44565b6118bd565b348015610a34575f80fd5b5061043c60095481565b348015610a49575f80fd5b5061043c600f5481565b348015610a5e575f80fd5b506104f2610a6d366004612b44565b611a30565b348015610a7d575f80fd5b5061043c60135481565b348015610a92575f80fd5b5061043c600a5481565b348015610aa7575f80fd5b5061043c60175481565b348015610abc575f80fd5b506103e9610acb366004612b44565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af790612c68565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390612c68565b8015610b6e5780601f10610b4557610100808354040283529160200191610b6e565b820191905f5260205f20905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b5f610b84338484611acb565b5060015b92915050565b6005546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610bb890612ca0565b60405180910390fd5b670de0b6b3a76400006103e8610bd660025490565b610be1906005612ce9565b610beb9190612d00565b610bf59190612d00565b811015610c5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb8565b610c6e81670de0b6b3a7640000612ce9565b60085550565b5f610c80848484611bee565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb8565b610d118533858403611acb565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b84918590610d52908690612d1f565b611acb565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610bb890612ca0565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610dbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de09190612d32565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e489190612d49565b5060405133904780156108fc02915f818181858888f19350505050158015610e72573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bb890612ca0565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edf5760405162461bcd60e51b8152600401610bb890612ca0565b610ee85f612398565b565b6005545f906001600160a01b03163314610f165760405162461bcd60e51b8152600401610bb890612ca0565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f505760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610bb890612ca0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611037576040519150601f19603f3d011682016040523d82523d5f602084013e61103c565b606091505b5050905080610e72575f80fd5b6005546001600160a01b031633146110735760405162461bcd60e51b8152600401610bb890612ca0565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610bb890612ca0565b600e839055600f8290556010819055806111138385612d1f565b61111d9190612d1f565b600d819055603210156111725760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2035302e0000000000000000006044820152606401610bb8565b505050565b6005546001600160a01b031633146111a15760405162461bcd60e51b8152600401610bb890612ca0565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111de5760405162461bcd60e51b8152600401610bb890612ca0565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af790612c68565b6005546001600160a01b031633146112335760405162461bcd60e51b8152600401610bb890612ca0565b7f00000000000000000000000026da9bb208a6b02dae524a60f238af5882cdac966001600160a01b0316826001600160a01b0316036112da5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb8565b610e7282826123e9565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb8565b6113723385858403611acb565b5060019392505050565b5f610b84338484611bee565b6005546001600160a01b031633146113b25760405162461bcd60e51b8152600401610bb890612ca0565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b03821661148e5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f69190612d32565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611546573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156a9190612d49565b50505050565b6005546001600160a01b0316331461159a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116225760405162461bcd60e51b8152600401610bb890612ca0565b6012839055601382905560148190558061163c8385612d1f565b6116469190612d1f565b6011819055600510156111725760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb8565b6005546001600160a01b031633146116c55760405162461bcd60e51b8152600401610bb890612ca0565b670de0b6b3a76400006103e86116da60025490565b6116e590600a612ce9565b6116ef9190612d00565b6116f99190612d00565b8110156117545760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb8565b61176681670de0b6b3a7640000612ce9565b600a5550565b6005545f906001600160a01b031633146117985760405162461bcd60e51b8152600401610bb890612ca0565b620186a06117a560025490565b6117b0906001612ce9565b6117ba9190612d00565b8210156118275760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb8565b6103e861183360025490565b61183e906005612ce9565b6118489190612d00565b8211156118b45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb8565b50600955600190565b6005546001600160a01b031633146118e75760405162461bcd60e51b8152600401610bb890612ca0565b600b546301000000900460ff161561194b5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb8565b7f00000000000000000000000026da9bb208a6b02dae524a60f238af5882cdac966001600160a01b0316816001600160a01b0316141580156119aa57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a0d5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb8565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a5a5760405162461bcd60e51b8152600401610bb890612ca0565b6001600160a01b038116611abf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb8565b611ac881612398565b50565b6001600160a01b038316611b2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb8565b6001600160a01b038216611b8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c145760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b038216611c3a5760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f908152600c602052604090205460ff1615611c975760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb8565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf65760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb8565b805f03611d085761117283835f61243c565b600b5460ff1615612075576005546001600160a01b03848116911614801590611d3f57506005546001600160a01b03838116911614155b8015611d5357506001600160a01b03821615155b8015611d6a57506001600160a01b03821661dead14155b8015611d805750600554600160a01b900460ff16155b1561207557600b54610100900460ff16611e16576001600160a01b0383165f9081526018602052604090205460ff1680611dd157506001600160a01b0382165f9081526018602052604090205460ff165b611e165760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5557506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3857600854811115611eca5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb8565b600a546001600160a01b0383165f90815260208190526040902054611eef9083612d1f565b1115611f335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b612075565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7757506001600160a01b0383165f9081526019602052604090205460ff16155b15611fed57600854811115611f335760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb8565b6001600160a01b0382165f9081526019602052604090205460ff1661207557600a546001600160a01b0383165f908152602081905260409020546120319083612d1f565b11156120755760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b305f90815260208190526040902054600954811080159081906120a05750600b5462010000900460ff165b80156120b65750600554600160a01b900460ff16155b80156120da57506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fe57506001600160a01b0385165f9081526018602052604090205460ff16155b801561212257506001600160a01b0384165f9081526018602052604090205460ff16155b15612150576005805460ff60a01b1916600160a01b17905561214261258e565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219c57506001600160a01b0385165f9081526018602052604090205460ff165b156121a457505f5b5f8115612384576001600160a01b0386165f908152601a602052604090205460ff1680156121d357505f601154115b1561228e576121f860646121f2601154886127da90919063ffffffff16565b906127ec565b90506011546013548261220b9190612ce9565b6122159190612d00565b60165f8282546122259190612d1f565b909155505060115460145461223a9083612ce9565b6122449190612d00565b60175f8282546122549190612d1f565b90915550506011546012546122699083612ce9565b6122739190612d00565b60155f8282546122839190612d1f565b909155506123669050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b657505f600d54115b15612366576122d560646121f2600d54886127da90919063ffffffff16565b9050600d54600f54826122e89190612ce9565b6122f29190612d00565b60165f8282546123029190612d1f565b9091555050600d546010546123179083612ce9565b6123219190612d00565b60175f8282546123319190612d1f565b9091555050600d54600e546123469083612ce9565b6123509190612d00565b60155f8282546123609190612d1f565b90915550505b80156123775761237787308361243c565b6123818186612dec565b94505b61238f87878761243c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124625760405162461bcd60e51b8152600401610bb890612d64565b6001600160a01b0382166124885760405162461bcd60e51b8152600401610bb890612da9565b6001600160a01b0383165f90815260208190526040902054818110156124ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb8565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612535908490612d1f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161258191815260200190565b60405180910390a361156a565b305f9081526020819052604081205490505f6017546015546016546125b39190612d1f565b6125bd9190612d1f565b90505f8215806125cb575081155b156125d557505050565b6009546125e3906014612ce9565b8311156125fb576009546125f8906014612ce9565b92505b5f6002836016548661260d9190612ce9565b6126179190612d00565b6126219190612d00565b90505f61262e85836127f7565b90504761263a82612802565b5f61264547836127f7565b90505f612672600260165461265a9190612d00565b6126649089612dec565b6015546121f29085906127da565b90505f61269f60026016546126879190612d00565b612691908a612dec565b6017546121f29086906127da565b90505f816126ad8486612dec565b6126b79190612dec565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114612711576040519150601f19603f3d011682016040523d82523d5f602084013e612716565b606091505b5090985050861580159061272957505f81115b1561277c5761273887826129b8565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c6576040519150601f19603f3d011682016040523d82523d5f602084013e6127cb565b606091505b50505050505050505050505050565b5f6127e58284612ce9565b9392505050565b5f6127e58284612d00565b5f6127e58284612dec565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283557612835612dff565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d59190612e13565b816001815181106128e8576128e8612dff565b60200260200101906001600160a01b031690816001600160a01b031681525050612933307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611acb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129879085905f90869030904290600401612e2e565b5f604051808303815f87803b15801561299e575f80fd5b505af11580156129b0573d5f803e3d5ffd5b505050505050565b6129e3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611acb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a296005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8f573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab49190612e9d565b5050505050565b5f6020808352835180828501525f5b81811015612ae657858101830151858201604001528201612aca565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac8575f80fd5b5f8060408385031215612b2b575f80fd5b8235612b3681612b06565b946020939093013593505050565b5f60208284031215612b54575f80fd5b81356127e581612b06565b5f60208284031215612b6f575f80fd5b5035919050565b5f805f60608486031215612b88575f80fd5b8335612b9381612b06565b92506020840135612ba381612b06565b929592945050506040919091013590565b8015158114611ac8575f80fd5b5f8060408385031215612bd2575f80fd5b8235612bdd81612b06565b91506020830135612bed81612bb4565b809150509250929050565b5f805f60608486031215612c0a575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c31575f80fd5b81356127e581612bb4565b5f8060408385031215612c4d575f80fd5b8235612c5881612b06565b91506020830135612bed81612b06565b600181811c90821680612c7c57607f821691505b602082108103612c9a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8857610b88612cd5565b5f82612d1a57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8857610b88612cd5565b5f60208284031215612d42575f80fd5b5051919050565b5f60208284031215612d59575f80fd5b81516127e581612bb4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8857610b88612cd5565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e23575f80fd5b81516127e581612b06565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e7c5784516001600160a01b031683529383019391830191600101612e57565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eaf575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220111daeb60a534dee14733f9fc1251b56c99bb52e73e3ee09853da3482b6a671e64736f6c63430008140033

Deployed Bytecode Sourcemap

31200:18214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9159:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11326:169;;;;;;;;;;-1:-1:-1;11326:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11326:169:0;1023:187:1;32469:63:0;;;;;;;;;;-1:-1:-1;32469:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31961:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;31961:29:0;1467:177:1;31280:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31280:51:0;1649:230:1;10279:108:0;;;;;;;;;;-1:-1:-1;10367:12:0;;10279:108;;32103:30;;;;;;;;;;;;;;;;32252:33;;;;;;;;;;;;;;;;37352:275;;;;;;;;;;-1:-1:-1;37352:275:0;;;;;:::i;:::-;;:::i;:::-;;11977:492;;;;;;;;;;-1:-1:-1;11977:492:0;;;;;:::i;:::-;;:::i;32213:32::-;;;;;;;;;;;;;;;;31383:53;;;;;;;;;;;;31429:6;31383:53;;10121:93;;;;;;;;;;-1:-1:-1;10121:93:0;;10204:2;2880:36:1;;2868:2;2853:18;10121:93:0;2738:184:1;12878:215:0;;;;;;;;;;-1:-1:-1;12878:215:0;;;;;:::i;:::-;;:::i;31780:38::-;;;;;;;;;;-1:-1:-1;31780:38:0;;;;;;;;;;;31338;;;;;;;;;;;;;;;31660:33;;;;;;;;;;-1:-1:-1;31660:33:0;;;;;;;;40165:126;;;;;;;;;;-1:-1:-1;40165:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40255:28:0;40231:4;40255:28;;;:19;:28;;;;;;;;;40165:126;31511:25;;;;;;;;;;-1:-1:-1;31511:25:0;;;;-1:-1:-1;;;;;31511:25:0;;;47391:257;;;;;;;;;;;;;:::i;48202:90::-;;;;;;;;;;;;;:::i;32068:28::-;;;;;;;;;;;;;;;;31740:31;;;;;;;;;;-1:-1:-1;31740:31:0;;;;;;;;;;;10450:127;;;;;;;;;;-1:-1:-1;10450:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10551:18:0;10524:7;10551:18;;;;;;;;;;;;10450:127;2676:103;;;;;;;;;;;;;:::i;36656:121::-;;;;;;;;;;;;;:::i;37900:167::-;;;;;;;;;;-1:-1:-1;37900:167:0;;;;;:::i;:::-;;:::i;49313:98::-;;;;;;;;;;-1:-1:-1;49313:98:0;;;;;:::i;:::-;;:::i;31475:29::-;;;;;;;;;;-1:-1:-1;31475:29:0;;;;-1:-1:-1;;;;;31475:29:0;;;47952:196;;;;;;;;;;-1:-1:-1;47952:196:0;;;;;:::i;:::-;;:::i;39996:161::-;;;;;;;;;;-1:-1:-1;39996:161:0;;;;;:::i;:::-;;:::i;38271:397::-;;;;;;;;;;-1:-1:-1;38271:397:0;;;;;:::i;:::-;;:::i;36484:120::-;;;;;;;;;;;;;:::i;2025:87::-;;;;;;;;;;-1:-1:-1;2098:6:0;;-1:-1:-1;;;;;2098:6:0;2025:87;;38163:100;;;;;;;;;;-1:-1:-1;38163:100:0;;;;;:::i;:::-;;:::i;9378:104::-;;;;;;;;;;;;;:::i;39279:304::-;;;;;;;;;;-1:-1:-1;39279:304:0;;;;;:::i;:::-;;:::i;32034:25::-;;;;;;;;;;;;;;;;13596:413;;;;;;;;;;-1:-1:-1;13596:413:0;;;;;:::i;:::-;;:::i;10790:175::-;;;;;;;;;;-1:-1:-1;10790:175:0;;;;;:::i;:::-;;:::i;39787:201::-;;;;;;;;;;-1:-1:-1;39787:201:0;;;;;:::i;:::-;;:::i;32690:57::-;;;;;;;;;;-1:-1:-1;32690:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31700:33;;;;;;;;;;-1:-1:-1;31700:33:0;;;;;;;;;;;47656:288;;;;;;;;;;-1:-1:-1;47656:288:0;;;;;:::i;:::-;;:::i;39089:182::-;;;;;;;;;;-1:-1:-1;39089:182:0;;;;;:::i;:::-;;:::i;38676:405::-;;;;;;;;;;-1:-1:-1;38676:405:0;;;;;:::i;:::-;;:::i;37635:257::-;;;;;;;;;;-1:-1:-1;37635:257:0;;;;;:::i;:::-;;:::i;31545:35::-;;;;;;;;;;;;;;;;36847:497;;;;;;;;;;-1:-1:-1;36847:497:0;;;;;:::i;:::-;;:::i;32178:26::-;;;;;;;;;;;;;;;;31927:27;;;;;;;;;;;;;;;;11028:151;;;;;;;;;;-1:-1:-1;11028:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11144:18:0;;;11117:7;11144:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11028:151;48777:403;;;;;;;;;;-1:-1:-1;48777:403:0;;;;;:::i;:::-;;:::i;31587:33::-;;;;;;;;;;;;;;;;31997:30;;;;;;;;;;;;;;;;2934:201;;;;;;;;;;-1:-1:-1;2934:201:0;;;;;:::i;:::-;;:::i;32140:31::-;;;;;;;;;;;;;;;;31627:24;;;;;;;;;;;;;;;;32292:28;;;;;;;;;;;;;;;;40299:113;;;;;;;;;;-1:-1:-1;40299:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;40384:20:0;40360:4;40384:20;;;:11;:20;;;;;;;;;40299:113;9159:100;9213:13;9246:5;9239:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9159:100;:::o;11326:169::-;11409:4;11426:39;972:10;11449:7;11458:6;11426:8;:39::i;:::-;-1:-1:-1;11483:4:0;11326:169;;;;;:::o;37352:275::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;;;;;;;;;37489:4:::1;37481;37460:13;10367:12:::0;;;10279:108;37460:13:::1;:17;::::0;37476:1:::1;37460:17;:::i;:::-;37459:26;;;;:::i;:::-;37458:35;;;;:::i;:::-;37448:6;:45;;37426:142;;;::::0;-1:-1:-1;;;37426:142:0;;5872:2:1;37426:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;37426:142:0::1;5670:411:1::0;37426:142:0::1;37602:17;:6:::0;37612::::1;37602:17;:::i;:::-;37579:20;:40:::0;-1:-1:-1;37352:275:0:o;11977:492::-;12117:4;12134:36;12144:6;12152:9;12163:6;12134:9;:36::i;:::-;-1:-1:-1;;;;;12210:19:0;;12183:24;12210:19;;;:11;:19;;;;;;;;972:10;12210:33;;;;;;;;12262:26;;;;12254:79;;;;-1:-1:-1;;;12254:79:0;;6288:2:1;12254:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;12254:79:0;6086:404:1;12254:79:0;12369:57;12378:6;972:10;12419:6;12400:16;:25;12369:8;:57::i;:::-;-1:-1:-1;12457:4:0;;11977:492;-1:-1:-1;;;;11977:492:0:o;12878:215::-;972:10;12966:4;13015:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13015:34:0;;;;;;;;;;12966:4;;12983:80;;13006:7;;13015:47;;13052:10;;13015:47;:::i;:::-;12983:8;:80::i;47391:257::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;47470:46:::1;::::0;-1:-1:-1;;;47470:46:0;;47485:4:::1;47470:46;::::0;::::1;1822:51:1::0;;;47452:15:0::1;::::0;47470:31:::1;::::0;1795:18:1;;47470:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47527:51;::::0;-1:-1:-1;;;47527:51:0;;47558:10:::1;47527:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;47452:64:0;;-1:-1:-1;47542:4:0::1;::::0;47527:30:::1;::::0;6961:18:1;;47527:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;47589:51:0::1;::::0;47597:10:::1;::::0;47618:21:::1;47589:51:::0;::::1;;;::::0;::::1;::::0;;;47618:21;47597:10;47589:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47441:207;47391:257::o:0;48202:90::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;48259:18:::1;:25:::0;;-1:-1:-1;;48259:25:0::1;::::0;::::1;::::0;;48202:90::o;2676:103::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;2741:30:::1;2768:1;2741:18;:30::i;:::-;2676:103::o:0;36656:121::-;2098:6;;36708:4;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;36725:14:0::1;:22:::0;;-1:-1:-1;;36725:22:0::1;::::0;;;36656:121;:::o;37900:167::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38013:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38013:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37900:167::o;49313:98::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49377:18:0::1;49398:5;49377:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;49377:26:0::1;::::0;;49313:98::o;47952:196::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;48025:12:::1;48043:6;-1:-1:-1::0;;;;;48043:11:0::1;48076:21;48043:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48024:89;;;48132:7;48124:16;;;::::0;::::1;39996:161:::0;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;40105:10:::1;::::0;40076:40:::1;::::0;-1:-1:-1;;;;;40105:10:0;;::::1;::::0;40076:40;::::1;::::0;::::1;::::0;40105:10:::1;::::0;40076:40:::1;40127:10;:22:::0;;-1:-1:-1;;;;;;40127:22:0::1;-1:-1:-1::0;;;;;40127:22:0;;;::::1;::::0;;;::::1;::::0;;39996:161::o;38271:397::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;38421:14:::1;:29:::0;;;38461:15:::1;:31:::0;;;38503:10:::1;:21:::0;;;38516:8;38550:32:::1;38479:13:::0;38438:12;38550:32:::1;:::i;:::-;:45;;;;:::i;:::-;38535:12;:60:::0;;;38630:2:::1;-1:-1:-1::0;38614:18:0::1;38606:54;;;::::0;-1:-1:-1;;;38606:54:0;;7755:2:1;38606:54:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;7833:25;7813:18;;;7806:53;7876:18;;38606:54:0::1;7553:347:1::0;38606:54:0::1;38271:397:::0;;;:::o;36484:120::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;36539:13:::1;:20:::0;;-1:-1:-1;;36570:18:0;;;;;36484:120::o;38163:100::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;38234:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38234:21:0;;::::1;::::0;;;::::1;::::0;;38163:100::o;9378:104::-;9434:13;9467:7;9460:14;;;;;:::i;39279:304::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;39423:13:::1;-1:-1:-1::0;;;;;39415:21:0::1;:4;-1:-1:-1::0;;;;;39415:21:0::1;::::0;39393:128:::1;;;::::0;-1:-1:-1;;;39393:128:0;;8107:2:1;39393:128:0::1;::::0;::::1;8089:21:1::0;8146:2;8126:18;;;8119:30;8185:34;8165:18;;;8158:62;8256:27;8236:18;;;8229:55;8301:19;;39393:128:0::1;7905:421:1::0;39393:128:0::1;39534:41;39563:4;39569:5;39534:28;:41::i;13596:413::-:0;972:10;13689:4;13733:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13733:34:0;;;;;;;;;;13786:35;;;;13778:85;;;;-1:-1:-1;;;13778:85:0;;8533:2:1;13778:85:0;;;8515:21:1;8572:2;8552:18;;;8545:30;8611:34;8591:18;;;8584:62;-1:-1:-1;;;8662:18:1;;;8655:35;8707:19;;13778:85:0;8331:401:1;13778:85:0;13899:67;972:10;13922:7;13950:15;13931:16;:34;13899:8;:67::i;:::-;-1:-1:-1;13997:4:0;;13596:413;-1:-1:-1;;;13596:413:0:o;10790:175::-;10876:4;10893:42;972:10;10917:9;10928:6;10893:9;:42::i;39787:201::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;39920:14:::1;::::0;39879:56:::1;::::0;-1:-1:-1;;;;;39920:14:0;;::::1;::::0;39879:56;::::1;::::0;::::1;::::0;39920:14:::1;::::0;39879:56:::1;39946:14;:34:::0;;-1:-1:-1;;;;;;39946:34:0::1;-1:-1:-1::0;;;;;39946:34:0;;;::::1;::::0;;;::::1;::::0;;39787:201::o;47656:288::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47751:20:0;::::1;47743:59;;;::::0;-1:-1:-1;;;47743:59:0;;8939:2:1;47743:59:0::1;::::0;::::1;8921:21:1::0;8978:2;8958:18;;;8951:30;9017:28;8997:18;;;8990:56;9063:18;;47743:59:0::1;8737:350:1::0;47743:59:0::1;47840:39;::::0;-1:-1:-1;;;47840:39:0;;47873:4:::1;47840:39;::::0;::::1;1822:51:1::0;47813:24:0::1;::::0;-1:-1:-1;;;;;47840:24:0;::::1;::::0;::::1;::::0;1795:18:1;;47840:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47890:46;::::0;-1:-1:-1;;;47890:46:0;;-1:-1:-1;;;;;7006:32:1;;;47890:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;47813:66:0;;-1:-1:-1;47890:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;47890:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47732:212;47656:288:::0;;:::o;39089:182::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39174:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39174:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39229:34;;1163:41:1;;;39229:34:0::1;::::0;1136:18:1;39229:34:0::1;;;;;;;39089:182:::0;;:::o;38676:405::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;38827:15:::1;:30:::0;;;38868:16:::1;:32:::0;;;38911:11:::1;:22:::0;;;38925:8;38960:34:::1;38887:13:::0;38845:12;38960:34:::1;:::i;:::-;:48;;;;:::i;:::-;38944:13;:64:::0;;;39044:1:::1;-1:-1:-1::0;39027:18:0::1;39019:54;;;::::0;-1:-1:-1;;;39019:54:0;;9294:2:1;39019:54:0::1;::::0;::::1;9276:21:1::0;9333:2;9313:18;;;9306:30;9372:25;9352:18;;;9345:53;9415:18;;39019:54:0::1;9092:347:1::0;37635:257:0;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;37776:4:::1;37768;37746:13;10367:12:::0;;;10279:108;37746:13:::1;:18;::::0;37762:2:::1;37746:18;:::i;:::-;37745:27;;;;:::i;:::-;37744:36;;;;:::i;:::-;37734:6;:46;;37712:132;;;::::0;-1:-1:-1;;;37712:132:0;;9646:2:1;37712:132:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:34;9819:19;;37712:132:0::1;9444:400:1::0;37712:132:0::1;37867:17;:6:::0;37877::::1;37867:17;:::i;:::-;37855:9;:29:::0;-1:-1:-1;37635:257:0:o;36847:497::-;2098:6;;36955:4;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;37034:6:::1;37013:13;10367:12:::0;;;10279:108;37013:13:::1;:17;::::0;37029:1:::1;37013:17;:::i;:::-;37012:28;;;;:::i;:::-;36999:9;:41;;36977:144;;;::::0;-1:-1:-1;;;36977:144:0;;10051:2:1;36977:144:0::1;::::0;::::1;10033:21:1::0;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:51;10241:19;;36977:144:0::1;9849:417:1::0;36977:144:0::1;37189:4;37168:13;10367:12:::0;;;10279:108;37168:13:::1;:17;::::0;37184:1:::1;37168:17;:::i;:::-;37167:26;;;;:::i;:::-;37154:9;:39;;37132:141;;;::::0;-1:-1:-1;;;37132:141:0;;10473:2:1;37132:141:0::1;::::0;::::1;10455:21:1::0;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:50;10662:19;;37132:141:0::1;10271:416:1::0;37132:141:0::1;-1:-1:-1::0;37284:18:0::1;:30:::0;37332:4:::1;::::0;36847:497::o;48777:403::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;48865:18:::1;::::0;;;::::1;;;48864:19;48856:65;;;::::0;-1:-1:-1;;;48856:65:0;;10894:2:1;48856:65:0::1;::::0;::::1;10876:21:1::0;10933:2;10913:18;;;10906:30;10972:34;10952:18;;;10945:62;-1:-1:-1;;;11023:18:1;;;11016:31;11064:19;;48856:65:0::1;10692:397:1::0;48856:65:0::1;48975:13;-1:-1:-1::0;;;;;48954:35:0::1;:9;-1:-1:-1::0;;;;;48954:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;48993:64:0;::::1;49014:42;48993:64;;48954:103;48932:200;;;::::0;-1:-1:-1;;;48932:200:0;;11296:2:1;48932:200:0::1;::::0;::::1;11278:21:1::0;11335:2;11315:18;;;11308:30;11374:34;11354:18;;;11347:62;-1:-1:-1;;;11425:18:1;;;11418:44;11479:19;;48932:200:0::1;11094:410:1::0;48932:200:0::1;-1:-1:-1::0;;;;;49143:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;49143:29:0::1;49168:4;49143:29;::::0;;48777:403::o;2934:201::-;2098:6;;-1:-1:-1;;;;;2098:6:0;972:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3023:22:0;::::1;3015:73;;;::::0;-1:-1:-1;;;3015:73:0;;11711:2:1;3015:73:0::1;::::0;::::1;11693:21:1::0;11750:2;11730:18;;;11723:30;11789:34;11769:18;;;11762:62;-1:-1:-1;;;11840:18:1;;;11833:36;11886:19;;3015:73:0::1;11509:402:1::0;3015:73:0::1;3099:28;3118:8;3099:18;:28::i;:::-;2934:201:::0;:::o;17280:380::-;-1:-1:-1;;;;;17416:19:0;;17408:68;;;;-1:-1:-1;;;17408:68:0;;12118:2:1;17408:68:0;;;12100:21:1;12157:2;12137:18;;;12130:30;12196:34;12176:18;;;12169:62;-1:-1:-1;;;12247:18:1;;;12240:34;12291:19;;17408:68:0;11916:400:1;17408:68:0;-1:-1:-1;;;;;17495:21:0;;17487:68;;;;-1:-1:-1;;;17487:68:0;;12523:2:1;17487:68:0;;;12505:21:1;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:32;12694:19;;17487:68:0;12321:398:1;17487:68:0;-1:-1:-1;;;;;17568:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17620:32;;1613:25:1;;;17620:32:0;;1586:18:1;17620:32:0;;;;;;;17280:380;;;:::o;40420:4064::-;-1:-1:-1;;;;;40552:18:0;;40544:68;;;;-1:-1:-1;;;40544:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40631:16:0;;40623:64;;;;-1:-1:-1;;;40623:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40707:17:0;;;;;;:11;:17;;;;;;;;40706:18;40698:48;;;;-1:-1:-1;;;40698:48:0;;13736:2:1;40698:48:0;;;13718:21:1;13775:2;13755:18;;;13748:30;-1:-1:-1;;;13794:18:1;;;13787:48;13852:18;;40698:48:0;13534:342:1;40698:48:0;-1:-1:-1;;;;;40766:15:0;;;;;;:11;:15;;;;;;;;40765:16;40757:48;;;;-1:-1:-1;;;40757:48:0;;14083:2:1;40757:48:0;;;14065:21:1;14122:2;14102:18;;;14095:30;-1:-1:-1;;;14141:18:1;;;14134:50;14201:18;;40757:48:0;13881:344:1;40757:48:0;40844:6;40854:1;40844:11;40840:93;;40872:28;40888:4;40894:2;40898:1;40872:15;:28::i;40840:93::-;40949:14;;;;40945:1694;;;2098:6;;-1:-1:-1;;;;;41002:15:0;;;2098:6;;41002:15;;;;:49;;-1:-1:-1;2098:6:0;;-1:-1:-1;;;;;41038:13:0;;;2098:6;;41038:13;;41002:49;:86;;;;-1:-1:-1;;;;;;41072:16:0;;;;41002:86;:128;;;;-1:-1:-1;;;;;;41109:21:0;;41123:6;41109:21;;41002:128;:158;;;;-1:-1:-1;41152:8:0;;-1:-1:-1;;;41152:8:0;;;;41151:9;41002:158;40980:1648;;;41200:13;;;;;;;41195:223;;-1:-1:-1;;;;;41272:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41301:23:0;;;;;;:19;:23;;;;;;;;41272:52;41238:160;;;;-1:-1:-1;;;41238:160:0;;14432:2:1;41238:160:0;;;14414:21:1;14471:2;14451:18;;;14444:30;-1:-1:-1;;;14490:18:1;;;14483:52;14552:18;;41238:160:0;14230:346:1;41238:160:0;-1:-1:-1;;;;;41492:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41549:35:0;;;;;;:31;:35;;;;;;;;41548:36;41492:92;41466:1147;;;41671:20;;41661:6;:30;;41627:169;;;;-1:-1:-1;;;41627:169:0;;14783:2:1;41627:169:0;;;14765:21:1;14822:2;14802:18;;;14795:30;14861:34;14841:18;;;14834:62;-1:-1:-1;;;14912:18:1;;;14905:51;14973:19;;41627:169:0;14581:417:1;41627:169:0;41879:9;;-1:-1:-1;;;;;10551:18:0;;10524:7;10551:18;;;;;;;;;;;41853:22;;:6;:22;:::i;:::-;:35;;41819:140;;;;-1:-1:-1;;;41819:140:0;;15205:2:1;41819:140:0;;;15187:21:1;15244:2;15224:18;;;15217:30;-1:-1:-1;;;15263:18:1;;;15256:49;15322:18;;41819:140:0;15003:343:1;41819:140:0;41466:1147;;;-1:-1:-1;;;;;42057:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42112:37:0;;;;;;:31;:37;;;;;;;;42111:38;42057:92;42031:582;;;42236:20;;42226:6;:30;;42192:170;;;;-1:-1:-1;;;42192:170:0;;15553:2:1;42192:170:0;;;15535:21:1;15592:2;15572:18;;;15565:30;15631:34;15611:18;;;15604:62;-1:-1:-1;;;15682:18:1;;;15675:52;15744:19;;42192:170:0;15351:418:1;42031:582:0;-1:-1:-1;;;;;42393:35:0;;;;;;:31;:35;;;;;;;;42388:225;;42513:9;;-1:-1:-1;;;;;10551:18:0;;10524:7;10551:18;;;;;;;;;;;42487:22;;:6;:22;:::i;:::-;:35;;42453:140;;;;-1:-1:-1;;;42453:140:0;;15205:2:1;42453:140:0;;;15187:21:1;15244:2;15224:18;;;15217:30;-1:-1:-1;;;15263:18:1;;;15256:49;15322:18;;42453:140:0;15003:343:1;42453:140:0;42700:4;42651:28;10551:18;;;;;;;;;;;42758;;42734:42;;;;;;;42807:35;;-1:-1:-1;42831:11:0;;;;;;;42807:35;:61;;;;-1:-1:-1;42860:8:0;;-1:-1:-1;;;42860:8:0;;;;42859:9;42807:61;:110;;;;-1:-1:-1;;;;;;42886:31:0;;;;;;:25;:31;;;;;;;;42885:32;42807:110;:153;;;;-1:-1:-1;;;;;;42935:25:0;;;;;;:19;:25;;;;;;;;42934:26;42807:153;:194;;;;-1:-1:-1;;;;;;42978:23:0;;;;;;:19;:23;;;;;;;;42977:24;42807:194;42789:326;;;43028:8;:15;;-1:-1:-1;;;;43028:15:0;-1:-1:-1;;;43028:15:0;;;43060:10;:8;:10::i;:::-;43087:8;:16;;-1:-1:-1;;;;43087:16:0;;;42789:326;43143:8;;-1:-1:-1;;;;;43253:25:0;;43127:12;43253:25;;;:19;:25;;;;;;43143:8;-1:-1:-1;;;43143:8:0;;;;;43142:9;;43253:25;;:52;;-1:-1:-1;;;;;;43282:23:0;;;;;;:19;:23;;;;;;;;43253:52;43249:100;;;-1:-1:-1;43332:5:0;43249:100;43361:12;43466:7;43462:969;;;-1:-1:-1;;;;;43518:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43567:1;43551:13;;:17;43518:50;43514:768;;;43596:34;43626:3;43596:25;43607:13;;43596:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43589:41;;43699:13;;43679:16;;43672:4;:23;;;;:::i;:::-;43671:41;;;;:::i;:::-;43649:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43771:13:0;;43756:11;;43749:18;;:4;:18;:::i;:::-;43748:36;;;;:::i;:::-;43731:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43851:13:0;;43832:15;;43825:22;;:4;:22;:::i;:::-;43824:40;;;;:::i;:::-;43803:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;43514:768:0;;-1:-1:-1;43514:768:0;;-1:-1:-1;;;;;43926:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43976:1;43961:12;;:16;43926:51;43922:360;;;44005:33;44034:3;44005:24;44016:12;;44005:6;:10;;:24;;;;:::i;:33::-;43998:40;;44106:12;;44087:15;;44080:4;:22;;;;:::i;:::-;44079:39;;;;:::i;:::-;44057:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44176:12:0;;44162:10;;44155:17;;:4;:17;:::i;:::-;44154:34;;;;:::i;:::-;44137:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44254:12:0;;44236:14;;44229:21;;:4;:21;:::i;:::-;44228:38;;;;:::i;:::-;44207:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43922:360:0;44302:8;;44298:91;;44331:42;44347:4;44361;44368;44331:15;:42::i;:::-;44405:14;44415:4;44405:14;;:::i;:::-;;;43462:969;44443:33;44459:4;44465:2;44469:6;44443:15;:33::i;:::-;40533:3951;;;;40420:4064;;;:::o;3295:191::-;3388:6;;;-1:-1:-1;;;;;3405:17:0;;;-1:-1:-1;;;;;;3405:17:0;;;;;;;3438:40;;3388:6;;;3405:17;3388:6;;3438:40;;3369:16;;3438:40;3358:128;3295:191;:::o;39591:188::-;-1:-1:-1;;;;;39674:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39674:39:0;;;;;;;;;;39731:40;;39674:39;;:31;39731:40;;;39591:188;;:::o;14499:733::-;-1:-1:-1;;;;;14639:20:0;;14631:70;;;;-1:-1:-1;;;14631:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14720:23:0;;14712:71;;;;-1:-1:-1;;;14712:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14880:17:0;;14856:21;14880:17;;;;;;;;;;;14916:23;;;;14908:74;;;;-1:-1:-1;;;14908:74:0;;16109:2:1;14908:74:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:36;16284:19;;14908:74:0;15907:402:1;14908:74:0;-1:-1:-1;;;;;15018:17:0;;;:9;:17;;;;;;;;;;;15038:22;;;15018:42;;15082:20;;;;;;;;:30;;15054:6;;15018:9;15082:30;;15054:6;;15082:30;:::i;:::-;;;;;;;;15147:9;-1:-1:-1;;;;;15130:35:0;15139:6;-1:-1:-1;;;;;15130:35:0;;15158:6;15130:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;15130:35:0;;;;;;;;15178:46;38271:397;45610:1773;45693:4;45649:23;10551:18;;;;;;;;;;;45649:50;;45710:25;45805:13;;45772:17;;45738:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;45710:108;-1:-1:-1;45829:12:0;45858:20;;;:46;;-1:-1:-1;45882:22:0;;45858:46;45854:85;;;45921:7;;;45610:1773::o;45854:85::-;45973:18;;:23;;45994:2;45973:23;:::i;:::-;45955:15;:41;45951:115;;;46031:18;;:23;;46052:2;46031:23;:::i;:::-;46013:41;;45951:115;46127:23;46240:1;46207:17;46172:18;;46154:15;:36;;;;:::i;:::-;46153:71;;;;:::i;:::-;:88;;;;:::i;:::-;46127:114;-1:-1:-1;46252:26:0;46281:36;:15;46127:114;46281:19;:36::i;:::-;46252:65;-1:-1:-1;46358:21:0;46392:36;46252:65;46392:16;:36::i;:::-;46441:18;46462:44;:21;46488:17;46462:25;:44::i;:::-;46441:65;;46519:22;46544:83;46624:1;46603:18;;:22;;;;:::i;:::-;46582:44;;:17;:44;:::i;:::-;46559:17;;46544:33;;:10;;:14;:33::i;:83::-;46519:108;;46648:18;46669:79;46745:1;46724:18;;:22;;;;:::i;:::-;46703:44;;:17;:44;:::i;:::-;46684:13;;46669:29;;:10;;:14;:29::i;:79::-;46648:100;-1:-1:-1;46761:23:0;46648:100;46787:27;46800:14;46787:10;:27;:::i;:::-;:40;;;;:::i;:::-;46861:1;46840:18;:22;;;46873:17;:21;;;46905:13;:17;;;46957:10;;46949:47;;46761:66;;-1:-1:-1;;;;;;46957:10:0;;46981;;46949:47;46861:1;46949:47;46981:10;46957;46949:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46935:61:0;;-1:-1:-1;;47013:19:0;;;;;:42;;;47054:1;47036:15;:19;47013:42;47009:278;;;47072:46;47085:15;47102;47072:12;:46::i;:::-;47242:18;;47138:137;;;16516:25:1;;;16572:2;16557:18;;16550:34;;;16600:18;;;16593:34;;;;47138:137:0;;;;;;16504:2:1;47138:137:0;;;47009:278;47321:14;;47313:62;;-1:-1:-1;;;;;47321:14:0;;;;47349:21;;47313:62;;;;47349:21;47321:14;47313:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45610:1773:0:o;22412:98::-;22470:7;22497:5;22501:1;22497;:5;:::i;:::-;22490:12;22412:98;-1:-1:-1;;;22412:98:0:o;22811:::-;22869:7;22896:5;22900:1;22896;:5;:::i;22055:98::-;22113:7;22140:5;22144:1;22140;:5;:::i;44492:589::-;44642:16;;;44656:1;44642:16;;;;;;;;44618:21;;44642:16;;;;;;;;;;-1:-1:-1;44642:16:0;44618:40;;44687:4;44669;44674:1;44669:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44669:23:0;;;-1:-1:-1;;;;;44669:23:0;;;;;44713:15;-1:-1:-1;;;;;44713:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44703:4;44708:1;44703:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44703:32:0;;;-1:-1:-1;;;;;44703:32:0;;;;;44748:62;44765:4;44780:15;44798:11;44748:8;:62::i;:::-;44849:224;;-1:-1:-1;;;44849:224:0;;-1:-1:-1;;;;;44849:15:0;:66;;;;:224;;44930:11;;44956:1;;45000:4;;45027;;45047:15;;44849:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44547:534;44492:589;:::o;45089:513::-;45237:62;45254:4;45269:15;45287:11;45237:8;:62::i;:::-;45342:15;-1:-1:-1;;;;;45342:31:0;;45381:9;45414:4;45434:11;45460:1;45503;45546:7;2098:6;;-1:-1:-1;;;;;2098:6:0;;2025:87;45546:7;45342:252;;;;;;-1:-1:-1;;;;;;45342:252:0;;;-1:-1:-1;;;;;18502:15:1;;;45342:252:0;;;18484:34:1;18534:18;;;18527:34;;;;18577:18;;;18570:34;;;;18620:18;;;18613:34;18684:15;;;18663:19;;;18656:44;45568:15:0;18716:19:1;;;18709:35;18418:19;;45342:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45089:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;12724:401::-;12926:2;12908:21;;;12965:2;12945:18;;;12938:30;13004:34;12999:2;12984:18;;12977:62;-1:-1:-1;;;13070:2:1;13055:18;;13048:35;13115:3;13100:19;;12724:401::o;13130:399::-;13332:2;13314:21;;;13371:2;13351:18;;;13344:30;13410:34;13405:2;13390:18;;13383:62;-1:-1:-1;;;13476:2:1;13461:18;;13454:33;13519:3;13504:19;;13130:399::o;15774:128::-;15841:9;;;15862:11;;;15859:37;;;15876:18;;:::i;16770:127::-;16831:10;16826:3;16822:20;16819:1;16812:31;16862:4;16859:1;16852:15;16886:4;16883:1;16876:15;16902:251;16972:6;17025:2;17013:9;17004:7;17000:23;16996:32;16993:52;;;17041:1;17038;17031:12;16993:52;17073:9;17067:16;17092:31;17117:5;17092:31;:::i;17158:980::-;17420:4;17468:3;17457:9;17453:19;17499:6;17488:9;17481:25;17525:2;17563:6;17558:2;17547:9;17543:18;17536:34;17606:3;17601:2;17590:9;17586:18;17579:31;17630:6;17665;17659:13;17696:6;17688;17681:22;17734:3;17723:9;17719:19;17712:26;;17773:2;17765:6;17761:15;17747:29;;17794:1;17804:195;17818:6;17815:1;17812:13;17804:195;;;17883:13;;-1:-1:-1;;;;;17879:39:1;17867:52;;17974:15;;;;17939:12;;;;17915:1;17833:9;17804:195;;;-1:-1:-1;;;;;;;18055:32:1;;;;18050:2;18035:18;;18028:60;-1:-1:-1;;;18119:3:1;18104:19;18097:35;18016:3;17158:980;-1:-1:-1;;;17158:980:1:o;18755:306::-;18843:6;18851;18859;18912:2;18900:9;18891:7;18887:23;18883:32;18880:52;;;18928:1;18925;18918:12;18880:52;18957:9;18951:16;18941:26;;19007:2;18996:9;18992:18;18986:25;18976:35;;19051:2;19040:9;19036:18;19030:25;19020:35;;18755:306;;;;;:::o

Swarm Source

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