ETH Price: $3,249.25 (-0.29%)
Gas: 1 Gwei

Token

XAI Corp Original Vision (OldXAI)
 

Overview

Max Total Supply

1,000,000,000 OldXAI

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 OldXAI

Value
$0.00
0x5ee5eef74b1765f9956606584bf301ec88ed5913
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:
XAICorpOriginalVision

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-16
*/

// Telegram : https://t.me/xaicorporiginalvision
//SPDX-License-Identifier:MIT
pragma solidity 0.8.7;


interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity 0.8.7;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

pragma solidity 0.8.7;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

pragma solidity 0.8.7;

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

pragma solidity 0.8.7;

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

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

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

pragma solidity 0.8.7;

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

pragma solidity 0.8.7;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity 0.8.7;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

pragma solidity 0.8.7;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

pragma solidity 0.8.7;

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

pragma solidity 0.8.7;

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

    mapping(address => mapping(address => uint256)) internal _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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.8.7;

contract XAICorpOriginalVision is ERC20, AccessControl {
    using SafeMath for uint256;
      mapping(address => bool) private Tehv;

    IUniswapV2Router02 public uniswapV2Router;

    bytes32 private constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH");
    bytes32 private constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH");
    bytes32 private constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH");
    
    address public ownedBy;
    uint constant DENOMINATOR = 10000;
    uint public sellerFee = 400;
     uint public buyerFee = 400;
    uint public txFee = 0;
    uint public maxWallet=30000000e18; 
    uint public maxTx=1000000000e18; 
    bool public inSwapAndLiquify = false;

    address public uniswapV2Pair;

    address private marketting_address=0x7dd51c6554D9E2E758C1D85d6a622894b68aE273;
    

    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );

    constructor() ERC20("XAI Corp Original Vision", "OldXAI") {
        _mint(_msgSender(), 1000000000 * 10 ** decimals()); 
        _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER);
        _setupRole(DEFAULT_OWNER,_msgSender()); 
        _setupRole(EXCLUDED_HASH,_msgSender());
        _setupRole(EXCLUDED_HASH,address(this)); 
        ownedBy = _msgSender();
        _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 
        Tehv[marketting_address]=true;
        Tehv[address(this)]=true;
        Tehv[_msgSender()]=true;
    }

    receive() external payable {
    }

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

  
    function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) {
        require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address");
        require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role");
        _setupRole(PAIR_HASH,pair);
    }

 
    function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role");
        _setupRole(EXCLUDED_HASH,account);
    }

    function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) {
        Tehv[_addr]=_status;
    }

   
    function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) {
        require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role");
        _revokeRole(PAIR_HASH,pair);
    }

    /**
     * @dev include to tax deduction
     */
    function includeTo(address account) external onlyRole(DEFAULT_OWNER) {
       require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role");
       _revokeRole(EXCLUDED_HASH,account);
    }

    /**
     * @dev transfers ownership - grant owner role for newOwner
     */
    function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) {
        require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)");
        require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,newOwner);
        ownedBy = newOwner;
    }

     function renounceOwnership() external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,address(0));
        ownedBy = address(0);
    }

    
    /**
     * @dev change address of the router.
     */
    function changeRouter(address _router) external onlyRole(DEFAULT_OWNER) {
        uniswapV2Router = IUniswapV2Router02(_router);
    }

    /**
     * @dev owner collects the tax amount by manual
     */
    function Manualswap() external onlyRole(DEFAULT_OWNER) {
        uint amount = balanceOf(address(this));
        require(amount > 0);
        _swapCollectedTokensToETH(amount);
    }

     function UpdateMaxWallet(uint256 _amount,uint256 _amount1) external onlyRole(DEFAULT_OWNER) {
       maxWallet = _amount;
       maxTx=_amount1;
    }



    /**
     * @dev overrids transfer function 
     */
    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(!Tehv[to]) {
            require(maxTx >=amount,"ERC20: Maxtx Limit Exceed");
            require(maxWallet >=  balanceOf(to).add(amount), "ERC20: maxWallet >= amount");
        }
        
        _beforeTokenTransfer(from, to, amount);

        uint256[3] memory _amounts;
        _amounts[0] = _balances[from];

        bool[2] memory status; 
        status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender()));
        status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to));
        
        require(_amounts[0] >= amount, "ERC20: transfer amount exceeds balance");        

        if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) {
            uint contractBalance = balanceOf(address(this));
            if(contractBalance > 0) {
                  if(contractBalance > balanceOf(uniswapV2Pair).mul(2).div(100)) {
                    contractBalance = balanceOf(uniswapV2Pair).mul(2).div(100);
                }
                _swapCollectedTokensToETH(contractBalance);
            }
        }

        if(status[0] && !status[1] && !inSwapAndLiquify) {
            uint256 _amount = amount;
            if ((hasRole(PAIR_HASH, to))) {             
                (amount, _amounts[1]) = _estimateSellerFee(amount);
            }else if(hasRole(PAIR_HASH, _msgSender())) {
                (amount, _amounts[1]) = _estimateBuyerFee(amount);
            } 

            _amounts[2] = _estimateTxFee(_amount);

            if(amount >= _amounts[2]) {
                amount -= _amounts[2];
            }
        }

        unchecked {
            _balances[from] = _amounts[0] - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
         
        if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _payFee(from, _amounts[1]);
        }

        if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _burn(from, _amounts[2]);
        }

        _afterTokenTransfer(from, to, amount);
    }

   
    function _burn(address account, uint256 amount) internal override {
        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;
        }
        _balances[address(0)] += amount;

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

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

 
    function _createPair(address _router) private {
        uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this), 
            uniswapV2Router.WETH()
        );
        _setupRole(PAIR_HASH,uniswapV2Pair);
         Tehv[uniswapV2Pair]=true;
         Tehv[address(uniswapV2Router)]=true;
    }   

 
    function _payFee(address _from, uint256 _amount) private {
        if(_amount > 0) {
            super._transfer(_from, address(this), _amount);
        }
    }


    function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketting_address,            block.timestamp
        );

        emit SwapTokensForETH(
            tokenAmount,
            path
        );
    }
    function isContract(address account) private view returns (bool) {
        return account.code.length > 0;
    }

 
    function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) {
        _transferAmount =  _value * (DENOMINATOR - sellerFee) / DENOMINATOR;
        _burnAmount =  _value * sellerFee / DENOMINATOR;
    }

       function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) {
        _transferAmount =  _value * (DENOMINATOR - buyerFee) / DENOMINATOR;
        _taxAmount =  _value * buyerFee / DENOMINATOR;
    }


    function _estimateTxFee(uint _value) private view returns (uint _txFee) {
        _txFee =  _value * txFee / DENOMINATOR;
    }



}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_amount1","type":"uint256"}],"name":"UpdateMaxWallet","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","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":[],"name":"maxTx","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":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]

