ETH Price: $2,267.66 (-0.22%)

Token

Cryptic Tradez (CRYPTIC)
 

Overview

Max Total Supply

1,000,000,000 CRYPTIC

Holders

427

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,510,546 CRYPTIC

Value
$0.00
0xa6DABffE6a6fB406057Ea01f0b65C0194F2fF8e7
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:
Cryptic

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-26
*/

//                                      ____ ______   ______ _____ ___ ____ 
//                                     / ___|  _ \ \ / /  _ \_   _|_ _/ ___|
//                                    | |   | |_) \ V /| |_) || |  | | |    
//                                    | |___|  _ < | | |  __/ | |  | | |___ 
//                                     \____|_| \_\|_| |_|    |_| |___\____|
//                          
//         Start trading straight from your group with Cryptic Tradez! Whether it be via Telegram or Discord.
//
//                                        Website: https://cryptictradez.com
//                                      Twitter/X: https://x.com/0xcrypticlock
//                                      Telegram: https://t.me/cryptictradez
//                                      Discord: https://discord.gg/EBNVbPAanJ
//                              Gitbook: https://cryptictradez.gitbook.io/cryptic-tradez-guide/
//                              
//                              
//                                      Bot (TG): https://t.me/cryptictradebot
//                           Bot (Discord): https://discord.com/oauth2/authorize?client_id=1239154931223760946
//  
//  


pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;


// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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 `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public secretShareWallet;
    address public crypticAccountWallet;

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

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

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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buySecretShareFee;
    uint256 private buyCrypticAccountFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellSecretShareFee;
    uint256 private sellCrypticAccountFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForSecretShare;
    uint256 private tokensForCrypticAccount;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event UniswapV2PairSet(address indexed pair);

    constructor() ERC20("Cryptic Tradez", "CRYPTIC") {
        uint256 totalSupply = 1_000_000_000 ether;
        address disperse = 0xD152f549545093347A162Dce210e7293f1452150;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        maxTransactionAmount = totalSupply;
        maxWallet = totalSupply;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        marketingWallet = address(0x7dB3aa4540C90E20f1de3E1E2D66D4f2c8B3a92A);
        secretShareWallet = address(0x804b9d0037d25F72b19950Ea2141A3Fd5e979fAD);
        crypticAccountWallet = address(0x4A78639bC42658B4A7798cE83211Ae8324B4f5B2);

        buyMarketingFee = 1;
        buySecretShareFee = 1;
        buyCrypticAccountFee = 2;
        buyTotalFees = buyMarketingFee + buySecretShareFee + buyCrypticAccountFee;

        sellMarketingFee = 1;
        sellSecretShareFee = 1;
        sellCrypticAccountFee = 2;
        sellTotalFees =
            sellMarketingFee +
            sellSecretShareFee +
            sellCrypticAccountFee;

        previousFee = sellTotalFees;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(secretShareWallet, true);
        excludeFromFees(crypticAccountWallet, true);
        excludeFromFees(disperse, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(secretShareWallet, true);
        excludeFromMaxTransaction(crypticAccountWallet, true);
        excludeFromMaxTransaction(disperse, true);

        _mint(owner(), 1_000_000_000 ether);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

 
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Trading already active.");

        // Check if the pair already exists
        address existingPair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(
            address(this),
            uniswapV2Router.WETH()
        );

        if (existingPair == address(0)) {
            // Pair does not exist, create a new one
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );
        } else {
            // Pair already exists, use the existing pair
            uniswapV2Pair = existingPair;
        }

        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        maxTransactionAmount = (totalSupply() * 25) / 10000;
        maxWallet = (totalSupply() * 25) / 10000;

        tradingActive = true;
        swapEnabled = true;
    }

