ETH Price: $3,382.76 (-1.87%)
Gas: 3 Gwei

Token

None Trading (NONE)
 

Overview

Max Total Supply

1,000,000 NONE

Holders

1,515 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
35.051055954469410616 NONE

Value
$0.00
0x0e59a2a95534625005c73d47587dfd07c1be7657
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

None Trading solution directly in Discord. Trade NFTs, and shitcoins, and create tasks to automate your trading journey.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
None

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-07-31
*/

// SPDX-License-Identifier: MIT
// 
//          NNNNNNNN        NNNNNNNN     OOOOOOOOO     NNNNNNNN        NNNNNNNNEEEEEEEEEEEEEEEEEEEEEE
//          N:::::::N       N::::::N   OO:::::::::OO   N:::::::N       N::::::NE::::::::::::::::::::E
//          N::::::::N      N::::::N OO:::::::::::::OO N::::::::N      N::::::NE::::::::::::::::::::E
//          N:::::::::N     N::::::NO:::::::OOO:::::::ON:::::::::N     N::::::NEE::::::EEEEEEEEE::::E
//          N::::::::::N    N::::::NO::::::O   O::::::ON::::::::::N    N::::::N  E:::::E       EEEEEE
//          N:::::::::::N   N::::::NO:::::O     O:::::ON:::::::::::N   N::::::N  E:::::E             
//          N:::::::N::::N  N::::::NO:::::O     O:::::ON:::::::N::::N  N::::::N  E::::::EEEEEEEEEE   
//          N::::::N N::::N N::::::NO:::::O     O:::::ON::::::N N::::N N::::::N  E:::::::::::::::E   
//          N::::::N  N::::N:::::::NO:::::O     O:::::ON::::::N  N::::N:::::::N  E:::::::::::::::E   
//          N::::::N   N:::::::::::NO:::::O     O:::::ON::::::N   N:::::::::::N  E::::::EEEEEEEEEE   
//          N::::::N    N::::::::::NO:::::O     O:::::ON::::::N    N::::::::::N  E:::::E             
//          N::::::N     N:::::::::NO::::::O   O::::::ON::::::N     N:::::::::N  E:::::E       EEEEEE
//          N::::::N      N::::::::NO:::::::OOO:::::::ON::::::N      N::::::::NEE::::::EEEEEEEE:::::E
//          N::::::N       N:::::::N OO:::::::::::::OO N::::::N       N:::::::NE::::::::::::::::::::E
//          N::::::N        N::::::N   OO:::::::::OO   N::::::N        N::::::NE::::::::::::::::::::E
//          NNNNNNNN         NNNNNNN     OOOOOOOOO     NNNNNNNN         NNNNNNNEEEEEEEEEEEEEEEEEEEEEE
// 
// 
//                  An enterprise level discord based NFT and shitcoin trading tool...
// 
//                                          https://noneth.io
//                                        https://docs.noneth.io
//                                      https://discord.gg/noneth
//                                     https://twitter.com/nonethio
// 
//                                          None Token Contract
//                      The purpose of this contract is run the $NONE token on it.
//                      - 4% to the revenue split helper (20% of revenue to holders)
//                                  - 1% to Liquidity Pool (automatic)
// 
pragma solidity 0.8.20;

