ETH Price: $2,291.91 (-5.35%)

Token

One Protocol ($ONE)
 

Overview

Max Total Supply

1,000,000 $ONE

Holders

383

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,250 $ONE

Value
$0.00
0x519363701319f45c1173Db70852e22EFf1A3Df6A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OneProtocol

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-02
*/

/**
 *Submitted for verification at Etherscan.io on 2023-08-01
*/

// SPDX-License-Identifier: MIT
// 
//            OOOOOOOOOOO     NNNNNNNN       NNNNNNNNEEEEEEEEEEEEEEEEEEEEEEE
//           OO:::::::::OOO  NN:::::::N       N::::::NE::::::::::::::::::::EE
//          OO:::::::::::::OO NN::::::::N      N::::::NE::::::::::::::::::::E
//         OO:::::::OOO:::::::NN:::::::::N     N::::::NEE::::::EEEEEEEEE::::E
//         OO::::::O   O::::::NN::::::::::N    N::::::N  E:::::E       EEEEEE
//         OO:::::O     O:::::NN:::::::::::N   N::::::N  E:::::E             
//         OO:::::O     O:::::NN:::::::N::::N  N::::::N  E::::::EEEEEEEEEE   
//         OO:::::O     O:::::NN::::::N N::::N N::::::N  E:::::::::::::::E   
//         OO:::::O     O:::::NN::::::N  N::::N:::::::N  E:::::::::::::::E   
//         OO:::::O     O:::::NN::::::N   N:::::::::::N  E::::::EEEEEEEEEE   
//         OO:::::O     O:::::NN::::::N    N::::::::::N  E:::::E             
//         OO::::::O   O::::::NN::::::N     N:::::::::N  E:::::E      EEEEEEE
//         OO:::::::OOO:::::::NN::::::N      N::::::::NEE::::::EEEEEEEE:::::E
//         OO::::::::::::::OO NN::::::N       N:::::::NE::::::::::::::::::::E
//          OO::::::::::OO   NN::::::N        N::::::NE::::::::::::::::::::EE
//           OOOOOOOOOOOO    NNNNNNNNN        NNNNNNNNEEEEEEEEEEEEEEEEEEEEEEE
// 
// 
// ...One Protocol to rule them all, one Protocol to find them, One Protocol to bring them all, and in the darkness bind them.
// 
//                                          
//                                     https://t.me/ONEPROTOCOLETH
//                   https://twitter.com/oneprotocoleth?s=21&t=o5IpGo2llaPnWVYN-I2GOA
// 
//                                          One Protocol Contract
//                 The purpose of this is to run the $ONE Protocol to run all Protocols.
//                     ETH Trending in perpetuity, just don't jeet like a simpleton
//                           Yes, we are serious, yes you will want to hold
//                                    No, don't be a jeet ass bitch
//                   - 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 OneProtocol 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 = true;

    // 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("One Protocol", "$ONE") {
        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 = 6; // Lowered to 4% after launch
        uint256 _buyLiquidityFee = 4; // Lowered to 1% after launch

        uint256 _sellRevShareFee = 6; // Lowered to 4% after launch
        uint256 _sellLiquidityFee = 4; // 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(0x78DA7b1b58835D4EB7F37a4ff876fD688dca05F7); // 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 = 20_000 * (10**18); // 2%
        maxWallet = 20_000 * (10**18); // 2%
    
        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"}]