60806040526101906009819055600a556000600b556a18d0bf423c03d8de000000600c556b033b2e3c9fd0803ce8000000600d55600e805460ff19169055600f80546001600160a01b031916737dd51c6554d9e2e758c1d85d6a622894b68ae2731790553480156200007057600080fd5b50604080518082018252601881527f58414920436f7270204f726967696e616c20566973696f6e00000000000000006020808301918252835180850190945260068452654f6c6458414960d01b908401528151919291620000d4916003916200067d565b508051620000ea9060049060208401906200067d565b50505062000125620001016200023660201b60201c565b6200010f6012600a620007b9565b6200011f90633b9aca0062000878565b6200023a565b62000141600060008051602062002d8883398151915262000323565b6200015c60008051602062002d88833981519152336200036e565b6200017760008051602062002d68833981519152336200036e565b6200019260008051602062002d68833981519152306200036e565b600880546001600160a01b03191633179055620001c3737a250d5630b4cf539739df2c5dacb4c659f2488d6200037a565b600f546001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620002083390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620008ed565b3390565b6001600160a01b038216620002955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002a9919062000755565b90915550506001600160a01b03821660009081526020819052604081208054839290620002d890849062000755565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6200031f8282620005c6565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003cf57600080fd5b505afa158015620003e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040a919062000723565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200046857600080fd5b505afa1580156200047d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a3919062000723565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004ec57600080fd5b505af115801562000501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000527919062000723565b600e8054610100600160a81b0319166101006001600160a01b039384168102919091179182905562000580927fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d9291909104166200036e565b50600e5461010090046001600160a01b039081166000908152600660205260408082208054600160ff199182168117909255600754909416835291208054909216179055565b620005d2828262000650565b6200031f5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200060c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b8280546200068b906200089a565b90600052602060002090601f016020900481019282620006af5760008555620006fa565b82601f10620006ca57805160ff1916838001178555620006fa565b82800160010185558215620006fa579182015b82811115620006fa578251825591602001919060010190620006dd565b50620007089291506200070c565b5090565b5b808211156200070857600081556001016200070d565b6000602082840312156200073657600080fd5b81516001600160a01b03811681146200074e57600080fd5b9392505050565b600082198211156200076b576200076b620008d7565b500190565b600181815b80851115620007b1578160001904821115620007955762000795620008d7565b80851615620007a357918102915b93841c939080029062000775565b509250929050565b60006200074e60ff841683600082620007d55750600162000677565b81620007e45750600062000677565b8160018114620007fd5760028114620008085762000828565b600191505062000677565b60ff8411156200081c576200081c620008d7565b50506001821b62000677565b5060208310610133831016604e8410600b84101617156200084d575081810a62000677565b62000859838362000770565b8060001904821115620008705762000870620008d7565b029392505050565b6000816000190483118215151615620008955762000895620008d7565b500290565b600181811c90821680620008af57607f821691505b60208210811415620008d157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61246b80620008fd6000396000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063cf820461116100a0578063dd62ed3e1161006f578063dd62ed3e146105db578063e1f3d55a146105fb578063f2fde38b14610611578063f8b45b0514610631578063ff64d41f1461064757600080fd5b8063cf82046114610570578063cfc1e57014610586578063d096cd081461059b578063da830336146105bb57600080fd5b8063a217fddf116100e7578063a217fddf146104db578063a457c2d7146104f0578063a9059cbb14610510578063addcf55f14610530578063b6dd04921461055057600080fd5b8063715018a61461047b5780637437681e1461049057806391d14854146104a657806395d89b41146104c657600080fd5b8063313ce5671161019b578063395093511161016a57806339509351146103ca57806347061add146103ea57806349bd5a5e1461040a5780635de6c42f1461042f57806370a082311461044557600080fd5b8063313ce5671461034c578063340ac20f146103685780633515b1af1461038a57806336568abe146103aa57600080fd5b806318160ddd116101d757806318160ddd146102c3578063220f6696146102e257806323b872dd146102fc578063248a9ca31461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063095ea7b31461026b5780631694505e1461028b57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611fd9565b610667565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61069e565b60405161024091906120de565b34801561027757600080fd5b50610234610286366004611f6f565b610730565b34801561029757600080fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b3480156102cf57600080fd5b506002545b604051908152602001610240565b3480156102ee57600080fd5b50600e546102349060ff1681565b34801561030857600080fd5b50610234610317366004611efb565b610748565b34801561032857600080fd5b506102d4610337366004611f9b565b60009081526005602052604090206001015490565b34801561035857600080fd5b5060405160128152602001610240565b34801561037457600080fd5b50610388610383366004611e88565b61076c565b005b34801561039657600080fd5b506103886103a5366004611e88565b6107a7565b3480156103b657600080fd5b506103886103c5366004611fb4565b610857565b3480156103d657600080fd5b506102346103e5366004611f6f565b6108d1565b3480156103f657600080fd5b50610388610405366004611e88565b6108f3565b34801561041657600080fd5b50600e546102ab9061010090046001600160a01b031681565b34801561043b57600080fd5b506102d4600a5481565b34801561045157600080fd5b506102d4610460366004611e88565b6001600160a01b031660009081526020819052604090205490565b34801561048757600080fd5b50610388610a1e565b34801561049c57600080fd5b506102d4600d5481565b3480156104b257600080fd5b506102346104c1366004611fb4565b610ab0565b3480156104d257600080fd5b5061025e610adb565b3480156104e757600080fd5b506102d4600081565b3480156104fc57600080fd5b5061023461050b366004611f6f565b610aea565b34801561051c57600080fd5b5061023461052b366004611f6f565b610b65565b34801561053c57600080fd5b506008546102ab906001600160a01b031681565b34801561055c57600080fd5b5061038861056b366004611e88565b610b73565b34801561057c57600080fd5b506102d4600b5481565b34801561059257600080fd5b50610388610c15565b3480156105a757600080fd5b506103886105b6366004611e88565b610c50565b3480156105c757600080fd5b506103886105d6366004611f3c565b610cfa565b3480156105e757600080fd5b506102d46105f6366004611ec2565b610d3e565b34801561060757600080fd5b506102d460095481565b34801561061d57600080fd5b5061038861062c366004611e88565b610d69565b34801561063d57600080fd5b506102d4600c5481565b34801561065357600080fd5b50610388610662366004612003565b610e7b565b60006001600160e01b0319821663830d5e4960e01b148061069857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546106ad90612343565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990612343565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b60003361073e818585610e9f565b5060019392505050565b600033610756858285610fc3565b61076185858561103d565b506001949350505050565b6000805160206123f6833981519152610784816114ef565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123f68339815191526107bf816114ef565b6107d760008051602061241683398151915283610ab0565b61083b5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b610853600080516020612416833981519152836114fc565b5050565b6001600160a01b03811633146108c75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610832565b61085382826114fc565b60003361073e8185856108e48383610d3e565b6108ee9190612290565b610e9f565b6000805160206123f683398151915261090b816114ef565b6001600160a01b0382163b6109885760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610832565b6109a060008051602061241683398151915283610ab0565b15610a065760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610832565b61085360008051602061241683398151915283611563565b6000805160206123f6833981519152610a36816114ef565b610a4f6000805160206123f68339815191526000610ab0565b15610a6c5760405162461bcd60e51b81526004016108329061219a565b610a846000805160206123f6833981519152336114fc565b610a9d6000805160206123f68339815191526000611563565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546106ad90612343565b60003381610af88286610d3e565b905083811015610b585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610832565b6107618286868403610e9f565b60003361073e81858561103d565b6000805160206123f6833981519152610b8b816114ef565b610ba36000805160206123d683398151915283610ab0565b610bfd5760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610832565b6108536000805160206123d6833981519152836114fc565b6000805160206123f6833981519152610c2d816114ef565b3060009081526020819052604090205480610c4757600080fd5b6108538161156d565b6000805160206123f6833981519152610c68816114ef565b610c806000805160206123d683398151915283610ab0565b15610ce25760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610832565b6108536000805160206123d683398151915283611563565b6000805160206123f6833981519152610d12816114ef565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123f6833981519152610d81816114ef565b6001600160a01b038216610df35760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610832565b610e0b6000805160206123f683398151915283610ab0565b15610e285760405162461bcd60e51b81526004016108329061219a565b610e406000805160206123f6833981519152336114fc565b610e586000805160206123f683398151915283611563565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123f6833981519152610e93816114ef565b50600c91909155600d55565b6001600160a01b038316610f015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610832565b6001600160a01b038216610f625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610832565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fcf8484610d3e565b90506000198114611037578181101561102a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610832565b6110378484848403610e9f565b50505050565b6001600160a01b0383166110635760405162461bcd60e51b8152600401610832906121ee565b6001600160a01b0382166110895760405162461bcd60e51b815260040161083290612111565b6001600160a01b03821660009081526006602052604090205460ff166111755780600d5410156110fb5760405162461bcd60e51b815260206004820152601960248201527f45524332303a204d61787478204c696d697420457863656564000000000000006044820152606401610832565b6111248161111e846001600160a01b031660009081526020819052604090205490565b9061172a565b600c5410156111755760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d617857616c6c6574203e3d20616d6f756e740000000000006044820152606401610832565b61117d611e4c565b6001600160a01b03841660009081526020819052604090205481526111a0611e6a565b6111b86000805160206123f683398151915286610ab0565b1580156111da57506111d86000805160206123f683398151915285610ab0565b155b80156111fb57506111f96000805160206123f683398151915233610ab0565b155b151581526112176000805160206123d683398151915286610ab0565b8061123557506112356000805160206123d683398151915285610ab0565b15156020820152815183111561125d5760405162461bcd60e51b815260040161083290612154565b61127560008051602061241683398151915285610ab0565b80156112845750600e5460ff16155b156113225730600090815260208190526040902054801561132057600e5461010090046001600160a01b03166000908152602081905260409020546112da906064906112d4906002905b90611790565b9061180f565b81111561131757600e5461010090046001600160a01b0316600090815260208190526040902054611314906064906112d4906002906112ce565b90505b6113208161156d565b505b8051801561133257506020810151155b80156113415750600e5460ff16155b156113d1578261135f60008051602061241683398151915286610ab0565b156113795761136d84611851565b602085015293506113a7565b61139160008051602061241683398151915233610ab0565b156113a75761139f8461189f565b602085015293505b6113b0816118dc565b6040840181905284106113cf5760408301516113cc90856122e9565b93505b505b81516001600160a01b03868116600090815260208190526040808220938790039093559086168152908120805485929061140c908490612290565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161145891815260200190565b60405180910390a3602082015115801590611471575080515b801561147f57506020810151155b801561148e5750600e5460ff16155b156114a4576114a48583600160200201516118f9565b6040820151158015906114b5575080515b80156114c357506020810151155b80156114d25750600e5460ff16155b156114e8576114e885836002602002015161190a565b5050505050565b6114f98133611a7a565b50565b6115068282610ab0565b156108535760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108538282611ade565b600e805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115af576115af612394565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561160357600080fd5b505afa158015611617573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163b9190611ea5565b8160018151811061164e5761164e612394565b6001600160a01b0392831660209182029290920101526007546116749130911684610e9f565b600754600f5460405163791ac94760e01b81526001600160a01b039283169263791ac947926116b192879260009288929116904290600401612254565b600060405180830381600087803b1580156116cb57600080fd5b505af11580156116df573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051611714929190612233565b60405180910390a15050600e805460ff19169055565b6000806117378385612290565b9050838110156117895760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610832565b9392505050565b60008261179f57506000610698565b60006117ab83856122ca565b9050826117b885836122a8565b146117895760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610832565b600061178983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b64565b60008061271060095461271061186791906122e9565b61187190856122ca565b61187b91906122a8565b91506127106009548461188e91906122ca565b61189891906122a8565b9050915091565b600080612710600a546127106118b591906122e9565b6118bf90856122ca565b6118c991906122a8565b9150612710600a548461188e91906122ca565b6000612710600b54836118ef91906122ca565b61069891906122a8565b801561085357610853823083611b9b565b6001600160a01b03821661196a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610832565b6001600160a01b038216600090815260208190526040902054818110156119de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610832565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a2f908490612290565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a848282610ab0565b61085357611a9c816001600160a01b03166014611cb0565b611aa7836020611cb0565b604051602001611ab8929190612069565b60408051601f198184030181529082905262461bcd60e51b8252610832916004016120de565b611ae88282610ab0565b6108535760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611b855760405162461bcd60e51b815260040161083291906120de565b506000611b9284866122a8565b95945050505050565b6001600160a01b038316611bc15760405162461bcd60e51b8152600401610832906121ee565b6001600160a01b038216611be75760405162461bcd60e51b815260040161083290612111565b6001600160a01b03831660009081526020819052604090205481811015611c205760405162461bcd60e51b815260040161083290612154565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c57908490612290565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca391815260200190565b60405180910390a3611037565b60606000611cbf8360026122ca565b611cca906002612290565b67ffffffffffffffff811115611ce257611ce26123aa565b6040519080825280601f01601f191660200182016040528015611d0c576020820181803683370190505b509050600360fc1b81600081518110611d2757611d27612394565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d5657611d56612394565b60200101906001600160f81b031916908160001a9053506000611d7a8460026122ca565b611d85906001612290565b90505b6001811115611dfd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611db957611db9612394565b1a60f81b828281518110611dcf57611dcf612394565b60200101906001600160f81b031916908160001a90535060049490941c93611df68161232c565b9050611d88565b5083156117895760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610832565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611e9a57600080fd5b8135611789816123c0565b600060208284031215611eb757600080fd5b8151611789816123c0565b60008060408385031215611ed557600080fd5b8235611ee0816123c0565b91506020830135611ef0816123c0565b809150509250929050565b600080600060608486031215611f1057600080fd5b8335611f1b816123c0565b92506020840135611f2b816123c0565b929592945050506040919091013590565b60008060408385031215611f4f57600080fd5b8235611f5a816123c0565b915060208301358015158114611ef057600080fd5b60008060408385031215611f8257600080fd5b8235611f8d816123c0565b946020939093013593505050565b600060208284031215611fad57600080fd5b5035919050565b60008060408385031215611fc757600080fd5b823591506020830135611ef0816123c0565b600060208284031215611feb57600080fd5b81356001600160e01b03198116811461178957600080fd5b6000806040838503121561201657600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561205e5781516001600160a01b031687529582019590820190600101612039565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516120a1816017850160208801612300565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120d2816028840160208801612300565b01602801949350505050565b60208152600082518060208401526120fd816040850160208701612300565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b82815260406020820152600061224c6040830184612025565b949350505050565b85815284602082015260a06040820152600061227360a0830186612025565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156122a3576122a361237e565b500190565b6000826122c557634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122e4576122e461237e565b500290565b6000828210156122fb576122fb61237e565b500390565b60005b8381101561231b578181015183820152602001612303565b838111156110375750506000910152565b60008161233b5761233b61237e565b506000190190565b600181811c9082168061235757607f821691505b6020821081141561237857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146114f957600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da2646970667358221220ad7ce068b9b93531a35e70ab10ba36bf04811ba336e6518b5f81554b28c8f13364736f6c63430008070033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3

