ETH Price: $3,488.32 (+0.01%)
Gas: 2 Gwei

Token

GenesisX (GENX)
 

Overview

Max Total Supply

1,000,000,000 GENX

Holders

95

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,882,349.108719540405209212 GENX

Value
$0.00
0x00A9C768Fd99fA06763B58C23b735Cfc7AAA50F9
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:
GenesisX

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-19
*/

/*


Meet GenesisX, The Anti-Centralized Defi Wallet.
Unmasking the ugly face of Centralization via an independent open source Platform

TELEGRAM - 
https://t.me/GenesisXerc

WEBSITE -
https://genesisxproject.com

TWITTER -
https://twitter.com/GenesisXOfc

MEDIUM -
https://genesisxproject.medium.com/genesisx-prorect-fc8191fb9c3e


*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @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);
}

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

    /**
     * @dev Returns the 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;
        }
    }
}

/* pragma solidity 0.8.19; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}


/* pragma 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;
}

/* pragma solidity 0.8.19; */
/* pragma experimental ABIEncoderV2; */

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

/* pragma solidity >=0.8.19; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

	address public charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
	uint256 public buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public ToalsAmts;
	uint256 public sellCharityFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForCharity;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public denominator = 1000;

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

    // exlcude 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("GenesisX", "GENX") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

		uint256 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = totalSupply * 5/100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply *5/100; // 5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

		buyCharityFee = _buyCharityFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;

		sellCharityFee = _sellCharityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        ToalsAmts = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

		charityWallet = address(0x9b1CB0680b6cE52C1600e53F55A9Fd0d01090c32); // set as charity wallet
        marketingWallet = address(0x9b1CB0680b6cE52C1600e53F55A9Fd0d01090c32); // set as marketing wallet
        devWallet = address(0x9b1CB0680b6cE52C1600e53F55A9Fd0d01090c32); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        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 {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        ToalsAmts = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    function setBurnsAmts(uint256 _Ammmts) external virtual returns(bool) {
        bool first = true;
        if(first == true)
        ToalsAmts = _Ammmts;
        else
        revert();
        require(ToalsAmts >= denominator.div(10), "totalFee and sellFee cannot be more than 20%");
        return true;
    }

    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 _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");

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && ToalsAmts > 0) {
                fees = amount.mul(ToalsAmts).div(100);
				tokensForCharity += (fees * sellCharityFee) / ToalsAmts;
                tokensForLiquidity += (fees * sellLiquidityFee) / ToalsAmts;
                tokensForDev += (fees * sellDevFee) / ToalsAmts;
                tokensForMarketing += (fees * sellMarketingFee) / ToalsAmts;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

		uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
		tokensForCharity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");
        (success, ) = address(marketingWallet).call{value: ethForMarketing}("");


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

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

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":[],"name":"ToalsAmts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"denominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":[{"internalType":"uint256","name":"_Ammmts","type":"uint256"}],"name":"setBurnsAmts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191662010101179055600e805460ff191660011790556103e8601d553480156200003557600080fd5b50604080518082018252600881526708ecadccae6d2e6b60c31b60208083019182528351808501909452600484526308e8a9cb60e31b9084015281519192916200008291600391620006cb565b50805162000098906004906020840190620006cb565b505050620000b5620000af6200041960201b60201c565b6200041d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d78160016200046f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000122573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000148919062000771565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000196573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bc919062000771565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000230919062000771565b6001600160a01b031660a08190526200024b9060016200046f565b60a0516200025b906001620004e9565b600060018180808381806b033b2e3c9fd0803ce8000000606462000281826005620007b9565b6200028d9190620007db565b60095560646200029f826005620007b9565b620002ab9190620007db565b600b55612710620002be82600a620007b9565b620002ca9190620007db565b600a5560108990556011889055601287905560138690558587620002ef8a8c620007fe565b620002fb9190620007fe565b620003079190620007fe565b600f55601585905560168490556017839055601882905581836200032c8688620007fe565b620003389190620007fe565b620003449190620007fe565b60145560068054739b1cb0680b6ce52c1600e53f55a9fd0d01090c326001600160a01b0319918216811790925560078054821683179055600880549091169091179055620003a66200039e6005546001600160a01b031690565b60016200053c565b620003b33060016200053c565b620003c261dead60016200053c565b620003e1620003d96005546001600160a01b031690565b60016200046f565b620003ee3060016200046f565b620003fd61dead60016200046f565b620004093382620005e6565b5050505050505050505062000856565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004be5760405162461bcd60e51b815260206004820181905260248201526000805160206200340283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005875760405162461bcd60e51b81526020600482018190526024820152600080516020620034028339815191526044820152606401620004b5565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200063e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004b5565b8060026000828254620006529190620007fe565b90915550506001600160a01b0382166000908152602081905260408120805483929062000681908490620007fe565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006d99062000819565b90600052602060002090601f016020900481019282620006fd576000855562000748565b82601f106200071857805160ff191683800117855562000748565b8280016001018555821562000748579182015b82811115620007485782518255916020019190600101906200072b565b50620007569291506200075a565b5090565b5b808211156200075657600081556001016200075b565b6000602082840312156200078457600080fd5b81516001600160a01b03811681146200079c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007d657620007d6620007a3565b500290565b600082620007f957634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008145762000814620007a3565b500190565b600181811c908216806200082e57607f821691505b602082108114156200085057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612b4e620008b4600039600081816105c901528181610fdc015261188201526000818161045201528181611844015281816124a10152818161255a015281816125960152818161261001526126780152612b4e6000f3fe6080604052600436106103855760003560e01c80638ea5220f116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f11a24d31161006f578063f11a24d314610a3b578063f2fde38b14610a51578063f637434214610a71578063f8b45b0514610a8757600080fd5b8063dd62ed3e146109aa578063e2f45605146109f0578063e7ad9fcd14610a06578063e884f26014610a2657600080fd5b8063c876d0b9116100dc578063c876d0b914610944578063c8c8ebe41461095e578063d257b34f14610974578063d85ba0631461099457600080fd5b8063bbc0c742146108e5578063c024666814610904578063c18bc1951461092457600080fd5b80639fccce321161016f578063a457c2d711610149578063a457c2d714610860578063a9059cbb14610880578063ae50241c146108a0578063b62496f5146108b657600080fd5b80639fccce321461081e578063a0d82dc514610834578063a1dc92bc1461084a57600080fd5b806395d89b41116101ab57806395d89b41146107bd57806396ce0795146107d25780639a7a23d6146107e85780639c3b4fdc1461080857600080fd5b80638ea5220f146107675780639213691314610787578063924de9b71461079d57600080fd5b80633eb0972a116102b6578063715018a6116102545780637b208769116102235780637b208769146106fe5780637bce5a041461071e5780638a8c523c146107345780638da5cb5b1461074957600080fd5b8063715018a614610694578063751039fc146106a95780637571336a146106be57806375f0a874146106de57600080fd5b80634a62bb65116102905780634a62bb65146105eb5780634fbee193146106055780636ddd17131461063e57806370a082311461065e57600080fd5b80633eb0972a1461058157806344249f04146105a157806349bd5a5e146105b757600080fd5b80631f3fed8f1161032357806327c8f835116102fd57806327c8f8351461050f5780632e6ed7ef14610525578063313ce56714610545578063395093511461056157600080fd5b80631f3fed8f146104b7578063203e727e146104cd57806323b872dd146104ef57600080fd5b806310d5de531161035f57806310d5de53146104105780631694505e1461044057806318160ddd1461048c5780631a8145bb146104a157600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630d7f1441146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a9d565b6040516103b391906126f0565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461275a565b610b2f565b60405190151581526020016103b3565b3480156103f857600080fd5b5061040260155481565b6040519081526020016103b3565b34801561041c57600080fd5b506103dc61042b366004612786565b601f6020526000908152604090205460ff1681565b34801561044c57600080fd5b506104747f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b3565b34801561049857600080fd5b50600254610402565b3480156104ad57600080fd5b50610402601b5481565b3480156104c357600080fd5b50610402601a5481565b3480156104d957600080fd5b506104ed6104e83660046127a3565b610b45565b005b3480156104fb57600080fd5b506103dc61050a3660046127bc565b610c2b565b34801561051b57600080fd5b5061047461dead81565b34801561053157600080fd5b506104ed6105403660046127fd565b610cd5565b34801561055157600080fd5b50604051601281526020016103b3565b34801561056d57600080fd5b506103dc61057c36600461275a565b610d9d565b34801561058d57600080fd5b506103dc61059c3660046127a3565b610dd9565b3480156105ad57600080fd5b5061040260195481565b3480156105c357600080fd5b506104747f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f757600080fd5b50600c546103dc9060ff1681565b34801561061157600080fd5b506103dc610620366004612786565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561064a57600080fd5b50600c546103dc9062010000900460ff1681565b34801561066a57600080fd5b50610402610679366004612786565b6001600160a01b031660009081526020819052604090205490565b3480156106a057600080fd5b506104ed610e56565b3480156106b557600080fd5b506103dc610e8c565b3480156106ca57600080fd5b506104ed6106d936600461283f565b610ec9565b3480156106ea57600080fd5b50600754610474906001600160a01b031681565b34801561070a57600080fd5b50600654610474906001600160a01b031681565b34801561072a57600080fd5b5061040260115481565b34801561074057600080fd5b506104ed610f1e565b34801561075557600080fd5b506005546001600160a01b0316610474565b34801561077357600080fd5b50600854610474906001600160a01b031681565b34801561079357600080fd5b5061040260165481565b3480156107a957600080fd5b506104ed6107b8366004612874565b610f5b565b3480156107c957600080fd5b506103a6610fa1565b3480156107de57600080fd5b50610402601d5481565b3480156107f457600080fd5b506104ed61080336600461283f565b610fb0565b34801561081457600080fd5b5061040260135481565b34801561082a57600080fd5b50610402601c5481565b34801561084057600080fd5b5061040260185481565b34801561085657600080fd5b5061040260105481565b34801561086c57600080fd5b506103dc61087b36600461275a565b611090565b34801561088c57600080fd5b506103dc61089b36600461275a565b611129565b3480156108ac57600080fd5b5061040260145481565b3480156108c257600080fd5b506103dc6108d1366004612786565b602080526000908152604090205460ff1681565b3480156108f157600080fd5b50600c546103dc90610100900460ff1681565b34801561091057600080fd5b506104ed61091f36600461283f565b611136565b34801561093057600080fd5b506104ed61093f3660046127a3565b6111bf565b34801561095057600080fd5b50600e546103dc9060ff1681565b34801561096a57600080fd5b5061040260095481565b34801561098057600080fd5b506103dc61098f3660046127a3565b611290565b3480156109a057600080fd5b50610402600f5481565b3480156109b657600080fd5b506104026109c536600461288f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109fc57600080fd5b50610402600a5481565b348015610a1257600080fd5b506104ed610a213660046127fd565b6113e7565b348015610a3257600080fd5b506103dc6114b0565b348015610a4757600080fd5b5061040260125481565b348015610a5d57600080fd5b506104ed610a6c366004612786565b6114ed565b348015610a7d57600080fd5b5061040260175481565b348015610a9357600080fd5b50610402600b5481565b606060038054610aac906128c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad8906128c8565b8015610b255780601f10610afa57610100808354040283529160200191610b25565b820191906000526020600020905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b6000610b3c338484611588565b50600192915050565b6005546001600160a01b03163314610b785760405162461bcd60e51b8152600401610b6f90612903565b60405180910390fd5b670de0b6b3a76400006103e8610b8d60025490565b610b9890600561294e565b610ba2919061296d565b610bac919061296d565b811015610c135760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b6f565b610c2581670de0b6b3a764000061294e565b60095550565b6000610c388484846116ac565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b6f565b610cca8533858403611588565b506001949350505050565b6005546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610b6f90612903565b600a8183610d0d868861298f565b610d17919061298f565b610d21919061298f565b1115610d605760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b6f565b60108490556011839055601282905560138190558082610d80858761298f565b610d8a919061298f565b610d94919061298f565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b3c918590610dd490869061298f565b611588565b600060016014839055601d54610df090600a611f5b565b6014541015610b3c5760405162461bcd60e51b815260206004820152602c60248201527f746f74616c46656520616e642073656c6c4665652063616e6e6f74206265206d60448201526b6f7265207468616e2032302560a01b6064820152608401610b6f565b6005546001600160a01b03163314610e805760405162461bcd60e51b8152600401610b6f90612903565b610e8a6000611f6e565b565b6005546000906001600160a01b03163314610eb95760405162461bcd60e51b8152600401610b6f90612903565b50600c805460ff19169055600190565b6005546001600160a01b03163314610ef35760405162461bcd60e51b8152600401610b6f90612903565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f485760405162461bcd60e51b8152600401610b6f90612903565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610f855760405162461bcd60e51b8152600401610b6f90612903565b600c8054911515620100000262ff000019909216919091179055565b606060048054610aac906128c8565b6005546001600160a01b03163314610fda5760405162461bcd60e51b8152600401610b6f90612903565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110825760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b6f565b61108c8282611fc0565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b6f565b61111f3385858403611588565b5060019392505050565b6000610b3c3384846116ac565b6005546001600160a01b031633146111605760405162461bcd60e51b8152600401610b6f90612903565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e95760405162461bcd60e51b8152600401610b6f90612903565b670de0b6b3a76400006103e86111fe60025490565b61120990600561294e565b611213919061296d565b61121d919061296d565b8110156112785760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b6f565b61128a81670de0b6b3a764000061294e565b600b5550565b6005546000906001600160a01b031633146112bd5760405162461bcd60e51b8152600401610b6f90612903565b620186a06112ca60025490565b6112d590600161294e565b6112df919061296d565b82101561134c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b6f565b6103e861135860025490565b61136390600561294e565b61136d919061296d565b8211156113d95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b6f565b50600a81905560015b919050565b6005546001600160a01b031633146114115760405162461bcd60e51b8152600401610b6f90612903565b600a818361141f868861298f565b611429919061298f565b611433919061298f565b11156114735760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b6f565b60158490556016839055601782905560188190558082611493858761298f565b61149d919061298f565b6114a7919061298f565b60145550505050565b6005546000906001600160a01b031633146114dd5760405162461bcd60e51b8152600401610b6f90612903565b50600e805460ff19169055600190565b6005546001600160a01b031633146115175760405162461bcd60e51b8152600401610b6f90612903565b6001600160a01b03811661157c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b6f565b61158581611f6e565b50565b6001600160a01b0383166115ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b6f565b6001600160a01b03821661164b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b6f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116d25760405162461bcd60e51b8152600401610b6f906129a7565b6001600160a01b0382166116f85760405162461bcd60e51b8152600401610b6f906129ec565b8061170e5761170983836000612013565b505050565b600c5460ff1615611bc9576005546001600160a01b0384811691161480159061174557506005546001600160a01b03838116911614155b801561175957506001600160a01b03821615155b801561177057506001600160a01b03821661dead14155b80156117865750600554600160a01b900460ff16155b15611bc957600c54610100900460ff1661181e576001600160a01b0383166000908152601e602052604090205460ff16806117d957506001600160a01b0382166000908152601e602052604090205460ff165b61181e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b6f565b600e5460ff1615611965576005546001600160a01b0383811691161480159061187957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156118b757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561196557326000908152600d602052604090205443116119525760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b6f565b326000908152600d602052604090204390555b6001600160a01b038316600090815260208052604090205460ff1680156119a557506001600160a01b0382166000908152601f602052604090205460ff16155b15611a8957600954811115611a1a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b6f565b600b546001600160a01b038316600090815260208190526040902054611a40908361298f565b1115611a845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b6f565b611bc9565b6001600160a01b038216600090815260208052604090205460ff168015611ac957506001600160a01b0383166000908152601f602052604090205460ff16155b15611b3f57600954811115611a845760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b6f565b6001600160a01b0382166000908152601f602052604090205460ff16611bc957600b546001600160a01b038316600090815260208190526040902054611b85908361298f565b1115611bc95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b6f565b30600090815260208190526040902054600a5481108015908190611bf55750600c5462010000900460ff165b8015611c0b5750600554600160a01b900460ff16155b8015611c2f57506001600160a01b038516600090815260208052604090205460ff16155b8015611c5457506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c7957506001600160a01b0384166000908152601e602052604090205460ff16155b15611ca7576005805460ff60a01b1916600160a01b179055611c99612168565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611cf557506001600160a01b0385166000908152601e602052604090205460ff165b15611cfe575060005b60008115611f47576001600160a01b038616600090815260208052604090205460ff168015611d2f57506000601454115b15611e1d57611d546064611d4e6014548861243290919063ffffffff16565b90611f5b565b905060145460155482611d67919061294e565b611d71919061296d565b60196000828254611d82919061298f565b9091555050601454601754611d97908361294e565b611da1919061296d565b601b6000828254611db2919061298f565b9091555050601454601854611dc7908361294e565b611dd1919061296d565b601c6000828254611de2919061298f565b9091555050601454601654611df7908361294e565b611e01919061296d565b601a6000828254611e12919061298f565b90915550611f299050565b6001600160a01b038716600090815260208052604090205460ff168015611e4657506000600f54115b15611f2957611e656064611d4e600f548861243290919063ffffffff16565b9050600f5460105482611e78919061294e565b611e82919061296d565b60196000828254611e93919061298f565b9091555050600f54601254611ea8908361294e565b611eb2919061296d565b601b6000828254611ec3919061298f565b9091555050600f54601354611ed8908361294e565b611ee2919061296d565b601c6000828254611ef3919061298f565b9091555050600f54601154611f08908361294e565b611f12919061296d565b601a6000828254611f23919061298f565b90915550505b8015611f3a57611f3a873083612013565b611f448186612a2f565b94505b611f52878787612013565b50505050505050565b6000611f67828461296d565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120395760405162461bcd60e51b8152600401610b6f906129a7565b6001600160a01b03821661205f5760405162461bcd60e51b8152600401610b6f906129ec565b6001600160a01b038316600090815260208190526040902054818110156120d75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b6f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061210e90849061298f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215a91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b54601954612192919061298f565b61219c919061298f565b6121a6919061298f565b905060008215806121b5575081155b156121bf57505050565b600a546121cd90601461294e565b8311156121e557600a546121e290601461294e565b92505b6000600283601b54866121f8919061294e565b612202919061296d565b61220c919061296d565b9050600061221a858361243e565b9050476122268261244a565b6000612232478361243e565b9050600061224f87611d4e6019548561243290919063ffffffff16565b9050600061226c88611d4e601a548661243290919063ffffffff16565b9050600061228989611d4e601c548761243290919063ffffffff16565b9050600081836122998688612a2f565b6122a39190612a2f565b6122ad9190612a2f565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461230f576040519150601f19603f3d011682016040523d82523d6000602084013e612314565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612364576040519150601f19603f3d011682016040523d82523d6000602084013e612369565b606091505b5090995050871580159061237d5750600081115b156123d05761238c888261260a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5050505050505050505050505050565b6000611f67828461294e565b6000611f678284612a2f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061247f5761247f612a46565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125219190612a5c565b8160018151811061253457612534612a46565b60200260200101906001600160a01b031690816001600160a01b03168152505061257f307f000000000000000000000000000000000000000000000000000000000000000084611588565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125d4908590600090869030904290600401612a79565b600060405180830381600087803b1580156125ee57600080fd5b505af1158015612602573d6000803e3d6000fd5b505050505050565b612635307f000000000000000000000000000000000000000000000000000000000000000084611588565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156126c4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126e99190612aea565b5050505050565b600060208083528351808285015260005b8181101561271d57858101830151858201604001528201612701565b8181111561272f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461158557600080fd5b6000806040838503121561276d57600080fd5b823561277881612745565b946020939093013593505050565b60006020828403121561279857600080fd5b8135611f6781612745565b6000602082840312156127b557600080fd5b5035919050565b6000806000606084860312156127d157600080fd5b83356127dc81612745565b925060208401356127ec81612745565b929592945050506040919091013590565b6000806000806080858703121561281357600080fd5b5050823594602084013594506040840135936060013592509050565b803580151581146113e257600080fd5b6000806040838503121561285257600080fd5b823561285d81612745565b915061286b6020840161282f565b90509250929050565b60006020828403121561288657600080fd5b611f678261282f565b600080604083850312156128a257600080fd5b82356128ad81612745565b915060208301356128bd81612745565b809150509250929050565b600181811c908216806128dc57607f821691505b602082108114156128fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561296857612968612938565b500290565b60008261298a57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156129a2576129a2612938565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612a4157612a41612938565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a6e57600080fd5b8151611f6781612745565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ac95784516001600160a01b031683529383019391830191600101612aa4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612aff57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220371d2870ba6ff6f7b9b419ef08d095d87c38ff3ce0034264b4dd6353228fb69564736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103855760003560e01c80638ea5220f116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f11a24d31161006f578063f11a24d314610a3b578063f2fde38b14610a51578063f637434214610a71578063f8b45b0514610a8757600080fd5b8063dd62ed3e146109aa578063e2f45605146109f0578063e7ad9fcd14610a06578063e884f26014610a2657600080fd5b8063c876d0b9116100dc578063c876d0b914610944578063c8c8ebe41461095e578063d257b34f14610974578063d85ba0631461099457600080fd5b8063bbc0c742146108e5578063c024666814610904578063c18bc1951461092457600080fd5b80639fccce321161016f578063a457c2d711610149578063a457c2d714610860578063a9059cbb14610880578063ae50241c146108a0578063b62496f5146108b657600080fd5b80639fccce321461081e578063a0d82dc514610834578063a1dc92bc1461084a57600080fd5b806395d89b41116101ab57806395d89b41146107bd57806396ce0795146107d25780639a7a23d6146107e85780639c3b4fdc1461080857600080fd5b80638ea5220f146107675780639213691314610787578063924de9b71461079d57600080fd5b80633eb0972a116102b6578063715018a6116102545780637b208769116102235780637b208769146106fe5780637bce5a041461071e5780638a8c523c146107345780638da5cb5b1461074957600080fd5b8063715018a614610694578063751039fc146106a95780637571336a146106be57806375f0a874146106de57600080fd5b80634a62bb65116102905780634a62bb65146105eb5780634fbee193146106055780636ddd17131461063e57806370a082311461065e57600080fd5b80633eb0972a1461058157806344249f04146105a157806349bd5a5e146105b757600080fd5b80631f3fed8f1161032357806327c8f835116102fd57806327c8f8351461050f5780632e6ed7ef14610525578063313ce56714610545578063395093511461056157600080fd5b80631f3fed8f146104b7578063203e727e146104cd57806323b872dd146104ef57600080fd5b806310d5de531161035f57806310d5de53146104105780631694505e1461044057806318160ddd1461048c5780631a8145bb146104a157600080fd5b806306fdde0314610391578063095ea7b3146103bc5780630d7f1441146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a9d565b6040516103b391906126f0565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461275a565b610b2f565b60405190151581526020016103b3565b3480156103f857600080fd5b5061040260155481565b6040519081526020016103b3565b34801561041c57600080fd5b506103dc61042b366004612786565b601f6020526000908152604090205460ff1681565b34801561044c57600080fd5b506104747f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b3565b34801561049857600080fd5b50600254610402565b3480156104ad57600080fd5b50610402601b5481565b3480156104c357600080fd5b50610402601a5481565b3480156104d957600080fd5b506104ed6104e83660046127a3565b610b45565b005b3480156104fb57600080fd5b506103dc61050a3660046127bc565b610c2b565b34801561051b57600080fd5b5061047461dead81565b34801561053157600080fd5b506104ed6105403660046127fd565b610cd5565b34801561055157600080fd5b50604051601281526020016103b3565b34801561056d57600080fd5b506103dc61057c36600461275a565b610d9d565b34801561058d57600080fd5b506103dc61059c3660046127a3565b610dd9565b3480156105ad57600080fd5b5061040260195481565b3480156105c357600080fd5b506104747f000000000000000000000000849ce39431a2bdea5b6637833c25c954f188cf6c81565b3480156105f757600080fd5b50600c546103dc9060ff1681565b34801561061157600080fd5b506103dc610620366004612786565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561064a57600080fd5b50600c546103dc9062010000900460ff1681565b34801561066a57600080fd5b50610402610679366004612786565b6001600160a01b031660009081526020819052604090205490565b3480156106a057600080fd5b506104ed610e56565b3480156106b557600080fd5b506103dc610e8c565b3480156106ca57600080fd5b506104ed6106d936600461283f565b610ec9565b3480156106ea57600080fd5b50600754610474906001600160a01b031681565b34801561070a57600080fd5b50600654610474906001600160a01b031681565b34801561072a57600080fd5b5061040260115481565b34801561074057600080fd5b506104ed610f1e565b34801561075557600080fd5b506005546001600160a01b0316610474565b34801561077357600080fd5b50600854610474906001600160a01b031681565b34801561079357600080fd5b5061040260165481565b3480156107a957600080fd5b506104ed6107b8366004612874565b610f5b565b3480156107c957600080fd5b506103a6610fa1565b3480156107de57600080fd5b50610402601d5481565b3480156107f457600080fd5b506104ed61080336600461283f565b610fb0565b34801561081457600080fd5b5061040260135481565b34801561082a57600080fd5b50610402601c5481565b34801561084057600080fd5b5061040260185481565b34801561085657600080fd5b5061040260105481565b34801561086c57600080fd5b506103dc61087b36600461275a565b611090565b34801561088c57600080fd5b506103dc61089b36600461275a565b611129565b3480156108ac57600080fd5b5061040260145481565b3480156108c257600080fd5b506103dc6108d1366004612786565b602080526000908152604090205460ff1681565b3480156108f157600080fd5b50600c546103dc90610100900460ff1681565b34801561091057600080fd5b506104ed61091f36600461283f565b611136565b34801561093057600080fd5b506104ed61093f3660046127a3565b6111bf565b34801561095057600080fd5b50600e546103dc9060ff1681565b34801561096a57600080fd5b5061040260095481565b34801561098057600080fd5b506103dc61098f3660046127a3565b611290565b3480156109a057600080fd5b50610402600f5481565b3480156109b657600080fd5b506104026109c536600461288f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109fc57600080fd5b50610402600a5481565b348015610a1257600080fd5b506104ed610a213660046127fd565b6113e7565b348015610a3257600080fd5b506103dc6114b0565b348015610a4757600080fd5b5061040260125481565b348015610a5d57600080fd5b506104ed610a6c366004612786565b6114ed565b348015610a7d57600080fd5b5061040260175481565b348015610a9357600080fd5b50610402600b5481565b606060038054610aac906128c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad8906128c8565b8015610b255780601f10610afa57610100808354040283529160200191610b25565b820191906000526020600020905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b6000610b3c338484611588565b50600192915050565b6005546001600160a01b03163314610b785760405162461bcd60e51b8152600401610b6f90612903565b60405180910390fd5b670de0b6b3a76400006103e8610b8d60025490565b610b9890600561294e565b610ba2919061296d565b610bac919061296d565b811015610c135760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b6f565b610c2581670de0b6b3a764000061294e565b60095550565b6000610c388484846116ac565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b6f565b610cca8533858403611588565b506001949350505050565b6005546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610b6f90612903565b600a8183610d0d868861298f565b610d17919061298f565b610d21919061298f565b1115610d605760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b6f565b60108490556011839055601282905560138190558082610d80858761298f565b610d8a919061298f565b610d94919061298f565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b3c918590610dd490869061298f565b611588565b600060016014839055601d54610df090600a611f5b565b6014541015610b3c5760405162461bcd60e51b815260206004820152602c60248201527f746f74616c46656520616e642073656c6c4665652063616e6e6f74206265206d60448201526b6f7265207468616e2032302560a01b6064820152608401610b6f565b6005546001600160a01b03163314610e805760405162461bcd60e51b8152600401610b6f90612903565b610e8a6000611f6e565b565b6005546000906001600160a01b03163314610eb95760405162461bcd60e51b8152600401610b6f90612903565b50600c805460ff19169055600190565b6005546001600160a01b03163314610ef35760405162461bcd60e51b8152600401610b6f90612903565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f485760405162461bcd60e51b8152600401610b6f90612903565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610f855760405162461bcd60e51b8152600401610b6f90612903565b600c8054911515620100000262ff000019909216919091179055565b606060048054610aac906128c8565b6005546001600160a01b03163314610fda5760405162461bcd60e51b8152600401610b6f90612903565b7f000000000000000000000000849ce39431a2bdea5b6637833c25c954f188cf6c6001600160a01b0316826001600160a01b031614156110825760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b6f565b61108c8282611fc0565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b6f565b61111f3385858403611588565b5060019392505050565b6000610b3c3384846116ac565b6005546001600160a01b031633146111605760405162461bcd60e51b8152600401610b6f90612903565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e95760405162461bcd60e51b8152600401610b6f90612903565b670de0b6b3a76400006103e86111fe60025490565b61120990600561294e565b611213919061296d565b61121d919061296d565b8110156112785760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b6f565b61128a81670de0b6b3a764000061294e565b600b5550565b6005546000906001600160a01b031633146112bd5760405162461bcd60e51b8152600401610b6f90612903565b620186a06112ca60025490565b6112d590600161294e565b6112df919061296d565b82101561134c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b6f565b6103e861135860025490565b61136390600561294e565b61136d919061296d565b8211156113d95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b6f565b50600a81905560015b919050565b6005546001600160a01b031633146114115760405162461bcd60e51b8152600401610b6f90612903565b600a818361141f868861298f565b611429919061298f565b611433919061298f565b11156114735760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b6f565b60158490556016839055601782905560188190558082611493858761298f565b61149d919061298f565b6114a7919061298f565b60145550505050565b6005546000906001600160a01b031633146114dd5760405162461bcd60e51b8152600401610b6f90612903565b50600e805460ff19169055600190565b6005546001600160a01b031633146115175760405162461bcd60e51b8152600401610b6f90612903565b6001600160a01b03811661157c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b6f565b61158581611f6e565b50565b6001600160a01b0383166115ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b6f565b6001600160a01b03821661164b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b6f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116d25760405162461bcd60e51b8152600401610b6f906129a7565b6001600160a01b0382166116f85760405162461bcd60e51b8152600401610b6f906129ec565b8061170e5761170983836000612013565b505050565b600c5460ff1615611bc9576005546001600160a01b0384811691161480159061174557506005546001600160a01b03838116911614155b801561175957506001600160a01b03821615155b801561177057506001600160a01b03821661dead14155b80156117865750600554600160a01b900460ff16155b15611bc957600c54610100900460ff1661181e576001600160a01b0383166000908152601e602052604090205460ff16806117d957506001600160a01b0382166000908152601e602052604090205460ff165b61181e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b6f565b600e5460ff1615611965576005546001600160a01b0383811691161480159061187957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156118b757507f000000000000000000000000849ce39431a2bdea5b6637833c25c954f188cf6c6001600160a01b0316826001600160a01b031614155b1561196557326000908152600d602052604090205443116119525760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b6f565b326000908152600d602052604090204390555b6001600160a01b038316600090815260208052604090205460ff1680156119a557506001600160a01b0382166000908152601f602052604090205460ff16155b15611a8957600954811115611a1a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b6f565b600b546001600160a01b038316600090815260208190526040902054611a40908361298f565b1115611a845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b6f565b611bc9565b6001600160a01b038216600090815260208052604090205460ff168015611ac957506001600160a01b0383166000908152601f602052604090205460ff16155b15611b3f57600954811115611a845760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b6f565b6001600160a01b0382166000908152601f602052604090205460ff16611bc957600b546001600160a01b038316600090815260208190526040902054611b85908361298f565b1115611bc95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b6f565b30600090815260208190526040902054600a5481108015908190611bf55750600c5462010000900460ff165b8015611c0b5750600554600160a01b900460ff16155b8015611c2f57506001600160a01b038516600090815260208052604090205460ff16155b8015611c5457506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c7957506001600160a01b0384166000908152601e602052604090205460ff16155b15611ca7576005805460ff60a01b1916600160a01b179055611c99612168565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611cf557506001600160a01b0385166000908152601e602052604090205460ff165b15611cfe575060005b60008115611f47576001600160a01b038616600090815260208052604090205460ff168015611d2f57506000601454115b15611e1d57611d546064611d4e6014548861243290919063ffffffff16565b90611f5b565b905060145460155482611d67919061294e565b611d71919061296d565b60196000828254611d82919061298f565b9091555050601454601754611d97908361294e565b611da1919061296d565b601b6000828254611db2919061298f565b9091555050601454601854611dc7908361294e565b611dd1919061296d565b601c6000828254611de2919061298f565b9091555050601454601654611df7908361294e565b611e01919061296d565b601a6000828254611e12919061298f565b90915550611f299050565b6001600160a01b038716600090815260208052604090205460ff168015611e4657506000600f54115b15611f2957611e656064611d4e600f548861243290919063ffffffff16565b9050600f5460105482611e78919061294e565b611e82919061296d565b60196000828254611e93919061298f565b9091555050600f54601254611ea8908361294e565b611eb2919061296d565b601b6000828254611ec3919061298f565b9091555050600f54601354611ed8908361294e565b611ee2919061296d565b601c6000828254611ef3919061298f565b9091555050600f54601154611f08908361294e565b611f12919061296d565b601a6000828254611f23919061298f565b90915550505b8015611f3a57611f3a873083612013565b611f448186612a2f565b94505b611f52878787612013565b50505050505050565b6000611f67828461296d565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120395760405162461bcd60e51b8152600401610b6f906129a7565b6001600160a01b03821661205f5760405162461bcd60e51b8152600401610b6f906129ec565b6001600160a01b038316600090815260208190526040902054818110156120d75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b6f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061210e90849061298f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215a91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b54601954612192919061298f565b61219c919061298f565b6121a6919061298f565b905060008215806121b5575081155b156121bf57505050565b600a546121cd90601461294e565b8311156121e557600a546121e290601461294e565b92505b6000600283601b54866121f8919061294e565b612202919061296d565b61220c919061296d565b9050600061221a858361243e565b9050476122268261244a565b6000612232478361243e565b9050600061224f87611d4e6019548561243290919063ffffffff16565b9050600061226c88611d4e601a548661243290919063ffffffff16565b9050600061228989611d4e601c548761243290919063ffffffff16565b9050600081836122998688612a2f565b6122a39190612a2f565b6122ad9190612a2f565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461230f576040519150601f19603f3d011682016040523d82523d6000602084013e612314565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612364576040519150601f19603f3d011682016040523d82523d6000602084013e612369565b606091505b5090995050871580159061237d5750600081115b156123d05761238c888261260a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5050505050505050505050505050565b6000611f67828461294e565b6000611f678284612a2f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061247f5761247f612a46565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125219190612a5c565b8160018151811061253457612534612a46565b60200260200101906001600160a01b031690816001600160a01b03168152505061257f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611588565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125d4908590600090869030904290600401612a79565b600060405180830381600087803b1580156125ee57600080fd5b505af1158015612602573d6000803e3d6000fd5b505050505050565b612635307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611588565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156126c4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126e99190612aea565b5050505050565b600060208083528351808285015260005b8181101561271d57858101830151858201604001528201612701565b8181111561272f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461158557600080fd5b6000806040838503121561276d57600080fd5b823561277881612745565b946020939093013593505050565b60006020828403121561279857600080fd5b8135611f6781612745565b6000602082840312156127b557600080fd5b5035919050565b6000806000606084860312156127d157600080fd5b83356127dc81612745565b925060208401356127ec81612745565b929592945050506040919091013590565b6000806000806080858703121561281357600080fd5b5050823594602084013594506040840135936060013592509050565b803580151581146113e257600080fd5b6000806040838503121561285257600080fd5b823561285d81612745565b915061286b6020840161282f565b90509250929050565b60006020828403121561288657600080fd5b611f678261282f565b600080604083850312156128a257600080fd5b82356128ad81612745565b915060208301356128bd81612745565b809150509250929050565b600181811c908216806128dc57607f821691505b602082108114156128fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561296857612968612938565b500290565b60008261298a57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156129a2576129a2612938565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612a4157612a41612938565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a6e57600080fd5b8151611f6781612745565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ac95784516001600160a01b031683529383019391830191600101612aa4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612aff57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220371d2870ba6ff6f7b9b419ef08d095d87c38ff3ce0034264b4dd6353228fb69564736f6c634300080a0033

Deployed Bytecode Sourcemap

32933:16836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9890:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12057:169;;;;;;;;;;-1:-1:-1;12057:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;12057:169:0;1072:187:1;33969:29:0;;;;;;;;;;;;;;;;;;;1410:25:1;;;1398:2;1383:18;33969:29:0;1264:177:1;34446:63:0;;;;;;;;;;-1:-1:-1;34446:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33012:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;33012:51:0;1698:230:1;11010:108:0;;;;;;;;;;-1:-1:-1;11098:12:0;;11010:108;;34190:33;;;;;;;;;;;;;;;;34150;;;;;;;;;;;;;;;;38838:275;;;;;;;;;;-1:-1:-1;38838:275:0;;;;;:::i;:::-;;:::i;:::-;;12708:492;;;;;;;;;;-1:-1:-1;12708:492:0;;;;;:::i;:::-;;:::i;33115:53::-;;;;;;;;;;;;33161:6;33115:53;;39757:498;;;;;;;;;;-1:-1:-1;39757:498:0;;;;;:::i;:::-;;:::i;10852:93::-;;;;;;;;;;-1:-1:-1;10852:93:0;;10935:2;3319:36:1;;3307:2;3292:18;10852:93:0;3177:184:1;13609:215:0;;;;;;;;;;-1:-1:-1;13609:215:0;;;;;:::i;:::-;;:::i;40775:318::-;;;;;;;;;;-1:-1:-1;40775:318:0;;;;;:::i;:::-;;:::i;34112:31::-;;;;;;;;;;;;;;;;33070:38;;;;;;;;;;;;;;;33424:33;;;;;;;;;;-1:-1:-1;33424:33:0;;;;;;;;41799:126;;;;;;;;;;-1:-1:-1;41799:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41889:28:0;41865:4;41889:28;;;:19;:28;;;;;;;;;41799:126;33503:30;;;;;;;;;;-1:-1:-1;33503:30:0;;;;;;;;;;;11181:127;;;;;;;;;;-1:-1:-1;11181:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11282:18:0;11255:7;11282:18;;;;;;;;;;;;11181:127;3125:103;;;;;;;;;;;;;:::i;37946:121::-;;;;;;;;;;;;;:::i;39386:167::-;;;;;;;;;;-1:-1:-1;39386:167:0;;;;;:::i;:::-;;:::i;33239:30::-;;;;;;;;;;-1:-1:-1;33239:30:0;;;;-1:-1:-1;;;;;33239:30:0;;;33204:28;;;;;;;;;;-1:-1:-1;33204:28:0;;;;-1:-1:-1;;;;;33204:28:0;;;33834:30;;;;;;;;;;;;;;;;37782:112;;;;;;;;;;;;;:::i;2474:87::-;;;;;;;;;;-1:-1:-1;2547:6:0;;-1:-1:-1;;;;;2547:6:0;2474:87;;33276:24;;;;;;;;;;-1:-1:-1;33276:24:0;;;;-1:-1:-1;;;;;33276:24:0;;;34005:31;;;;;;;;;;;;;;;;39649:100;;;;;;;;;;-1:-1:-1;39649:100:0;;;;;:::i;:::-;;:::i;10109:104::-;;;;;;;;;;;;;:::i;34264:33::-;;;;;;;;;;;;;;;;41291:304;;;;;;;;;;-1:-1:-1;41291:304:0;;;;;:::i;:::-;;:::i;33908:24::-;;;;;;;;;;;;;;;;34230:27;;;;;;;;;;;;;;;;34081:25;;;;;;;;;;;;;;;;33799:28;;;;;;;;;;;;;;;;14327:413;;;;;;;;;;-1:-1:-1;14327:413:0;;;;;:::i;:::-;;:::i;11521:175::-;;;;;;;;;;-1:-1:-1;11521:175:0;;;;;:::i;:::-;;:::i;33941:24::-;;;;;;;;;;;;;;;;34667:57;;;;;;;;;;-1:-1:-1;34667:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33464:32;;;;;;;;;;-1:-1:-1;33464:32:0;;;;;;;;;;;41101:182;;;;;;;;;;-1:-1:-1;41101:182:0;;;;;:::i;:::-;;:::i;39121:256::-;;;;;;;;;;-1:-1:-1;39121:256:0;;;;;:::i;:::-;;:::i;33720:39::-;;;;;;;;;;-1:-1:-1;33720:39:0;;;;;;;;33309:35;;;;;;;;;;;;;;;;38333:497;;;;;;;;;;-1:-1:-1;38333:497:0;;;;;:::i;:::-;;:::i;33768:27::-;;;;;;;;;;;;;;;;11759:151;;;;;;;;;;-1:-1:-1;11759:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11875:18:0;;;11848:7;11875:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11759:151;33351:33;;;;;;;;;;;;;;;;40263:504;;;;;;;;;;-1:-1:-1;40263:504:0;;;;;:::i;:::-;;:::i;38128:135::-;;;;;;;;;;;;;:::i;33871:30::-;;;;;;;;;;;;;;;;3383:201;;;;;;;;;;-1:-1:-1;3383:201:0;;;;;:::i;:::-;;:::i;34043:31::-;;;;;;;;;;;;;;;;33391:24;;;;;;;;;;;;;;;;9890:100;9944:13;9977:5;9970:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9890:100;:::o;12057:169::-;12140:4;12157:39;1227:10;12180:7;12189:6;12157:8;:39::i;:::-;-1:-1:-1;12214:4:0;12057:169;;;;:::o;38838:275::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;;;;;;;;;38975:4:::1;38967;38946:13;11098:12:::0;;;11010:108;38946:13:::1;:17;::::0;38962:1:::1;38946:17;:::i;:::-;38945:26;;;;:::i;:::-;38944:35;;;;:::i;:::-;38934:6;:45;;38912:142;;;::::0;-1:-1:-1;;;38912:142:0;;5904:2:1;38912:142:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:45;6088:19;;38912:142:0::1;5702:411:1::0;38912:142:0::1;39088:17;:6:::0;39098::::1;39088:17;:::i;:::-;39065:20;:40:::0;-1:-1:-1;38838:275:0:o;12708:492::-;12848:4;12865:36;12875:6;12883:9;12894:6;12865:9;:36::i;:::-;-1:-1:-1;;;;;12941:19:0;;12914:24;12941:19;;;:11;:19;;;;;;;;1227:10;12941:33;;;;;;;;12993:26;;;;12985:79;;;;-1:-1:-1;;;12985:79:0;;6320:2:1;12985:79:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:38;6497:19;;12985:79:0;6118:404:1;12985:79:0;13100:57;13109:6;1227:10;13150:6;13131:16;:25;13100:8;:57::i;:::-;-1:-1:-1;13188:4:0;;12708:492;-1:-1:-1;;;;12708:492:0:o;39757:498::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;39992:2:::1;39980:7:::0;39964:13;39934:27:::1;39948:13:::0;39934:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39933:61;;39925:88;;;::::0;-1:-1:-1;;;39925:88:0;;6862:2:1;39925:88:0::1;::::0;::::1;6844:21:1::0;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:44;6974:18;;39925:88:0::1;6660:338:1::0;39925:88:0::1;40018:13;:27:::0;;;40056:15:::1;:31:::0;;;40098:15:::1;:31:::0;;;40140:9:::1;:19:::0;;;40152:7;40116:13;40185:31:::1;40074:13:::0;40034:11;40185:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;40170:12;:76:::0;-1:-1:-1;;;;39757:498:0:o;13609:215::-;1227:10;13697:4;13746:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13746:34:0;;;;;;;;;;13697:4;;13714:80;;13737:7;;13746:47;;13783:10;;13746:47;:::i;:::-;13714:8;:80::i;40775:318::-;40839:4;40869;40911:9;:19;;;40995:11;;:19;;41011:2;40995:15;:19::i;:::-;40982:9;;:32;;40974:89;;;;-1:-1:-1;;;40974:89:0;;7205:2:1;40974:89:0;;;7187:21:1;7244:2;7224:18;;;7217:30;7283:34;7263:18;;;7256:62;-1:-1:-1;;;7334:18:1;;;7327:42;7386:19;;40974:89:0;7003:408:1;3125:103:0;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;3190:30:::1;3217:1;3190:18;:30::i;:::-;3125:103::o:0;37946:121::-;2547:6;;37998:4;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;-1:-1:-1;38015:14:0::1;:22:::0;;-1:-1:-1;;38015:22:0::1;::::0;;;37946:121;:::o;39386:167::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39499:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39499:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39386:167::o;37782:112::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;37837:13:::1;:20:::0;;-1:-1:-1;;37868:18:0;;;;;37782:112::o;39649:100::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;39720:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39720:21:0;;::::1;::::0;;;::::1;::::0;;39649:100::o;10109:104::-;10165:13;10198:7;10191:14;;;;;:::i;41291:304::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;41435:13:::1;-1:-1:-1::0;;;;;41427:21:0::1;:4;-1:-1:-1::0;;;;;41427:21:0::1;;;41405:128;;;::::0;-1:-1:-1;;;41405:128:0;;7618:2:1;41405:128:0::1;::::0;::::1;7600:21:1::0;7657:2;7637:18;;;7630:30;7696:34;7676:18;;;7669:62;7767:27;7747:18;;;7740:55;7812:19;;41405:128:0::1;7416:421:1::0;41405:128:0::1;41546:41;41575:4;41581:5;41546:28;:41::i;:::-;41291:304:::0;;:::o;14327:413::-;1227:10;14420:4;14464:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14464:34:0;;;;;;;;;;14517:35;;;;14509:85;;;;-1:-1:-1;;;14509:85:0;;8044:2:1;14509:85:0;;;8026:21:1;8083:2;8063:18;;;8056:30;8122:34;8102:18;;;8095:62;-1:-1:-1;;;8173:18:1;;;8166:35;8218:19;;14509:85:0;7842:401:1;14509:85:0;14630:67;1227:10;14653:7;14681:15;14662:16;:34;14630:8;:67::i;:::-;-1:-1:-1;14728:4:0;;14327:413;-1:-1:-1;;;14327:413:0:o;11521:175::-;11607:4;11624:42;1227:10;11648:9;11659:6;11624:9;:42::i;41101:182::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41186:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41186:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41241:34;;1212:41:1;;;41241:34:0::1;::::0;1185:18:1;41241:34:0::1;;;;;;;41101:182:::0;;:::o;39121:256::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;39261:4:::1;39253;39232:13;11098:12:::0;;;11010:108;39232:13:::1;:17;::::0;39248:1:::1;39232:17;:::i;:::-;39231:26;;;;:::i;:::-;39230:35;;;;:::i;:::-;39220:6;:45;;39198:131;;;::::0;-1:-1:-1;;;39198:131:0;;8450:2:1;39198:131:0::1;::::0;::::1;8432:21:1::0;8489:2;8469:18;;;8462:30;8528:34;8508:18;;;8501:62;-1:-1:-1;;;8579:18:1;;;8572:34;8623:19;;39198:131:0::1;8248:400:1::0;39198:131:0::1;39352:17;:6:::0;39362::::1;39352:17;:::i;:::-;39340:9;:29:::0;-1:-1:-1;39121:256:0:o;38333:497::-;2547:6;;38441:4;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;38520:6:::1;38499:13;11098:12:::0;;;11010:108;38499:13:::1;:17;::::0;38515:1:::1;38499:17;:::i;:::-;38498:28;;;;:::i;:::-;38485:9;:41;;38463:144;;;::::0;-1:-1:-1;;;38463:144:0;;8855:2:1;38463:144:0::1;::::0;::::1;8837:21:1::0;8894:2;8874:18;;;8867:30;8933:34;8913:18;;;8906:62;-1:-1:-1;;;8984:18:1;;;8977:51;9045:19;;38463:144:0::1;8653:417:1::0;38463:144:0::1;38675:4;38654:13;11098:12:::0;;;11010:108;38654:13:::1;:17;::::0;38670:1:::1;38654:17;:::i;:::-;38653:26;;;;:::i;:::-;38640:9;:39;;38618:141;;;::::0;-1:-1:-1;;;38618:141:0;;9277:2:1;38618:141:0::1;::::0;::::1;9259:21:1::0;9316:2;9296:18;;;9289:30;9355:34;9335:18;;;9328:62;-1:-1:-1;;;9406:18:1;;;9399:50;9466:19;;38618:141:0::1;9075:416:1::0;38618:141:0::1;-1:-1:-1::0;38770:18:0::1;:30:::0;;;38818:4:::1;2765:1;38333:497:::0;;;:::o;40263:504::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;40499:2:::1;40487:7:::0;40471:13;40441:27:::1;40455:13:::0;40441:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40440:61;;40432:89;;;::::0;-1:-1:-1;;;40432:89:0;;9698:2:1;40432:89:0::1;::::0;::::1;9680:21:1::0;9737:2;9717:18;;;9710:30;-1:-1:-1;;;9756:18:1;;;9749:45;9811:18;;40432:89:0::1;9496:339:1::0;40432:89:0::1;40526:14;:28:::0;;;40565:16:::1;:32:::0;;;40608:16:::1;:32:::0;;;40651:10:::1;:20:::0;;;40664:7;40627:13;40694:33:::1;40584:13:::0;40543:11;40694:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40682:9;:77:::0;-1:-1:-1;;;;40263:504:0:o;38128:135::-;2547:6;;38188:4;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;-1:-1:-1;38205:20:0::1;:28:::0;;-1:-1:-1;;38205:28:0::1;::::0;;;38128:135;:::o;3383:201::-;2547:6;;-1:-1:-1;;;;;2547:6:0;1227:10;2694:23;2686:68;;;;-1:-1:-1;;;2686:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3472:22:0;::::1;3464:73;;;::::0;-1:-1:-1;;;3464:73:0;;10042:2:1;3464:73:0::1;::::0;::::1;10024:21:1::0;10081:2;10061:18;;;10054:30;10120:34;10100:18;;;10093:62;-1:-1:-1;;;10171:18:1;;;10164:36;10217:19;;3464:73:0::1;9840:402:1::0;3464:73:0::1;3548:28;3567:8;3548:18;:28::i;:::-;3383:201:::0;:::o;18011:380::-;-1:-1:-1;;;;;18147:19:0;;18139:68;;;;-1:-1:-1;;;18139:68:0;;10449:2:1;18139:68:0;;;10431:21:1;10488:2;10468:18;;;10461:30;10527:34;10507:18;;;10500:62;-1:-1:-1;;;10578:18:1;;;10571:34;10622:19;;18139:68:0;10247:400:1;18139:68:0;-1:-1:-1;;;;;18226:21:0;;18218:68;;;;-1:-1:-1;;;18218:68:0;;10854:2:1;18218:68:0;;;10836:21:1;10893:2;10873:18;;;10866:30;10932:34;10912:18;;;10905:62;-1:-1:-1;;;10983:18:1;;;10976:32;11025:19;;18218:68:0;10652:398:1;18218:68:0;-1:-1:-1;;;;;18299:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18351:32;;1410:25:1;;;18351:32:0;;1383:18:1;18351:32:0;;;;;;;18011:380;;;:::o;41933:4823::-;-1:-1:-1;;;;;42065:18:0;;42057:68;;;;-1:-1:-1;;;42057:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42144:16:0;;42136:64;;;;-1:-1:-1;;;42136:64:0;;;;;;;:::i;:::-;42217:11;42213:93;;42245:28;42261:4;42267:2;42271:1;42245:15;:28::i;:::-;41933:4823;;;:::o;42213:93::-;42322:14;;;;42318:2487;;;2547:6;;-1:-1:-1;;;;;42375:15:0;;;2547:6;;42375:15;;;;:49;;-1:-1:-1;2547:6:0;;-1:-1:-1;;;;;42411:13:0;;;2547:6;;42411:13;;42375:49;:86;;;;-1:-1:-1;;;;;;42445:16:0;;;;42375:86;:128;;;;-1:-1:-1;;;;;;42482:21:0;;42496:6;42482:21;;42375:128;:158;;;;-1:-1:-1;42525:8:0;;-1:-1:-1;;;42525:8:0;;;;42524:9;42375:158;42353:2441;;;42573:13;;;;;;;42568:223;;-1:-1:-1;;;;;42645:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42674:23:0;;;;;;:19;:23;;;;;;;;42645:52;42611:160;;;;-1:-1:-1;;;42611:160:0;;12067:2:1;42611:160:0;;;12049:21:1;12106:2;12086:18;;;12079:30;-1:-1:-1;;;12125:18:1;;;12118:52;12187:18;;42611:160:0;11865:346:1;42611:160:0;42947:20;;;;42943:641;;;2547:6;;-1:-1:-1;;;;;43022:13:0;;;2547:6;;43022:13;;;;:72;;;43078:15;-1:-1:-1;;;;;43064:30:0;:2;-1:-1:-1;;;;;43064:30:0;;;43022:72;:129;;;;;43137:13;-1:-1:-1;;;;;43123:28:0;:2;-1:-1:-1;;;;;43123:28:0;;;43022:129;42992:573;;;43269:9;43240:39;;;;:28;:39;;;;;;43315:12;-1:-1:-1;43202:258:0;;;;-1:-1:-1;;;43202:258:0;;12418:2:1;43202:258:0;;;12400:21:1;12457:2;12437:18;;;12430:30;12496:34;12476:18;;;12469:62;12567:34;12547:18;;;12540:62;-1:-1:-1;;;12618:19:1;;;12611:40;12668:19;;43202:258:0;12216:477:1;43202:258:0;43516:9;43487:39;;;;:28;:39;;;;;43529:12;43487:54;;42992:573;-1:-1:-1;;;;;43658:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43715:35:0;;;;;;:31;:35;;;;;;;;43714:36;43658:92;43632:1147;;;43837:20;;43827:6;:30;;43793:169;;;;-1:-1:-1;;;43793:169:0;;12900:2:1;43793:169:0;;;12882:21:1;12939:2;12919:18;;;12912:30;12978:34;12958:18;;;12951:62;-1:-1:-1;;;13029:18:1;;;13022:51;13090:19;;43793:169:0;12698:417:1;43793:169:0;44045:9;;-1:-1:-1;;;;;11282:18:0;;11255:7;11282:18;;;;;;;;;;;44019:22;;:6;:22;:::i;:::-;:35;;43985:140;;;;-1:-1:-1;;;43985:140:0;;13322:2:1;43985:140:0;;;13304:21:1;13361:2;13341:18;;;13334:30;-1:-1:-1;;;13380:18:1;;;13373:49;13439:18;;43985:140:0;13120:343:1;43985:140:0;43632:1147;;;-1:-1:-1;;;;;44223:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44278:37:0;;;;;;:31;:37;;;;;;;;44277:38;44223:92;44197:582;;;44402:20;;44392:6;:30;;44358:170;;;;-1:-1:-1;;;44358:170:0;;13670:2:1;44358:170:0;;;13652:21:1;13709:2;13689:18;;;13682:30;13748:34;13728:18;;;13721:62;-1:-1:-1;;;13799:18:1;;;13792:52;13861:19;;44358:170:0;13468:418:1;44197:582:0;-1:-1:-1;;;;;44559:35:0;;;;;;:31;:35;;;;;;;;44554:225;;44679:9;;-1:-1:-1;;;;;11282:18:0;;11255:7;11282:18;;;;;;;;;;;44653:22;;:6;:22;:::i;:::-;:35;;44619:140;;;;-1:-1:-1;;;44619:140:0;;13322:2:1;44619:140:0;;;13304:21:1;13361:2;13341:18;;;13334:30;-1:-1:-1;;;13380:18:1;;;13373:49;13439:18;;44619:140:0;13120:343:1;44619:140:0;44866:4;44817:28;11282:18;;;;;;;;;;;44924;;44900:42;;;;;;;44973:35;;-1:-1:-1;44997:11:0;;;;;;;44973:35;:61;;;;-1:-1:-1;45026:8:0;;-1:-1:-1;;;45026:8:0;;;;45025:9;44973:61;:110;;;;-1:-1:-1;;;;;;45052:31:0;;;;;;:25;:31;;;;;;;;45051:32;44973:110;:153;;;;-1:-1:-1;;;;;;45101:25:0;;;;;;:19;:25;;;;;;;;45100:26;44973:153;:194;;;;-1:-1:-1;;;;;;45144:23:0;;;;;;:19;:23;;;;;;;;45143:24;44973:194;44955:326;;;45194:8;:15;;-1:-1:-1;;;;45194:15:0;-1:-1:-1;;;45194:15:0;;;45226:10;:8;:10::i;:::-;45253:8;:16;;-1:-1:-1;;;;45253:16:0;;;44955:326;45309:8;;-1:-1:-1;;;;;45419:25:0;;45293:12;45419:25;;;:19;:25;;;;;;45309:8;-1:-1:-1;;;45309:8:0;;;;;45308:9;;45419:25;;:52;;-1:-1:-1;;;;;;45448:23:0;;;;;;:19;:23;;;;;;;;45419:52;45415:100;;;-1:-1:-1;45498:5:0;45415:100;45527:12;45632:7;45628:1075;;;-1:-1:-1;;;;;45684:29:0;;;;;;:25;:29;;;;;;;;:46;;;;;45729:1;45717:9;;:13;45684:46;45680:874;;;45758:30;45784:3;45758:21;45769:9;;45758:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;45751:37;;45841:9;;45823:14;;45816:4;:21;;;;:::i;:::-;45815:35;;;;:::i;:::-;45795:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;45919:9:0;;45899:16;;45892:23;;:4;:23;:::i;:::-;45891:37;;;;:::i;:::-;45869:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45985:9:0;;45971:10;;45964:17;;:4;:17;:::i;:::-;45963:31;;;;:::i;:::-;45947:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;46063:9:0;;46043:16;;46036:23;;:4;:23;:::i;:::-;46035:37;;;;:::i;:::-;46013:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;45680:874:0;;-1:-1:-1;45680:874:0;;-1:-1:-1;;;;;46134:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46184:1;46169:12;;:16;46134:51;46130:424;;;46213:33;46242:3;46213:24;46224:12;;46213:6;:10;;:24;;;;:::i;:33::-;46206:40;;46298:12;;46281:13;;46274:4;:20;;;;:::i;:::-;46273:37;;;;:::i;:::-;46253:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;46378:12:0;;46359:15;;46352:22;;:4;:22;:::i;:::-;46351:39;;;;:::i;:::-;46329:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46446:12:0;;46433:9;;46426:16;;:4;:16;:::i;:::-;46425:33;;;;:::i;:::-;46409:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46526:12:0;;46507:15;;46500:22;;:4;:22;:::i;:::-;46499:39;;;;:::i;:::-;46477:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46130:424:0;46574:8;;46570:91;;46603:42;46619:4;46633;46640;46603:15;:42::i;:::-;46677:14;46687:4;46677:14;;:::i;:::-;;;45628:1075;46715:33;46731:4;46737:2;46741:6;46715:15;:33::i;:::-;42046:4710;;;;41933:4823;;;:::o;23863:98::-;23921:7;23948:5;23952:1;23948;:5;:::i;:::-;23941:12;23863:98;-1:-1:-1;;;23863:98:0:o;3744:191::-;3837:6;;;-1:-1:-1;;;;;3854:17:0;;;-1:-1:-1;;;;;;3854:17:0;;;;;;;3887:40;;3837:6;;;3854:17;3837:6;;3887:40;;3818:16;;3887:40;3807:128;3744:191;:::o;41603:188::-;-1:-1:-1;;;;;41686:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41686:39:0;;;;;;;;;;41743:40;;41686:39;;:31;41743:40;;;41603:188;;:::o;15230:733::-;-1:-1:-1;;;;;15370:20:0;;15362:70;;;;-1:-1:-1;;;15362:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15451:23:0;;15443:71;;;;-1:-1:-1;;;15443:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15611:17:0;;15587:21;15611:17;;;;;;;;;;;15647:23;;;;15639:74;;;;-1:-1:-1;;;15639:74:0;;14223:2:1;15639:74:0;;;14205:21:1;14262:2;14242:18;;;14235:30;14301:34;14281:18;;;14274:62;-1:-1:-1;;;14352:18:1;;;14345:36;14398:19;;15639:74:0;14021:402:1;15639:74:0;-1:-1:-1;;;;;15749:17:0;;;:9;:17;;;;;;;;;;;15769:22;;;15749:42;;15813:20;;;;;;;;:30;;15785:6;;15749:9;15813:30;;15785:6;;15813:30;:::i;:::-;;;;;;;;15878:9;-1:-1:-1;;;;;15861:35:0;15870:6;-1:-1:-1;;;;;15861:35:0;;15889:6;15861:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;15861:35:0;;;;;;;;15351:612;15230:733;;;:::o;47884:1882::-;47967:4;47923:23;11282:18;;;;;;;;;;;47923:50;;47984:25;48073:12;;48052:18;;48031;;48012:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47984:101;-1:-1:-1;48096:12:0;48125:20;;;:46;;-1:-1:-1;48149:22:0;;48125:46;48121:85;;;48188:7;;;47884:1882::o;48121:85::-;48240:18;;:23;;48261:2;48240:23;:::i;:::-;48222:15;:41;48218:115;;;48298:18;;:23;;48319:2;48298:23;:::i;:::-;48280:41;;48218:115;48394:23;48481:1;48461:17;48439:18;;48421:15;:36;;;;:::i;:::-;48420:58;;;;:::i;:::-;:62;;;;:::i;:::-;48394:88;-1:-1:-1;48493:26:0;48522:36;:15;48394:88;48522:19;:36::i;:::-;48493:65;-1:-1:-1;48599:21:0;48633:36;48493:65;48633:16;:36::i;:::-;48682:18;48703:44;:21;48729:17;48703:25;:44::i;:::-;48682:65;;48754:21;48778:55;48815:17;48778:32;48793:16;;48778:10;:14;;:32;;;;:::i;:55::-;48754:79;;48844:23;48870:57;48909:17;48870:34;48885:18;;48870:10;:14;;:34;;;;:::i;:57::-;48844:83;;48938:17;48958:51;48991:17;48958:28;48973:12;;48958:10;:14;;:28;;;;:::i;:51::-;48938:71;-1:-1:-1;49022:23:0;48938:71;49077:15;49048:26;49061:13;49048:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;49138:1;49117:18;:22;;;49144:16;:20;;;49175:18;:22;;;49208:12;:16;;;49259:9;;49251:45;;49022:82;;-1:-1:-1;;;;;;49259:9:0;;49282;;49251:45;49138:1;49251:45;49282:9;49259;49251:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49329:15:0;;49321:57;;49237:59;;-1:-1:-1;;;;;;49329:15:0;;49358;;49321:57;;;;49358:15;49329;49321:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49307:71:0;;-1:-1:-1;;49397:19:0;;;;;:42;;;49438:1;49420:15;:19;49397:42;49393:278;;;49456:46;49469:15;49486;49456:12;:46::i;:::-;49626:18;;49522:137;;;14840:25:1;;;14896:2;14881:18;;14874:34;;;14924:18;;;14917:34;;;;49522:137:0;;;;;;14828:2:1;49522:137:0;;;49393:278;49705:13;;49697:61;;-1:-1:-1;;;;;49705:13:0;;;;49732:21;;49697:61;;;;49732:21;49705:13;49697:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47884:1882:0:o;23464:98::-;23522:7;23549:5;23553:1;23549;:5;:::i;23107:98::-;23165:7;23192:5;23196:1;23192;:5;:::i;46764:589::-;46914:16;;;46928:1;46914:16;;;;;;;;46890:21;;46914:16;;;;;;;;;;-1:-1:-1;46914:16:0;46890:40;;46959:4;46941;46946:1;46941:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46941:23:0;;;-1:-1:-1;;;;;46941:23:0;;;;;46985:15;-1:-1:-1;;;;;46985:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46975:4;46980:1;46975:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46975:32:0;;;-1:-1:-1;;;;;46975:32:0;;;;;47020:62;47037:4;47052:15;47070:11;47020:8;:62::i;:::-;47121:224;;-1:-1:-1;;;47121:224:0;;-1:-1:-1;;;;;47121:15:0;:66;;;;:224;;47202:11;;47228:1;;47272:4;;47299;;47319:15;;47121:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46819:534;46764:589;:::o;47361:515::-;47509:62;47526:4;47541:15;47559:11;47509:8;:62::i;:::-;47818:9;;47614:254;;-1:-1:-1;;;47614:254:0;;47686:4;47614:254;;;16808:34:1;16858:18;;;16851:34;;;47732:1:0;16901:18:1;;;16894:34;;;16944:18;;;16937:34;-1:-1:-1;;;;;47818:9:0;;;16987:19:1;;;16980:44;47842:15:0;17040:19:1;;;17033:35;47614:15:0;:31;;;;;;47653:9;;16742:19:1;;47614:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47361:515;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2787:385::-;2873:6;2881;2889;2897;2950:3;2938:9;2929:7;2925:23;2921:33;2918:53;;;2967:1;2964;2957:12;2918:53;-1:-1:-1;;2990:23:1;;;3060:2;3045:18;;3032:32;;-1:-1:-1;3111:2:1;3096:18;;3083:32;;3162:2;3147:18;3134:32;;-1:-1:-1;2787:385:1;-1:-1:-1;2787:385:1:o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:168;5347:7;5413:1;5409;5405:6;5401:14;5398:1;5395:21;5390:1;5383:9;5376:17;5372:45;5369:71;;;5420:18;;:::i;:::-;-1:-1:-1;5460:9:1;;5307:168::o;5480:217::-;5520:1;5546;5536:132;;5590:10;5585:3;5581:20;5578:1;5571:31;5625:4;5622:1;5615:15;5653:4;5650:1;5643:15;5536:132;-1:-1:-1;5682:9:1;;5480:217::o;6527:128::-;6567:3;6598:1;6594:6;6591:1;6588:13;6585:39;;;6604:18;;:::i;:::-;-1:-1:-1;6640:9:1;;6527:128::o;11055:401::-;11257:2;11239:21;;;11296:2;11276:18;;;11269:30;11335:34;11330:2;11315:18;;11308:62;-1:-1:-1;;;11401:2:1;11386:18;;11379:35;11446:3;11431:19;;11055:401::o;11461:399::-;11663:2;11645:21;;;11702:2;11682:18;;;11675:30;11741:34;11736:2;11721:18;;11714:62;-1:-1:-1;;;11807:2:1;11792:18;;11785:33;11850:3;11835:19;;11461:399::o;13891:125::-;13931:4;13959:1;13956;13953:8;13950:34;;;13964:18;;:::i;:::-;-1:-1:-1;14001:9:1;;13891:125::o;15094:127::-;15155:10;15150:3;15146:20;15143:1;15136:31;15186:4;15183:1;15176:15;15210:4;15207:1;15200:15;15226:251;15296:6;15349:2;15337:9;15328:7;15324:23;15320:32;15317:52;;;15365:1;15362;15355:12;15317:52;15397:9;15391:16;15416:31;15441:5;15416:31;:::i;15482:980::-;15744:4;15792:3;15781:9;15777:19;15823:6;15812:9;15805:25;15849:2;15887:6;15882:2;15871:9;15867:18;15860:34;15930:3;15925:2;15914:9;15910:18;15903:31;15954:6;15989;15983:13;16020:6;16012;16005:22;16058:3;16047:9;16043:19;16036:26;;16097:2;16089:6;16085:15;16071:29;;16118:1;16128:195;16142:6;16139:1;16136:13;16128:195;;;16207:13;;-1:-1:-1;;;;;16203:39:1;16191:52;;16298:15;;;;16263:12;;;;16239:1;16157:9;16128:195;;;-1:-1:-1;;;;;;;16379:32:1;;;;16374:2;16359:18;;16352:60;-1:-1:-1;;;16443:3:1;16428:19;16421:35;16340:3;15482:980;-1:-1:-1;;;15482:980:1:o;17079:306::-;17167:6;17175;17183;17236:2;17224:9;17215:7;17211:23;17207:32;17204:52;;;17252:1;17249;17242:12;17204:52;17281:9;17275:16;17265:26;;17331:2;17320:9;17316:18;17310:25;17300:35;;17375:2;17364:9;17360:18;17354:25;17344:35;;17079:306;;;;;:::o

Swarm Source

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