61010060408190526008805461ffff1916909117905534801562000021575f80fd5b506040518060400160405280600c81526020016b13db9948141c9bdd1bd8dbdb60a21b81525060405180604001604052806004815260200163244f4e4560e01b8152508160039081620000759190620006a9565b506004620000848282620006a9565b505050620000a16200009b6200035b60201b60201c565b6200035f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c3816001620003b0565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000132919062000771565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a4919062000771565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ef573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000215919062000771565b6001600160a01b031660a081905262000230906001620003b0565b60a0516200024090600162000428565b68878678326eac90000060068181556007919091556004818169d3c21bcecceda100000061271062000274826005620007b4565b620002809190620007d4565b60e052600b859055600c849055620002998486620007f4565b600a55600e839055600f829055620002b28284620007f4565b600d557378da7b1b58835d4eb7f37a4ff876fd688dca05f760c052620002ec620002e46005546001600160a01b031690565b60016200047b565b620002f93060016200047b565b6200030861dead60016200047b565b620003276200031f6005546001600160a01b031690565b6001620003b0565b62000334306001620003b0565b6200034361dead6001620003b0565b6200034f338262000523565b5050505050506200080a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003fe5760405162461bcd60e51b815260206004820181905260248201525f8051602062002d2b83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004c55760405162461bcd60e51b815260206004820181905260248201525f8051602062002d2b8339815191526044820152606401620003f5565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200057b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f5565b8060025f8282546200058e9190620007f4565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005bc908490620007f4565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200063357607f821691505b6020821081036200065257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000605575f81815260208120601f850160051c81016020861015620006805750805b601f850160051c820191505b81811015620006a1578281556001016200068c565b505050505050565b81516001600160401b03811115620006c557620006c56200060a565b620006dd81620006d684546200061e565b8462000658565b602080601f83116001811462000713575f8415620006fb5750858301515b5f19600386901b1c1916600185901b178555620006a1565b5f85815260208120601f198616915b82811015620007435788860151825594840194600190910190840162000722565b50858210156200076157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000782575f80fd5b81516001600160a01b038116811462000799575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007ce57620007ce620007a0565b92915050565b5f82620007ef57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007ce57620007ce620007a0565b60805160a05160c05160e051612484620008a75f395f8181610753015281816116d901528181611bd90152611c0b01525f818161053901528181610a2301528181610a8b01528181610d5b01528181610f630152611d3101525f818161041401528181610ba60152610fab01525f818161031d01528181611dfa01528181611eb101528181611eed01528181611f610152611f8801526124845ff3fe608060405260043610610257575f3560e01c80637ca8448a1161013f578063c0246668116100b3578063e2f4560511610078578063e2f4560514610742578063f11a24d314610775578063f2fde38b1461078a578063f6374342146107a9578063f8b45b05146107be578063fe575a87146107d3575f80fd5b8063c024666814610696578063c8c8ebe4146106b5578063d85ba063146106ca578063dd62ed3e146106df578063e19b282314610723575f80fd5b80639c6868af116101045780639c6868af146105de578063a457c2d7146105f2578063a9059cbb14610611578063b62496f514610630578063bbc0c7421461065e578063bc205ad314610677575f80fd5b80637ca8448a1461055b5780638a8c523c1461057a5780638da5cb5b1461058e57806395d89b41146105ab5780639a7a23d6146105bf575f80fd5b8063313ce567116101d65780636ddd17131161019b5780636ddd17131461048257806370a08231146104a0578063715018a6146104d45780637571336a146104ea57806375e3661e14610509578063782c4e9914610528575f80fd5b8063313ce567146103c957806339509351146103e457806349bd5a5e146104035780634fbee193146104365780636a486a8e1461046d575f80fd5b806318160ddd1161021c57806318160ddd1461035757806319eab0421461036b5780631a8145bb1461038057806323b872dd1461039557806324b9f3c1146103b4575f80fd5b806306fdde0314610262578063095ea7b31461028c57806310d5de53146102bb578063156c2f35146102e95780631694505e1461030c575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061027661080a565b604051610283919061205e565b60405180910390f35b348015610297575f80fd5b506102ab6102a63660046120bd565b61089a565b6040519015158152602001610283565b3480156102c6575f80fd5b506102ab6102d53660046120e7565b60136020525f908152604090205460ff1681565b3480156102f4575f80fd5b506102fe600b5481565b604051908152602001610283565b348015610317575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b348015610362575f80fd5b506002546102fe565b348015610376575f80fd5b506102fe600e5481565b34801561038b575f80fd5b506102fe60115481565b3480156103a0575f80fd5b506102ab6103af366004612109565b6108b0565b3480156103bf575f80fd5b506102fe60105481565b3480156103d4575f80fd5b5060405160128152602001610283565b3480156103ef575f80fd5b506102ab6103fe3660046120bd565b61095d565b34801561040e575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610441575f80fd5b506102ab6104503660046120e7565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610478575f80fd5b506102fe600d5481565b34801561048d575f80fd5b506008546102ab90610100900460ff1681565b3480156104ab575f80fd5b506102fe6104ba3660046120e7565b6001600160a01b03165f9081526020819052604090205490565b3480156104df575f80fd5b506104e8610998565b005b3480156104f5575f80fd5b506104e8610504366004612154565b6109cd565b348015610514575f80fd5b506104e86105233660046120e7565b610a21565b348015610533575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610566575f80fd5b506104e86105753660046120e7565b610a89565b348015610585575f80fd5b506104e8610b30565b348015610599575f80fd5b506005546001600160a01b031661033f565b3480156105b6575f80fd5b50610276610b6b565b3480156105ca575f80fd5b506104e86105d9366004612154565b610b7a565b3480156105e9575f80fd5b506104e8610c55565b3480156105fd575f80fd5b506102ab61060c3660046120bd565b610cb5565b34801561061c575f80fd5b506102ab61062b3660046120bd565b610d4d565b34801561063b575f80fd5b506102ab61064a3660046120e7565b60146020525f908152604090205460ff1681565b348015610669575f80fd5b506008546102ab9060ff1681565b348015610682575f80fd5b506104e861069136600461218b565b610d59565b3480156106a1575f80fd5b506104e86106b0366004612154565b610ed9565b3480156106c0575f80fd5b506102fe60065481565b3480156106d5575f80fd5b506102fe600a5481565b3480156106ea575f80fd5b506102fe6106f936600461218b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561072e575f80fd5b506104e861073d3660046120e7565b610f61565b34801561074d575f80fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000081565b348015610780575f80fd5b506102fe600c5481565b348015610795575f80fd5b506104e86107a43660046120e7565b61108e565b3480156107b4575f80fd5b506102fe600f5481565b3480156107c9575f80fd5b506102fe60075481565b3480156107de575f80fd5b506102ab6107ed3660046120e7565b6001600160a01b03165f9081526009602052604090205460ff1690565b606060038054610819906121b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906121b7565b80156108905780601f1061086757610100808354040283529160200191610890565b820191905f5260205f20905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b5f6108a6338484611129565b5060015b92915050565b5f6108bc84848461124c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109455760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109528533858403611129565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a6918590610993908690612203565b611129565b6005546001600160a01b031633146109c25760405162461bcd60e51b815260040161093c90612216565b6109cb5f6119a4565b565b6005546001600160a01b031633146109f75760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610a695760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610ad15760405162461bcd60e51b815260040161093c9061224b565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b1a576040519150601f19603f3d011682016040523d82523d5f602084013e610b1f565b606091505b5050905080610b2c575f80fd5b5050565b6005546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161093c90612216565b6008805461ffff1916610101179055565b606060048054610819906121b7565b6005546001600160a01b03163314610ba45760405162461bcd60e51b815260040161093c90612216565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161093c565b610b2c82826119f5565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b815260040161093c90612216565b69043c33c193756480000060068190556007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161093c565b610d433385858403611129565b5060019392505050565b5f6108a633848461124c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610da15760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b038216610df75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161093c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5f9190612282565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610eaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed39190612299565b50505050565b6005546001600160a01b03163314610f035760405162461bcd60e51b815260040161093c90612216565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610fa95760405162461bcd60e51b815260040161093c9061224b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561100857506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61106b5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b606482015260840161093c565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03811661111d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b611126816119a4565b50565b6001600160a01b03831661118b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6001600160a01b0382166111ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161093c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112725760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b0382166112985760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526009602052604090205460ff16156112f55760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b604482015260640161093c565b6001600160a01b0382165f9081526009602052604090205460ff16156113545760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161093c565b805f0361136b5761136683835f611a48565b505050565b6005546001600160a01b0384811691161480159061139757506005546001600160a01b03838116911614155b80156113ab57506001600160a01b03821615155b80156113c257506001600160a01b03821661dead14155b80156113d85750600554600160a01b900460ff16155b156116c85760085460ff16611469576001600160a01b0383165f9081526012602052604090205460ff168061142457506001600160a01b0382165f9081526012602052604090205460ff165b6114695760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161093c565b6001600160a01b0383165f9081526014602052604090205460ff1680156114a857506001600160a01b0382165f9081526013602052604090205460ff16155b1561158b5760065481111561151d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161093c565b6007546001600160a01b0383165f908152602081905260409020546115429083612203565b11156115865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b6116c8565b6001600160a01b0382165f9081526014602052604090205460ff1680156115ca57506001600160a01b0383165f9081526013602052604090205460ff16155b15611640576006548111156115865760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161093c565b6001600160a01b0382165f9081526013602052604090205460ff166116c8576007546001600160a01b0383165f908152602081905260409020546116849083612203565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b305f908152602081905260409020547f0000000000000000000000000000000000000000000000000000000000000000811080159081906117105750600854610100900460ff165b80156117265750600554600160a01b900460ff16155b801561174a57506001600160a01b0385165f9081526014602052604090205460ff16155b801561176e57506001600160a01b0385165f9081526012602052604090205460ff16155b801561179257506001600160a01b0384165f9081526012602052604090205460ff16155b156117c0576005805460ff60a01b1916600160a01b1790556117b2611b9a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b90920482161591168061180c57506001600160a01b0385165f9081526012602052604090205460ff165b1561181457505f5b5f8115611990576001600160a01b0386165f9081526014602052604090205460ff16801561184357505f600d54115b156118c9576064600d5486611858919061233c565b6118629190612353565b9050600d54600f5482611875919061233c565b61187f9190612353565b60115f82825461188f9190612203565b9091555050600d54600e546118a4908361233c565b6118ae9190612353565b60105f8282546118be9190612203565b909155506119729050565b6001600160a01b0387165f9081526014602052604090205460ff1680156118f157505f600a54115b15611972576064600a5486611906919061233c565b6119109190612353565b9050600a54600c5482611923919061233c565b61192d9190612353565b60115f82825461193d9190612203565b9091555050600a54600b54611952908361233c565b61195c9190612353565b60105f82825461196c9190612203565b90915550505b801561198357611983873083611a48565b61198d8186612372565b94505b61199b878787611a48565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a6e5760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b038216611a945760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526020819052604090205481811015611b0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161093c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611b41908490612203565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8d91815260200190565b60405180910390a3610ed3565b305f9081526020819052604081205490505f601054601154611bbc9190612203565b90505f821580611bca575081155b15611bd457505050565b611bff7f0000000000000000000000000000000000000000000000000000000000000000601461233c565b831115611c3457611c317f0000000000000000000000000000000000000000000000000000000000000000601461233c565b92505b5f60028360115486611c46919061233c565b611c509190612353565b611c5a9190612353565b90505f611c678286612372565b905047611c7382611da5565b5f611c7e8247612372565b90505f6002601154611c909190612353565b611c9a9088612372565b601054611ca7908461233c565b611cb19190612353565b90505f611cbe8284612372565b90505f86118015611cce57505f81115b15611d2157611cdd8682611f5b565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f8114611d92576040519150601f19603f3d011682016040523d82523d5f602084013e611d97565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611dd857611dd8612385565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e789190612399565b81600181518110611e8b57611e8b612385565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed6307f000000000000000000000000000000000000000000000000000000000000000084611129565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f2a9085905f908690309042906004016123b4565b5f604051808303815f87803b158015611f41575f80fd5b505af1158015611f53573d5f803e3d5ffd5b505050505050565b611f86307f000000000000000000000000000000000000000000000000000000000000000084611129565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611fcc6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612032573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120579190612423565b5050505050565b5f6020808352835180828501525f5b818110156120895785810183015185820160400152820161206d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611126575f80fd5b5f80604083850312156120ce575f80fd5b82356120d9816120a9565b946020939093013593505050565b5f602082840312156120f7575f80fd5b8135612102816120a9565b9392505050565b5f805f6060848603121561211b575f80fd5b8335612126816120a9565b92506020840135612136816120a9565b929592945050506040919091013590565b8015158114611126575f80fd5b5f8060408385031215612165575f80fd5b8235612170816120a9565b9150602083013561218081612147565b809150509250929050565b5f806040838503121561219c575f80fd5b82356121a7816120a9565b91506020830135612180816120a9565b600181811c908216806121cb57607f821691505b6020821081036121e957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108aa576108aa6121ef565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c70657200604082015260600190565b5f60208284031215612292575f80fd5b5051919050565b5f602082840312156122a9575f80fd5b815161210281612147565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108aa576108aa6121ef565b5f8261236d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108aa576108aa6121ef565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156123a9575f80fd5b8151612102816120a9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124025784516001600160a01b0316835293830193918301916001016123dd565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612435575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d7e3286a94e1f1d3b23a34aa8774c34f13899430277fb256a68c56473e748b7664736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610257575f3560e01c80637ca8448a1161013f578063c0246668116100b3578063e2f4560511610078578063e2f4560514610742578063f11a24d314610775578063f2fde38b1461078a578063f6374342146107a9578063f8b45b05146107be578063fe575a87146107d3575f80fd5b8063c024666814610696578063c8c8ebe4146106b5578063d85ba063146106ca578063dd62ed3e146106df578063e19b282314610723575f80fd5b80639c6868af116101045780639c6868af146105de578063a457c2d7146105f2578063a9059cbb14610611578063b62496f514610630578063bbc0c7421461065e578063bc205ad314610677575f80fd5b80637ca8448a1461055b5780638a8c523c1461057a5780638da5cb5b1461058e57806395d89b41146105ab5780639a7a23d6146105bf575f80fd5b8063313ce567116101d65780636ddd17131161019b5780636ddd17131461048257806370a08231146104a0578063715018a6146104d45780637571336a146104ea57806375e3661e14610509578063782c4e9914610528575f80fd5b8063313ce567146103c957806339509351146103e457806349bd5a5e146104035780634fbee193146104365780636a486a8e1461046d575f80fd5b806318160ddd1161021c57806318160ddd1461035757806319eab0421461036b5780631a8145bb1461038057806323b872dd1461039557806324b9f3c1146103b4575f80fd5b806306fdde0314610262578063095ea7b31461028c57806310d5de53146102bb578063156c2f35146102e95780631694505e1461030c575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061027661080a565b604051610283919061205e565b60405180910390f35b348015610297575f80fd5b506102ab6102a63660046120bd565b61089a565b6040519015158152602001610283565b3480156102c6575f80fd5b506102ab6102d53660046120e7565b60136020525f908152604090205460ff1681565b3480156102f4575f80fd5b506102fe600b5481565b604051908152602001610283565b348015610317575f80fd5b5061033f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b348015610362575f80fd5b506002546102fe565b348015610376575f80fd5b506102fe600e5481565b34801561038b575f80fd5b506102fe60115481565b3480156103a0575f80fd5b506102ab6103af366004612109565b6108b0565b3480156103bf575f80fd5b506102fe60105481565b3480156103d4575f80fd5b5060405160128152602001610283565b3480156103ef575f80fd5b506102ab6103fe3660046120bd565b61095d565b34801561040e575f80fd5b5061033f7f0000000000000000000000003f61c6fdb9637617f3fe3eddd1c945b40b3e487c81565b348015610441575f80fd5b506102ab6104503660046120e7565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610478575f80fd5b506102fe600d5481565b34801561048d575f80fd5b506008546102ab90610100900460ff1681565b3480156104ab575f80fd5b506102fe6104ba3660046120e7565b6001600160a01b03165f9081526020819052604090205490565b3480156104df575f80fd5b506104e8610998565b005b3480156104f5575f80fd5b506104e8610504366004612154565b6109cd565b348015610514575f80fd5b506104e86105233660046120e7565b610a21565b348015610533575f80fd5b5061033f7f00000000000000000000000078da7b1b58835d4eb7f37a4ff876fd688dca05f781565b348015610566575f80fd5b506104e86105753660046120e7565b610a89565b348015610585575f80fd5b506104e8610b30565b348015610599575f80fd5b506005546001600160a01b031661033f565b3480156105b6575f80fd5b50610276610b6b565b3480156105ca575f80fd5b506104e86105d9366004612154565b610b7a565b3480156105e9575f80fd5b506104e8610c55565b3480156105fd575f80fd5b506102ab61060c3660046120bd565b610cb5565b34801561061c575f80fd5b506102ab61062b3660046120bd565b610d4d565b34801561063b575f80fd5b506102ab61064a3660046120e7565b60146020525f908152604090205460ff1681565b348015610669575f80fd5b506008546102ab9060ff1681565b348015610682575f80fd5b506104e861069136600461218b565b610d59565b3480156106a1575f80fd5b506104e86106b0366004612154565b610ed9565b3480156106c0575f80fd5b506102fe60065481565b3480156106d5575f80fd5b506102fe600a5481565b3480156106ea575f80fd5b506102fe6106f936600461218b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561072e575f80fd5b506104e861073d3660046120e7565b610f61565b34801561074d575f80fd5b506102fe7f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b348015610780575f80fd5b506102fe600c5481565b348015610795575f80fd5b506104e86107a43660046120e7565b61108e565b3480156107b4575f80fd5b506102fe600f5481565b3480156107c9575f80fd5b506102fe60075481565b3480156107de575f80fd5b506102ab6107ed3660046120e7565b6001600160a01b03165f9081526009602052604090205460ff1690565b606060038054610819906121b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906121b7565b80156108905780601f1061086757610100808354040283529160200191610890565b820191905f5260205f20905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b5f6108a6338484611129565b5060015b92915050565b5f6108bc84848461124c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109455760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109528533858403611129565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a6918590610993908690612203565b611129565b6005546001600160a01b031633146109c25760405162461bcd60e51b815260040161093c90612216565b6109cb5f6119a4565b565b6005546001600160a01b031633146109f75760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f00000000000000000000000078da7b1b58835d4eb7f37a4ff876fd688dca05f76001600160a01b03163314610a695760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f00000000000000000000000078da7b1b58835d4eb7f37a4ff876fd688dca05f76001600160a01b03163314610ad15760405162461bcd60e51b815260040161093c9061224b565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b1a576040519150601f19603f3d011682016040523d82523d5f602084013e610b1f565b606091505b5050905080610b2c575f80fd5b5050565b6005546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161093c90612216565b6008805461ffff1916610101179055565b606060048054610819906121b7565b6005546001600160a01b03163314610ba45760405162461bcd60e51b815260040161093c90612216565b7f0000000000000000000000003f61c6fdb9637617f3fe3eddd1c945b40b3e487c6001600160a01b0316826001600160a01b031603610c4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161093c565b610b2c82826119f5565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b815260040161093c90612216565b69043c33c193756480000060068190556007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161093c565b610d433385858403611129565b5060019392505050565b5f6108a633848461124c565b7f00000000000000000000000078da7b1b58835d4eb7f37a4ff876fd688dca05f76001600160a01b03163314610da15760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b038216610df75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161093c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5f9190612282565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610eaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed39190612299565b50505050565b6005546001600160a01b03163314610f035760405162461bcd60e51b815260040161093c90612216565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f00000000000000000000000078da7b1b58835d4eb7f37a4ff876fd688dca05f76001600160a01b03163314610fa95760405162461bcd60e51b815260040161093c9061224b565b7f0000000000000000000000003f61c6fdb9637617f3fe3eddd1c945b40b3e487c6001600160a01b0316816001600160a01b03161415801561100857506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61106b5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b606482015260840161093c565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03811661111d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b611126816119a4565b50565b6001600160a01b03831661118b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6001600160a01b0382166111ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161093c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112725760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b0382166112985760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526009602052604090205460ff16156112f55760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b604482015260640161093c565b6001600160a01b0382165f9081526009602052604090205460ff16156113545760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161093c565b805f0361136b5761136683835f611a48565b505050565b6005546001600160a01b0384811691161480159061139757506005546001600160a01b03838116911614155b80156113ab57506001600160a01b03821615155b80156113c257506001600160a01b03821661dead14155b80156113d85750600554600160a01b900460ff16155b156116c85760085460ff16611469576001600160a01b0383165f9081526012602052604090205460ff168061142457506001600160a01b0382165f9081526012602052604090205460ff165b6114695760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161093c565b6001600160a01b0383165f9081526014602052604090205460ff1680156114a857506001600160a01b0382165f9081526013602052604090205460ff16155b1561158b5760065481111561151d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161093c565b6007546001600160a01b0383165f908152602081905260409020546115429083612203565b11156115865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b6116c8565b6001600160a01b0382165f9081526014602052604090205460ff1680156115ca57506001600160a01b0383165f9081526013602052604090205460ff16155b15611640576006548111156115865760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161093c565b6001600160a01b0382165f9081526013602052604090205460ff166116c8576007546001600160a01b0383165f908152602081905260409020546116849083612203565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b305f908152602081905260409020547f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000811080159081906117105750600854610100900460ff165b80156117265750600554600160a01b900460ff16155b801561174a57506001600160a01b0385165f9081526014602052604090205460ff16155b801561176e57506001600160a01b0385165f9081526012602052604090205460ff16155b801561179257506001600160a01b0384165f9081526012602052604090205460ff16155b156117c0576005805460ff60a01b1916600160a01b1790556117b2611b9a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b90920482161591168061180c57506001600160a01b0385165f9081526012602052604090205460ff165b1561181457505f5b5f8115611990576001600160a01b0386165f9081526014602052604090205460ff16801561184357505f600d54115b156118c9576064600d5486611858919061233c565b6118629190612353565b9050600d54600f5482611875919061233c565b61187f9190612353565b60115f82825461188f9190612203565b9091555050600d54600e546118a4908361233c565b6118ae9190612353565b60105f8282546118be9190612203565b909155506119729050565b6001600160a01b0387165f9081526014602052604090205460ff1680156118f157505f600a54115b15611972576064600a5486611906919061233c565b6119109190612353565b9050600a54600c5482611923919061233c565b61192d9190612353565b60115f82825461193d9190612203565b9091555050600a54600b54611952908361233c565b61195c9190612353565b60105f82825461196c9190612203565b90915550505b801561198357611983873083611a48565b61198d8186612372565b94505b61199b878787611a48565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a6e5760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b038216611a945760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526020819052604090205481811015611b0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161093c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611b41908490612203565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8d91815260200190565b60405180910390a3610ed3565b305f9081526020819052604081205490505f601054601154611bbc9190612203565b90505f821580611bca575081155b15611bd457505050565b611bff7f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000601461233c565b831115611c3457611c317f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000601461233c565b92505b5f60028360115486611c46919061233c565b611c509190612353565b611c5a9190612353565b90505f611c678286612372565b905047611c7382611da5565b5f611c7e8247612372565b90505f6002601154611c909190612353565b611c9a9088612372565b601054611ca7908461233c565b611cb19190612353565b90505f611cbe8284612372565b90505f86118015611cce57505f81115b15611d2157611cdd8682611f5b565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f00000000000000000000000078da7b1b58835d4eb7f37a4ff876fd688dca05f76001600160a01b03169147919081818185875af1925050503d805f8114611d92576040519150601f19603f3d011682016040523d82523d5f602084013e611d97565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611dd857611dd8612385565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e789190612399565b81600181518110611e8b57611e8b612385565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611129565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f2a9085905f908690309042906004016123b4565b5f604051808303815f87803b158015611f41575f80fd5b505af1158015611f53573d5f803e3d5ffd5b505050505050565b611f86307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611129565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611fcc6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612032573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120579190612423565b5050505050565b5f6020808352835180828501525f5b818110156120895785810183015185820160400152820161206d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611126575f80fd5b5f80604083850312156120ce575f80fd5b82356120d9816120a9565b946020939093013593505050565b5f602082840312156120f7575f80fd5b8135612102816120a9565b9392505050565b5f805f6060848603121561211b575f80fd5b8335612126816120a9565b92506020840135612136816120a9565b929592945050506040919091013590565b8015158114611126575f80fd5b5f8060408385031215612165575f80fd5b8235612170816120a9565b9150602083013561218081612147565b809150509250929050565b5f806040838503121561219c575f80fd5b82356121a7816120a9565b91506020830135612180816120a9565b600181811c908216806121cb57607f821691505b6020821081036121e957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108aa576108aa6121ef565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c70657200604082015260600190565b5f60208284031215612292575f80fd5b5051919050565b5f602082840312156122a9575f80fd5b815161210281612147565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108aa576108aa6121ef565b5f8261236d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108aa576108aa6121ef565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156123a9575f80fd5b8151612102816120a9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124025784516001600160a01b0316835293830193918301916001016123dd565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612435575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d7e3286a94e1f1d3b23a34aa8774c34f13899430277fb256a68c56473e748b7664736f6c63430008140033