/**
 * @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 None is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool private swapping;

    address public immutable revShareWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

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

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

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

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;

    // 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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("None Trading", "NONE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //Uniswap V2 Router
        );

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

        // Creates the Uniswap Pair
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyRevShareFee = 8; // Lowered to 4% after launch
        uint256 _buyLiquidityFee = 2; // Lowered to 1% after launch

        uint256 _sellRevShareFee = 8; // Lowered to 4% after launch
        uint256 _sellLiquidityFee = 2; // Lowered to 1% after launch

        uint256 totalSupply = 1_000_000 * 1e18; // 1 million

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

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

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

        revShareWallet = address(0x17272b36596DD16041a6Aea49304B7BfEc221A15); // Set as revShare wallet - Helper Contract

        // Exclude from paying fees or having max transaction amount if; is owner, is deployer, is dead address. 
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), 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 {}

    // Will enable trading, once this is toggeled, it will not be able to be turned off.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // Trigger this post launch once price is more stable. Made to avoid whales and snipers hogging supply.
    function updateLimitsAndFees() external onlyOwner {
        maxTransactionAmount = 10_000 * (10**18); // 1%
        maxWallet = 25_000 * (10**18); // 2.5%
    
        buyRevShareFee = 4; // 4%
        buyLiquidityFee = 1; // 1%
        buyTotalFees = 5;

        sellRevShareFee = 4; // 4%
        sellLiquidityFee = 1; // 1%
        sellTotalFees = 5;
    }

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

    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 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 (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // Buying
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                // Selling
                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) {
            // Sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // Buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / 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; ignore slippage
            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;
        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 - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForRevShare = (ethBalance * tokensForRevShare) / (totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForLiquidity = ethBalance - ethForRevShare;

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

        tokensForLiquidity = 0;
        tokensForRevShare = 0;

        (success, ) = address(revShareWallet).call{value: address(this).balance}("");
    }
        
    // The helper contract will also be used to be able to call the 5 functions below. 
    // Any functions that have to do with ETH or Tokens will be sent directly to the helper contract. 
    // This means that the split of 80% to the team, and 20% to the holders is intact.
    modifier onlyHelper() {
        require(revShareWallet == _msgSender(), "Token: caller is not the Helper");
        _;
    }

    // @Helper - Callable by Helper contract in-case tokens get's stuck in the token contract.
    function withdrawStuckToken(address _token, address _to) external onlyHelper {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    // @Helper - Callable by Helper contract in-case ETH get's stuck in the token contract.
    function withdrawStuckEth(address toAddr) external onlyHelper {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

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

    // @Helper - Unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyHelper {
        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"},{"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":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"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":"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":"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":"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":"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":[],"name":"updateLimitsAndFees","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"},{"stateMutability":"payable","type":"receive"}]

6101006040526008805461ffff191690553480156200001c575f80fd5b506040518060400160405280600c81526020016b4e6f6e652054726164696e6760a01b815250604051806040016040528060048152602001634e4f4e4560e01b8152508160039081620000709190620006a3565b5060046200007f8282620006a3565b5050506200009c620000966200035560201b60201c565b62000359565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000be816001620003aa565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000107573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012d91906200076b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000179573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019f91906200076b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ea573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021091906200076b565b6001600160a01b031660a08190526200022b906001620003aa565b60a0516200023b90600162000422565b68878678326eac900000600681905560075560086002818169d3c21bcecceda10000006127106200026e826005620007ae565b6200027a9190620007ce565b60e052600b859055600c849055620002938486620007ee565b600a55600e839055600f829055620002ac8284620007ee565b600d557317272b36596dd16041a6aea49304b7bfec221a1560c052620002e6620002de6005546001600160a01b031690565b600162000475565b620002f330600162000475565b6200030261dead600162000475565b62000321620003196005546001600160a01b031690565b6001620003aa565b6200032e306001620003aa565b6200033d61dead6001620003aa565b6200034933826200051d565b50505050505062000804565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003f85760405162461bcd60e51b815260206004820181905260248201525f8051602062002d2e83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004bf5760405162461bcd60e51b815260206004820181905260248201525f8051602062002d2e8339815191526044820152606401620003ef565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ef565b8060025f828254620005889190620007ee565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b6908490620007ee565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062d57607f821691505b6020821081036200064c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005ff575f81815260208120601f850160051c810160208610156200067a5750805b601f850160051c820191505b818110156200069b5782815560010162000686565b505050505050565b81516001600160401b03811115620006bf57620006bf62000604565b620006d781620006d0845462000618565b8462000652565b602080601f8311600181146200070d575f8415620006f55750858301515b5f19600386901b1c1916600185901b1785556200069b565b5f85815260208120601f198616915b828110156200073d578886015182559484019460019091019084016200071c565b50858210156200075b57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200077c575f80fd5b81516001600160a01b038116811462000793575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007c857620007c86200079a565b92915050565b5f82620007e957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007c857620007c86200079a565b60805160a05160c05160e05161248d620008a15f395f8181610753015281816116e201528181611be20152611c1401525f818161053901528181610a2301528181610a8b01528181610d6401528181610f6c0152611d3a01525f818161041401528181610ba60152610fb401525f818161031d01528181611e0301528181611eba01528181611ef601528181611f6a0152611f91015261248d5ff3fe608060405260043610610257575f3560e01c80637ca8448a1161013f578063c0246668116100b3578063e2f4560511610078578063e2f4560514610742578063f11a24d314610775578063f2fde38b1461078a578063f6374342146107a9578063f8b45b05146107be578063fe575a87146107d3575f80fd5b8063c024666814610696578063c8c8ebe4146106b5578063d85ba063146106ca578063dd62ed3e146106df578063e19b282314610723575f80fd5b80639c6868af116101045780639c6868af146105de578063a457c2d7146105f2578063a9059cbb14610611578063b62496f514610630578063bbc0c7421461065e578063bc205ad314610677575f80fd5b80637ca8448a1461055b5780638a8c523c1461057a5780638da5cb5b1461058e57806395d89b41146105ab5780639a7a23d6146105bf575f80fd5b8063313ce567116101d65780636ddd17131161019b5780636ddd17131461048257806370a08231146104a0578063715018a6146104d45780637571336a146104ea57806375e3661e14610509578063782c4e9914610528575f80fd5b8063313ce567146103c957806339509351146103e457806349bd5a5e146104035780634fbee193146104365780636a486a8e1461046d575f80fd5b806318160ddd1161021c57806318160ddd1461035757806319eab0421461036b5780631a8145bb1461038057806323b872dd1461039557806324b9f3c1146103b4575f80fd5b806306fdde0314610262578063095ea7b31461028c57806310d5de53146102bb578063156c2f35146102e95780631694505e1461030c575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061027661080a565b6040516102839190612067565b60405180910390f35b348015610297575f80fd5b506102ab6102a63660046120c6565b61089a565b6040519015158152602001610283565b3480156102c6575f80fd5b506102ab6102d53660046120f0565b60136020525f908152604090205460ff1681565b3480156102f4575f80fd5b506102fe600b5481565b604051908152602001610283565b348015610317575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b348015610362575f80fd5b506002546102fe565b348015610376575f80fd5b506102fe600e5481565b34801561038b575f80fd5b506102fe60115481565b3480156103a0575f80fd5b506102ab6103af366004612112565b6108b0565b3480156103bf575f80fd5b506102fe60105481565b3480156103d4575f80fd5b5060405160128152602001610283565b3480156103ef575f80fd5b506102ab6103fe3660046120c6565b61095d565b34801561040e575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610441575f80fd5b506102ab6104503660046120f0565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610478575f80fd5b506102fe600d5481565b34801561048d575f80fd5b506008546102ab90610100900460ff1681565b3480156104ab575f80fd5b506102fe6104ba3660046120f0565b6001600160a01b03165f9081526020819052604090205490565b3480156104df575f80fd5b506104e8610998565b005b3480156104f5575f80fd5b506104e861050436600461215d565b6109cd565b348015610514575f80fd5b506104e86105233660046120f0565b610a21565b348015610533575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610566575f80fd5b506104e86105753660046120f0565b610a89565b348015610585575f80fd5b506104e8610b30565b348015610599575f80fd5b506005546001600160a01b031661033f565b3480156105b6575f80fd5b50610276610b6b565b3480156105ca575f80fd5b506104e86105d936600461215d565b610b7a565b3480156105e9575f80fd5b506104e8610c55565b3480156105fd575f80fd5b506102ab61060c3660046120c6565b610cbe565b34801561061c575f80fd5b506102ab61062b3660046120c6565b610d56565b34801561063b575f80fd5b506102ab61064a3660046120f0565b60146020525f908152604090205460ff1681565b348015610669575f80fd5b506008546102ab9060ff1681565b348015610682575f80fd5b506104e8610691366004612194565b610d62565b3480156106a1575f80fd5b506104e86106b036600461215d565b610ee2565b3480156106c0575f80fd5b506102fe60065481565b3480156106d5575f80fd5b506102fe600a5481565b3480156106ea575f80fd5b506102fe6106f9366004612194565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561072e575f80fd5b506104e861073d3660046120f0565b610f6a565b34801561074d575f80fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000081565b348015610780575f80fd5b506102fe600c5481565b348015610795575f80fd5b506104e86107a43660046120f0565b611097565b3480156107b4575f80fd5b506102fe600f5481565b3480156107c9575f80fd5b506102fe60075481565b3480156107de575f80fd5b506102ab6107ed3660046120f0565b6001600160a01b03165f9081526009602052604090205460ff1690565b606060038054610819906121c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906121c0565b80156108905780601f1061086757610100808354040283529160200191610890565b820191905f5260205f20905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b5f6108a6338484611132565b5060015b92915050565b5f6108bc848484611255565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109455760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109528533858403611132565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a691859061099390869061220c565b611132565b6005546001600160a01b031633146109c25760405162461bcd60e51b815260040161093c9061221f565b6109cb5f6119ad565b565b6005546001600160a01b031633146109f75760405162461bcd60e51b815260040161093c9061221f565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610a695760405162461bcd60e51b815260040161093c90612254565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610ad15760405162461bcd60e51b815260040161093c90612254565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b1a576040519150601f19603f3d011682016040523d82523d5f602084013e610b1f565b606091505b5050905080610b2c575f80fd5b5050565b6005546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161093c9061221f565b6008805461ffff1916610101179055565b606060048054610819906121c0565b6005546001600160a01b03163314610ba45760405162461bcd60e51b815260040161093c9061221f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161093c565b610b2c82826119fe565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b815260040161093c9061221f565b69021e19e0c9bab240000060065569054b40b1f852bda000006007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d3f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161093c565b610d4c3385858403611132565b5060019392505050565b5f6108a6338484611255565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610daa5760405162461bcd60e51b815260040161093c90612254565b6001600160a01b038216610e005760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161093c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e68919061228b565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610edc91906122a2565b50505050565b6005546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161093c9061221f565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610fb25760405162461bcd60e51b815260040161093c90612254565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561101157506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6110745760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b606482015260840161093c565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146110c15760405162461bcd60e51b815260040161093c9061221f565b6001600160a01b0381166111265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b61112f816119ad565b50565b6001600160a01b0383166111945760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6001600160a01b0382166111f55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161093c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661127b5760405162461bcd60e51b815260040161093c906122bd565b6001600160a01b0382166112a15760405162461bcd60e51b815260040161093c90612302565b6001600160a01b0383165f9081526009602052604090205460ff16156112fe5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b604482015260640161093c565b6001600160a01b0382165f9081526009602052604090205460ff161561135d5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161093c565b805f036113745761136f83835f611a51565b505050565b6005546001600160a01b038481169116148015906113a057506005546001600160a01b03838116911614155b80156113b457506001600160a01b03821615155b80156113cb57506001600160a01b03821661dead14155b80156113e15750600554600160a01b900460ff16155b156116d15760085460ff16611472576001600160a01b0383165f9081526012602052604090205460ff168061142d57506001600160a01b0382165f9081526012602052604090205460ff165b6114725760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161093c565b6001600160a01b0383165f9081526014602052604090205460ff1680156114b157506001600160a01b0382165f9081526013602052604090205460ff16155b15611594576006548111156115265760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161093c565b6007546001600160a01b0383165f9081526020819052604090205461154b908361220c565b111561158f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b6116d1565b6001600160a01b0382165f9081526014602052604090205460ff1680156115d357506001600160a01b0383165f9081526013602052604090205460ff16155b156116495760065481111561158f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161093c565b6001600160a01b0382165f9081526013602052604090205460ff166116d1576007546001600160a01b0383165f9081526020819052604090205461168d908361220c565b11156116d15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b305f908152602081905260409020547f0000000000000000000000000000000000000000000000000000000000000000811080159081906117195750600854610100900460ff165b801561172f5750600554600160a01b900460ff16155b801561175357506001600160a01b0385165f9081526014602052604090205460ff16155b801561177757506001600160a01b0385165f9081526012602052604090205460ff16155b801561179b57506001600160a01b0384165f9081526012602052604090205460ff16155b156117c9576005805460ff60a01b1916600160a01b1790556117bb611ba3565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b90920482161591168061181557506001600160a01b0385165f9081526012602052604090205460ff165b1561181d57505f5b5f8115611999576001600160a01b0386165f9081526014602052604090205460ff16801561184c57505f600d54115b156118d2576064600d54866118619190612345565b61186b919061235c565b9050600d54600f548261187e9190612345565b611888919061235c565b60115f828254611898919061220c565b9091555050600d54600e546118ad9083612345565b6118b7919061235c565b60105f8282546118c7919061220c565b9091555061197b9050565b6001600160a01b0387165f9081526014602052604090205460ff1680156118fa57505f600a54115b1561197b576064600a548661190f9190612345565b611919919061235c565b9050600a54600c548261192c9190612345565b611936919061235c565b60115f828254611946919061220c565b9091555050600a54600b5461195b9083612345565b611965919061235c565b60105f828254611975919061220c565b90915550505b801561198c5761198c873083611a51565b611996818661237b565b94505b6119a4878787611a51565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a775760405162461bcd60e51b815260040161093c906122bd565b6001600160a01b038216611a9d5760405162461bcd60e51b815260040161093c90612302565b6001600160a01b0383165f9081526020819052604090205481811015611b145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161093c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611b4a90849061220c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9691815260200190565b60405180910390a3610edc565b305f9081526020819052604081205490505f601054601154611bc5919061220c565b90505f821580611bd3575081155b15611bdd57505050565b611c087f00000000000000000000000000000000000000000000000000000000000000006014612345565b831115611c3d57611c3a7f00000000000000000000000000000000000000000000000000000000000000006014612345565b92505b5f60028360115486611c4f9190612345565b611c59919061235c565b611c63919061235c565b90505f611c70828661237b565b905047611c7c82611dae565b5f611c87824761237b565b90505f6002601154611c99919061235c565b611ca3908861237b565b601054611cb09084612345565b611cba919061235c565b90505f611cc7828461237b565b90505f86118015611cd757505f81115b15611d2a57611ce68682611f64565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f8114611d9b576040519150601f19603f3d011682016040523d82523d5f602084013e611da0565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611de157611de161238e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e8191906123a2565b81600181518110611e9457611e9461238e565b60200260200101906001600160a01b031690816001600160a01b031681525050611edf307f000000000000000000000000000000000000000000000000000000000000000084611132565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f339085905f908690309042906004016123bd565b5f604051808303815f87803b158015611f4a575f80fd5b505af1158015611f5c573d5f803e3d5ffd5b505050505050565b611f8f307f000000000000000000000000000000000000000000000000000000000000000084611132565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611fd56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561203b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612060919061242c565b5050505050565b5f6020808352835180828501525f5b8181101561209257858101830151858201604001528201612076565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112f575f80fd5b5f80604083850312156120d7575f80fd5b82356120e2816120b2565b946020939093013593505050565b5f60208284031215612100575f80fd5b813561210b816120b2565b9392505050565b5f805f60608486031215612124575f80fd5b833561212f816120b2565b9250602084013561213f816120b2565b929592945050506040919091013590565b801515811461112f575f80fd5b5f806040838503121561216e575f80fd5b8235612179816120b2565b9150602083013561218981612150565b809150509250929050565b5f80604083850312156121a5575f80fd5b82356121b0816120b2565b91506020830135612189816120b2565b600181811c908216806121d457607f821691505b6020821081036121f257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108aa576108aa6121f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c70657200604082015260600190565b5f6020828403121561229b575f80fd5b5051919050565b5f602082840312156122b2575f80fd5b815161210b81612150565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108aa576108aa6121f8565b5f8261237657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108aa576108aa6121f8565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156123b2575f80fd5b815161210b816120b2565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561240b5784516001600160a01b0316835293830193918301916001016123e6565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121561243e575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c3be45abb8360d52c1a64eba7643380902551ab2520fb46821e50b2770482dde64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610257575f3560e01c80637ca8448a1161013f578063c0246668116100b3578063e2f4560511610078578063e2f4560514610742578063f11a24d314610775578063f2fde38b1461078a578063f6374342146107a9578063f8b45b05146107be578063fe575a87146107d3575f80fd5b8063c024666814610696578063c8c8ebe4146106b5578063d85ba063146106ca578063dd62ed3e146106df578063e19b282314610723575f80fd5b80639c6868af116101045780639c6868af146105de578063a457c2d7146105f2578063a9059cbb14610611578063b62496f514610630578063bbc0c7421461065e578063bc205ad314610677575f80fd5b80637ca8448a1461055b5780638a8c523c1461057a5780638da5cb5b1461058e57806395d89b41146105ab5780639a7a23d6146105bf575f80fd5b8063313ce567116101d65780636ddd17131161019b5780636ddd17131461048257806370a08231146104a0578063715018a6146104d45780637571336a146104ea57806375e3661e14610509578063782c4e9914610528575f80fd5b8063313ce567146103c957806339509351146103e457806349bd5a5e146104035780634fbee193146104365780636a486a8e1461046d575f80fd5b806318160ddd1161021c57806318160ddd1461035757806319eab0421461036b5780631a8145bb1461038057806323b872dd1461039557806324b9f3c1146103b4575f80fd5b806306fdde0314610262578063095ea7b31461028c57806310d5de53146102bb578063156c2f35146102e95780631694505e1461030c575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061027661080a565b6040516102839190612067565b60405180910390f35b348015610297575f80fd5b506102ab6102a63660046120c6565b61089a565b6040519015158152602001610283565b3480156102c6575f80fd5b506102ab6102d53660046120f0565b60136020525f908152604090205460ff1681565b3480156102f4575f80fd5b506102fe600b5481565b604051908152602001610283565b348015610317575f80fd5b5061033f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b348015610362575f80fd5b506002546102fe565b348015610376575f80fd5b506102fe600e5481565b34801561038b575f80fd5b506102fe60115481565b3480156103a0575f80fd5b506102ab6103af366004612112565b6108b0565b3480156103bf575f80fd5b506102fe60105481565b3480156103d4575f80fd5b5060405160128152602001610283565b3480156103ef575f80fd5b506102ab6103fe3660046120c6565b61095d565b34801561040e575f80fd5b5061033f7f000000000000000000000000e8a70a8969bfe897e656ad3ac1fc4950bd75156681565b348015610441575f80fd5b506102ab6104503660046120f0565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610478575f80fd5b506102fe600d5481565b34801561048d575f80fd5b506008546102ab90610100900460ff1681565b3480156104ab575f80fd5b506102fe6104ba3660046120f0565b6001600160a01b03165f9081526020819052604090205490565b3480156104df575f80fd5b506104e8610998565b005b3480156104f5575f80fd5b506104e861050436600461215d565b6109cd565b348015610514575f80fd5b506104e86105233660046120f0565b610a21565b348015610533575f80fd5b5061033f7f00000000000000000000000017272b36596dd16041a6aea49304b7bfec221a1581565b348015610566575f80fd5b506104e86105753660046120f0565b610a89565b348015610585575f80fd5b506104e8610b30565b348015610599575f80fd5b506005546001600160a01b031661033f565b3480156105b6575f80fd5b50610276610b6b565b3480156105ca575f80fd5b506104e86105d936600461215d565b610b7a565b3480156105e9575f80fd5b506104e8610c55565b3480156105fd575f80fd5b506102ab61060c3660046120c6565b610cbe565b34801561061c575f80fd5b506102ab61062b3660046120c6565b610d56565b34801561063b575f80fd5b506102ab61064a3660046120f0565b60146020525f908152604090205460ff1681565b348015610669575f80fd5b506008546102ab9060ff1681565b348015610682575f80fd5b506104e8610691366004612194565b610d62565b3480156106a1575f80fd5b506104e86106b036600461215d565b610ee2565b3480156106c0575f80fd5b506102fe60065481565b3480156106d5575f80fd5b506102fe600a5481565b3480156106ea575f80fd5b506102fe6106f9366004612194565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561072e575f80fd5b506104e861073d3660046120f0565b610f6a565b34801561074d575f80fd5b506102fe7f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b348015610780575f80fd5b506102fe600c5481565b348015610795575f80fd5b506104e86107a43660046120f0565b611097565b3480156107b4575f80fd5b506102fe600f5481565b3480156107c9575f80fd5b506102fe60075481565b3480156107de575f80fd5b506102ab6107ed3660046120f0565b6001600160a01b03165f9081526009602052604090205460ff1690565b606060038054610819906121c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906121c0565b80156108905780601f1061086757610100808354040283529160200191610890565b820191905f5260205f20905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b5f6108a6338484611132565b5060015b92915050565b5f6108bc848484611255565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109455760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109528533858403611132565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a691859061099390869061220c565b611132565b6005546001600160a01b031633146109c25760405162461bcd60e51b815260040161093c9061221f565b6109cb5f6119ad565b565b6005546001600160a01b031633146109f75760405162461bcd60e51b815260040161093c9061221f565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f00000000000000000000000017272b36596dd16041a6aea49304b7bfec221a156001600160a01b03163314610a695760405162461bcd60e51b815260040161093c90612254565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f00000000000000000000000017272b36596dd16041a6aea49304b7bfec221a156001600160a01b03163314610ad15760405162461bcd60e51b815260040161093c90612254565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b1a576040519150601f19603f3d011682016040523d82523d5f602084013e610b1f565b606091505b5050905080610b2c575f80fd5b5050565b6005546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161093c9061221f565b6008805461ffff1916610101179055565b606060048054610819906121c0565b6005546001600160a01b03163314610ba45760405162461bcd60e51b815260040161093c9061221f565b7f000000000000000000000000e8a70a8969bfe897e656ad3ac1fc4950bd7515666001600160a01b0316826001600160a01b031603610c4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161093c565b610b2c82826119fe565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b815260040161093c9061221f565b69021e19e0c9bab240000060065569054b40b1f852bda000006007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d3f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161093c565b610d4c3385858403611132565b5060019392505050565b5f6108a6338484611255565b7f00000000000000000000000017272b36596dd16041a6aea49304b7bfec221a156001600160a01b03163314610daa5760405162461bcd60e51b815260040161093c90612254565b6001600160a01b038216610e005760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161093c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e68919061228b565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610eb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610edc91906122a2565b50505050565b6005546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161093c9061221f565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f00000000000000000000000017272b36596dd16041a6aea49304b7bfec221a156001600160a01b03163314610fb25760405162461bcd60e51b815260040161093c90612254565b7f000000000000000000000000e8a70a8969bfe897e656ad3ac1fc4950bd7515666001600160a01b0316816001600160a01b03161415801561101157506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6110745760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b606482015260840161093c565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146110c15760405162461bcd60e51b815260040161093c9061221f565b6001600160a01b0381166111265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b61112f816119ad565b50565b6001600160a01b0383166111945760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6001600160a01b0382166111f55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161093c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661127b5760405162461bcd60e51b815260040161093c906122bd565b6001600160a01b0382166112a15760405162461bcd60e51b815260040161093c90612302565b6001600160a01b0383165f9081526009602052604090205460ff16156112fe5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b604482015260640161093c565b6001600160a01b0382165f9081526009602052604090205460ff161561135d5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161093c565b805f036113745761136f83835f611a51565b505050565b6005546001600160a01b038481169116148015906113a057506005546001600160a01b03838116911614155b80156113b457506001600160a01b03821615155b80156113cb57506001600160a01b03821661dead14155b80156113e15750600554600160a01b900460ff16155b156116d15760085460ff16611472576001600160a01b0383165f9081526012602052604090205460ff168061142d57506001600160a01b0382165f9081526012602052604090205460ff165b6114725760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161093c565b6001600160a01b0383165f9081526014602052604090205460ff1680156114b157506001600160a01b0382165f9081526013602052604090205460ff16155b15611594576006548111156115265760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161093c565b6007546001600160a01b0383165f9081526020819052604090205461154b908361220c565b111561158f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b6116d1565b6001600160a01b0382165f9081526014602052604090205460ff1680156115d357506001600160a01b0383165f9081526013602052604090205460ff16155b156116495760065481111561158f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161093c565b6001600160a01b0382165f9081526013602052604090205460ff166116d1576007546001600160a01b0383165f9081526020819052604090205461168d908361220c565b11156116d15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b305f908152602081905260409020547f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000811080159081906117195750600854610100900460ff165b801561172f5750600554600160a01b900460ff16155b801561175357506001600160a01b0385165f9081526014602052604090205460ff16155b801561177757506001600160a01b0385165f9081526012602052604090205460ff16155b801561179b57506001600160a01b0384165f9081526012602052604090205460ff16155b156117c9576005805460ff60a01b1916600160a01b1790556117bb611ba3565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b90920482161591168061181557506001600160a01b0385165f9081526012602052604090205460ff165b1561181d57505f5b5f8115611999576001600160a01b0386165f9081526014602052604090205460ff16801561184c57505f600d54115b156118d2576064600d54866118619190612345565b61186b919061235c565b9050600d54600f548261187e9190612345565b611888919061235c565b60115f828254611898919061220c565b9091555050600d54600e546118ad9083612345565b6118b7919061235c565b60105f8282546118c7919061220c565b9091555061197b9050565b6001600160a01b0387165f9081526014602052604090205460ff1680156118fa57505f600a54115b1561197b576064600a548661190f9190612345565b611919919061235c565b9050600a54600c548261192c9190612345565b611936919061235c565b60115f828254611946919061220c565b9091555050600a54600b5461195b9083612345565b611965919061235c565b60105f828254611975919061220c565b90915550505b801561198c5761198c873083611a51565b611996818661237b565b94505b6119a4878787611a51565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a775760405162461bcd60e51b815260040161093c906122bd565b6001600160a01b038216611a9d5760405162461bcd60e51b815260040161093c90612302565b6001600160a01b0383165f9081526020819052604090205481811015611b145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161093c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611b4a90849061220c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9691815260200190565b60405180910390a3610edc565b305f9081526020819052604081205490505f601054601154611bc5919061220c565b90505f821580611bd3575081155b15611bdd57505050565b611c087f00000000000000000000000000000000000000000000001b1ae4d6e2ef5000006014612345565b831115611c3d57611c3a7f00000000000000000000000000000000000000000000001b1ae4d6e2ef5000006014612345565b92505b5f60028360115486611c4f9190612345565b611c59919061235c565b611c63919061235c565b90505f611c70828661237b565b905047611c7c82611dae565b5f611c87824761237b565b90505f6002601154611c99919061235c565b611ca3908861237b565b601054611cb09084612345565b611cba919061235c565b90505f611cc7828461237b565b90505f86118015611cd757505f81115b15611d2a57611ce68682611f64565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f00000000000000000000000017272b36596dd16041a6aea49304b7bfec221a156001600160a01b03169147919081818185875af1925050503d805f8114611d9b576040519150601f19603f3d011682016040523d82523d5f602084013e611da0565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611de157611de161238e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e8191906123a2565b81600181518110611e9457611e9461238e565b60200260200101906001600160a01b031690816001600160a01b031681525050611edf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611132565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f339085905f908690309042906004016123bd565b5f604051808303815f87803b158015611f4a575f80fd5b505af1158015611f5c573d5f803e3d5ffd5b505050505050565b611f8f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611132565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611fd56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561203b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612060919061242c565b5050505050565b5f6020808352835180828501525f5b8181101561209257858101830151858201604001528201612076565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112f575f80fd5b5f80604083850312156120d7575f80fd5b82356120e2816120b2565b946020939093013593505050565b5f60208284031215612100575f80fd5b813561210b816120b2565b9392505050565b5f805f60608486031215612124575f80fd5b833561212f816120b2565b9250602084013561213f816120b2565b929592945050506040919091013590565b801515811461112f575f80fd5b5f806040838503121561216e575f80fd5b8235612179816120b2565b9150602083013561218981612150565b809150509250929050565b5f80604083850312156121a5575f80fd5b82356121b0816120b2565b91506020830135612189816120b2565b600181811c908216806121d457607f821691505b6020821081036121f257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108aa576108aa6121f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c70657200604082015260600190565b5f6020828403121561229b575f80fd5b5051919050565b5f602082840312156122b2575f80fd5b815161210b81612150565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108aa576108aa6121f8565b5f8261237657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108aa576108aa6121f8565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156123b2575f80fd5b815161210b816120b2565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561240b5784516001600160a01b0316835293830193918301916001016123e6565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121561243e575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c3be45abb8360d52c1a64eba7643380902551ab2520fb46821e50b2770482dde64736f6c63430008140033

Deployed Bytecode Sourcemap

33246:13975:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11205:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13372:169;;;;;;;;;;-1:-1:-1;13372:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13372:169:0;1023:187:1;34187:63:0;;;;;;;;;;-1:-1:-1;34187:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33807:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;33807:29:0;1467:177:1;33287:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;33287:51:0;1649:230:1;12325:108:0;;;;;;;;;;-1:-1:-1;12413:12:0;;12325:108;;33917:30;;;;;;;;;;;;;;;;34033:33;;;;;;;;;;;;;;;;14023:492;;;;;;;;;;-1:-1:-1;14023:492:0;;;;;:::i;:::-;;:::i;33994:32::-;;;;;;;;;;;;;;;;12167:93;;;;;;;;;;-1:-1:-1;12167:93:0;;12250:2;2487:36:1;;2475:2;2460:18;12167:93:0;2345:184:1;14924:215:0;;;;;;;;;;-1:-1:-1;14924:215:0;;;;;:::i;:::-;;:::i;33345:38::-;;;;;;;;;;;;;;;38688:126;;;;;;;;;;-1:-1:-1;38688:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38778:28:0;38754:4;38778:28;;;:19;:28;;;;;;;;;38688:126;33882:28;;;;;;;;;;;;;;;;33633:31;;;;;;;;;;-1:-1:-1;33633:31:0;;;;;;;;;;;12496:127;;;;;;;;;;-1:-1:-1;12496:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;12597:18:0;12570:7;12597:18;;;;;;;;;;;;12496:127;4722:103;;;;;;;;;;;;;:::i;:::-;;37815:167;;;;;;;;;;-1:-1:-1;37815:167:0;;;;;:::i;:::-;;:::i;47117:99::-;;;;;;;;;;-1:-1:-1;47117:99:0;;;;;:::i;:::-;;:::i;33420:39::-;;;;;;;;;;;;;;;46346:197;;;;;;;;;;-1:-1:-1;46346:197:0;;;;;:::i;:::-;;:::i;37208:112::-;;;;;;;;;;;;;:::i;4071:87::-;;;;;;;;;;-1:-1:-1;4144:6:0;;-1:-1:-1;;;;;4144:6:0;4071:87;;11424:104;;;;;;;;;;;;;:::i;38180:304::-;;;;;;;;;;-1:-1:-1;38180:304:0;;;;;:::i;:::-;;:::i;37437:370::-;;;;;;;;;;;;;:::i;15642:413::-;;;;;;;;;;-1:-1:-1;15642:413:0;;;;;:::i;:::-;;:::i;12836:175::-;;;;;;;;;;-1:-1:-1;12836:175:0;;;;;:::i;:::-;;:::i;34408:57::-;;;;;;;;;;-1:-1:-1;34408:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33593:33;;;;;;;;;;-1:-1:-1;33593:33:0;;;;;;;;45956:289;;;;;;;;;;-1:-1:-1;45956:289:0;;;;;:::i;:::-;;:::i;37990:182::-;;;;;;;;;;-1:-1:-1;37990:182:0;;;;;:::i;:::-;;:::i;33468:35::-;;;;;;;;;;;;;;;;33773:27;;;;;;;;;;;;;;;;13074:151;;;;;;;;;;-1:-1:-1;13074:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;13190:18:0;;;13163:7;13190:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13074:151;46651:328;;;;;;;;;;-1:-1:-1;46651:328:0;;;;;:::i;:::-;;:::i;33510:43::-;;;;;;;;;;;;;;;33843:30;;;;;;;;;;;;;;;;4980:201;;;;;;;;;;-1:-1:-1;4980:201:0;;;;;:::i;:::-;;:::i;33954:31::-;;;;;;;;;;;;;;;;33560:24;;;;;;;;;;;;;;;;38822:113;;;;;;;;;;-1:-1:-1;38822:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;38907:20:0;38883:4;38907:20;;;:11;:20;;;;;;;;;38822:113;11205:100;11259:13;11292:5;11285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11205:100;:::o;13372:169::-;13455:4;13472:39;3018:10;13495:7;13504:6;13472:8;:39::i;:::-;-1:-1:-1;13529:4:0;13372:169;;;;;:::o;14023:492::-;14163:4;14180:36;14190:6;14198:9;14209:6;14180:9;:36::i;:::-;-1:-1:-1;;;;;14256:19:0;;14229:24;14256:19;;;:11;:19;;;;;;;;3018:10;14256:33;;;;;;;;14308:26;;;;14300:79;;;;-1:-1:-1;;;14300:79:0;;4232:2:1;14300:79:0;;;4214:21:1;4271:2;4251:18;;;4244:30;4310:34;4290:18;;;4283:62;-1:-1:-1;;;4361:18:1;;;4354:38;4409:19;;14300:79:0;;;;;;;;;14415:57;14424:6;3018:10;14465:6;14446:16;:25;14415:8;:57::i;:::-;-1:-1:-1;14503:4:0;;14023:492;-1:-1:-1;;;;14023:492:0:o;14924:215::-;3018:10;15012:4;15061:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15061:34:0;;;;;;;;;;15012:4;;15029:80;;15052:7;;15061:47;;15098:10;;15061:47;:::i;:::-;15029:8;:80::i;4722:103::-;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;4787:30:::1;4814:1;4787:18;:30::i;:::-;4722:103::o:0;37815:167::-;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37928:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37928:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37815:167::o;47117:99::-;45766:14;-1:-1:-1;;;;;45766:30:0;3018:10;45766:30;45758:74;;;;-1:-1:-1;;;45758:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47182:18:0::1;47203:5;47182:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;47182:26:0::1;::::0;;47117:99::o;46346:197::-;45766:14;-1:-1:-1;;;;;45766:30:0;3018:10;45766:30;45758:74;;;;-1:-1:-1;;;45758:74:0;;;;;;;:::i;:::-;46420:12:::1;46438:6;-1:-1:-1::0;;;;;46438:11:0::1;46471:21;46438:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46419:89;;;46527:7;46519:16;;;::::0;::::1;;46408:135;46346:197:::0;:::o;37208:112::-;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;37263:13:::1;:20:::0;;-1:-1:-1;;37294:18:0;;;;;37208:112::o;11424:104::-;11480:13;11513:7;11506:14;;;;;:::i;38180:304::-;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;38324:13:::1;-1:-1:-1::0;;;;;38316:21:0::1;:4;-1:-1:-1::0;;;;;38316:21:0::1;::::0;38294:128:::1;;;::::0;-1:-1:-1;;;38294:128:0;;5834:2:1;38294:128:0::1;::::0;::::1;5816:21:1::0;5873:2;5853:18;;;5846:30;5912:34;5892:18;;;5885:62;5983:27;5963:18;;;5956:55;6028:19;;38294:128:0::1;5632:421:1::0;38294:128:0::1;38435:41;38464:4;38470:5;38435:28;:41::i;37437:370::-:0;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;37521:17:::1;37498:20;:40:::0;37567:17:::1;37555:9;:29:::0;37626:1:::1;37609:14;:18:::0;;;37662:1:::1;37644:15;:19:::0;;;37695:1:::1;37680:12;:16:::0;;;37709:15:::1;:19:::0;;;;37745:16:::1;:20:::0;37782:13:::1;:17:::0;37437:370::o;15642:413::-;3018:10;15735:4;15779:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15779:34:0;;;;;;;;;;15832:35;;;;15824:85;;;;-1:-1:-1;;;15824:85:0;;6260:2:1;15824:85:0;;;6242:21:1;6299:2;6279:18;;;6272:30;6338:34;6318:18;;;6311:62;-1:-1:-1;;;6389:18:1;;;6382:35;6434:19;;15824:85:0;6058:401:1;15824:85:0;15945:67;3018:10;15968:7;15996:15;15977:16;:34;15945:8;:67::i;:::-;-1:-1:-1;16043:4:0;;15642:413;-1:-1:-1;;;15642:413:0:o;12836:175::-;12922:4;12939:42;3018:10;12963:9;12974:6;12939:9;:42::i;45956:289::-;45766:14;-1:-1:-1;;;;;45766:30:0;3018:10;45766:30;45758:74;;;;-1:-1:-1;;;45758:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46052:20:0;::::1;46044:59;;;::::0;-1:-1:-1;;;46044:59:0;;6666:2:1;46044:59:0::1;::::0;::::1;6648:21:1::0;6705:2;6685:18;;;6678:30;6744:28;6724:18;;;6717:56;6790:18;;46044:59:0::1;6464:350:1::0;46044:59:0::1;46141:39;::::0;-1:-1:-1;;;46141:39:0;;46174:4:::1;46141:39;::::0;::::1;1822:51:1::0;46114:24:0::1;::::0;-1:-1:-1;;;;;46141:24:0;::::1;::::0;::::1;::::0;1795:18:1;;46141:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46191:46;::::0;-1:-1:-1;;;46191:46:0;;-1:-1:-1;;;;;7200:32:1;;;46191:46:0::1;::::0;::::1;7182:51:1::0;7249:18;;;7242:34;;;46114:66:0;;-1:-1:-1;46191:23:0;;::::1;::::0;::::1;::::0;7155:18:1;;46191:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46033:212;45956:289:::0;;:::o;37990:182::-;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38075:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38075:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38130:34;;1163:41:1;;;38130:34:0::1;::::0;1136:18:1;38130:34:0::1;;;;;;;37990:182:::0;;:::o;46651:328::-;45766:14;-1:-1:-1;;;;;45766:30:0;3018:10;45766:30;45758:74;;;;-1:-1:-1;;;45758:74:0;;;;;;;:::i;:::-;46774:13:::1;-1:-1:-1::0;;;;;46753:35:0::1;:9;-1:-1:-1::0;;;;;46753:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;46792:64:0;::::1;46813:42;46792:64;;46753:103;46731:200;;;::::0;-1:-1:-1;;;46731:200:0;;7739:2:1;46731:200:0::1;::::0;::::1;7721:21:1::0;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:1;;;7861:44;7922:19;;46731:200:0::1;7537:410:1::0;46731:200:0::1;-1:-1:-1::0;;;;;46942:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;46942:29:0::1;46967:4;46942:29;::::0;;46651:328::o;4980:201::-;4144:6;;-1:-1:-1;;;;;4144:6:0;3018:10;4291:23;4283:68;;;;-1:-1:-1;;;4283:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5069:22:0;::::1;5061:73;;;::::0;-1:-1:-1;;;5061:73:0;;8154:2:1;5061:73:0::1;::::0;::::1;8136:21:1::0;8193:2;8173:18;;;8166:30;8232:34;8212:18;;;8205:62;-1:-1:-1;;;8283:18:1;;;8276:36;8329:19;;5061:73:0::1;7952:402:1::0;5061:73:0::1;5145:28;5164:8;5145:18;:28::i;:::-;4980:201:::0;:::o;19326:380::-;-1:-1:-1;;;;;19462:19:0;;19454:68;;;;-1:-1:-1;;;19454:68:0;;8561:2:1;19454:68:0;;;8543:21:1;8600:2;8580:18;;;8573:30;8639:34;8619:18;;;8612:62;-1:-1:-1;;;8690:18:1;;;8683:34;8734:19;;19454:68:0;8359:400:1;19454:68:0;-1:-1:-1;;;;;19541:21:0;;19533:68;;;;-1:-1:-1;;;19533:68:0;;8966:2:1;19533:68:0;;;8948:21:1;9005:2;8985:18;;;8978:30;9044:34;9024:18;;;9017:62;-1:-1:-1;;;9095:18:1;;;9088:32;9137:19;;19533:68:0;8764:398:1;19533:68:0;-1:-1:-1;;;;;19614:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19666:32;;1613:25:1;;;19666:32:0;;1586:18:1;19666:32:0;;;;;;;19326:380;;;:::o;38943:3834::-;-1:-1:-1;;;;;39075:18:0;;39067:68;;;;-1:-1:-1;;;39067:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39154:16:0;;39146:64;;;;-1:-1:-1;;;39146:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39230:17:0;;;;;;:11;:17;;;;;;;;39229:18;39221:48;;;;-1:-1:-1;;;39221:48:0;;10179:2:1;39221:48:0;;;10161:21:1;10218:2;10198:18;;;10191:30;-1:-1:-1;;;10237:18:1;;;10230:48;10295:18;;39221:48:0;9977:342:1;39221:48:0;-1:-1:-1;;;;;39289:15:0;;;;;;:11;:15;;;;;;;;39288:16;39280:48;;;;-1:-1:-1;;;39280:48:0;;10526:2:1;39280:48:0;;;10508:21:1;10565:2;10545:18;;;10538:30;-1:-1:-1;;;10584:18:1;;;10577:50;10644:18;;39280:48:0;10324:344:1;39280:48:0;39345:6;39355:1;39345:11;39341:93;;39373:28;39389:4;39395:2;39399:1;39373:15;:28::i;:::-;38943:3834;;;:::o;39341:93::-;4144:6;;-1:-1:-1;;;;;39468:15:0;;;4144:6;;39468:15;;;;:49;;-1:-1:-1;4144:6:0;;-1:-1:-1;;;;;39504:13:0;;;4144:6;;39504:13;;39468:49;:86;;;;-1:-1:-1;;;;;;39538:16:0;;;;39468:86;:128;;;;-1:-1:-1;;;;;;39575:21:0;;39589:6;39575:21;;39468:128;:158;;;;-1:-1:-1;39618:8:0;;-1:-1:-1;;;39618:8:0;;;;39617:9;39468:158;39446:1642;;;39666:13;;;;39661:223;;-1:-1:-1;;;;;39738:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39767:23:0;;;;;;:19;:23;;;;;;;;39738:52;39704:160;;;;-1:-1:-1;;;39704:160:0;;10875:2:1;39704:160:0;;;10857:21:1;10914:2;10894:18;;;10887:30;-1:-1:-1;;;10933:18:1;;;10926:52;10995:18;;39704:160:0;10673:346:1;39704:160:0;-1:-1:-1;;;;;39957:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40014:35:0;;;;;;:31;:35;;;;;;;;40013:36;39957:92;39931:1146;;;40136:20;;40126:6;:30;;40092:169;;;;-1:-1:-1;;;40092:169:0;;11226:2:1;40092:169:0;;;11208:21:1;11265:2;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;-1:-1:-1;;;11355:18:1;;;11348:51;11416:19;;40092:169:0;11024:417:1;40092:169:0;40344:9;;-1:-1:-1;;;;;12597:18:0;;12570:7;12597:18;;;;;;;;;;;40318:22;;:6;:22;:::i;:::-;:35;;40284:140;;;;-1:-1:-1;;;40284:140:0;;11648:2:1;40284:140:0;;;11630:21:1;11687:2;11667:18;;;11660:30;-1:-1:-1;;;11706:18:1;;;11699:49;11765:18;;40284:140:0;11446:343:1;40284:140:0;39931:1146;;;-1:-1:-1;;;;;40521:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40576:37:0;;;;;;:31;:37;;;;;;;;40575:38;40521:92;40495:582;;;40700:20;;40690:6;:30;;40656:170;;;;-1:-1:-1;;;40656:170:0;;11996:2:1;40656:170:0;;;11978:21:1;12035:2;12015:18;;;12008:30;12074:34;12054:18;;;12047:62;-1:-1:-1;;;12125:18:1;;;12118:52;12187:19;;40656:170:0;11794:418:1;40495:582:0;-1:-1:-1;;;;;40857:35:0;;;;;;:31;:35;;;;;;;;40852:225;;40977:9;;-1:-1:-1;;;;;12597:18:0;;12570:7;12597:18;;;;;;;;;;;40951:22;;:6;:22;:::i;:::-;:35;;40917:140;;;;-1:-1:-1;;;40917:140:0;;11648:2:1;40917:140:0;;;11630:21:1;11687:2;11667:18;;;11660:30;-1:-1:-1;;;11706:18:1;;;11699:49;11765:18;;40917:140:0;11446:343:1;40917:140:0;41149:4;41100:28;12597:18;;;;;;;;;;;41207;41183:42;;;;;;;41256:35;;-1:-1:-1;41280:11:0;;;;;;;41256:35;:61;;;;-1:-1:-1;41309:8:0;;-1:-1:-1;;;41309:8:0;;;;41308:9;41256:61;:110;;;;-1:-1:-1;;;;;;41335:31:0;;;;;;:25;:31;;;;;;;;41334:32;41256:110;:153;;;;-1:-1:-1;;;;;;41384:25:0;;;;;;:19;:25;;;;;;;;41383:26;41256:153;:194;;;;-1:-1:-1;;;;;;41427:23:0;;;;;;:19;:23;;;;;;;;41426:24;41256:194;41238:326;;;41477:8;:15;;-1:-1:-1;;;;41477:15:0;-1:-1:-1;;;41477:15:0;;;41509:10;:8;:10::i;:::-;41536:8;:16;;-1:-1:-1;;;;41536:16:0;;;41238:326;41592:8;;-1:-1:-1;;;;;41702:25:0;;41576:12;41702:25;;;:19;:25;;;;;;41592:8;-1:-1:-1;;;41592:8:0;;;;;41591:9;;41702:25;;:52;;-1:-1:-1;;;;;;41731:23:0;;;;;;:19;:23;;;;;;;;41702:52;41698:100;;;-1:-1:-1;41781:5:0;41698:100;41810:12;41915:7;41911:813;;;-1:-1:-1;;;;;41964:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42013:1;41997:13;;:17;41964:50;41960:615;;;42069:3;42052:13;;42043:6;:22;;;;:::i;:::-;42042:30;;;;:::i;:::-;42035:37;;42141:13;;42121:16;;42114:4;:23;;;;:::i;:::-;42113:41;;;;:::i;:::-;42091:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42221:13:0;;42202:15;;42195:22;;:4;:22;:::i;:::-;42194:40;;;;:::i;:::-;42173:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;41960:615:0;;-1:-1:-1;41960:615:0;;-1:-1:-1;;;;;42293:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42343:1;42328:12;;:16;42293:51;42289:286;;;42398:3;42382:12;;42373:6;:21;;;;:::i;:::-;42372:29;;;;:::i;:::-;42365:36;;42469:12;;42450:15;;42443:4;:22;;;;:::i;:::-;42442:39;;;;:::i;:::-;42420:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42547:12:0;;42529:14;;42522:21;;:4;:21;:::i;:::-;42521:38;;;;:::i;:::-;42500:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42289:286:0;42595:8;;42591:91;;42624:42;42640:4;42654;42661;42624:15;:42::i;:::-;42698:14;42708:4;42698:14;;:::i;:::-;;;41911:813;42736:33;42752:4;42758:2;42762:6;42736:15;:33::i;:::-;39056:3721;;;;38943:3834;;;:::o;5341:191::-;5434:6;;;-1:-1:-1;;;;;5451:17:0;;;-1:-1:-1;;;;;;5451:17:0;;;;;;;5484:40;;5434:6;;;5451:17;5434:6;;5484:40;;5415:16;;5484:40;5404:128;5341:191;:::o;38492:188::-;-1:-1:-1;;;;;38575:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38575:39:0;;;;;;;;;;38632:40;;38575:39;;:31;38632:40;;;38492:188;;:::o;16545:733::-;-1:-1:-1;;;;;16685:20:0;;16677:70;;;;-1:-1:-1;;;16677:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16766:23:0;;16758:71;;;;-1:-1:-1;;;16758:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16926:17:0;;16902:21;16926:17;;;;;;;;;;;16962:23;;;;16954:74;;;;-1:-1:-1;;;16954:74:0;;12947:2:1;16954:74:0;;;12929:21:1;12986:2;12966:18;;;12959:30;13025:34;13005:18;;;12998:62;-1:-1:-1;;;13076:18:1;;;13069:36;13122:19;;16954:74:0;12745:402:1;16954:74:0;-1:-1:-1;;;;;17064:17:0;;;:9;:17;;;;;;;;;;;17084:22;;;17064:42;;17128:20;;;;;;;;:30;;17100:6;;17064:9;17128:30;;17100:6;;17128:30;:::i;:::-;;;;;;;;17193:9;-1:-1:-1;;;;;17176:35:0;17185:6;-1:-1:-1;;;;;17176:35:0;;17204:6;17176:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;17176:35:0;;;;;;;;17224:46;38943:3834;43920:1508;44003:4;43959:23;12597:18;;;;;;;;;;;43959:50;;44020:25;44082:17;;44048:18;;:51;;;;:::i;:::-;44020:79;-1:-1:-1;44110:12:0;44139:20;;;:46;;-1:-1:-1;44163:22:0;;44139:46;44135:85;;;44202:7;;;43920:1508::o;44135:85::-;44254:23;:18;44275:2;44254:23;:::i;:::-;44236:15;:41;44232:115;;;44312:23;:18;44333:2;44312:23;:::i;:::-;44294:41;;44232:115;44408:23;44521:1;44488:17;44453:18;;44435:15;:36;;;;:::i;:::-;44434:71;;;;:::i;:::-;:88;;;;:::i;:::-;44408:114;-1:-1:-1;44533:26:0;44562:33;44408:114;44562:15;:33;:::i;:::-;44533:62;-1:-1:-1;44636:21:0;44670:36;44533:62;44670:16;:36::i;:::-;44719:18;44740:41;44764:17;44740:21;:41;:::i;:::-;44719:62;;44794:22;44897:1;44876:18;;:22;;;;:::i;:::-;44855:44;;:17;:44;:::i;:::-;44833:17;;44820:30;;:10;:30;:::i;:::-;44819:81;;;;:::i;:::-;44794:106;-1:-1:-1;44921:23:0;44947:27;44794:106;44947:10;:27;:::i;:::-;44921:53;;45009:1;44991:15;:19;:42;;;;;45032:1;45014:15;:19;44991:42;44987:278;;;45050:46;45063:15;45080;45050:12;:46::i;:::-;45220:18;;45116:137;;;13354:25:1;;;13410:2;13395:18;;13388:34;;;13438:18;;;13431:34;;;;45116:137:0;;;;;;13342:2:1;45116:137:0;;;44987:278;45298:1;45277:18;:22;;;45310:17;:21;;;45358:62;;45366:14;-1:-1:-1;;;;;45358:28:0;;45394:21;;45358:62;;45298:1;45358:62;45394:21;45358:28;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;43920:1508:0:o;42785:606::-;42935:16;;;42949:1;42935:16;;;;;;;;42911:21;;42935:16;;;;;;;;;;-1:-1:-1;42935:16:0;42911:40;;42980:4;42962;42967:1;42962:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42962:23:0;;;-1:-1:-1;;;;;42962:23:0;;;;;43006:15;-1:-1:-1;;;;;43006:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42996:4;43001:1;42996:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42996:32:0;;;-1:-1:-1;;;;;42996:32:0;;;;;43041:62;43058:4;43073:15;43091:11;43041:8;:62::i;:::-;43142:241;;-1:-1:-1;;;43142:241:0;;-1:-1:-1;;;;;43142:15:0;:66;;;;:241;;43223:11;;43249:1;;43310:4;;43337;;43357:15;;43142:241;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42840:551;42785:606;:::o;43399:513::-;43547:62;43564:4;43579:15;43597:11;43547:8;:62::i;:::-;43652:15;-1:-1:-1;;;;;43652:31:0;;43691:9;43724:4;43744:11;43770:1;43813;43856:7;4144:6;;-1:-1:-1;;;;;4144:6:0;;4071:87;43856:7;43652:252;;;;;;-1:-1:-1;;;;;;43652:252:0;;;-1:-1:-1;;;;;15340:15:1;;;43652:252:0;;;15322:34:1;15372:18;;;15365:34;;;;15415:18;;;15408:34;;;;15458:18;;;15451:34;15522:15;;;15501:19;;;15494:44;43878:15:0;15554:19:1;;;15547:35;15256:19;;43652:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43399: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;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4439:127::-;4500:10;4495:3;4491:20;4488:1;4481:31;4531:4;4528:1;4521:15;4555:4;4552:1;4545:15;4571:125;4636:9;;;4657:10;;;4654:36;;;4670:18;;:::i;4701:356::-;4903:2;4885:21;;;4922:18;;;4915:30;4981:34;4976:2;4961:18;;4954:62;5048:2;5033:18;;4701:356::o;5062:355::-;5264:2;5246:21;;;5303:2;5283:18;;;5276:30;5342:33;5337:2;5322:18;;5315:61;5408:2;5393:18;;5062:355::o;6819:184::-;6889:6;6942:2;6930:9;6921:7;6917:23;6913:32;6910:52;;;6958:1;6955;6948:12;6910:52;-1:-1:-1;6981:16:1;;6819:184;-1:-1:-1;6819:184:1:o;7287:245::-;7354:6;7407:2;7395:9;7386:7;7382:23;7378:32;7375:52;;;7423:1;7420;7413:12;7375:52;7455:9;7449:16;7474:28;7496:5;7474:28;:::i;9167:401::-;9369:2;9351:21;;;9408:2;9388:18;;;9381:30;9447:34;9442:2;9427:18;;9420:62;-1:-1:-1;;;9513:2:1;9498:18;;9491:35;9558:3;9543:19;;9167:401::o;9573:399::-;9775:2;9757:21;;;9814:2;9794:18;;;9787:30;9853:34;9848:2;9833:18;;9826:62;-1:-1:-1;;;9919:2:1;9904:18;;9897:33;9962:3;9947:19;;9573:399::o;12217:168::-;12290:9;;;12321;;12338:15;;;12332:22;;12318:37;12308:71;;12359:18;;:::i;12390:217::-;12430:1;12456;12446:132;;12500:10;12495:3;12491:20;12488:1;12481:31;12535:4;12532:1;12525:15;12563:4;12560:1;12553:15;12446:132;-1:-1:-1;12592:9:1;;12390:217::o;12612:128::-;12679:9;;;12700:11;;;12697:37;;;12714:18;;:::i;13608:127::-;13669:10;13664:3;13660:20;13657:1;13650:31;13700:4;13697:1;13690:15;13724:4;13721:1;13714:15;13740:251;13810:6;13863:2;13851:9;13842:7;13838:23;13834:32;13831:52;;;13879:1;13876;13869:12;13831:52;13911:9;13905:16;13930:31;13955:5;13930:31;:::i;13996:980::-;14258:4;14306:3;14295:9;14291:19;14337:6;14326:9;14319:25;14363:2;14401:6;14396:2;14385:9;14381:18;14374:34;14444:3;14439:2;14428:9;14424:18;14417:31;14468:6;14503;14497:13;14534:6;14526;14519:22;14572:3;14561:9;14557:19;14550:26;;14611:2;14603:6;14599:15;14585:29;;14632:1;14642:195;14656:6;14653:1;14650:13;14642:195;;;14721:13;;-1:-1:-1;;;;;14717:39:1;14705:52;;14812:15;;;;14777:12;;;;14753:1;14671:9;14642:195;;;-1:-1:-1;;;;;;;14893:32:1;;;;14888:2;14873:18;;14866:60;-1:-1:-1;;;14957:3:1;14942:19;14935:35;14854:3;13996:980;-1:-1:-1;;;13996:980:1:o;15593:306::-;15681:6;15689;15697;15750:2;15738:9;15729:7;15725:23;15721:32;15718:52;;;15766:1;15763;15756:12;15718:52;15795:9;15789:16;15779:26;;15845:2;15834:9;15830:18;15824:25;15814:35;;15889:2;15878:9;15874:18;15868:25;15858:35;;15593:306;;;;;:::o

Swarm Source

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