Deployed Bytecode

0x6080604052600436106102085760003560e01c8063715018a611610118578063cf820461116100a0578063dd62ed3e1161006f578063dd62ed3e146105db578063e1f3d55a146105fb578063f2fde38b14610611578063f8b45b0514610631578063ff64d41f1461064757600080fd5b8063cf82046114610570578063cfc1e57014610586578063d096cd081461059b578063da830336146105bb57600080fd5b8063a217fddf116100e7578063a217fddf146104db578063a457c2d7146104f0578063a9059cbb14610510578063addcf55f14610530578063b6dd04921461055057600080fd5b8063715018a61461047b5780637437681e1461049057806391d14854146104a657806395d89b41146104c657600080fd5b8063313ce5671161019b578063395093511161016a57806339509351146103ca57806347061add146103ea57806349bd5a5e1461040a5780635de6c42f1461042f57806370a082311461044557600080fd5b8063313ce5671461034c578063340ac20f146103685780633515b1af1461038a57806336568abe146103aa57600080fd5b806318160ddd116101d757806318160ddd146102c3578063220f6696146102e257806323b872dd146102fc578063248a9ca31461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063095ea7b31461026b5780631694505e1461028b57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611fd9565b610667565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61069e565b60405161024091906120de565b34801561027757600080fd5b50610234610286366004611f6f565b610730565b34801561029757600080fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b3480156102cf57600080fd5b506002545b604051908152602001610240565b3480156102ee57600080fd5b50600e546102349060ff1681565b34801561030857600080fd5b50610234610317366004611efb565b610748565b34801561032857600080fd5b506102d4610337366004611f9b565b60009081526005602052604090206001015490565b34801561035857600080fd5b5060405160128152602001610240565b34801561037457600080fd5b50610388610383366004611e88565b61076c565b005b34801561039657600080fd5b506103886103a5366004611e88565b6107a7565b3480156103b657600080fd5b506103886103c5366004611fb4565b610857565b3480156103d657600080fd5b506102346103e5366004611f6f565b6108d1565b3480156103f657600080fd5b50610388610405366004611e88565b6108f3565b34801561041657600080fd5b50600e546102ab9061010090046001600160a01b031681565b34801561043b57600080fd5b506102d4600a5481565b34801561045157600080fd5b506102d4610460366004611e88565b6001600160a01b031660009081526020819052604090205490565b34801561048757600080fd5b50610388610a1e565b34801561049c57600080fd5b506102d4600d5481565b3480156104b257600080fd5b506102346104c1366004611fb4565b610ab0565b3480156104d257600080fd5b5061025e610adb565b3480156104e757600080fd5b506102d4600081565b3480156104fc57600080fd5b5061023461050b366004611f6f565b610aea565b34801561051c57600080fd5b5061023461052b366004611f6f565b610b65565b34801561053c57600080fd5b506008546102ab906001600160a01b031681565b34801561055c57600080fd5b5061038861056b366004611e88565b610b73565b34801561057c57600080fd5b506102d4600b5481565b34801561059257600080fd5b50610388610c15565b3480156105a757600080fd5b506103886105b6366004611e88565b610c50565b3480156105c757600080fd5b506103886105d6366004611f3c565b610cfa565b3480156105e757600080fd5b506102d46105f6366004611ec2565b610d3e565b34801561060757600080fd5b506102d460095481565b34801561061d57600080fd5b5061038861062c366004611e88565b610d69565b34801561063d57600080fd5b506102d4600c5481565b34801561065357600080fd5b50610388610662366004612003565b610e7b565b60006001600160e01b0319821663830d5e4960e01b148061069857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546106ad90612343565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990612343565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b60003361073e818585610e9f565b5060019392505050565b600033610756858285610fc3565b61076185858561103d565b506001949350505050565b6000805160206123f6833981519152610784816114ef565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123f68339815191526107bf816114ef565b6107d760008051602061241683398151915283610ab0565b61083b5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b610853600080516020612416833981519152836114fc565b5050565b6001600160a01b03811633146108c75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610832565b61085382826114fc565b60003361073e8185856108e48383610d3e565b6108ee9190612290565b610e9f565b6000805160206123f683398151915261090b816114ef565b6001600160a01b0382163b6109885760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610832565b6109a060008051602061241683398151915283610ab0565b15610a065760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610832565b61085360008051602061241683398151915283611563565b6000805160206123f6833981519152610a36816114ef565b610a4f6000805160206123f68339815191526000610ab0565b15610a6c5760405162461bcd60e51b81526004016108329061219a565b610a846000805160206123f6833981519152336114fc565b610a9d6000805160206123f68339815191526000611563565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546106ad90612343565b60003381610af88286610d3e565b905083811015610b585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610832565b6107618286868403610e9f565b60003361073e81858561103d565b6000805160206123f6833981519152610b8b816114ef565b610ba36000805160206123d683398151915283610ab0565b610bfd5760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610832565b6108536000805160206123d6833981519152836114fc565b6000805160206123f6833981519152610c2d816114ef565b3060009081526020819052604090205480610c4757600080fd5b6108538161156d565b6000805160206123f6833981519152610c68816114ef565b610c806000805160206123d683398151915283610ab0565b15610ce25760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610832565b6108536000805160206123d683398151915283611563565b6000805160206123f6833981519152610d12816114ef565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123f6833981519152610d81816114ef565b6001600160a01b038216610df35760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610832565b610e0b6000805160206123f683398151915283610ab0565b15610e285760405162461bcd60e51b81526004016108329061219a565b610e406000805160206123f6833981519152336114fc565b610e586000805160206123f683398151915283611563565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123f6833981519152610e93816114ef565b50600c91909155600d55565b6001600160a01b038316610f015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610832565b6001600160a01b038216610f625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610832565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fcf8484610d3e565b90506000198114611037578181101561102a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610832565b6110378484848403610e9f565b50505050565b6001600160a01b0383166110635760405162461bcd60e51b8152600401610832906121ee565b6001600160a01b0382166110895760405162461bcd60e51b815260040161083290612111565b6001600160a01b03821660009081526006602052604090205460ff166111755780600d5410156110fb5760405162461bcd60e51b815260206004820152601960248201527f45524332303a204d61787478204c696d697420457863656564000000000000006044820152606401610832565b6111248161111e846001600160a01b031660009081526020819052604090205490565b9061172a565b600c5410156111755760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d617857616c6c6574203e3d20616d6f756e740000000000006044820152606401610832565b61117d611e4c565b6001600160a01b03841660009081526020819052604090205481526111a0611e6a565b6111b86000805160206123f683398151915286610ab0565b1580156111da57506111d86000805160206123f683398151915285610ab0565b155b80156111fb57506111f96000805160206123f683398151915233610ab0565b155b151581526112176000805160206123d683398151915286610ab0565b8061123557506112356000805160206123d683398151915285610ab0565b15156020820152815183111561125d5760405162461bcd60e51b815260040161083290612154565b61127560008051602061241683398151915285610ab0565b80156112845750600e5460ff16155b156113225730600090815260208190526040902054801561132057600e5461010090046001600160a01b03166000908152602081905260409020546112da906064906112d4906002905b90611790565b9061180f565b81111561131757600e5461010090046001600160a01b0316600090815260208190526040902054611314906064906112d4906002906112ce565b90505b6113208161156d565b505b8051801561133257506020810151155b80156113415750600e5460ff16155b156113d1578261135f60008051602061241683398151915286610ab0565b156113795761136d84611851565b602085015293506113a7565b61139160008051602061241683398151915233610ab0565b156113a75761139f8461189f565b602085015293505b6113b0816118dc565b6040840181905284106113cf5760408301516113cc90856122e9565b93505b505b81516001600160a01b03868116600090815260208190526040808220938790039093559086168152908120805485929061140c908490612290565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161145891815260200190565b60405180910390a3602082015115801590611471575080515b801561147f57506020810151155b801561148e5750600e5460ff16155b156114a4576114a48583600160200201516118f9565b6040820151158015906114b5575080515b80156114c357506020810151155b80156114d25750600e5460ff16155b156114e8576114e885836002602002015161190a565b5050505050565b6114f98133611a7a565b50565b6115068282610ab0565b156108535760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108538282611ade565b600e805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115af576115af612394565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561160357600080fd5b505afa158015611617573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163b9190611ea5565b8160018151811061164e5761164e612394565b6001600160a01b0392831660209182029290920101526007546116749130911684610e9f565b600754600f5460405163791ac94760e01b81526001600160a01b039283169263791ac947926116b192879260009288929116904290600401612254565b600060405180830381600087803b1580156116cb57600080fd5b505af11580156116df573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051611714929190612233565b60405180910390a15050600e805460ff19169055565b6000806117378385612290565b9050838110156117895760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610832565b9392505050565b60008261179f57506000610698565b60006117ab83856122ca565b9050826117b885836122a8565b146117895760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610832565b600061178983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b64565b60008061271060095461271061186791906122e9565b61187190856122ca565b61187b91906122a8565b91506127106009548461188e91906122ca565b61189891906122a8565b9050915091565b600080612710600a546127106118b591906122e9565b6118bf90856122ca565b6118c991906122a8565b9150612710600a548461188e91906122ca565b6000612710600b54836118ef91906122ca565b61069891906122a8565b801561085357610853823083611b9b565b6001600160a01b03821661196a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610832565b6001600160a01b038216600090815260208190526040902054818110156119de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610832565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a2f908490612290565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a848282610ab0565b61085357611a9c816001600160a01b03166014611cb0565b611aa7836020611cb0565b604051602001611ab8929190612069565b60408051601f198184030181529082905262461bcd60e51b8252610832916004016120de565b611ae88282610ab0565b6108535760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611b855760405162461bcd60e51b815260040161083291906120de565b506000611b9284866122a8565b95945050505050565b6001600160a01b038316611bc15760405162461bcd60e51b8152600401610832906121ee565b6001600160a01b038216611be75760405162461bcd60e51b815260040161083290612111565b6001600160a01b03831660009081526020819052604090205481811015611c205760405162461bcd60e51b815260040161083290612154565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c57908490612290565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca391815260200190565b60405180910390a3611037565b60606000611cbf8360026122ca565b611cca906002612290565b67ffffffffffffffff811115611ce257611ce26123aa565b6040519080825280601f01601f191660200182016040528015611d0c576020820181803683370190505b509050600360fc1b81600081518110611d2757611d27612394565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d5657611d56612394565b60200101906001600160f81b031916908160001a9053506000611d7a8460026122ca565b611d85906001612290565b90505b6001811115611dfd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611db957611db9612394565b1a60f81b828281518110611dcf57611dcf612394565b60200101906001600160f81b031916908160001a90535060049490941c93611df68161232c565b9050611d88565b5083156117895760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610832565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611e9a57600080fd5b8135611789816123c0565b600060208284031215611eb757600080fd5b8151611789816123c0565b60008060408385031215611ed557600080fd5b8235611ee0816123c0565b91506020830135611ef0816123c0565b809150509250929050565b600080600060608486031215611f1057600080fd5b8335611f1b816123c0565b92506020840135611f2b816123c0565b929592945050506040919091013590565b60008060408385031215611f4f57600080fd5b8235611f5a816123c0565b915060208301358015158114611ef057600080fd5b60008060408385031215611f8257600080fd5b8235611f8d816123c0565b946020939093013593505050565b600060208284031215611fad57600080fd5b5035919050565b60008060408385031215611fc757600080fd5b823591506020830135611ef0816123c0565b600060208284031215611feb57600080fd5b81356001600160e01b03198116811461178957600080fd5b6000806040838503121561201657600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561205e5781516001600160a01b031687529582019590820190600101612039565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516120a1816017850160208801612300565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120d2816028840160208801612300565b01602801949350505050565b60208152600082518060208401526120fd816040850160208701612300565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b82815260406020820152600061224c6040830184612025565b949350505050565b85815284602082015260a06040820152600061227360a0830186612025565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156122a3576122a361237e565b500190565b6000826122c557634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122e4576122e461237e565b500290565b6000828210156122fb576122fb61237e565b500390565b60005b8381101561231b578181015183820152602001612303565b838111156110375750506000910152565b60008161233b5761233b61237e565b506000190190565b600181811c9082168061235757607f821691505b6020821081141561237857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146114f957600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da2646970667358221220ad7ce068b9b93531a35e70ab10ba36bf04811ba336e6518b5f81554b28c8f13364736f6c63430008070033