Deployed Bytecode Sourcemap

33143:13979:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11102:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13269:169;;;;;;;;;;-1:-1:-1;13269:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13269:169:0;1023:187:1;34090:63:0;;;;;;;;;;-1:-1:-1;34090:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33710:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;33710:29:0;1467:177:1;33191:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;33191:51:0;1649:230:1;12222:108:0;;;;;;;;;;-1:-1:-1;12310:12:0;;12222:108;;33820:30;;;;;;;;;;;;;;;;33936:33;;;;;;;;;;;;;;;;13920:492;;;;;;;;;;-1:-1:-1;13920:492:0;;;;;:::i;:::-;;:::i;33897:32::-;;;;;;;;;;;;;;;;12064:93;;;;;;;;;;-1:-1:-1;12064:93:0;;12147:2;2487:36:1;;2475:2;2460:18;12064:93:0;2345:184:1;14821:215:0;;;;;;;;;;-1:-1:-1;14821:215:0;;;;;:::i;:::-;;:::i;33249:38::-;;;;;;;;;;;;;;;38589:126;;;;;;;;;;-1:-1:-1;38589:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38679:28:0;38655:4;38679:28;;;:19;:28;;;;;;;;;38589:126;33785:28;;;;;;;;;;;;;;;;33537:30;;;;;;;;;;-1:-1:-1;33537:30:0;;;;;;;;;;;12393:127;;;;;;;;;;-1:-1:-1;12393:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;12494:18:0;12467:7;12494:18;;;;;;;;;;;;12393:127;4619:103;;;;;;;;;;;;;:::i;:::-;;37716:167;;;;;;;;;;-1:-1:-1;37716:167:0;;;;;:::i;:::-;;:::i;47018:99::-;;;;;;;;;;-1:-1:-1;47018:99:0;;;;;:::i;:::-;;:::i;33324:39::-;;;;;;;;;;;;;;;46247:197;;;;;;;;;;-1:-1:-1;46247:197:0;;;;;:::i;:::-;;:::i;37111:112::-;;;;;;;;;;;;;:::i;3968:87::-;;;;;;;;;;-1:-1:-1;4041:6:0;;-1:-1:-1;;;;;4041:6:0;3968:87;;11321:104;;;;;;;;;;;;;:::i;38081:304::-;;;;;;;;;;-1:-1:-1;38081:304:0;;;;;:::i;:::-;;:::i;37340:368::-;;;;;;;;;;;;;:::i;15539:413::-;;;;;;;;;;-1:-1:-1;15539:413:0;;;;;:::i;:::-;;:::i;12733:175::-;;;;;;;;;;-1:-1:-1;12733:175:0;;;;;:::i;:::-;;:::i;34311:57::-;;;;;;;;;;-1:-1:-1;34311:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33497:33;;;;;;;;;;-1:-1:-1;33497:33:0;;;;;;;;45857:289;;;;;;;;;;-1:-1:-1;45857:289:0;;;;;:::i;:::-;;:::i;37891:182::-;;;;;;;;;;-1:-1:-1;37891:182:0;;;;;:::i;:::-;;:::i;33372:35::-;;;;;;;;;;;;;;;;33676:27;;;;;;;;;;;;;;;;12971:151;;;;;;;;;;-1:-1:-1;12971:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;13087:18:0;;;13060:7;13087:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12971:151;46552:328;;;;;;;;;;-1:-1:-1;46552:328:0;;;;;:::i;:::-;;:::i;33414:43::-;;;;;;;;;;;;;;;33746:30;;;;;;;;;;;;;;;;4877:201;;;;;;;;;;-1:-1:-1;4877:201:0;;;;;:::i;:::-;;:::i;33857:31::-;;;;;;;;;;;;;;;;33464:24;;;;;;;;;;;;;;;;38723:113;;;;;;;;;;-1:-1:-1;38723:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;38808:20:0;38784:4;38808:20;;;:11;:20;;;;;;;;;38723:113;11102:100;11156:13;11189:5;11182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11102:100;:::o;13269:169::-;13352:4;13369:39;2915:10;13392:7;13401:6;13369:8;:39::i;:::-;-1:-1:-1;13426:4:0;13269:169;;;;;:::o;13920:492::-;14060:4;14077:36;14087:6;14095:9;14106:6;14077:9;:36::i;:::-;-1:-1:-1;;;;;14153:19:0;;14126:24;14153:19;;;:11;:19;;;;;;;;2915:10;14153:33;;;;;;;;14205:26;;;;14197:79;;;;-1:-1:-1;;;14197:79:0;;4232:2:1;14197: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;;14197:79:0;;;;;;;;;14312:57;14321:6;2915:10;14362:6;14343:16;:25;14312:8;:57::i;:::-;-1:-1:-1;14400:4:0;;13920:492;-1:-1:-1;;;;13920:492:0:o;14821:215::-;2915:10;14909:4;14958:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14958:34:0;;;;;;;;;;14909:4;;14926:80;;14949:7;;14958:47;;14995:10;;14958:47;:::i;:::-;14926:8;:80::i;4619:103::-;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;4684:30:::1;4711:1;4684:18;:30::i;:::-;4619:103::o:0;37716:167::-;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37829:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37829:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37716:167::o;47018:99::-;45667:14;-1:-1:-1;;;;;45667:30:0;2915:10;45667:30;45659:74;;;;-1:-1:-1;;;45659:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47083:18:0::1;47104:5;47083:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;47083:26:0::1;::::0;;47018:99::o;46247:197::-;45667:14;-1:-1:-1;;;;;45667:30:0;2915:10;45667:30;45659:74;;;;-1:-1:-1;;;45659:74:0;;;;;;;:::i;:::-;46321:12:::1;46339:6;-1:-1:-1::0;;;;;46339:11:0::1;46372:21;46339:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46320:89;;;46428:7;46420:16;;;::::0;::::1;;46309:135;46247:197:::0;:::o;37111:112::-;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;37166:13:::1;:20:::0;;-1:-1:-1;;37197:18:0;;;;;37111:112::o;11321:104::-;11377:13;11410:7;11403:14;;;;;:::i;38081:304::-;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;38225:13:::1;-1:-1:-1::0;;;;;38217:21:0::1;:4;-1:-1:-1::0;;;;;38217:21:0::1;::::0;38195:128:::1;;;::::0;-1:-1:-1;;;38195:128:0;;5834:2:1;38195: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;;38195:128:0::1;5632:421:1::0;38195:128:0::1;38336:41;38365:4;38371:5;38336:28;:41::i;37340:368::-:0;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;37424:17:::1;37401:20;:40:::0;;;37458:9:::1;:29:::0;37527:1:::1;37510:14;:18:::0;;;37563:1:::1;37545:15;:19:::0;;;37596:1:::1;37581:12;:16:::0;;;37610:15:::1;:19:::0;;;;37646:16:::1;:20:::0;37683:13:::1;:17:::0;37340:368::o;15539:413::-;2915:10;15632:4;15676:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15676:34:0;;;;;;;;;;15729:35;;;;15721:85;;;;-1:-1:-1;;;15721:85:0;;6260:2:1;15721: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;;15721:85:0;6058:401:1;15721:85:0;15842:67;2915:10;15865:7;15893:15;15874:16;:34;15842:8;:67::i;:::-;-1:-1:-1;15940:4:0;;15539:413;-1:-1:-1;;;15539:413:0:o;12733:175::-;12819:4;12836:42;2915:10;12860:9;12871:6;12836:9;:42::i;45857:289::-;45667:14;-1:-1:-1;;;;;45667:30:0;2915:10;45667:30;45659:74;;;;-1:-1:-1;;;45659:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45953:20:0;::::1;45945:59;;;::::0;-1:-1:-1;;;45945:59:0;;6666:2:1;45945:59:0::1;::::0;::::1;6648:21:1::0;6705:2;6685:18;;;6678:30;6744:28;6724:18;;;6717:56;6790:18;;45945:59:0::1;6464:350:1::0;45945:59:0::1;46042:39;::::0;-1:-1:-1;;;46042:39:0;;46075:4:::1;46042:39;::::0;::::1;1822:51:1::0;46015:24:0::1;::::0;-1:-1:-1;;;;;46042:24:0;::::1;::::0;::::1;::::0;1795:18:1;;46042:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46092:46;::::0;-1:-1:-1;;;46092:46:0;;-1:-1:-1;;;;;7200:32:1;;;46092:46:0::1;::::0;::::1;7182:51:1::0;7249:18;;;7242:34;;;46015:66:0;;-1:-1:-1;46092:23:0;;::::1;::::0;::::1;::::0;7155:18:1;;46092:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45934:212;45857:289:::0;;:::o;37891:182::-;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37976:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37976:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38031:34;;1163:41:1;;;38031:34:0::1;::::0;1136:18:1;38031:34:0::1;;;;;;;37891:182:::0;;:::o;46552:328::-;45667:14;-1:-1:-1;;;;;45667:30:0;2915:10;45667:30;45659:74;;;;-1:-1:-1;;;45659:74:0;;;;;;;:::i;:::-;46675:13:::1;-1:-1:-1::0;;;;;46654:35:0::1;:9;-1:-1:-1::0;;;;;46654:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;46693:64:0;::::1;46714:42;46693:64;;46654:103;46632:200;;;::::0;-1:-1:-1;;;46632:200:0;;7739:2:1;46632: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;;46632:200:0::1;7537:410:1::0;46632:200:0::1;-1:-1:-1::0;;;;;46843:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;46843:29:0::1;46868:4;46843:29;::::0;;46552:328::o;4877:201::-;4041:6;;-1:-1:-1;;;;;4041:6:0;2915:10;4188:23;4180:68;;;;-1:-1:-1;;;4180:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4966:22:0;::::1;4958:73;;;::::0;-1:-1:-1;;;4958:73:0;;8154:2:1;4958: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;;4958:73:0::1;7952:402:1::0;4958:73:0::1;5042:28;5061:8;5042:18;:28::i;:::-;4877:201:::0;:::o;19223:380::-;-1:-1:-1;;;;;19359:19:0;;19351:68;;;;-1:-1:-1;;;19351:68:0;;8561:2:1;19351: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;;19351:68:0;8359:400:1;19351:68:0;-1:-1:-1;;;;;19438:21:0;;19430:68;;;;-1:-1:-1;;;19430:68:0;;8966:2:1;19430: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;;19430:68:0;8764:398:1;19430:68:0;-1:-1:-1;;;;;19511:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19563:32;;1613:25:1;;;19563:32:0;;1586:18:1;19563:32:0;;;;;;;19223:380;;;:::o;38844:3834::-;-1:-1:-1;;;;;38976:18:0;;38968:68;;;;-1:-1:-1;;;38968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39055:16:0;;39047:64;;;;-1:-1:-1;;;39047:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39131:17:0;;;;;;:11;:17;;;;;;;;39130:18;39122:48;;;;-1:-1:-1;;;39122:48:0;;10179:2:1;39122:48:0;;;10161:21:1;10218:2;10198:18;;;10191:30;-1:-1:-1;;;10237:18:1;;;10230:48;10295:18;;39122:48:0;9977:342:1;39122:48:0;-1:-1:-1;;;;;39190:15:0;;;;;;:11;:15;;;;;;;;39189:16;39181:48;;;;-1:-1:-1;;;39181:48:0;;10526:2:1;39181:48:0;;;10508:21:1;10565:2;10545:18;;;10538:30;-1:-1:-1;;;10584:18:1;;;10577:50;10644:18;;39181:48:0;10324:344:1;39181:48:0;39246:6;39256:1;39246:11;39242:93;;39274:28;39290:4;39296:2;39300:1;39274:15;:28::i;:::-;38844:3834;;;:::o;39242:93::-;4041:6;;-1:-1:-1;;;;;39369:15:0;;;4041:6;;39369:15;;;;:49;;-1:-1:-1;4041:6:0;;-1:-1:-1;;;;;39405:13:0;;;4041:6;;39405:13;;39369:49;:86;;;;-1:-1:-1;;;;;;39439:16:0;;;;39369:86;:128;;;;-1:-1:-1;;;;;;39476:21:0;;39490:6;39476:21;;39369:128;:158;;;;-1:-1:-1;39519:8:0;;-1:-1:-1;;;39519:8:0;;;;39518:9;39369:158;39347:1642;;;39567:13;;;;39562:223;;-1:-1:-1;;;;;39639:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39668:23:0;;;;;;:19;:23;;;;;;;;39639:52;39605:160;;;;-1:-1:-1;;;39605:160:0;;10875:2:1;39605:160:0;;;10857:21:1;10914:2;10894:18;;;10887:30;-1:-1:-1;;;10933:18:1;;;10926:52;10995:18;;39605:160:0;10673:346:1;39605:160:0;-1:-1:-1;;;;;39858:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39915:35:0;;;;;;:31;:35;;;;;;;;39914:36;39858:92;39832:1146;;;40037:20;;40027:6;:30;;39993:169;;;;-1:-1:-1;;;39993:169:0;;11226:2:1;39993: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;;39993:169:0;11024:417:1;39993:169:0;40245:9;;-1:-1:-1;;;;;12494:18:0;;12467:7;12494:18;;;;;;;;;;;40219:22;;:6;:22;:::i;:::-;:35;;40185:140;;;;-1:-1:-1;;;40185:140:0;;11648:2:1;40185:140:0;;;11630:21:1;11687:2;11667:18;;;11660:30;-1:-1:-1;;;11706:18:1;;;11699:49;11765:18;;40185:140:0;11446:343:1;40185:140:0;39832:1146;;;-1:-1:-1;;;;;40422:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40477:37:0;;;;;;:31;:37;;;;;;;;40476:38;40422:92;40396:582;;;40601:20;;40591:6;:30;;40557:170;;;;-1:-1:-1;;;40557:170:0;;11996:2:1;40557: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;;40557:170:0;11794:418:1;40396:582:0;-1:-1:-1;;;;;40758:35:0;;;;;;:31;:35;;;;;;;;40753:225;;40878:9;;-1:-1:-1;;;;;12494:18:0;;12467:7;12494:18;;;;;;;;;;;40852:22;;:6;:22;:::i;:::-;:35;;40818:140;;;;-1:-1:-1;;;40818:140:0;;11648:2:1;40818:140:0;;;11630:21:1;11687:2;11667:18;;;11660:30;-1:-1:-1;;;11706:18:1;;;11699:49;11765:18;;40818:140:0;11446:343:1;40818:140:0;41050:4;41001:28;12494:18;;;;;;;;;;;41108;41084:42;;;;;;;41157:35;;-1:-1:-1;41181:11:0;;;;;;;41157:35;:61;;;;-1:-1:-1;41210:8:0;;-1:-1:-1;;;41210:8:0;;;;41209:9;41157:61;:110;;;;-1:-1:-1;;;;;;41236:31:0;;;;;;:25;:31;;;;;;;;41235:32;41157:110;:153;;;;-1:-1:-1;;;;;;41285:25:0;;;;;;:19;:25;;;;;;;;41284:26;41157:153;:194;;;;-1:-1:-1;;;;;;41328:23:0;;;;;;:19;:23;;;;;;;;41327:24;41157:194;41139:326;;;41378:8;:15;;-1:-1:-1;;;;41378:15:0;-1:-1:-1;;;41378:15:0;;;41410:10;:8;:10::i;:::-;41437:8;:16;;-1:-1:-1;;;;41437:16:0;;;41139:326;41493:8;;-1:-1:-1;;;;;41603:25:0;;41477:12;41603:25;;;:19;:25;;;;;;41493:8;-1:-1:-1;;;41493:8:0;;;;;41492:9;;41603:25;;:52;;-1:-1:-1;;;;;;41632:23:0;;;;;;:19;:23;;;;;;;;41603:52;41599:100;;;-1:-1:-1;41682:5:0;41599:100;41711:12;41816:7;41812:813;;;-1:-1:-1;;;;;41865:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41914:1;41898:13;;:17;41865:50;41861:615;;;41970:3;41953:13;;41944:6;:22;;;;:::i;:::-;41943:30;;;;:::i;:::-;41936:37;;42042:13;;42022:16;;42015:4;:23;;;;:::i;:::-;42014:41;;;;:::i;:::-;41992:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42122:13:0;;42103:15;;42096:22;;:4;:22;:::i;:::-;42095:40;;;;:::i;:::-;42074:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;41861:615:0;;-1:-1:-1;41861:615:0;;-1:-1:-1;;;;;42194:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42244:1;42229:12;;:16;42194:51;42190:286;;;42299:3;42283:12;;42274:6;:21;;;;:::i;:::-;42273:29;;;;:::i;:::-;42266:36;;42370:12;;42351:15;;42344:4;:22;;;;:::i;:::-;42343:39;;;;:::i;:::-;42321:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42448:12:0;;42430:14;;42423:21;;:4;:21;:::i;:::-;42422:38;;;;:::i;:::-;42401:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42190:286:0;42496:8;;42492:91;;42525:42;42541:4;42555;42562;42525:15;:42::i;:::-;42599:14;42609:4;42599:14;;:::i;:::-;;;41812:813;42637:33;42653:4;42659:2;42663:6;42637:15;:33::i;:::-;38957:3721;;;;38844:3834;;;:::o;5238:191::-;5331:6;;;-1:-1:-1;;;;;5348:17:0;;;-1:-1:-1;;;;;;5348:17:0;;;;;;;5381:40;;5331:6;;;5348:17;5331:6;;5381:40;;5312:16;;5381:40;5301:128;5238:191;:::o;38393:188::-;-1:-1:-1;;;;;38476:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38476:39:0;;;;;;;;;;38533:40;;38476:39;;:31;38533:40;;;38393:188;;:::o;16442:733::-;-1:-1:-1;;;;;16582:20:0;;16574:70;;;;-1:-1:-1;;;16574:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16663:23:0;;16655:71;;;;-1:-1:-1;;;16655:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16823:17:0;;16799:21;16823:17;;;;;;;;;;;16859:23;;;;16851:74;;;;-1:-1:-1;;;16851:74:0;;12947:2:1;16851: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;;16851:74:0;12745:402:1;16851:74:0;-1:-1:-1;;;;;16961:17:0;;;:9;:17;;;;;;;;;;;16981:22;;;16961:42;;17025:20;;;;;;;;:30;;16997:6;;16961:9;17025:30;;16997:6;;17025:30;:::i;:::-;;;;;;;;17090:9;-1:-1:-1;;;;;17073:35:0;17082:6;-1:-1:-1;;;;;17073:35:0;;17101:6;17073:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;17073:35:0;;;;;;;;17121:46;38844:3834;43821:1508;43904:4;43860:23;12494:18;;;;;;;;;;;43860:50;;43921:25;43983:17;;43949:18;;:51;;;;:::i;:::-;43921:79;-1:-1:-1;44011:12:0;44040:20;;;:46;;-1:-1:-1;44064:22:0;;44040:46;44036:85;;;44103:7;;;43821:1508::o;44036:85::-;44155:23;:18;44176:2;44155:23;:::i;:::-;44137:15;:41;44133:115;;;44213:23;:18;44234:2;44213:23;:::i;:::-;44195:41;;44133:115;44309:23;44422:1;44389:17;44354:18;;44336:15;:36;;;;:::i;:::-;44335:71;;;;:::i;:::-;:88;;;;:::i;:::-;44309:114;-1:-1:-1;44434:26:0;44463:33;44309:114;44463:15;:33;:::i;:::-;44434:62;-1:-1:-1;44537:21:0;44571:36;44434:62;44571:16;:36::i;:::-;44620:18;44641:41;44665:17;44641:21;:41;:::i;:::-;44620:62;;44695:22;44798:1;44777:18;;:22;;;;:::i;:::-;44756:44;;:17;:44;:::i;:::-;44734:17;;44721:30;;:10;:30;:::i;:::-;44720:81;;;;:::i;:::-;44695:106;-1:-1:-1;44822:23:0;44848:27;44695:106;44848:10;:27;:::i;:::-;44822:53;;44910:1;44892:15;:19;:42;;;;;44933:1;44915:15;:19;44892:42;44888:278;;;44951:46;44964:15;44981;44951:12;:46::i;:::-;45121:18;;45017:137;;;13354:25:1;;;13410:2;13395:18;;13388:34;;;13438:18;;;13431:34;;;;45017:137:0;;;;;;13342:2:1;45017:137:0;;;44888:278;45199:1;45178:18;:22;;;45211:17;:21;;;45259:62;;45267:14;-1:-1:-1;;;;;45259:28:0;;45295:21;;45259:62;;45199:1;45259:62;45295:21;45259:28;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;43821:1508:0:o;42686:606::-;42836:16;;;42850:1;42836:16;;;;;;;;42812:21;;42836:16;;;;;;;;;;-1:-1:-1;42836:16:0;42812:40;;42881:4;42863;42868:1;42863:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42863:23:0;;;-1:-1:-1;;;;;42863:23:0;;;;;42907:15;-1:-1:-1;;;;;42907:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42897:4;42902:1;42897:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42897:32:0;;;-1:-1:-1;;;;;42897:32:0;;;;;42942:62;42959:4;42974:15;42992:11;42942:8;:62::i;:::-;43043:241;;-1:-1:-1;;;43043:241:0;;-1:-1:-1;;;;;43043:15:0;:66;;;;:241;;43124:11;;43150:1;;43211:4;;43238;;43258:15;;43043:241;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42741:551;42686:606;:::o;43300:513::-;43448:62;43465:4;43480:15;43498:11;43448:8;:62::i;:::-;43553:15;-1:-1:-1;;;;;43553:31:0;;43592:9;43625:4;43645:11;43671:1;43714;43757:7;4041:6;;-1:-1:-1;;;;;4041:6:0;;3968:87;43757:7;43553:252;;;;;;-1:-1:-1;;;;;;43553:252:0;;;-1:-1:-1;;;;;15340:15:1;;;43553:252:0;;;15322:34:1;15372:18;;;15365:34;;;;15415:18;;;15408:34;;;;15458:18;;;15451:34;15522:15;;;15501:19;;;15494:44;43779:15:0;15554:19:1;;;15547:35;15256:19;;43553:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43300: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://d7e3286a94e1f1d3b23a34aa8774c34f13899430277fb256a68c56473e748b76
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.