function setUniswapV2Pair(address _pair) external onlyOwner {
    require(_pair != address(0), "Invalid pair address");
    uniswapV2Pair = _pair;

    _approve(address(this), address(uniswapV2Pair), type(uint256).max);
    IERC20(uniswapV2Pair).approve(
        address(uniswapV2Router),
        type(uint256).max
    );

    _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    excludeFromMaxTransaction(address(uniswapV2Pair), true);

    emit UniswapV2PairSet(uniswapV2Pair);
}


    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _secretShareFee,
        uint256 _crypticAccountFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buySecretShareFee = _secretShareFee;
        buyCrypticAccountFee = _crypticAccountFee;
        buyTotalFees = buyMarketingFee + buySecretShareFee + buyCrypticAccountFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _secretShareFee,
        uint256 _crypticAccountFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellSecretShareFee = _secretShareFee;
        sellCrypticAccountFee = _crypticAccountFee;
        sellTotalFees =
            sellMarketingFee +
            sellSecretShareFee +
            sellCrypticAccountFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateSecretShareWallet(address _secretShareWallet) external onlyOwner {
        require(_secretShareWallet != address(0), "ERC20: Address 0");
        address oldWallet = secretShareWallet;
        secretShareWallet = _secretShareWallet;
        emit revShareWalletUpdated(secretShareWallet, oldWallet);
    }

    function updateCrypticAccountWallet(address _crypticAccountWallet)
        external
        onlyOwner
    {
        require(_crypticAccountWallet != address(0), "ERC20: Address 0");
        address oldWallet = crypticAccountWallet;
        crypticAccountWallet = _crypticAccountWallet;
        emit crypticAccountWalletUpdated(crypticAccountWallet, oldWallet);
    }

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

    function blacklist(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (accounts[i] != uniswapV2Pair) &&
                (accounts[i] != address(uniswapV2Router)) &&
                (accounts[i] != address(this))
            ) blacklisted[accounts[i]] = value;
        }
    }

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from], "ERC20: bot detected");
        require(!blacklisted[msg.sender], "ERC20: bot detected");
        require(!blacklisted[tx.origin], "ERC20: bot detected");

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForCrypticAccount +=
                    (fees * sellCrypticAccountFee) /
                    sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForSecretShare += (fees * sellSecretShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForCrypticAccount +=
                    (fees * buyCrypticAccountFee) /
                    buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForSecretShare += (fees * buySecretShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        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,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCrypticAccount +
            tokensForMarketing +
            tokensForSecretShare;
        bool success;

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

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

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForSecretShare = ethBalance.mul(tokensForSecretShare).div(
            totalTokensToSwap
        );

        uint256 ethForCrypticAccount = ethBalance
            .mul(tokensForCrypticAccount)
            .div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForSecretShare = 0;
        tokensForCrypticAccount = 0;

        (success, ) = address(crypticAccountWallet).call{
            value: ethForCrypticAccount
        }("");

        (success, ) = address(secretShareWallet).call{value: ethForSecretShare}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"UniswapV2PairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"crypticAccountWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crypticAccountWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secretShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_secretShareFee","type":"uint256"},{"internalType":"uint256","name":"_crypticAccountFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crypticAccountWallet","type":"address"}],"name":"updateCrypticAccountWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secretShareWallet","type":"address"}],"name":"updateSecretShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_secretShareFee","type":"uint256"},{"internalType":"uint256","name":"_crypticAccountFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600d805461ffff191690553480156200001c57600080fd5b506040518060400160405280600e81526020016d21b93cb83a34b1902a3930b232bd60911b815250604051806040016040528060078152602001664352595054494360c81b815250816003908162000075919062000733565b50600462000084828262000733565b505050620000a16200009b6200034960201b60201c565b6200034d565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce80000009073d152f549545093347a162dce210e7293f145215090620000ef9030906000196200039f565b600a829055600c8290556127106200010983600562000815565b62000115919062000835565b600b55600780546001600160a01b0319908116737db3aa4540c90e20f1de3e1e2d66d4f2c8b3a92a1790915560088054821673804b9d0037d25f72b19950ea2141a3fd5e979fad17905560098054909116734a78639bc42658b4a7798ce83211ae8324b4f5b217905560016010819055601181905560026012819055906200019e908062000858565b620001aa919062000858565b600f556001601481905560158190556002601681905590620001cd908062000858565b620001d9919062000858565b6013819055601a5562000200620001f86005546001600160a01b031690565b6001620004cb565b6200020d306001620004cb565b6200021c61dead6001620004cb565b60075462000235906001600160a01b03166001620004cb565b6008546200024e906001600160a01b03166001620004cb565b60095462000267906001600160a01b03166001620004cb565b62000274816001620004cb565b620002936200028b6005546001600160a01b031690565b600162000534565b620002a030600162000534565b620002af61dead600162000534565b608051620002bf90600162000534565b600754620002d8906001600160a01b0316600162000534565b600854620002f1906001600160a01b0316600162000534565b6009546200030a906001600160a01b0316600162000534565b6200031781600162000534565b620003416200032e6005546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000569565b50506200086e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620004075760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200046a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003fe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004d56200062c565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200053e6200062c565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005c15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003fe565b8060026000828254620005d5919062000858565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003fe565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006ba57607f821691505b602082108103620006db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200068a57600081815260208120601f850160051c810160208610156200070a5750805b601f850160051c820191505b818110156200072b5782815560010162000716565b505050505050565b81516001600160401b038111156200074f576200074f6200068f565b6200076781620007608454620006a5565b84620006e1565b602080601f8311600181146200079f5760008415620007865750858301515b600019600386901b1c1916600185901b1785556200072b565b600085815260208120601f198616915b82811015620007d057888601518255948401946001909101908401620007af565b5085821015620007ef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200082f576200082f620007ff565b92915050565b6000826200085357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200082f576200082f620007ff565b608051612ed5620008d0600039600081816102e401528181610a9501528181610b2601528181610c2701528181610cb801528181610e1e015281816111630152818161146a01528181612822015281816128db01526129170152612ed56000f3fe60806040526004361061026b5760003560e01c80639422cbe111610144578063c8c8ebe4116100b6578063dd62ed3e1161007a578063dd62ed3e14610758578063e2f4560514610778578063f2fde38b1461078e578063f5648a4f146107ae578063f8b45b05146107c3578063fe575a87146107d957600080fd5b8063c8c8ebe4146106cc578063c997eb8d146106e2578063cb96372814610702578063d257b34f14610722578063d85ba0631461074257600080fd5b8063a66162ed11610108578063a66162ed14610612578063a9059cbb14610632578063aacebbe314610652578063bbc0c74214610672578063c02466681461068c578063c17b5b8c146106ac57600080fd5b80639422cbe11461057d57806395d89b411461059d57806396188399146105b2578063a29a6089146105d2578063a457c2d7146105f257600080fd5b80636a486a8e116101dd57806375f0a874116101a157806375f0a874146104ca5780637b8e4fea146104ea5780638095d5641461050a5780638a8c523c1461052a5780638ad60c3d1461053f5780638da5cb5b1461055f57600080fd5b80636a486a8e1461042a5780636ddd17131461044057806370a082311461045f578063715018a6146104955780637571336a146104aa57600080fd5b806327c8f8351161022f57806327c8f8351461035d578063313ce56714610373578063395093511461038f57806342966c68146103af57806349bd5a5e146103d15780634fbee193146103f157600080fd5b806306fdde0314610277578063095ea7b3146102a25780631694505e146102d257806318160ddd1461031e57806323b872dd1461033d57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b604051610299919061298b565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046129ee565b6108a4565b6040519015158152602001610299565b3480156102de57600080fd5b506103067f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561032a57600080fd5b506002545b604051908152602001610299565b34801561034957600080fd5b506102c2610358366004612a1a565b6108be565b34801561036957600080fd5b5061030661dead81565b34801561037f57600080fd5b5060405160128152602001610299565b34801561039b57600080fd5b506102c26103aa3660046129ee565b6108e2565b3480156103bb57600080fd5b506103cf6103ca366004612a5b565b610904565b005b3480156103dd57600080fd5b50600654610306906001600160a01b031681565b3480156103fd57600080fd5b506102c261040c366004612a74565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561043657600080fd5b5061032f60135481565b34801561044c57600080fd5b50600d546102c290610100900460ff1681565b34801561046b57600080fd5b5061032f61047a366004612a74565b6001600160a01b031660009081526020819052604090205490565b3480156104a157600080fd5b506103cf610911565b3480156104b657600080fd5b506103cf6104c5366004612a9f565b610925565b3480156104d657600080fd5b50600754610306906001600160a01b031681565b3480156104f657600080fd5b506103cf610505366004612a74565b610958565b34801561051657600080fd5b506103cf610525366004612ad8565b6109e0565b34801561053657600080fd5b506103cf610a36565b34801561054b57600080fd5b50600854610306906001600160a01b031681565b34801561056b57600080fd5b506005546001600160a01b0316610306565b34801561058957600080fd5b506103cf610598366004612a74565b610f25565b3480156105a957600080fd5b5061028c610fa4565b3480156105be57600080fd5b506103cf6105cd366004612b04565b610fb3565b3480156105de57600080fd5b506103cf6105ed366004612a74565b6110c8565b3480156105fe57600080fd5b506102c261060d3660046129ee565b61124b565b34801561061e57600080fd5b50600954610306906001600160a01b031681565b34801561063e57600080fd5b506102c261064d3660046129ee565b6112c6565b34801561065e57600080fd5b506103cf61066d366004612a74565b6112d4565b34801561067e57600080fd5b50600d546102c29060ff1681565b34801561069857600080fd5b506103cf6106a7366004612a9f565b611353565b3480156106b857600080fd5b506103cf6106c7366004612ad8565b6113ba565b3480156106d857600080fd5b5061032f600a5481565b3480156106ee57600080fd5b506103cf6106fd366004612b26565b611410565b34801561070e57600080fd5b506103cf61071d366004612a74565b611572565b34801561072e57600080fd5b506102c261073d366004612a5b565b6116fd565b34801561074e57600080fd5b5061032f600f5481565b34801561076457600080fd5b5061032f610773366004612bac565b61183d565b34801561078457600080fd5b5061032f600b5481565b34801561079a57600080fd5b506103cf6107a9366004612a74565b611868565b3480156107ba57600080fd5b506103cf6118de565b3480156107cf57600080fd5b5061032f600c5481565b3480156107e557600080fd5b506102c26107f4366004612a74565b6001600160a01b03166000908152600e602052604090205460ff1690565b60606003805461082190612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612bda565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000336108b2818585611928565b60019150505b92915050565b6000336108cc858285611a4c565b6108d7858585611ac0565b506001949350505050565b6000336108b28185856108f5838361183d565b6108ff9190612c2a565b611928565b61090e3382612283565b50565b6109196123b5565b610923600061240f565b565b61092d6123b5565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6109606123b5565b6001600160a01b03811661098f5760405162461bcd60e51b815260040161098690612c3d565b60405180910390fd5b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6109e86123b5565b60108390556011829055601281905580610a028385612c2a565b610a0c9190612c2a565b600f819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b505050565b610a3e6123b5565b600d5460ff1615610a915760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610986565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b159190612cab565b6001600160a01b031663e6a43905307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190612cab565b90506001600160a01b038116610dce577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca79190612cab565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da99190612cab565b600680546001600160a01b0319166001600160a01b0392909216919091179055610dea565b600680546001600160a01b0319166001600160a01b0383161790555b600654610e049030906001600160a01b0316600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9c9190612cc8565b50600654610eb4906001600160a01b03166001612461565b600654610ecb906001600160a01b03166001610925565b612710610ed760025490565b610ee2906019612ce5565b610eec9190612cfc565b600a55612710610efb60025490565b610f06906019612ce5565b610f109190612cfc565b600c5550600d805461ffff1916610101179055565b610f2d6123b5565b6001600160a01b038116610f535760405162461bcd60e51b815260040161098690612c3d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917fd9f1b13f8841b9b02650a923eba78c1b02083c52ef5b507c4cfe403c79dbd1b590600090a35050565b60606004805461082190612bda565b610fbb6123b5565b6103e8610fc760025490565b610fd2906005612ce5565b610fdc9190612cfc565b82101561103c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610986565b6103e861104860025490565b611053906005612ce5565b61105d9190612cfc565b8110156110c05760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610986565b600c55600a55565b6110d06123b5565b6001600160a01b03811661111d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610986565b600680546001600160a01b0319166001600160a01b038316908117909155611149903090600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af11580156111bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e19190612cc8565b506006546111f9906001600160a01b03166001612461565b600654611210906001600160a01b03166001610925565b6006546040516001600160a01b03909116907fb7285c945543323d6c77e154e51651bef3445a7d25101ce12e1fe37e418a5b8990600090a250565b60003381611259828661183d565b9050838110156112b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610986565b6108d78286868403611928565b6000336108b2818585611ac0565b6112dc6123b5565b6001600160a01b0381166113025760405162461bcd60e51b815260040161098690612c3d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61135b6123b5565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113c26123b5565b601483905560158290556016819055806113dc8385612c2a565b6113e69190612c2a565b6013819055601a819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b6114186123b5565b60005b8281101561156c576006546001600160a01b031684848381811061144157611441612d1e565b90506020020160208101906114569190612a74565b6001600160a01b0316141580156114c557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168484838181106114a4576114a4612d1e565b90506020020160208101906114b99190612a74565b6001600160a01b031614155b80156115005750308484838181106114df576114df612d1e565b90506020020160208101906114f49190612a74565b6001600160a01b031614155b1561155a5781600e600086868581811061151c5761151c612d1e565b90506020020160208101906115319190612a74565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061156481612d34565b91505061141b565b50505050565b61157a6123b5565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e59190612d4d565b1161161e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610986565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116899190612d4d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190612cc8565b60006117076123b5565b620186a061171460025490565b61171f906001612ce5565b6117299190612cfc565b82101561179e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610986565b6103e86117aa60025490565b6117b5906005612ce5565b6117bf9190612cfc565b8211156118345760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610986565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6118706123b5565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b61090e8161240f565b6118e66123b5565b604051600090339047908381818185875af1925050503d806000811461156c576040519150601f19603f3d011682016040523d82523d6000602084013e61156c565b6001600160a01b03831661198a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b6001600160a01b0382166119eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610986565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611a58848461183d565b9050600019811461156c5781811015611ab35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610986565b61156c8484848403611928565b6001600160a01b038316611ae65760405162461bcd60e51b815260040161098690612d66565b6001600160a01b038216611b0c5760405162461bcd60e51b815260040161098690612dab565b6001600160a01b0383166000908152600e602052604090205460ff1615611b455760405162461bcd60e51b815260040161098690612dee565b336000908152600e602052604090205460ff1615611b755760405162461bcd60e51b815260040161098690612dee565b326000908152600e602052604090205460ff1615611ba55760405162461bcd60e51b815260040161098690612dee565b80600003611bb957610a31838360006124b5565b6005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b15611f4957600d5460ff16611cc0576001600160a01b0383166000908152601b602052604090205460ff1680611c7457506001600160a01b0382166000908152601b602052604090205460ff165b611cc05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610986565b6001600160a01b0383166000908152601d602052604090205460ff168015611d0157506001600160a01b0382166000908152601c602052604090205460ff16155b15611df757600a54811115611d7e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610986565b600c546001600160a01b038316600090815260208190526040902054611da49083612c2a565b1115611df25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b611f49565b6001600160a01b0382166000908152601d602052604090205460ff168015611e3857506001600160a01b0383166000908152601c602052604090205460ff16155b15611eb557600a54811115611df25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610986565b6001600160a01b0382166000908152601c602052604090205460ff16611f4957600c546001600160a01b038316600090815260208190526040902054611efb9083612c2a565b1115611f495760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b30600090815260208190526040902054600b5481108015908190611f745750600d54610100900460ff165b8015611f8a5750600654600160a01b900460ff16155b8015611faf57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611fd457506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff957506001600160a01b0384166000908152601b602052604090205460ff16155b15612027576006805460ff60a01b1916600160a01b1790556120196125df565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061207557506001600160a01b0385166000908152601b602052604090205460ff165b1561207e575060005b60008115612269576001600160a01b0386166000908152601d602052604090205460ff1680156120b057506000601354115b1561216e576120d560646120cf601354886127ac90919063ffffffff16565b906127bf565b9050601354601654826120e89190612ce5565b6120f29190612cfc565b601960008282546121039190612c2a565b90915550506013546014546121189083612ce5565b6121229190612cfc565b601760008282546121339190612c2a565b90915550506013546015546121489083612ce5565b6121529190612cfc565b601860008282546121639190612c2a565b9091555061224b9050565b6001600160a01b0387166000908152601d602052604090205460ff16801561219857506000600f54115b1561224b576121b760646120cf600f54886127ac90919063ffffffff16565b9050600f54601254826121ca9190612ce5565b6121d49190612cfc565b601960008282546121e59190612c2a565b9091555050600f546010546121fa9083612ce5565b6122049190612cfc565b601760008282546122159190612c2a565b9091555050600f5460115461222a9083612ce5565b6122349190612cfc565b601860008282546122459190612c2a565b90915550505b801561225c5761225c8730836124b5565b6122668186612e1b565b94505b6122748787876124b5565b5050601a546013555050505050565b6001600160a01b0382166122e35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610986565b6001600160a01b038216600090815260208190526040902054818110156123575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610986565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146109235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610986565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124db5760405162461bcd60e51b815260040161098690612d66565b6001600160a01b0382166125015760405162461bcd60e51b815260040161098690612dab565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610986565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361156c565b30600090815260208190526040812054905060006018546017546019546126069190612c2a565b6126109190612c2a565b9050600082158061261f575081155b1561262957505050565b600b54612637906014612ce5565b83111561264f57600b5461264c906014612ce5565b92505b612658836127cb565b60004790506000612678846120cf601854856127ac90919063ffffffff16565b90506000612695856120cf601954866127ac90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461279c576040519150601f19603f3d011682016040523d82523d6000602084013e6127a1565b606091505b505050505050505050565b60006127b88284612ce5565b9392505050565b60006127b88284612cfc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061280057612800612d1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a29190612cab565b816001815181106128b5576128b5612d1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612900307f000000000000000000000000000000000000000000000000000000000000000084611928565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612955908590600090869030904290600401612e2e565b600060405180830381600087803b15801561296f57600080fd5b505af1158015612983573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129b85785810183015185820160400152820161299c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461090e57600080fd5b60008060408385031215612a0157600080fd5b8235612a0c816129d9565b946020939093013593505050565b600080600060608486031215612a2f57600080fd5b8335612a3a816129d9565b92506020840135612a4a816129d9565b929592945050506040919091013590565b600060208284031215612a6d57600080fd5b5035919050565b600060208284031215612a8657600080fd5b81356127b8816129d9565b801515811461090e57600080fd5b60008060408385031215612ab257600080fd5b8235612abd816129d9565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1757600080fd5b50508035926020909101359150565b600080600060408486031215612b3b57600080fd5b833567ffffffffffffffff80821115612b5357600080fd5b818601915086601f830112612b6757600080fd5b813581811115612b7657600080fd5b8760208260051b8501011115612b8b57600080fd5b60209283019550935050840135612ba181612a91565b809150509250925092565b60008060408385031215612bbf57600080fd5b8235612bca816129d9565b91506020830135612acd816129d9565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b8576108b8612c14565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612cbd57600080fd5b81516127b8816129d9565b600060208284031215612cda57600080fd5b81516127b881612a91565b80820281158282048414176108b8576108b8612c14565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4657612d46612c14565b5060010190565b600060208284031215612d5f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b818103818111156108b8576108b8612c14565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e7e5784516001600160a01b031683529383019391830191600101612e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e56ac4ae31ace1015ca352ecd7f95456017fde8003f73985f32ea44b7f42e80964736f6c63430008110033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80639422cbe111610144578063c8c8ebe4116100b6578063dd62ed3e1161007a578063dd62ed3e14610758578063e2f4560514610778578063f2fde38b1461078e578063f5648a4f146107ae578063f8b45b05146107c3578063fe575a87146107d957600080fd5b8063c8c8ebe4146106cc578063c997eb8d146106e2578063cb96372814610702578063d257b34f14610722578063d85ba0631461074257600080fd5b8063a66162ed11610108578063a66162ed14610612578063a9059cbb14610632578063aacebbe314610652578063bbc0c74214610672578063c02466681461068c578063c17b5b8c146106ac57600080fd5b80639422cbe11461057d57806395d89b411461059d57806396188399146105b2578063a29a6089146105d2578063a457c2d7146105f257600080fd5b80636a486a8e116101dd57806375f0a874116101a157806375f0a874146104ca5780637b8e4fea146104ea5780638095d5641461050a5780638a8c523c1461052a5780638ad60c3d1461053f5780638da5cb5b1461055f57600080fd5b80636a486a8e1461042a5780636ddd17131461044057806370a082311461045f578063715018a6146104955780637571336a146104aa57600080fd5b806327c8f8351161022f57806327c8f8351461035d578063313ce56714610373578063395093511461038f57806342966c68146103af57806349bd5a5e146103d15780634fbee193146103f157600080fd5b806306fdde0314610277578063095ea7b3146102a25780631694505e146102d257806318160ddd1461031e57806323b872dd1461033d57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b604051610299919061298b565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046129ee565b6108a4565b6040519015158152602001610299565b3480156102de57600080fd5b506103067f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561032a57600080fd5b506002545b604051908152602001610299565b34801561034957600080fd5b506102c2610358366004612a1a565b6108be565b34801561036957600080fd5b5061030661dead81565b34801561037f57600080fd5b5060405160128152602001610299565b34801561039b57600080fd5b506102c26103aa3660046129ee565b6108e2565b3480156103bb57600080fd5b506103cf6103ca366004612a5b565b610904565b005b3480156103dd57600080fd5b50600654610306906001600160a01b031681565b3480156103fd57600080fd5b506102c261040c366004612a74565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561043657600080fd5b5061032f60135481565b34801561044c57600080fd5b50600d546102c290610100900460ff1681565b34801561046b57600080fd5b5061032f61047a366004612a74565b6001600160a01b031660009081526020819052604090205490565b3480156104a157600080fd5b506103cf610911565b3480156104b657600080fd5b506103cf6104c5366004612a9f565b610925565b3480156104d657600080fd5b50600754610306906001600160a01b031681565b3480156104f657600080fd5b506103cf610505366004612a74565b610958565b34801561051657600080fd5b506103cf610525366004612ad8565b6109e0565b34801561053657600080fd5b506103cf610a36565b34801561054b57600080fd5b50600854610306906001600160a01b031681565b34801561056b57600080fd5b506005546001600160a01b0316610306565b34801561058957600080fd5b506103cf610598366004612a74565b610f25565b3480156105a957600080fd5b5061028c610fa4565b3480156105be57600080fd5b506103cf6105cd366004612b04565b610fb3565b3480156105de57600080fd5b506103cf6105ed366004612a74565b6110c8565b3480156105fe57600080fd5b506102c261060d3660046129ee565b61124b565b34801561061e57600080fd5b50600954610306906001600160a01b031681565b34801561063e57600080fd5b506102c261064d3660046129ee565b6112c6565b34801561065e57600080fd5b506103cf61066d366004612a74565b6112d4565b34801561067e57600080fd5b50600d546102c29060ff1681565b34801561069857600080fd5b506103cf6106a7366004612a9f565b611353565b3480156106b857600080fd5b506103cf6106c7366004612ad8565b6113ba565b3480156106d857600080fd5b5061032f600a5481565b3480156106ee57600080fd5b506103cf6106fd366004612b26565b611410565b34801561070e57600080fd5b506103cf61071d366004612a74565b611572565b34801561072e57600080fd5b506102c261073d366004612a5b565b6116fd565b34801561074e57600080fd5b5061032f600f5481565b34801561076457600080fd5b5061032f610773366004612bac565b61183d565b34801561078457600080fd5b5061032f600b5481565b34801561079a57600080fd5b506103cf6107a9366004612a74565b611868565b3480156107ba57600080fd5b506103cf6118de565b3480156107cf57600080fd5b5061032f600c5481565b3480156107e557600080fd5b506102c26107f4366004612a74565b6001600160a01b03166000908152600e602052604090205460ff1690565b60606003805461082190612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612bda565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000336108b2818585611928565b60019150505b92915050565b6000336108cc858285611a4c565b6108d7858585611ac0565b506001949350505050565b6000336108b28185856108f5838361183d565b6108ff9190612c2a565b611928565b61090e3382612283565b50565b6109196123b5565b610923600061240f565b565b61092d6123b5565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6109606123b5565b6001600160a01b03811661098f5760405162461bcd60e51b815260040161098690612c3d565b60405180910390fd5b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6109e86123b5565b60108390556011829055601281905580610a028385612c2a565b610a0c9190612c2a565b600f819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b505050565b610a3e6123b5565b600d5460ff1615610a915760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610986565b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b159190612cab565b6001600160a01b031663e6a43905307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190612cab565b90506001600160a01b038116610dce577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca79190612cab565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da99190612cab565b600680546001600160a01b0319166001600160a01b0392909216919091179055610dea565b600680546001600160a01b0319166001600160a01b0383161790555b600654610e049030906001600160a01b0316600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9c9190612cc8565b50600654610eb4906001600160a01b03166001612461565b600654610ecb906001600160a01b03166001610925565b612710610ed760025490565b610ee2906019612ce5565b610eec9190612cfc565b600a55612710610efb60025490565b610f06906019612ce5565b610f109190612cfc565b600c5550600d805461ffff1916610101179055565b610f2d6123b5565b6001600160a01b038116610f535760405162461bcd60e51b815260040161098690612c3d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917fd9f1b13f8841b9b02650a923eba78c1b02083c52ef5b507c4cfe403c79dbd1b590600090a35050565b60606004805461082190612bda565b610fbb6123b5565b6103e8610fc760025490565b610fd2906005612ce5565b610fdc9190612cfc565b82101561103c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610986565b6103e861104860025490565b611053906005612ce5565b61105d9190612cfc565b8110156110c05760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610986565b600c55600a55565b6110d06123b5565b6001600160a01b03811661111d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610986565b600680546001600160a01b0319166001600160a01b038316908117909155611149903090600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af11580156111bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e19190612cc8565b506006546111f9906001600160a01b03166001612461565b600654611210906001600160a01b03166001610925565b6006546040516001600160a01b03909116907fb7285c945543323d6c77e154e51651bef3445a7d25101ce12e1fe37e418a5b8990600090a250565b60003381611259828661183d565b9050838110156112b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610986565b6108d78286868403611928565b6000336108b2818585611ac0565b6112dc6123b5565b6001600160a01b0381166113025760405162461bcd60e51b815260040161098690612c3d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61135b6123b5565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113c26123b5565b601483905560158290556016819055806113dc8385612c2a565b6113e69190612c2a565b6013819055601a819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b6114186123b5565b60005b8281101561156c576006546001600160a01b031684848381811061144157611441612d1e565b90506020020160208101906114569190612a74565b6001600160a01b0316141580156114c557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03168484838181106114a4576114a4612d1e565b90506020020160208101906114b99190612a74565b6001600160a01b031614155b80156115005750308484838181106114df576114df612d1e565b90506020020160208101906114f49190612a74565b6001600160a01b031614155b1561155a5781600e600086868581811061151c5761151c612d1e565b90506020020160208101906115319190612a74565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061156481612d34565b91505061141b565b50505050565b61157a6123b5565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e59190612d4d565b1161161e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610986565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116899190612d4d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190612cc8565b60006117076123b5565b620186a061171460025490565b61171f906001612ce5565b6117299190612cfc565b82101561179e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610986565b6103e86117aa60025490565b6117b5906005612ce5565b6117bf9190612cfc565b8211156118345760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610986565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6118706123b5565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b61090e8161240f565b6118e66123b5565b604051600090339047908381818185875af1925050503d806000811461156c576040519150601f19603f3d011682016040523d82523d6000602084013e61156c565b6001600160a01b03831661198a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b6001600160a01b0382166119eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610986565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611a58848461183d565b9050600019811461156c5781811015611ab35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610986565b61156c8484848403611928565b6001600160a01b038316611ae65760405162461bcd60e51b815260040161098690612d66565b6001600160a01b038216611b0c5760405162461bcd60e51b815260040161098690612dab565b6001600160a01b0383166000908152600e602052604090205460ff1615611b455760405162461bcd60e51b815260040161098690612dee565b336000908152600e602052604090205460ff1615611b755760405162461bcd60e51b815260040161098690612dee565b326000908152600e602052604090205460ff1615611ba55760405162461bcd60e51b815260040161098690612dee565b80600003611bb957610a31838360006124b5565b6005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b15611f4957600d5460ff16611cc0576001600160a01b0383166000908152601b602052604090205460ff1680611c7457506001600160a01b0382166000908152601b602052604090205460ff165b611cc05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610986565b6001600160a01b0383166000908152601d602052604090205460ff168015611d0157506001600160a01b0382166000908152601c602052604090205460ff16155b15611df757600a54811115611d7e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610986565b600c546001600160a01b038316600090815260208190526040902054611da49083612c2a565b1115611df25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b611f49565b6001600160a01b0382166000908152601d602052604090205460ff168015611e3857506001600160a01b0383166000908152601c602052604090205460ff16155b15611eb557600a54811115611df25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610986565b6001600160a01b0382166000908152601c602052604090205460ff16611f4957600c546001600160a01b038316600090815260208190526040902054611efb9083612c2a565b1115611f495760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b30600090815260208190526040902054600b5481108015908190611f745750600d54610100900460ff165b8015611f8a5750600654600160a01b900460ff16155b8015611faf57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611fd457506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff957506001600160a01b0384166000908152601b602052604090205460ff16155b15612027576006805460ff60a01b1916600160a01b1790556120196125df565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061207557506001600160a01b0385166000908152601b602052604090205460ff165b1561207e575060005b60008115612269576001600160a01b0386166000908152601d602052604090205460ff1680156120b057506000601354115b1561216e576120d560646120cf601354886127ac90919063ffffffff16565b906127bf565b9050601354601654826120e89190612ce5565b6120f29190612cfc565b601960008282546121039190612c2a565b90915550506013546014546121189083612ce5565b6121229190612cfc565b601760008282546121339190612c2a565b90915550506013546015546121489083612ce5565b6121529190612cfc565b601860008282546121639190612c2a565b9091555061224b9050565b6001600160a01b0387166000908152601d602052604090205460ff16801561219857506000600f54115b1561224b576121b760646120cf600f54886127ac90919063ffffffff16565b9050600f54601254826121ca9190612ce5565b6121d49190612cfc565b601960008282546121e59190612c2a565b9091555050600f546010546121fa9083612ce5565b6122049190612cfc565b601760008282546122159190612c2a565b9091555050600f5460115461222a9083612ce5565b6122349190612cfc565b601860008282546122459190612c2a565b90915550505b801561225c5761225c8730836124b5565b6122668186612e1b565b94505b6122748787876124b5565b5050601a546013555050505050565b6001600160a01b0382166122e35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610986565b6001600160a01b038216600090815260208190526040902054818110156123575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610986565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146109235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610986565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124db5760405162461bcd60e51b815260040161098690612d66565b6001600160a01b0382166125015760405162461bcd60e51b815260040161098690612dab565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610986565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361156c565b30600090815260208190526040812054905060006018546017546019546126069190612c2a565b6126109190612c2a565b9050600082158061261f575081155b1561262957505050565b600b54612637906014612ce5565b83111561264f57600b5461264c906014612ce5565b92505b612658836127cb565b60004790506000612678846120cf601854856127ac90919063ffffffff16565b90506000612695856120cf601954866127ac90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461279c576040519150601f19603f3d011682016040523d82523d6000602084013e6127a1565b606091505b505050505050505050565b60006127b88284612ce5565b9392505050565b60006127b88284612cfc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061280057612800612d1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a29190612cab565b816001815181106128b5576128b5612d1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612900307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611928565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612955908590600090869030904290600401612e2e565b600060405180830381600087803b15801561296f57600080fd5b505af1158015612983573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129b85785810183015185820160400152820161299c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461090e57600080fd5b60008060408385031215612a0157600080fd5b8235612a0c816129d9565b946020939093013593505050565b600080600060608486031215612a2f57600080fd5b8335612a3a816129d9565b92506020840135612a4a816129d9565b929592945050506040919091013590565b600060208284031215612a6d57600080fd5b5035919050565b600060208284031215612a8657600080fd5b81356127b8816129d9565b801515811461090e57600080fd5b60008060408385031215612ab257600080fd5b8235612abd816129d9565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1757600080fd5b50508035926020909101359150565b600080600060408486031215612b3b57600080fd5b833567ffffffffffffffff80821115612b5357600080fd5b818601915086601f830112612b6757600080fd5b813581811115612b7657600080fd5b8760208260051b8501011115612b8b57600080fd5b60209283019550935050840135612ba181612a91565b809150509250925092565b60008060408385031215612bbf57600080fd5b8235612bca816129d9565b91506020830135612acd816129d9565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b8576108b8612c14565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612cbd57600080fd5b81516127b8816129d9565b600060208284031215612cda57600080fd5b81516127b881612a91565b80820281158282048414176108b8576108b8612c14565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4657612d46612c14565b5060010190565b600060208284031215612d5f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b818103818111156108b8576108b8612c14565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e7e5784516001600160a01b031683529383019391830191600101612e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e56ac4ae31ace1015ca352ecd7f95456017fde8003f73985f32ea44b7f42e80964736f6c63430008110033

Deployed Bytecode Sourcemap

35930:16382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13166:242;;;;;;;;;;-1:-1:-1;13166:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13166:242:0;1023:187:1;36007:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;36007:51:0;1215:230:1;11794:108:0;;;;;;;;;;-1:-1:-1;11882:12:0;;11794:108;;;1596:25:1;;;1584:2;1569:18;11794:108:0;1450:177:1;13988:295:0;;;;;;;;;;-1:-1:-1;13988:295:0;;;;;:::i;:::-;;:::i;36100:53::-;;;;;;;;;;;;36146:6;36100:53;;11636:93;;;;;;;;;;-1:-1:-1;11636:93:0;;11719:2;2443:36:1;;2431:2;2416:18;11636:93:0;2301:184:1;14692:270:0;;;;;;;;;;-1:-1:-1;14692:270:0;;;;;:::i;:::-;;:::i;39958:83::-;;;;;;;;;;-1:-1:-1;39958:83:0;;;;;:::i;:::-;;:::i;:::-;;36065:28;;;;;;;;;;-1:-1:-1;36065:28:0;;;;-1:-1:-1;;;;;36065:28:0;;;46356:126;;;;;;;;;;-1:-1:-1;46356:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;46446:28:0;46422:4;46446:28;;;:19;:28;;;;;;;;;46356:126;36764:28;;;;;;;;;;;;;;;;36467:31;;;;;;;;;;-1:-1:-1;36467:31:0;;;;;;;;;;;11965:177;;;;;;;;;;-1:-1:-1;11965:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;12116:18:0;12084:7;12116:18;;;;;;;;;;;;11965:177;4045:103;;;;;;;;;;;;;:::i;42847:167::-;;;;;;;;;;-1:-1:-1;42847:167:0;;;;;:::i;:::-;;:::i;36192:30::-;;;;;;;;;;-1:-1:-1;36192:30:0;;;;-1:-1:-1;;;;;36192:30:0;;;44390:324;;;;;;;;;;-1:-1:-1;44390:324:0;;;;;:::i;:::-;;:::i;43022:462::-;;;;;;;;;;-1:-1:-1;43022:462:0;;;;;:::i;:::-;;:::i;40052:1241::-;;;;;;;;;;;;;:::i;36229:32::-;;;;;;;;;;-1:-1:-1;36229:32:0;;;;-1:-1:-1;;;;;36229:32:0;;;3404:87;;;;;;;;;;-1:-1:-1;3477:6:0;;-1:-1:-1;;;;;3477:6:0;3404:87;;44722:374;;;;;;;;;;-1:-1:-1;44722:374:0;;;;;:::i;:::-;;:::i;10884:104::-;;;;;;;;;;;;;:::i;42332:507::-;;;;;;;;;;-1:-1:-1;42332:507:0;;;;;:::i;:::-;;:::i;41297:506::-;;;;;;;;;;-1:-1:-1;41297:506:0;;;;;:::i;:::-;;:::i;15465:505::-;;;;;;;;;;-1:-1:-1;15465:505:0;;;;;:::i;:::-;;:::i;36268:35::-;;;;;;;;;;-1:-1:-1;36268:35:0;;;;-1:-1:-1;;;;;36268:35:0;;;12348:234;;;;;;;;;;-1:-1:-1;12348:234:0;;;;;:::i;:::-;;:::i;44048:334::-;;;;;;;;;;-1:-1:-1;44048:334:0;;;;;:::i;:::-;;:::i;36427:33::-;;;;;;;;;;-1:-1:-1;36427:33:0;;;;;;;;45104:182;;;;;;;;;;-1:-1:-1;45104:182:0;;;;;:::i;:::-;;:::i;43492:548::-;;;;;;;;;;-1:-1:-1;43492:548:0;;;;;:::i;:::-;;:::i;36312:35::-;;;;;;;;;;;;;;;;45294:404;;;;;;;;;;-1:-1:-1;45294:404:0;;;;;:::i;:::-;;:::i;45897:255::-;;;;;;;;;;-1:-1:-1;45897:255:0;;;;;:::i;:::-;;:::i;41813:511::-;;;;;;;;;;-1:-1:-1;41813:511:0;;;;;:::i;:::-;;:::i;36607:27::-;;;;;;;;;;;;;;;;12645:201;;;;;;;;;;-1:-1:-1;12645:201:0;;;;;:::i;:::-;;:::i;36354:33::-;;;;;;;;;;;;;;;;4303:238;;;;;;;;;;-1:-1:-1;4303:238:0;;;;;:::i;:::-;;:::i;45706:183::-;;;;;;;;;;;;;:::i;36394:24::-;;;;;;;;;;;;;;;;46490:113;;;;;;;;;;-1:-1:-1;46490:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;46575:20:0;46551:4;46575:20;;;:11;:20;;;;;;;;;46490:113;10665:100;10719:13;10752:5;10745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10665:100;:::o;13166:242::-;13285:4;2029:10;13346:32;2029:10;13362:7;13371:6;13346:8;:32::i;:::-;13396:4;13389:11;;;13166:242;;;;;:::o;13988:295::-;14119:4;2029:10;14177:38;14193:4;2029:10;14208:6;14177:15;:38::i;:::-;14226:27;14236:4;14242:2;14246:6;14226:9;:27::i;:::-;-1:-1:-1;14271:4:0;;13988:295;-1:-1:-1;;;;13988:295:0:o;14692:270::-;14807:4;2029:10;14868:64;2029:10;14884:7;14921:10;14893:25;2029:10;14884:7;14893:9;:25::i;:::-;:38;;;;:::i;:::-;14868:8;:64::i;39958:83::-;40008:25;40014:10;40026:6;40008:5;:25::i;:::-;39958:83;:::o;4045:103::-;3290:13;:11;:13::i;:::-;4110:30:::1;4137:1;4110:18;:30::i;:::-;4045:103::o:0;42847:167::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;42960:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;42960:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42847:167::o;44390:324::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;44489:32:0;::::1;44481:61;;;;-1:-1:-1::0;;;44481:61:0::1;;;;;;;:::i;:::-;;;;;;;;;44573:17;::::0;;-1:-1:-1;;;;;44601:38:0;;::::1;-1:-1:-1::0;;;;;;44601:38:0;::::1;::::0;::::1;::::0;;;44655:51:::1;::::0;44573:17;::::1;::::0;;;44655:51:::1;::::0;44553:17:::1;::::0;44655:51:::1;44470:244;44390:324:::0;:::o;43022:462::-;3290:13;:11;:13::i;:::-;43185:15:::1;:31:::0;;;43227:17:::1;:35:::0;;;43273:20:::1;:41:::0;;;43296:18;43340:35:::1;43247:15:::0;43203:13;43340:35:::1;:::i;:::-;:58;;;;:::i;:::-;43325:12;:73:::0;;;43433:2:::1;-1:-1:-1::0;43417:18:0::1;43409:67;;;;-1:-1:-1::0;;;43409:67:0::1;;;;;;;:::i;:::-;43022:462:::0;;;:::o;40052:1241::-;3290:13;:11;:13::i;:::-;40116::::1;::::0;::::1;;40115:14;40107:50;;;::::0;-1:-1:-1;;;40107:50:0;;6758:2:1;40107:50:0::1;::::0;::::1;6740:21:1::0;6797:2;6777:18;;;6770:30;6836:25;6816:18;;;6809:53;6879:18;;40107:50:0::1;6556:347:1::0;40107:50:0::1;40215:20;40256:15;-1:-1:-1::0;;;;;40256:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40238:52:0::1;;40313:4;40333:15;-1:-1:-1::0;;;;;40333:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40238:128;::::0;-1:-1:-1;;;;;;40238:128:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;40238:128:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;40238:128:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40215:151:::0;-1:-1:-1;;;;;;40383:26:0;::::1;40379:392;;40514:15;-1:-1:-1::0;;;;;40514:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40496:55:0::1;;40578:4;40602:15;-1:-1:-1::0;;;;;40602:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40496:143;::::0;-1:-1:-1;;;;;;40496:143:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;40496:143:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;40496:143:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40480:13;:159:::0;;-1:-1:-1;;;;;;40480:159:0::1;-1:-1:-1::0;;;;;40480:159:0;;;::::1;::::0;;;::::1;::::0;;40379:392:::1;;;40731:13;:28:::0;;-1:-1:-1;;;;;;40731:28:0::1;-1:-1:-1::0;;;;;40731:28:0;::::1;;::::0;;40379:392:::1;40815:13;::::0;40783:66:::1;::::0;40800:4:::1;::::0;-1:-1:-1;;;;;40815:13:0::1;-1:-1:-1::0;;40783:8:0::1;:66::i;:::-;40867:13;::::0;40860:111:::1;::::0;-1:-1:-1;;;40860:111:0;;-1:-1:-1;;;;;40912:15:0::1;7665:32:1::0;;40860:111:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;40867:13:0;;::::1;::::0;40860:29:::1;::::0;7620:18:1;;40860:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;41021:13:0::1;::::0;40984:58:::1;::::0;-1:-1:-1;;;;;41021:13:0::1;::::0;40984:28:::1;:58::i;:::-;41087:13;::::0;41053:55:::1;::::0;-1:-1:-1;;;;;41087:13:0::1;::::0;41053:25:::1;:55::i;:::-;41167:5;41145:13;11882:12:::0;;;11794:108;41145:13:::1;:18;::::0;41161:2:::1;41145:18;:::i;:::-;41144:28;;;;:::i;:::-;41121:20;:51:::0;41218:5:::1;41196:13;11882:12:::0;;;11794:108;41196:13:::1;:18;::::0;41212:2:::1;41196:18;:::i;:::-;41195:28;;;;:::i;:::-;41183:9;:40:::0;-1:-1:-1;41236:13:0::1;:20:::0;;-1:-1:-1;;41267:18:0;;;;;40052:1241::o;44722:374::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;44850:35:0;::::1;44842:64;;;;-1:-1:-1::0;;;44842:64:0::1;;;;;;;:::i;:::-;44937:20;::::0;;-1:-1:-1;;;;;44968:44:0;;::::1;-1:-1:-1::0;;;;;;44968:44:0;::::1;::::0;::::1;::::0;;;45028:60:::1;::::0;44937:20;::::1;::::0;;;45028:60:::1;::::0;44917:17:::1;::::0;45028:60:::1;44831:265;44722:374:::0;:::o;10884:104::-;10940:13;10973:7;10966:14;;;;;:::i;42332:507::-;3290:13;:11;:13::i;:::-;42526:4:::1;42505:13;11882:12:::0;;;11794:108;42505:13:::1;:17;::::0;42521:1:::1;42505:17;:::i;:::-;42504:26;;;;:::i;:::-;42490:9;:41;;42468:131;;;::::0;-1:-1:-1;;;42468:131:0;;8599:2:1;42468:131:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;-1:-1:-1;;;8728:18:1;;;8721:38;8776:19;;42468:131:0::1;8397:404:1::0;42468:131:0::1;42674:4;42653:13;11882:12:::0;;;11794:108;42653:13:::1;:17;::::0;42669:1:::1;42653:17;:::i;:::-;42652:26;;;;:::i;:::-;42632:15;:47;;42610:140;;;::::0;-1:-1:-1;;;42610:140:0;;9008:2:1;42610:140:0::1;::::0;::::1;8990:21:1::0;9047:2;9027:18;;;9020:30;9086:34;9066:18;;;9059:62;-1:-1:-1;;;9137:18:1;;;9130:41;9188:19;;42610:140:0::1;8806:407:1::0;42610:140:0::1;42761:9;:27:::0;42799:20:::1;:32:::0;42332:507::o;41297:506::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;41372:19:0;::::1;41364:52;;;::::0;-1:-1:-1;;;41364:52:0;;9420:2:1;41364:52:0::1;::::0;::::1;9402:21:1::0;9459:2;9439:18;;;9432:30;-1:-1:-1;;;9478:18:1;;;9471:50;9538:18;;41364:52:0::1;9218:344:1::0;41364:52:0::1;41423:13;:21:::0;;-1:-1:-1;;;;;;41423:21:0::1;-1:-1:-1::0;;;;;41423:21:0;::::1;::::0;;::::1;::::0;;;41453:66:::1;::::0;41470:4:::1;::::0;-1:-1:-1;;41453:8:0::1;:66::i;:::-;41533:13;::::0;41526:99:::1;::::0;-1:-1:-1;;;41526:99:0;;-1:-1:-1;;;;;41574:15:0::1;7665:32:1::0;;41526:99:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;41533:13:0;;::::1;::::0;41526:29:::1;::::0;7620:18:1;;41526:99:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;41671:13:0::1;::::0;41634:58:::1;::::0;-1:-1:-1;;;;;41671:13:0::1;::::0;41634:28:::1;:58::i;:::-;41733:13;::::0;41699:55:::1;::::0;-1:-1:-1;;;;;41733:13:0::1;::::0;41699:25:::1;:55::i;:::-;41785:13;::::0;41768:31:::1;::::0;-1:-1:-1;;;;;41785:13:0;;::::1;::::0;41768:31:::1;::::0;41785:13:::1;::::0;41768:31:::1;41297:506:::0;:::o;15465:505::-;15585:4;2029:10;15585:4;15673:25;2029:10;15690:7;15673:9;:25::i;:::-;15646:52;;15751:15;15731:16;:35;;15709:122;;;;-1:-1:-1;;;15709:122:0;;9769:2:1;15709:122:0;;;9751:21:1;9808:2;9788:18;;;9781:30;9847:34;9827:18;;;9820:62;-1:-1:-1;;;9898:18:1;;;9891:35;9943:19;;15709:122:0;9567:401:1;15709:122:0;15867:60;15876:5;15883:7;15911:15;15892:16;:34;15867:8;:60::i;12348:234::-;12463:4;2029:10;12524:28;2029:10;12541:2;12545:6;12524:9;:28::i;44048:334::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;44166:30:0;::::1;44158:59;;;;-1:-1:-1::0;;;44158:59:0::1;;;;;;;:::i;:::-;44248:15;::::0;;-1:-1:-1;;;;;44274:34:0;;::::1;-1:-1:-1::0;;;;;;44274:34:0;::::1;::::0;::::1;::::0;;;44324:50:::1;::::0;44248:15;::::1;::::0;;;44324:50:::1;::::0;44228:17:::1;::::0;44324:50:::1;44147:235;44048:334:::0;:::o;45104:182::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;45189:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45189:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45244:34;;1163:41:1;;;45244:34:0::1;::::0;1136:18:1;45244:34:0::1;;;;;;;45104:182:::0;;:::o;43492:548::-;3290:13;:11;:13::i;:::-;43656:16:::1;:32:::0;;;43699:18:::1;:36:::0;;;43746:21:::1;:42:::0;;;43770:18;43828:50:::1;43720:15:::0;43675:13;43828:50:::1;:::i;:::-;:87;;;;:::i;:::-;43799:13;:116:::0;;;43926:11:::1;:27:::0;;;43989:2:::1;-1:-1:-1::0;43972:19:0::1;43964:68;;;;-1:-1:-1::0;;;43964:68:0::1;;;;;;;:::i;45294:404::-:0;3290:13;:11;:13::i;:::-;45410:9:::1;45405:286;45425:19:::0;;::::1;45405:286;;;45504:13;::::0;-1:-1:-1;;;;;45504:13:0::1;45489:8:::0;;45498:1;45489:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45489:28:0::1;;;45488:92;;;;;45563:15;-1:-1:-1::0;;;;;45540:39:0::1;:8;;45549:1;45540:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45540:39:0::1;;;45488:92;:143;;;;-1:-1:-1::0;45625:4:0::1;45602:8:::0;;45611:1;45602:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45602:28:0::1;;;45488:143;45466:213;;;45674:5;45647:11;:24;45659:8;;45668:1;45659:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45647:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45647:24:0;:32;;-1:-1:-1;;45647:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45466:213:::1;45446:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45405:286;;;;45294:404:::0;;;:::o;45897:255::-;3290:13;:11;:13::i;:::-;45975:36:::1;::::0;-1:-1:-1;;;45975:36:0;;46005:4:::1;45975:36;::::0;::::1;1388:51:1::0;46014:1:0::1;::::0;-1:-1:-1;;;;;45975:21:0;::::1;::::0;::::1;::::0;1361:18:1;;45975:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;45967:62;;;::::0;-1:-1:-1;;;45967:62:0;;10636:2:1;45967:62:0::1;::::0;::::1;10618:21:1::0;10675:1;10655:18;;;10648:29;-1:-1:-1;;;10693:18:1;;;10686:39;10742:18;;45967:62:0::1;10434:332:1::0;45967:62:0::1;46057:36;::::0;-1:-1:-1;;;46057:36:0;;46087:4:::1;46057:36;::::0;::::1;1388:51:1::0;46040:14:0::1;::::0;-1:-1:-1;;;;;46057:21:0;::::1;::::0;::::1;::::0;1361:18:1;;46057:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46104:40;::::0;-1:-1:-1;;;46104:40:0;;46125:10:::1;46104:40;::::0;::::1;7647:51:1::0;7714:18;;;7707:34;;;46040:53:0;;-1:-1:-1;;;;;;46104:20:0;::::1;::::0;::::1;::::0;7620:18:1;;46104:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41813:511::-:0;41921:4;3290:13;:11;:13::i;:::-;42000:6:::1;41979:13;11882:12:::0;;;11794:108;41979:13:::1;:17;::::0;41995:1:::1;41979:17;:::i;:::-;41978:28;;;;:::i;:::-;41965:9;:41;;41943:151;;;::::0;-1:-1:-1;;;41943:151:0;;10973:2:1;41943:151:0::1;::::0;::::1;10955:21:1::0;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11122:30;11102:18;;;11095:58;11170:19;;41943:151:0::1;10771:424:1::0;41943:151:0::1;42162:4;42141:13;11882:12:::0;;;11794:108;42141:13:::1;:17;::::0;42157:1:::1;42141:17;:::i;:::-;42140:26;;;;:::i;:::-;42127:9;:39;;42105:148;;;::::0;-1:-1:-1;;;42105:148:0;;11402:2:1;42105:148:0::1;::::0;::::1;11384:21:1::0;11441:2;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;11551:29;11531:18;;;11524:57;11598:19;;42105:148:0::1;11200:423:1::0;42105:148:0::1;-1:-1:-1::0;42264:18:0::1;:30:::0;42312:4:::1;::::0;41813:511::o;12645:201::-;-1:-1:-1;;;;;12811:18:0;;;12779:7;12811:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12645:201::o;4303:238::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;4406:22:0;::::1;4384:110;;;::::0;-1:-1:-1;;;4384:110:0;;11830:2:1;4384:110:0::1;::::0;::::1;11812:21:1::0;11869:2;11849:18;;;11842:30;11908:34;11888:18;;;11881:62;-1:-1:-1;;;11959:18:1;;;11952:36;12005:19;;4384:110:0::1;11628:402:1::0;4384:110:0::1;4505:28;4524:8;4505:18;:28::i;45706:183::-:0;3290:13;:11;:13::i;:::-;45799:82:::1;::::0;45762:12:::1;::::0;45807:10:::1;::::0;45831:21:::1;::::0;45762:12;45799:82;45762:12;45799:82;45831:21;45807:10;45799:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19598:380:::0;-1:-1:-1;;;;;19734:19:0;;19726:68;;;;-1:-1:-1;;;19726:68:0;;12447:2:1;19726:68:0;;;12429:21:1;12486:2;12466:18;;;12459:30;12525:34;12505:18;;;12498:62;-1:-1:-1;;;12576:18:1;;;12569:34;12620:19;;19726:68:0;12245:400:1;19726:68:0;-1:-1:-1;;;;;19813:21:0;;19805:68;;;;-1:-1:-1;;;19805:68:0;;12852:2:1;19805:68:0;;;12834:21:1;12891:2;12871:18;;;12864:30;12930:34;12910:18;;;12903:62;-1:-1:-1;;;12981:18:1;;;12974:32;13023:19;;19805:68:0;12650:398:1;19805:68:0;-1:-1:-1;;;;;19886:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19938:32;;1596:25:1;;;19938:32:0;;1569:18:1;19938:32:0;;;;;;;19598:380;;;:::o;20269:502::-;20404:24;20431:25;20441:5;20448:7;20431:9;:25::i;:::-;20404:52;;-1:-1:-1;;20471:16:0;:37;20467:297;;20571:6;20551:16;:26;;20525:117;;;;-1:-1:-1;;;20525:117:0;;13255:2:1;20525:117:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:31;13313:18;;;13306:59;13382:18;;20525:117:0;13053:353:1;20525:117:0;20686:51;20695:5;20702:7;20730:6;20711:16;:25;20686:8;:51::i;46611:3944::-;-1:-1:-1;;;;;46743:18:0;;46735:68;;;;-1:-1:-1;;;46735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46822:16:0;;46814:64;;;;-1:-1:-1;;;46814:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46898:17:0;;;;;;:11;:17;;;;;;;;46897:18;46889:50;;;;-1:-1:-1;;;46889:50:0;;;;;;;:::i;:::-;46971:10;46959:23;;;;:11;:23;;;;;;;;46958:24;46950:56;;;;-1:-1:-1;;;46950:56:0;;;;;;;:::i;:::-;47038:9;47026:22;;;;:11;:22;;;;;;;;47025:23;47017:55;;;;-1:-1:-1;;;47017:55:0;;;;;;;:::i;:::-;47089:6;47099:1;47089:11;47085:93;;47117:28;47133:4;47139:2;47143:1;47117:15;:28::i;47085:93::-;3477:6;;-1:-1:-1;;;;;47208:15:0;;;3477:6;;47208:15;;;;:45;;-1:-1:-1;3477:6:0;;-1:-1:-1;;;;;47240:13:0;;;3477:6;;47240:13;;47208:45;:78;;;;-1:-1:-1;;;;;;47270:16:0;;;;47208:78;:112;;;;-1:-1:-1;;;;;;47303:17:0;;36146:6;47303:17;;47208:112;:138;;;;-1:-1:-1;47338:8:0;;-1:-1:-1;;;47338:8:0;;;;47337:9;47208:138;47190:1503;;;47378:13;;;;47373:210;;-1:-1:-1;;;;;47442:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47471:23:0;;;;;;:19;:23;;;;;;;;47442:52;47412:155;;;;-1:-1:-1;;;47412:155:0;;14771:2:1;47412:155:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:31;14829:18;;;14822:59;14898:18;;47412:155:0;14569:353:1;47412:155:0;-1:-1:-1;;;;;47641:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;47694:35:0;;;;;;:31;:35;;;;;;;;47693:36;47641:88;47619:1063;;;47804:20;;47794:6;:30;;47764:164;;;;-1:-1:-1;;;47764:164:0;;15129:2:1;47764:164:0;;;15111:21:1;15168:2;15148:18;;;15141:30;15207:34;15187:18;;;15180:62;15278:30;15258:18;;;15251:58;15326:19;;47764:164:0;14927:424:1;47764:164:0;48003:9;;-1:-1:-1;;;;;12116:18:0;;12084:7;12116:18;;;;;;;;;;;47977:22;;:6;:22;:::i;:::-;:35;;47947:135;;;;-1:-1:-1;;;47947:135:0;;15558:2:1;47947:135:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:28;15616:18;;;15609:56;15682:18;;47947:135:0;15356:350:1;47947:135:0;47619:1063;;;-1:-1:-1;;;;;48160:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;48211:37:0;;;;;;:31;:37;;;;;;;;48210:38;48160:88;48138:544;;;48323:20;;48313:6;:30;;48283:165;;;;-1:-1:-1;;;48283:165:0;;15913:2:1;48283:165:0;;;15895:21:1;15952:2;15932:18;;;15925:30;15991:34;15971:18;;;15964:62;16062:31;16042:18;;;16035:59;16111:19;;48283:165:0;15711:425:1;48138:544:0;-1:-1:-1;;;;;48475:35:0;;;;;;:31;:35;;;;;;;;48470:212;;48587:9;;-1:-1:-1;;;;;12116:18:0;;12084:7;12116:18;;;;;;;;;;;48561:22;;:6;:22;:::i;:::-;:35;;48531:135;;;;-1:-1:-1;;;48531:135:0;;15558:2:1;48531:135:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:28;15616:18;;;15609:56;15682:18;;48531:135:0;15356:350:1;48531:135:0;48754:4;48705:28;12116:18;;;;;;;;;;;48812;;48788:42;;;;;;;48861:35;;-1:-1:-1;48885:11:0;;;;;;;48861:35;:61;;;;-1:-1:-1;48914:8:0;;-1:-1:-1;;;48914:8:0;;;;48913:9;48861:61;:110;;;;-1:-1:-1;;;;;;48940:31:0;;;;;;:25;:31;;;;;;;;48939:32;48861:110;:153;;;;-1:-1:-1;;;;;;48989:25:0;;;;;;:19;:25;;;;;;;;48988:26;48861:153;:194;;;;-1:-1:-1;;;;;;49032:23:0;;;;;;:19;:23;;;;;;;;49031:24;48861:194;48843:326;;;49082:8;:15;;-1:-1:-1;;;;49082:15:0;-1:-1:-1;;;49082:15:0;;;49114:10;:8;:10::i;:::-;49141:8;:16;;-1:-1:-1;;;;49141:16:0;;;48843:326;49197:8;;-1:-1:-1;;;;;49222:25:0;;49181:12;49222:25;;;:19;:25;;;;;;49197:8;-1:-1:-1;;;49197:8:0;;;;;49196:9;;49222:25;;:52;;-1:-1:-1;;;;;;49251:23:0;;;;;;:19;:23;;;;;;;;49222:52;49218:100;;;-1:-1:-1;49301:5:0;49218:100;49330:12;49363:7;49359:1105;;;-1:-1:-1;;;;;49415:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;49464:1;49448:13;;:17;49415:50;49411:904;;;49493:34;49523:3;49493:25;49504:13;;49493:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;49486:41;;49648:13;;49602:21;;49595:4;:28;;;;:::i;:::-;49594:67;;;;:::i;:::-;49546:23;;:115;;;;;;;:::i;:::-;;;;-1:-1:-1;;49730:13:0;;49710:16;;49703:23;;:4;:23;:::i;:::-;49702:41;;;;:::i;:::-;49680:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49816:13:0;;49794:18;;49787:25;;:4;:25;:::i;:::-;49786:43;;;;:::i;:::-;49762:20;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;49411:904:0;;-1:-1:-1;49411:904:0;;-1:-1:-1;;;;;49891:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;49941:1;49926:12;;:16;49891:51;49887:428;;;49970:33;49999:3;49970:24;49981:12;;49970:6;:10;;:24;;;;:::i;:33::-;49963:40;;50123:12;;50078:20;;50071:4;:27;;;;:::i;:::-;50070:65;;;;:::i;:::-;50022:23;;:113;;;;;;;:::i;:::-;;;;-1:-1:-1;;50203:12:0;;50184:15;;50177:22;;:4;:22;:::i;:::-;50176:39;;;;:::i;:::-;50154:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;50287:12:0;;50266:17;;50259:24;;:4;:24;:::i;:::-;50258:41;;;;:::i;:::-;50234:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;49887:428:0;50335:8;;50331:91;;50364:42;50380:4;50394;50401;50364:15;:42::i;:::-;50438:14;50448:4;50438:14;;:::i;:::-;;;49359:1105;50476:33;50492:4;50498:2;50502:6;50476:15;:33::i;:::-;-1:-1:-1;;50536:11:0;;50520:13;:27;-1:-1:-1;;;;;46611:3944:0:o;18485:675::-;-1:-1:-1;;;;;18569:21:0;;18561:67;;;;-1:-1:-1;;;18561:67:0;;16476:2:1;18561:67:0;;;16458:21:1;16515:2;16495:18;;;16488:30;16554:34;16534:18;;;16527:62;-1:-1:-1;;;16605:18:1;;;16598:31;16646:19;;18561:67:0;16274:397:1;18561:67:0;-1:-1:-1;;;;;18728:18:0;;18703:22;18728:18;;;;;;;;;;;18765:24;;;;18757:71;;;;-1:-1:-1;;;18757:71:0;;16878:2:1;18757:71:0;;;16860:21:1;16917:2;16897:18;;;16890:30;16956:34;16936:18;;;16929:62;-1:-1:-1;;;17007:18:1;;;17000:32;17049:19;;18757:71:0;16676:398:1;18757:71:0;-1:-1:-1;;;;;18864:18:0;;:9;:18;;;;;;;;;;;18885:23;;;18864:44;;19003:12;:22;;;;;;;19054:37;1596:25:1;;;18864:9:0;;:18;19054:37;;1569:18:1;19054:37:0;;;;;;;43022:462;;;:::o;3569:132::-;3477:6;;-1:-1:-1;;;;;3477:6:0;2029:10;3633:23;3625:68;;;;-1:-1:-1;;;3625:68:0;;17281:2:1;3625:68:0;;;17263:21:1;;;17300:18;;;17293:30;17359:34;17339:18;;;17332:62;17411:18;;3625:68:0;17079:356:1;4701:191:0;4794:6;;;-1:-1:-1;;;;;4811:17:0;;;-1:-1:-1;;;;;;4811:17:0;;;;;;;4844:40;;4794:6;;;4811:17;4794:6;;4844:40;;4775:16;;4844:40;4764:128;4701:191;:::o;46160:188::-;-1:-1:-1;;;;;46243:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;46243:39:0;;;;;;;;;;46300:40;;46243:39;;:31;46300:40;;;46160:188;;:::o;16440:877::-;-1:-1:-1;;;;;16571:18:0;;16563:68;;;;-1:-1:-1;;;16563:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16650:16:0;;16642:64;;;;-1:-1:-1;;;16642:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16792:15:0;;16770:19;16792:15;;;;;;;;;;;16840:21;;;;16818:109;;;;-1:-1:-1;;;16818:109:0;;17642:2:1;16818:109:0;;;17624:21:1;17681:2;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;-1:-1:-1;;;17771:18:1;;;17764:36;17817:19;;16818:109:0;17440:402:1;16818:109:0;-1:-1:-1;;;;;16963:15:0;;;:9;:15;;;;;;;;;;;16981:20;;;16963:38;;17181:13;;;;;;;;;;:23;;;;;;17233:26;;1596:25:1;;;17181:13:0;;17233:26;;1569:18:1;17233:26:0;;;;;;;17272:37;43022:462;51046:1263;51129:4;51085:23;12116:18;;;;;;;;;;;51085:50;;51146:25;51247:20;;51213:18;;51174:23;;:57;;;;:::i;:::-;:93;;;;:::i;:::-;51146:121;-1:-1:-1;51278:12:0;51307:20;;;:46;;-1:-1:-1;51331:22:0;;51307:46;51303:85;;;51370:7;;;51046:1263::o;51303:85::-;51422:18;;:23;;51443:2;51422:23;:::i;:::-;51404:15;:41;51400:115;;;51480:18;;:23;;51501:2;51480:23;:::i;:::-;51462:41;;51400:115;51527:33;51544:15;51527:16;:33::i;:::-;51573:18;51594:21;51573:42;;51628:25;51656:83;51711:17;51656:36;51671:20;;51656:10;:14;;:36;;;;:::i;:83::-;51628:111;;51752:28;51783:90;51855:17;51783:53;51812:23;;51783:10;:28;;:53;;;;:::i;:90::-;51907:1;51886:18;:22;;;51919:20;:24;;;51954:23;:27;;;52016:20;;52008:91;;51752:121;;-1:-1:-1;;;;;;52016:20:0;;51752:121;;52008:91;51907:1;52008:91;51752:121;52016:20;52008:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52134:17:0;;52126:61;;51994:105;;-1:-1:-1;;;;;;52134:17:0;;52165;;52126:61;;;;52165:17;52134;52126:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52222:15:0;;52214:87;;52112:75;;-1:-1:-1;;;;;;52222:15:0;;52265:21;;52214:87;;;;52265:21;52222:15;52214:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;51046:1263:0:o;25946:98::-;26004:7;26031:5;26035:1;26031;:5;:::i;:::-;26024:12;25946:98;-1:-1:-1;;;25946:98:0:o;26345:::-;26403:7;26430:5;26434:1;26430;:5;:::i;50563:475::-;50653:16;;;50667:1;50653:16;;;;;;;;50629:21;;50653:16;;;;;;;;;;-1:-1:-1;50653:16:0;50629:40;;50698:4;50680;50685:1;50680:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50680:23:0;;;-1:-1:-1;;;;;50680:23:0;;;;;50724:15;-1:-1:-1;;;;;50724:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50714:4;50719:1;50714:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50714:32:0;;;-1:-1:-1;;;;;50714:32:0;;;;;50759:62;50776:4;50791:15;50809:11;50759:8;:62::i;:::-;50834:196;;-1:-1:-1;;;50834:196:0;;-1:-1:-1;;;;;50834:15:0;:66;;;;:196;;50915:11;;50941:1;;50957:4;;50984;;51004:15;;50834:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50618:420;50563:475;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:750::-;4103:6;4111;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4228:9;4215:23;4257:18;4298:2;4290:6;4287:14;4284:34;;;4314:1;4311;4304:12;4284:34;4352:6;4341:9;4337:22;4327:32;;4397:7;4390:4;4386:2;4382:13;4378:27;4368:55;;4419:1;4416;4409:12;4368:55;4459:2;4446:16;4485:2;4477:6;4474:14;4471:34;;;4501:1;4498;4491:12;4471:34;4556:7;4549:4;4539:6;4536:1;4532:14;4528:2;4524:23;4520:34;4517:47;4514:67;;;4577:1;4574;4567:12;4514:67;4608:4;4600:13;;;;-1:-1:-1;4632:6:1;-1:-1:-1;;4673:20:1;;4660:34;4703:28;4660:34;4703:28;:::i;:::-;4750:5;4740:15;;;4011:750;;;;;:::o;4766:388::-;4834:6;4842;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:31;4994:5;4969:31;:::i;:::-;5019:5;-1:-1:-1;5076:2:1;5061:18;;5048:32;5089:33;5048:32;5089:33;:::i;5159:380::-;5238:1;5234:12;;;;5281;;;5302:61;;5356:4;5348:6;5344:17;5334:27;;5302:61;5409:2;5401:6;5398:14;5378:18;5375:38;5372:161;;5455:10;5450:3;5446:20;5443:1;5436:31;5490:4;5487:1;5480:15;5518:4;5515:1;5508:15;5372:161;;5159:380;;;:::o;5544:127::-;5605:10;5600:3;5596:20;5593:1;5586:31;5636:4;5633:1;5626:15;5660:4;5657:1;5650:15;5676:125;5741:9;;;5762:10;;;5759:36;;;5775:18;;:::i;5806:340::-;6008:2;5990:21;;;6047:2;6027:18;;;6020:30;-1:-1:-1;;;6081:2:1;6066:18;;6059:46;6137:2;6122:18;;5806:340::o;6151:400::-;6353:2;6335:21;;;6392:2;6372:18;;;6365:30;6431:34;6426:2;6411:18;;6404:62;-1:-1:-1;;;6497:2:1;6482:18;;6475:34;6541:3;6526:19;;6151:400::o;6908:251::-;6978:6;7031:2;7019:9;7010:7;7006:23;7002:32;6999:52;;;7047:1;7044;7037:12;6999:52;7079:9;7073:16;7098:31;7123:5;7098:31;:::i;7752:245::-;7819:6;7872:2;7860:9;7851:7;7847:23;7843:32;7840:52;;;7888:1;7885;7878:12;7840:52;7920:9;7914:16;7939:28;7961:5;7939:28;:::i;8002:168::-;8075:9;;;8106;;8123:15;;;8117:22;;8103:37;8093:71;;8144:18;;:::i;8175:217::-;8215:1;8241;8231:132;;8285:10;8280:3;8276:20;8273:1;8266:31;8320:4;8317:1;8310:15;8348:4;8345:1;8338:15;8231:132;-1:-1:-1;8377:9:1;;8175:217::o;9973:127::-;10034:10;10029:3;10025:20;10022:1;10015:31;10065:4;10062:1;10055:15;10089:4;10086:1;10079:15;10105:135;10144:3;10165:17;;;10162:43;;10185:18;;:::i;:::-;-1:-1:-1;10232:1:1;10221:13;;10105:135::o;10245:184::-;10315:6;10368:2;10356:9;10347:7;10343:23;10339:32;10336:52;;;10384:1;10381;10374:12;10336:52;-1:-1:-1;10407:16:1;;10245:184;-1:-1:-1;10245:184:1:o;13411:401::-;13613:2;13595:21;;;13652:2;13632:18;;;13625:30;13691:34;13686:2;13671:18;;13664:62;-1:-1:-1;;;13757:2:1;13742:18;;13735:35;13802:3;13787:19;;13411:401::o;13817:399::-;14019:2;14001:21;;;14058:2;14038:18;;;14031:30;14097:34;14092:2;14077:18;;14070:62;-1:-1:-1;;;14163:2:1;14148:18;;14141:33;14206:3;14191:19;;13817:399::o;14221:343::-;14423:2;14405:21;;;14462:2;14442:18;;;14435:30;-1:-1:-1;;;14496:2:1;14481:18;;14474:49;14555:2;14540:18;;14221:343::o;16141:128::-;16208:9;;;16229:11;;;16226:37;;;16243:18;;:::i;17979:980::-;18241:4;18289:3;18278:9;18274:19;18320:6;18309:9;18302:25;18346:2;18384:6;18379:2;18368:9;18364:18;18357:34;18427:3;18422:2;18411:9;18407:18;18400:31;18451:6;18486;18480:13;18517:6;18509;18502:22;18555:3;18544:9;18540:19;18533:26;;18594:2;18586:6;18582:15;18568:29;;18615:1;18625:195;18639:6;18636:1;18633:13;18625:195;;;18704:13;;-1:-1:-1;;;;;18700:39:1;18688:52;;18795:15;;;;18760:12;;;;18736:1;18654:9;18625:195;;;-1:-1:-1;;;;;;;18876:32:1;;;;18871:2;18856:18;;18849:60;-1:-1:-1;;;18940:3:1;18925:19;18918:35;18837:3;17979:980;-1:-1:-1;;;17979:980:1:o

Swarm Source

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