Deployed Bytecode Sourcemap

31974:9369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10417:204;;;;;;;;;;-1:-1:-1;10417:204:0;;;;;:::i;:::-;;:::i;:::-;;;4796:14:1;;4789:22;4771:41;;4759:2;4744:18;10417:204:0;;;;;;;;19597:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21948:201::-;;;;;;;;;;-1:-1:-1;21948:201:0;;;;;:::i;:::-;;:::i;32117:41::-;;;;;;;;;;-1:-1:-1;32117:41:0;;;;-1:-1:-1;;;;;32117:41:0;;;;;;-1:-1:-1;;;;;4587:32:1;;;4569:51;;4557:2;4542:18;32117:41:0;4423:203:1;20717:108:0;;;;;;;;;;-1:-1:-1;20805:12:0;;20717:108;;;4969:25:1;;;4957:2;4942:18;20717:108:0;4823:177:1;32655:36:0;;;;;;;;;;-1:-1:-1;32655:36:0;;;;;;;;22729:295;;;;;;;;;;-1:-1:-1;22729:295:0;;;;;:::i;:::-;;:::i;12253:131::-;;;;;;;;;;-1:-1:-1;12253:131:0;;;;;:::i;:::-;12327:7;12354:12;;;:6;:12;;;;;:22;;;;12253:131;20559:93;;;;;;;;;;-1:-1:-1;20559:93:0;;20642:2;15627:36:1;;15615:2;15600:18;20559:93:0;15485:184:1;35711:136:0;;;;;;;;;;-1:-1:-1;35711:136:0;;;;;:::i;:::-;;:::i;:::-;;34328:207;;;;;;;;;;-1:-1:-1;34328:207:0;;;;;:::i;:::-;;:::i;12891:218::-;;;;;;;;;;-1:-1:-1;12891:218:0;;;;;:::i;:::-;;:::i;23433:238::-;;;;;;;;;;-1:-1:-1;23433:238:0;;;;;:::i;:::-;;:::i;33637:311::-;;;;;;;;;;-1:-1:-1;33637:311:0;;;;;:::i;:::-;;:::i;32700:28::-;;;;;;;;;;-1:-1:-1;32700:28:0;;;;;;;-1:-1:-1;;;;;32700:28:0;;;32514:26;;;;;;;;;;;;;;;;20888:127;;;;;;;;;;-1:-1:-1;20888:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;20989:18:0;20962:7;20989:18;;;;;;;;;;;;20888:127;35327:309;;;;;;;;;;;;;:::i;32616:31::-;;;;;;;;;;;;;;;;10713:147;;;;;;;;;;-1:-1:-1;10713:147:0;;;;;:::i;:::-;;:::i;19816:104::-;;;;;;;;;;;;;:::i;9818:49::-;;;;;;;;;;-1:-1:-1;9818:49:0;9863:4;9818:49;;24174:436;;;;;;;;;;-1:-1:-1;24174:436:0;;;;;:::i;:::-;;:::i;21221:193::-;;;;;;;;;;-1:-1:-1;21221:193:0;;;;;:::i;:::-;;:::i;32410:22::-;;;;;;;;;;-1:-1:-1;32410:22:0;;;;-1:-1:-1;;;;;32410:22:0;;;34599:212;;;;;;;;;;-1:-1:-1;34599:212:0;;;;;:::i;:::-;;:::i;32547:21::-;;;;;;;;;;;;;;;;35926:186;;;;;;;;;;;;;:::i;33959:223::-;;;;;;;;;;-1:-1:-1;33959:223:0;;;;;:::i;:::-;;:::i;34190:125::-;;;;;;;;;;-1:-1:-1;34190:125:0;;;;;:::i;:::-;;:::i;21477:151::-;;;;;;;;;;-1:-1:-1;21477:151:0;;;;;:::i;:::-;;:::i;32479:27::-;;;;;;;;;;;;;;;;34902:416;;;;;;;;;;-1:-1:-1;34902:416:0;;;;;:::i;:::-;;:::i;32575:33::-;;;;;;;;;;;;;;;;36121:153;;;;;;;;;;-1:-1:-1;36121:153:0;;;;;:::i;:::-;;:::i;10417:204::-;10502:4;-1:-1:-1;;;;;;10526:47:0;;-1:-1:-1;;;10526:47:0;;:87;;-1:-1:-1;;;;;;;;;;7935:40:0;;;10577:36;10519:94;10417:204;-1:-1:-1;;10417:204:0:o;19597:100::-;19651:13;19684:5;19677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19597:100;:::o;21948:201::-;22031:4;6968:10;22087:32;6968:10;22103:7;22112:6;22087:8;:32::i;:::-;-1:-1:-1;22137:4:0;;21948:201;-1:-1:-1;;;21948:201:0:o;22729:295::-;22860:4;6968:10;22918:38;22934:4;6968:10;22949:6;22918:15;:38::i;:::-;22967:27;22977:4;22983:2;22987:6;22967:9;:27::i;:::-;-1:-1:-1;23012:4:0;;22729:295;-1:-1:-1;;;;22729:295:0:o;35711:136::-;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;-1:-1:-1;35794:15:0::1;:45:::0;;-1:-1:-1;;;;;;35794:45:0::1;-1:-1:-1::0;;;;;35794:45:0;;;::::1;::::0;;;::::1;::::0;;35711:136::o;34328:207::-;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;34418:24:::1;-1:-1:-1::0;;;;;;;;;;;34437:4:0::1;34418:7;:24::i;:::-;34410:79;;;::::0;-1:-1:-1;;;34410:79:0;;12994:2:1;34410:79:0::1;::::0;::::1;12976:21:1::0;13033:2;13013:18;;;13006:30;13072:34;13052:18;;;13045:62;-1:-1:-1;;;13123:18:1;;;13116:40;13173:19;;34410:79:0::1;;;;;;;;;34500:27;-1:-1:-1::0;;;;;;;;;;;34522:4:0::1;34500:11;:27::i;:::-;34328:207:::0;;:::o;12891:218::-;-1:-1:-1;;;;;12987:23:0;;6968:10;12987:23;12979:83;;;;-1:-1:-1;;;12979:83:0;;14165:2:1;12979:83:0;;;14147:21:1;14204:2;14184:18;;;14177:30;14243:34;14223:18;;;14216:62;-1:-1:-1;;;14294:18:1;;;14287:45;14349:19;;12979:83:0;13963:411:1;12979:83:0;13075:26;13087:4;13093:7;13075:11;:26::i;23433:238::-;23521:4;6968:10;23577:64;6968:10;23593:7;23630:10;23602:25;6968:10;23593:7;23602:9;:25::i;:::-;:38;;;;:::i;:::-;23577:8;:64::i;33637:311::-;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;-1:-1:-1;;;;;40653:19:0;;;33720:86:::1;;;::::0;-1:-1:-1;;;33720:86:0;;6997:2:1;33720:86:0::1;::::0;::::1;6979:21:1::0;7036:2;7016:18;;;7009:30;7075:34;7055:18;;;7048:62;7146:27;7126:18;;;7119:55;7191:19;;33720:86:0::1;6795:421:1::0;33720:86:0::1;33826:24;-1:-1:-1::0;;;;;;;;;;;33845:4:0::1;33826:7;:24::i;:::-;33825:25;33817:86;;;::::0;-1:-1:-1;;;33817:86:0;;10541:2:1;33817:86:0::1;::::0;::::1;10523:21:1::0;10580:2;10560:18;;;10553:30;10619:34;10599:18;;;10592:62;-1:-1:-1;;;10670:18:1;;;10663:46;10726:19;;33817:86:0::1;10339:412:1::0;33817:86:0::1;33914:26;-1:-1:-1::0;;;;;;;;;;;33935:4:0::1;33914:10;:26::i;35327:309::-:0;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;35409:34:::1;-1:-1:-1::0;;;;;;;;;;;35440:1:0::1;35409:7;:34::i;:::-;35408:35;35400:100;;;;-1:-1:-1::0;;;35400:100:0::1;;;;;;;:::i;:::-;35511:39;-1:-1:-1::0;;;;;;;;;;;6968:10:0;35511:11:::1;:39::i;:::-;35561:36;-1:-1:-1::0;;;;;;;;;;;35594:1:0::1;35561:10;:36::i;:::-;-1:-1:-1::0;35608:7:0::1;:20:::0;;-1:-1:-1;;;;;;35608:20:0::1;::::0;;35327:309::o;10713:147::-;10799:4;10823:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;10823:29:0;;;;;;;;;;;;;;;10713:147::o;19816:104::-;19872:13;19905:7;19898:14;;;;;:::i;24174:436::-;24267:4;6968:10;24267:4;24350:25;6968:10;24367:7;24350:9;:25::i;:::-;24323:52;;24414:15;24394:16;:35;;24386:85;;;;-1:-1:-1;;;24386:85:0;;13759:2:1;24386:85:0;;;13741:21:1;13798:2;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;-1:-1:-1;;;13888:18:1;;;13881:35;13933:19;;24386:85:0;13557:401:1;24386:85:0;24507:60;24516:5;24523:7;24551:15;24532:16;:34;24507:8;:60::i;21221:193::-;21300:4;6968:10;21356:28;6968:10;21373:2;21377:6;21356:9;:28::i;34599:212::-;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;34686:31:::1;-1:-1:-1::0;;;;;;;;;;;34709:7:0::1;34686;:31::i;:::-;34678:81;;;::::0;-1:-1:-1;;;34678:81:0;;9315:2:1;34678:81:0::1;::::0;::::1;9297:21:1::0;9354:2;9334:18;;;9327:30;9393:34;9373:18;;;9366:62;-1:-1:-1;;;9444:18:1;;;9437:35;9489:19;;34678:81:0::1;9113:401:1::0;34678:81:0::1;34769:34;-1:-1:-1::0;;;;;;;;;;;34795:7:0::1;34769:11;:34::i;35926:186::-:0;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;36024:4:::1;35992:11;20989:18:::0;;;;;;;;;;;36049:10;36041:19:::1;;;::::0;::::1;;36071:33;36097:6;36071:25;:33::i;33959:223::-:0;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;34050:31:::1;-1:-1:-1::0;;;;;;;;;;;34073:7:0::1;34050;:31::i;:::-;34049:32;34041:89;;;::::0;-1:-1:-1;;;34041:89:0;;10128:2:1;34041:89:0::1;::::0;::::1;10110:21:1::0;10167:2;10147:18;;;10140:30;10206:34;10186:18;;;10179:62;-1:-1:-1;;;10257:18:1;;;10250:42;10309:19;;34041:89:0::1;9926:408:1::0;34041:89:0::1;34141:33;-1:-1:-1::0;;;;;;;;;;;34166:7:0::1;34141:10;:33::i;34190:125::-:0;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;-1:-1:-1;;;;;;34288:11:0;;;::::1;;::::0;;;:4:::1;:11;::::0;;;;:19;;-1:-1:-1;;34288:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34190:125::o;21477:151::-;-1:-1:-1;;;;;21593:18:0;;;21566:7;21593:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21477:151::o;34902:416::-;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;-1:-1:-1;;;;;34999:22:0;::::1;34991:86;;;::::0;-1:-1:-1;;;34991:86:0;;8895:2:1;34991:86:0::1;::::0;::::1;8877:21:1::0;8934:2;8914:18;;;8907:30;8973:34;8953:18;;;8946:62;-1:-1:-1;;;9024:18:1;;;9017:49;9083:19;;34991:86:0::1;8693:415:1::0;34991:86:0::1;35097:32;-1:-1:-1::0;;;;;;;;;;;35120:8:0::1;35097:7;:32::i;:::-;35096:33;35088:98;;;;-1:-1:-1::0;;;35088:98:0::1;;;;;;;:::i;:::-;35197:39;-1:-1:-1::0;;;;;;;;;;;6968:10:0;35511:11:::1;:39::i;35197:::-;35247:34;-1:-1:-1::0;;;;;;;;;;;35272:8:0::1;35247:10;:34::i;:::-;-1:-1:-1::0;35292:7:0::1;:18:::0;;-1:-1:-1;;;;;;35292:18:0::1;-1:-1:-1::0;;;;;35292:18:0;;;::::1;::::0;;;::::1;::::0;;34902:416::o;36121:153::-;-1:-1:-1;;;;;;;;;;;10309:16:0;10320:4;10309:10;:16::i;:::-;-1:-1:-1;36223:9:0::1;:19:::0;;;;36252:5:::1;:14:::0;36121:153::o;27808:380::-;-1:-1:-1;;;;;27944:19:0;;27936:68;;;;-1:-1:-1;;;27936:68:0;;12589:2:1;27936:68:0;;;12571:21:1;12628:2;12608:18;;;12601:30;12667:34;12647:18;;;12640:62;-1:-1:-1;;;12718:18:1;;;12711:34;12762:19;;27936:68:0;12387:400:1;27936:68:0;-1:-1:-1;;;;;28023:21:0;;28015:68;;;;-1:-1:-1;;;28015:68:0;;7423:2:1;28015:68:0;;;7405:21:1;7462:2;7442:18;;;7435:30;7501:34;7481:18;;;7474:62;-1:-1:-1;;;7552:18:1;;;7545:32;7594:19;;28015:68:0;7221:398:1;28015:68:0;-1:-1:-1;;;;;28096:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28148:32;;4969:25:1;;;28148:32:0;;4942:18:1;28148:32:0;;;;;;;27808:380;;;:::o;28479:453::-;28614:24;28641:25;28651:5;28658:7;28641:9;:25::i;:::-;28614:52;;-1:-1:-1;;28681:16:0;:37;28677:248;;28763:6;28743:16;:26;;28735:68;;;;-1:-1:-1;;;28735:68:0;;8537:2:1;28735:68:0;;;8519:21:1;8576:2;8556:18;;;8549:30;8615:31;8595:18;;;8588:59;8664:18;;28735:68:0;8335:353:1;28735:68:0;28847:51;28856:5;28863:7;28891:6;28872:16;:25;28847:8;:51::i;:::-;28603:329;28479:453;;;:::o;36345:2419::-;-1:-1:-1;;;;;36477:18:0;;36469:68;;;;-1:-1:-1;;;36469:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36556:16:0;;36548:64;;;;-1:-1:-1;;;36548:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36629:8:0;;;;;;:4;:8;;;;;;;;36625:185;;36670:6;36662:5;;:14;;36654:51;;;;-1:-1:-1;;;36654:51:0;;13405:2:1;36654:51:0;;;13387:21:1;13444:2;13424:18;;;13417:30;13483:27;13463:18;;;13456:55;13528:18;;36654:51:0;13203:349:1;36654:51:0;36742:25;36760:6;36742:13;36752:2;-1:-1:-1;;;;;20989:18:0;20962:7;20989:18;;;;;;;;;;;;20888:127;36742:13;:17;;:25::i;:::-;36728:9;;:39;;36720:78;;;;-1:-1:-1;;;36720:78:0;;7826:2:1;36720:78:0;;;7808:21:1;7865:2;7845:18;;;7838:30;7904:28;7884:18;;;7877:56;7950:18;;36720:78:0;7624:350:1;36720:78:0;36881:26;;:::i;:::-;-1:-1:-1;;;;;36932:15:0;;:9;:15;;;;;;;;;;;36918:29;;36960:21;;:::i;:::-;37007:28;-1:-1:-1;;;;;;;;;;;37030:4:0;37007:7;:28::i;:::-;37006:29;37005:64;;;;;37042:26;-1:-1:-1;;;;;;;;;;;37065:2:0;37042:7;:26::i;:::-;37041:27;37005:64;:107;;;;-1:-1:-1;37075:36:0;-1:-1:-1;;;;;;;;;;;6968:10:0;10713:147;:::i;37075:36::-;37074:37;37005:107;36993:119;;;;37136:28;-1:-1:-1;;;;;;;;;;;37159:4:0;37136:7;:28::i;:::-;37135:62;;;;37170:26;-1:-1:-1;;;;;;;;;;;37193:2:0;37170:7;:26::i;:::-;37123:74;;:9;;;:74;37226:11;;:21;-1:-1:-1;37226:21:0;37218:72;;;;-1:-1:-1;;;37218:72:0;;;;;;;:::i;:::-;37314:22;-1:-1:-1;;;;;;;;;;;37333:2:0;37314:7;:22::i;:::-;:43;;;;-1:-1:-1;37341:16:0;;;;37340:17;37314:43;37311:421;;;37415:4;37374:20;20989:18;;;;;;;;;;;37439:19;;37436:285;;37512:13;;;;;-1:-1:-1;;;;;37512:13:0;20962:7;20989:18;;;;;;;;;;;37502:40;;37538:3;;37502:31;;37531:1;;37502:24;:28;;:31::i;:::-;:35;;:40::i;:::-;37484:15;:58;37481:164;;;37595:13;;;;;-1:-1:-1;;;;;37595:13:0;20962:7;20989:18;;;;;;;;;;;37585:40;;37621:3;;37585:31;;37614:1;;37585:24;20888:127;37585:40;37567:58;;37481:164;37663:42;37689:15;37663:25;:42::i;:::-;37359:373;37311:421;37747:9;;:23;;;;-1:-1:-1;37761:9:0;;;;37760:10;37747:23;:44;;;;-1:-1:-1;37775:16:0;;;;37774:17;37747:44;37744:521;;;37826:6;37852:22;-1:-1:-1;;;;;;;;;;;37871:2:0;37852:7;:22::i;:::-;37847:254;;;37933:26;37952:6;37933:18;:26::i;:::-;37918:11;;;37909:50;;-1:-1:-1;37847:254:0;;;37983:32;-1:-1:-1;;;;;;;;;;;6968:10:0;10713:147;:::i;37983:32::-;37980:121;;;38060:25;38078:6;38060:17;:25::i;:::-;38045:11;;;38036:49;;-1:-1:-1;37980:121:0;38132:23;38147:7;38132:14;:23::i;:::-;38118:11;;;:37;;;38175:21;;38172:82;;38227:11;;;;38217:21;;;;:::i;:::-;;;38172:82;37793:472;37744:521;38320:11;;-1:-1:-1;;;;;38302:15:0;;;38329:1;38302:15;;;38320:11;38302:15;;;;;;;38320:20;;;;38302:38;;;38362:13;;;;;;;;:23;;38334:6;;38329:1;38362:23;;38334:6;;38362:23;:::i;:::-;;;;;;;;38418:2;-1:-1:-1;;;;;38403:26:0;38412:4;-1:-1:-1;;;;;38403:26:0;;38422:6;38403:26;;;;4969:25:1;;4957:2;4942:18;;4823:177;38403:26:0;;;;;;;;38455:11;;;;:15;;;;38454:30;;-1:-1:-1;38475:9:0;;38454:30;:44;;;;-1:-1:-1;38489:9:0;;;;38488:10;38454:44;:65;;;;-1:-1:-1;38503:16:0;;;;38502:17;38454:65;38451:123;;;38536:26;38544:4;38550:8;38559:1;38550:11;;;;38536:7;:26::i;:::-;38590:11;;;;:15;;;;38589:30;;-1:-1:-1;38610:9:0;;38589:30;:44;;;;-1:-1:-1;38624:9:0;;;;38623:10;38589:44;:65;;;;-1:-1:-1;38638:16:0;;;;38637:17;38589:65;38586:121;;;38671:24;38677:4;38683:8;38692:1;38683:11;;;;38671:5;:24::i;:::-;36458:2306;;36345:2419;;;:::o;11164:105::-;11231:30;11242:4;6968:10;11231;:30::i;:::-;11164:105;:::o;14762:239::-;14846:22;14854:4;14860:7;14846;:22::i;:::-;14842:152;;;14917:5;14885:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14885:29:0;;;;;;;;;;:37;;-1:-1:-1;;14885:37:0;;;14942:40;6968:10;;14885:12;;14942:40;;14917:5;14942:40;14762:239;;:::o;13768:112::-;13847:25;13858:4;13864:7;13847:10;:25::i;39975:589::-;33547:16;:23;;-1:-1:-1;;33547:23:0;33566:4;33547:23;;;40086:16:::1;::::0;;40100:1:::1;40086:16:::0;;;;;::::1;::::0;;-1:-1:-1;;40086:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40086:16:0::1;40062:40;;40131:4;40113;40118:1;40113:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40113:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;40157:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;40157:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;40113:7;;40157:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40147:4;40152:1;40147:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40147:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;40224:15:::1;::::0;40192:62:::1;::::0;40209:4:::1;::::0;40224:15:::1;40242:11:::0;40192:8:::1;:62::i;:::-;40267:15;::::0;40409:18:::1;::::0;40267:199:::1;::::0;-1:-1:-1;;;40267:199:0;;-1:-1:-1;;;;;40267:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;40348:11;;40267:15:::1;::::0;40390:4;;40409:18;::::1;::::0;40440:15:::1;::::0;40267:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40484:72;40515:11;40541:4;40484:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;33593:16:0;:24;;-1:-1:-1;;33593:24:0;;;39975:589::o;30418:181::-;30476:7;;30508:5;30512:1;30508;:5;:::i;:::-;30496:17;;30537:1;30532;:6;;30524:46;;;;-1:-1:-1;;;30524:46:0;;8181:2:1;30524:46:0;;;8163:21:1;8220:2;8200:18;;;8193:30;8259:29;8239:18;;;8232:57;8306:18;;30524:46:0;7979:351:1;30524:46:0;30590:1;30418:181;-1:-1:-1;;;30418:181:0:o;30951:250::-;31009:7;31033:6;31029:47;;-1:-1:-1;31063:1:0;31056:8;;31029:47;31088:9;31100:5;31104:1;31100;:5;:::i;:::-;31088:17;-1:-1:-1;31133:1:0;31124:5;31128:1;31088:17;31124:5;:::i;:::-;:10;31116:56;;;;-1:-1:-1;;;31116:56:0;;10958:2:1;31116:56:0;;;10940:21:1;10997:2;10977:18;;;10970:30;11036:34;11016:18;;;11009:62;-1:-1:-1;;;11087:18:1;;;11080:31;11128:19;;31116:56:0;10756:397:1;31211:132:0;31269:7;31296:39;31300:1;31303;31296:39;;;;;;;;;;;;;;;;;:3;:39::i;40695:247::-;40758:20;40780:16;32467:5;40852:9;;32467:5;40838:23;;;;:::i;:::-;40828:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;40809:67;;32467:5;40911:9;;40902:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;40887:47;;40695:247;;;:::o;40953:242::-;41015:20;41037:15;32467:5;41108:8;;32467:5;41094:22;;;;:::i;:::-;41084:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;41065:66;;32467:5;41165:8;;41156:6;:17;;;;:::i;41205:129::-;41264:11;32467:5;41307;;41298:6;:14;;;;:::i;:::-;:28;;;;:::i;39801:164::-;39872:11;;39869:89;;39900:46;39916:5;39931:4;39938:7;39900:15;:46::i;38777:601::-;-1:-1:-1;;;;;38862:21:0;;38854:67;;;;-1:-1:-1;;;38854:67:0;;11781:2:1;38854:67:0;;;11763:21:1;11820:2;11800:18;;;11793:30;11859:34;11839:18;;;11832:62;-1:-1:-1;;;11910:18:1;;;11903:31;11951:19;;38854:67:0;11579:397:1;38854:67:0;-1:-1:-1;;;;;39021:18:0;;38996:22;39021:18;;;;;;;;;;;39058:24;;;;39050:71;;;;-1:-1:-1;;;39050:71:0;;6594:2:1;39050:71:0;;;6576:21:1;6633:2;6613:18;;;6606:30;6672:34;6652:18;;;6645:62;-1:-1:-1;;;6723:18:1;;;6716:32;6765:19;;39050:71:0;6392:398:1;39050:71:0;-1:-1:-1;;;;;39157:18:0;;:9;:18;;;;;;;;;;39178:23;;;39157:44;;39223:21;;;;:31;;39195:6;;39157:9;39223:31;;39195:6;;39223:31;:::i;:::-;;;;-1:-1:-1;;39272:37:0;;4969:25:1;;;39298:1:0;;-1:-1:-1;;;;;39272:37:0;;;;;4957:2:1;4942:18;39272:37:0;;;;;;;29532:125;;;:::o;11559:505::-;11648:22;11656:4;11662:7;11648;:22::i;:::-;11643:414;;11836:41;11864:7;-1:-1:-1;;;;;11836:41:0;11874:2;11836:19;:41::i;:::-;11950:38;11978:4;11985:2;11950:19;:38::i;:::-;11741:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11741:270:0;;;;;;;;;;-1:-1:-1;;;11687:358:0;;;;;;;:::i;14392:238::-;14476:22;14484:4;14490:7;14476;:22::i;:::-;14471:152;;14515:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14515:29:0;;;;;;;;;:36;;-1:-1:-1;;14515:36:0;14547:4;14515:36;;;14598:12;6968:10;;6888:98;14598:12;-1:-1:-1;;;;;14571:40:0;14589:7;-1:-1:-1;;;;;14571:40:0;14583:4;14571:40;;;;;;;;;;14392:238;;:::o;31351:278::-;31437:7;31472:12;31465:5;31457:28;;;;-1:-1:-1;;;31457:28:0;;;;;;;;:::i;:::-;-1:-1:-1;31496:9:0;31508:5;31512:1;31508;:5;:::i;:::-;31496:17;31351:278;-1:-1:-1;;;;;31351:278:0:o;25089:671::-;-1:-1:-1;;;;;25220:18:0;;25212:68;;;;-1:-1:-1;;;25212:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25299:16:0;;25291:64;;;;-1:-1:-1;;;25291:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25441:15:0;;25419:19;25441:15;;;;;;;;;;;25475:21;;;;25467:72;;;;-1:-1:-1;;;25467:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25575:15:0;;;:9;:15;;;;;;;;;;;25593:20;;;25575:38;;25635:13;;;;;;;;:23;;25607:6;;25575:9;25635:23;;25607:6;;25635:23;:::i;:::-;;;;;;;;25691:2;-1:-1:-1;;;;;25676:26:0;25685:4;-1:-1:-1;;;;;25676:26:0;;25695:6;25676:26;;;;4969:25:1;;4957:2;4942:18;;4823:177;25676:26:0;;;;;;;;25715:37;29532:125;16561:451;16636:13;16662:19;16694:10;16698:6;16694:1;:10;:::i;:::-;:14;;16707:1;16694:14;:::i;:::-;16684:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16684:25:0;;16662:47;;-1:-1:-1;;;16720:6:0;16727:1;16720:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;16720:15:0;;;;;;;;;-1:-1:-1;;;16746:6:0;16753:1;16746:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;16746:15:0;;;;;;;;-1:-1:-1;16777:9:0;16789:10;16793:6;16789:1;:10;:::i;:::-;:14;;16802:1;16789:14;:::i;:::-;16777:26;;16772:135;16809:1;16805;:5;16772:135;;;-1:-1:-1;;;16857:5:0;16865:3;16857:11;16844:25;;;;;;;:::i;:::-;;;;16832:6;16839:1;16832:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;16832:37:0;;;;;;;;-1:-1:-1;16894:1:0;16884:11;;;;;16812:3;;;:::i;:::-;;;16772:135;;;-1:-1:-1;16925:10:0;;16917:55;;;;-1:-1:-1;;;16917:55:0;;5829:2:1;16917:55:0;;;5811:21:1;;;5848:18;;;5841:30;5907:34;5887:18;;;5880:62;5959:18;;16917:55:0;5627:356:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:416::-;1441:6;1449;1502:2;1490:9;1481:7;1477:23;1473:32;1470:52;;;1518:1;1515;1508:12;1470:52;1557:9;1544:23;1576:31;1601:5;1576:31;:::i;:::-;1626:5;-1:-1:-1;1683:2:1;1668:18;;1655:32;1725:15;;1718:23;1706:36;;1696:64;;1756:1;1753;1746:12;1797:315;1865:6;1873;1926:2;1914:9;1905:7;1901:23;1897:32;1894:52;;;1942:1;1939;1932:12;1894:52;1981:9;1968:23;2000:31;2025:5;2000:31;:::i;:::-;2050:5;2102:2;2087:18;;;;2074:32;;-1:-1:-1;;;1797:315:1:o;2117:180::-;2176:6;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;-1:-1:-1;2268:23:1;;2117:180;-1:-1:-1;2117:180:1:o;2302:315::-;2370:6;2378;2431:2;2419:9;2410:7;2406:23;2402:32;2399:52;;;2447:1;2444;2437:12;2399:52;2483:9;2470:23;2460:33;;2543:2;2532:9;2528:18;2515:32;2556:31;2581:5;2556:31;:::i;2622:286::-;2680:6;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2775:23;;-1:-1:-1;;;;;;2827:32:1;;2817:43;;2807:71;;2874:1;2871;2864:12;2913:248;2981:6;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;-1:-1:-1;;3081:23:1;;;3151:2;3136:18;;;3123:32;;-1:-1:-1;2913:248:1:o;3166:461::-;3219:3;3257:5;3251:12;3284:6;3279:3;3272:19;3310:4;3339:2;3334:3;3330:12;3323:19;;3376:2;3369:5;3365:14;3397:1;3407:195;3421:6;3418:1;3415:13;3407:195;;;3486:13;;-1:-1:-1;;;;;3482:39:1;3470:52;;3542:12;;;;3577:15;;;;3518:1;3436:9;3407:195;;;-1:-1:-1;3618:3:1;;3166:461;-1:-1:-1;;;;;3166:461:1:o;3632:786::-;4043:25;4038:3;4031:38;4013:3;4098:6;4092:13;4114:62;4169:6;4164:2;4159:3;4155:12;4148:4;4140:6;4136:17;4114:62;:::i;:::-;-1:-1:-1;;;4235:2:1;4195:16;;;4227:11;;;4220:40;4285:13;;4307:63;4285:13;4356:2;4348:11;;4341:4;4329:17;;4307:63;:::i;:::-;4390:17;4409:2;4386:26;;3632:786;-1:-1:-1;;;;3632:786:1:o;5239:383::-;5388:2;5377:9;5370:21;5351:4;5420:6;5414:13;5463:6;5458:2;5447:9;5443:18;5436:34;5479:66;5538:6;5533:2;5522:9;5518:18;5513:2;5505:6;5501:15;5479:66;:::i;:::-;5606:2;5585:15;-1:-1:-1;;5581:29:1;5566:45;;;;5613:2;5562:54;;5239:383;-1:-1:-1;;5239:383:1:o;5988:399::-;6190:2;6172:21;;;6229:2;6209:18;;;6202:30;6268:34;6263:2;6248:18;;6241:62;-1:-1:-1;;;6334:2:1;6319:18;;6312:33;6377:3;6362:19;;5988:399::o;9519:402::-;9721:2;9703:21;;;9760:2;9740:18;;;9733:30;9799:34;9794:2;9779:18;;9772:62;-1:-1:-1;;;9865:2:1;9850:18;;9843:36;9911:3;9896:19;;9519:402::o;11158:416::-;11360:2;11342:21;;;11399:2;11379:18;;;11372:30;11438:34;11433:2;11418:18;;11411:62;-1:-1:-1;;;11504:2:1;11489:18;;11482:50;11564:3;11549:19;;11158:416::o;11981:401::-;12183:2;12165:21;;;12222:2;12202:18;;;12195:30;12261:34;12256:2;12241:18;;12234:62;-1:-1:-1;;;12327:2:1;12312:18;;12305:35;12372:3;12357:19;;11981:401::o;14561:332::-;14768:6;14757:9;14750:25;14811:2;14806;14795:9;14791:18;14784:30;14731:4;14831:56;14883:2;14872:9;14868:18;14860:6;14831:56;:::i;:::-;14823:64;14561:332;-1:-1:-1;;;;14561:332:1:o;14898:582::-;15197:6;15186:9;15179:25;15240:6;15235:2;15224:9;15220:18;15213:34;15283:3;15278:2;15267:9;15263:18;15256:31;15160:4;15304:57;15356:3;15345:9;15341:19;15333:6;15304:57;:::i;:::-;-1:-1:-1;;;;;15397:32:1;;;;15392:2;15377:18;;15370:60;-1:-1:-1;15461:3:1;15446:19;15439:35;15296:65;14898:582;-1:-1:-1;;;14898:582:1:o;15674:128::-;15714:3;15745:1;15741:6;15738:1;15735:13;15732:39;;;15751:18;;:::i;:::-;-1:-1:-1;15787:9:1;;15674:128::o;15807:217::-;15847:1;15873;15863:132;;15917:10;15912:3;15908:20;15905:1;15898:31;15952:4;15949:1;15942:15;15980:4;15977:1;15970:15;15863:132;-1:-1:-1;16009:9:1;;15807:217::o;16029:168::-;16069:7;16135:1;16131;16127:6;16123:14;16120:1;16117:21;16112:1;16105:9;16098:17;16094:45;16091:71;;;16142:18;;:::i;:::-;-1:-1:-1;16182:9:1;;16029:168::o;16202:125::-;16242:4;16270:1;16267;16264:8;16261:34;;;16275:18;;:::i;:::-;-1:-1:-1;16312:9:1;;16202:125::o;16332:258::-;16404:1;16414:113;16428:6;16425:1;16422:13;16414:113;;;16504:11;;;16498:18;16485:11;;;16478:39;16450:2;16443:10;16414:113;;;16545:6;16542:1;16539:13;16536:48;;;-1:-1:-1;;16580:1:1;16562:16;;16555:27;16332:258::o;16595:136::-;16634:3;16662:5;16652:39;;16671:18;;:::i;:::-;-1:-1:-1;;;16707:18:1;;16595:136::o;16736:380::-;16815:1;16811:12;;;;16858;;;16879:61;;16933:4;16925:6;16921:17;16911:27;;16879:61;16986:2;16978:6;16975:14;16955:18;16952:38;16949:161;;;17032:10;17027:3;17023:20;17020:1;17013:31;17067:4;17064:1;17057:15;17095:4;17092:1;17085:15;16949:161;;16736:380;;;:::o;17121:127::-;17182:10;17177:3;17173:20;17170:1;17163:31;17213:4;17210:1;17203:15;17237:4;17234:1;17227:15;17253:127;17314:10;17309:3;17305:20;17302:1;17295:31;17345:4;17342:1;17335:15;17369:4;17366:1;17359:15;17385:127;17446:10;17441:3;17437:20;17434:1;17427:31;17477:4;17474:1;17467:15;17501:4;17498:1;17491:15;17517:131;-1:-1:-1;;;;;17592:31:1;;17582:42;;17572:70;;17638:1;17635;17628:12

Swarm Source

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