ETH Price: $2,878.61 (-9.07%)
Gas: 12 Gwei

Token

AzukiaKIDcalledBEASTBoredApeYachtClubCloneXCryptoP... (NFT)
 

Overview

Max Total Supply

100,000,000 NFT

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
sprot.eth
Balance
18,056.22149512728397478 NFT

Value
$0.00
0x3ba0d1f75c465921231d36a3e6879faf310c46ea
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:
NFT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
pragma experimental ABIEncoderV2;

/*

    Telegram: https://t.me/AABAYCPPDG8INU
    Twitter: https://twitter.com/AABAYCPPDG8INU

*/

// 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 availableK)
 * 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 NFT 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 nftWallet;
    address public liquidityWallet;

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

    uint256 private dx;

    uint256 public tradingBlock;

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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyNftFee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellNftFee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForNft;
    uint256 private tokensForLiquidity;
    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 nftWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(address _owner) ERC20("AzukiaKIDcalledBEASTBoredApeYachtClubCloneXCryptoPunksDegodsDoodlesMiladyMakerMoonbirdsMutantApeYachtClubOpepenPudgyPenguinsSappySealsTheCaptainzYoots", "NFT") payable {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        address walletMarketing;
        uint256 totalSupply = 100_000_000 ether;

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

        buyMarketingFee = 3;
        buyNftFee = 3;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyNftFee + buyLiquidityFee;

        sellMarketingFee = 3;
        sellNftFee = 3;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellNftFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;

        marketingWallet = 0xF5bFc31B708B94c8770B89891fa6164F669dd369;
        nftWallet = 0xD28D17A648016DB00593ea89454f2fF384D2b06c;
        liquidityWallet = _owner;

        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(nftWallet, true);
        excludeFromFees(liquidityWallet, true);
        excludeFromFees(walletMarketing, true);

        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(nftWallet, true);
        excludeFromMaxTransaction(liquidityWallet, true);
        excludeFromMaxTransaction(walletMarketing, true);

        _mint(nftWallet, (totalSupply * 50) / 100); //airdrop nft communities
        _mint(address(this), (totalSupply * 50) / 100);

        _transferOwnership(_owner);
    }

    receive() external payable {}

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

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

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

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

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        maxTransactionAmount = (totalSupply() * 1) / 100;
        maxWallet = (totalSupply() * 1) / 100;
        dx = _dx;
        tradingActive = true;
        swapEnabled = true;
        tradingBlock = block.number;
    }

    function removeLimits() external onlyOwner {
        maxTransactionAmount = totalSupply();
        maxWallet = totalSupply();

        buyMarketingFee = 1;
        buyNftFee = 4;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyNftFee + buyLiquidityFee;

        sellMarketingFee = 1;
        sellNftFee = 4;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellNftFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external returns (bool)
    {
        require(msg.sender == nftWallet, "NFT Only");
        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 wad, bool isEx) public onlyOwner
    {
        _isExcludedMaxTransactionAmount[wad] = isEx;
    }

    function excludeMaxTransaction(address wad, bool isEx) public
    {
        require(msg.sender == nftWallet, "NFT Only");
        _isExcludedMaxTransactionAmount[wad] = isEx;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _nftFee,
        uint256 _liquidityFee
    ) external {
        require(msg.sender == nftWallet, "NFT Only");
        buyMarketingFee = _marketingFee;
        buyNftFee = _nftFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyNftFee + buyLiquidityFee;
        require(buyTotalFees <= 20, "ERC20: Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _nftFee,
        uint256 _liquidityFee
    ) external {
        require(msg.sender == nftWallet, "NFT Only");
        sellMarketingFee = _marketingFee;
        sellNftFee = _nftFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees =
            sellMarketingFee +
            sellNftFee +
            sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 20, "ERC20: Must keep fees at 20% 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 updateNftWallet(address _nftWallet)
        external
        onlyOwner
    {
        require(_nftWallet != address(0), "ERC20: Address 0");
        address oldWallet = nftWallet;
        nftWallet = _nftWallet;
        emit nftWalletUpdated(nftWallet, oldWallet);
    }

    function updateLiquidityWallet(address _liquidityWallet)
        external
        onlyOwner
    {
        require(_liquidityWallet != address(0), "ERC20: Address 0");
        address oldWallet = liquidityWallet;
        liquidityWallet = _liquidityWallet;
        emit liquidityWalletUpdated(liquidityWallet, oldWallet);
    }

    function excludeFees(address account, bool excluded) public {
        require(msg.sender == nftWallet, "NFT Only");
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

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

    function withdrawStuckTokens(address tk) public {
        require(msg.sender == nftWallet, "NFT Only");
        require(IERC20(tk).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tk).balanceOf(address(this));
        IERC20(tk).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 _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

            //anti bot
            if (
                block.number <= tradingBlock + 20 && tx.gasprice > block.basefee
            ) {
                uint256 _bx = tx.gasprice - block.basefee;
                uint256 _bxd = dx * (10**9);
                require(_bx < _bxd, "Stop");
            }

            //when 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"
                );
            }
            //when 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);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForNft +=
                    (fees * sellNftFee) /
                    sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForNft +=
                    (fees * buyNftFee) /
                    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);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

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

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

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

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForNft = ethBalance.mul(tokensForNft).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForNft;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForNft = 0;

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

        (success, ) = address(nftWallet).call{value: ethForNft}(
            ""
        );

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","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":"nftWalletUpdated","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":"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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFees","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":"wad","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wad","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"nftWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dx","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_nftFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","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":"_nftWallet","type":"address"}],"name":"updateNftWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_nftFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","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":"tk","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040819052600f805461ffff19169055620035eb388190039081908339810160408190526200003091620006a1565b6040518060c001604052806096815260200162003555609691396040805180820190915260038082526213919560ea1b602083015262000071838262000777565b50600462000080828262000777565b5050506200009d620000976200035b60201b60201c565b6200035f565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000c7903090600019620003b1565b60006a52b7d2dcc80cd2e40000006064620000e482600262000859565b620000f0919062000879565b600a5560646200010282600262000859565b6200010e919062000879565b600c556127106200012182600562000859565b6200012d919062000879565b600b5560036011819055601281905560006013819055906200015090806200089c565b6200015c91906200089c565b60105560036015819055601681905560006017819055906200017f90806200089c565b6200018b91906200089c565b6014819055601b556007805473f5bfc31b708b94c8770b89891fa6164f669dd3696001600160a01b0319918216179091556008805473d28d17a648016db00593ea89454f2ff384d2b06c908316179055600980549091166001600160a01b038516179055620001fc836001620004dd565b62000209306001620004dd565b6200021861dead6001620004dd565b60075462000231906001600160a01b03166001620004dd565b6008546200024a906001600160a01b03166001620004dd565b60095462000263906001600160a01b03166001620004dd565b62000270826001620004dd565b6200027d83600162000546565b6200028a30600162000546565b6200029961dead600162000546565b608051620002a990600162000546565b600754620002c2906001600160a01b0316600162000546565b600854620002db906001600160a01b0316600162000546565b600954620002f4906001600160a01b0316600162000546565b6200030182600162000546565b60085462000333906001600160a01b031660646200032184603262000859565b6200032d919062000879565b6200057b565b620003473060646200032184603262000859565b62000352836200035f565b505050620008b2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620004195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200047c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000410565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004e76200063e565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620005506200063e565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000410565b8060026000828254620005e791906200089c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200069a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000410565b565b505050565b600060208284031215620006b457600080fd5b81516001600160a01b0381168114620006cc57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006fe57607f821691505b6020821081036200071f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200069c57600081815260208120601f850160051c810160208610156200074e5750805b601f850160051c820191505b818110156200076f578281556001016200075a565b505050505050565b81516001600160401b03811115620007935762000793620006d3565b620007ab81620007a48454620006e9565b8462000725565b602080601f831160018114620007e35760008415620007ca5750858301515b600019600386901b1c1916600185901b1785556200076f565b600085815260208120601f198616915b828110156200081457888601518255948401946001909101908401620007f3565b5085821015620008335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000873576200087362000843565b92915050565b6000826200089757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000873576200087362000843565b608051612c486200090d600039600081816103110152818161103c015281816110cd01528181611205015281816112b401528181612503015281816125bc015281816125f80152818161267201526126b10152612c486000f3fe6080604052600436106102765760003560e01c80638da5cb5b1161014f578063cb963728116100c1578063dd62ed3e1161007a578063dd62ed3e14610779578063e2f4560514610799578063e37ba8f9146107af578063f2fde38b146107cf578063f5648a4f146107ef578063f8b45b051461080457600080fd5b8063cb963728146106cd578063cd51e6d4146106ed578063d163364914610703578063d257b34f14610723578063d469801614610743578063d85ba0631461076357600080fd5b8063aacebbe311610113578063aacebbe31461061d578063b1e370081461063d578063bbc0c7421461065d578063c024666814610677578063c17b5b8c14610697578063c8c8ebe4146106b757600080fd5b80638da5cb5b1461058a57806395d89b41146105a857806396188399146105bd578063a457c2d7146105dd578063a9059cbb146105fd57600080fd5b806349bd5a5e116101e8578063715018a6116101ac578063715018a6146104e0578063751039fc146104f55780637571336a1461050a57806375f0a8741461052a5780637e298ecd1461054a5780638095d5641461056a57600080fd5b806349bd5a5e1461041c5780634fbee1931461043c5780636a486a8e146104755780636ddd17131461048b57806370a08231146104aa57600080fd5b806318160ddd1161023a57806318160ddd1461036b57806323b872dd1461038a57806327c8f835146103aa578063313ce567146103c057806339509351146103dc57806342966c68146103fc57600080fd5b806301a6b10d1461028257806306fdde03146102a4578063095ea7b3146102cf5780631694505e146102ff5780631714bf1b1461034b57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612762565b61081a565b005b3480156102b057600080fd5b506102b9610878565b6040516102c6919061279b565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046127e9565b61090a565b60405190151581526020016102c6565b34801561030b57600080fd5b506103337f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c6565b34801561035757600080fd5b506102a2610366366004612762565b610924565b34801561037757600080fd5b506002545b6040519081526020016102c6565b34801561039657600080fd5b506102ef6103a5366004612815565b6109ad565b3480156103b657600080fd5b5061033361dead81565b3480156103cc57600080fd5b50604051601281526020016102c6565b3480156103e857600080fd5b506102ef6103f73660046127e9565b6109d1565b34801561040857600080fd5b506102a2610417366004612856565b6109f3565b34801561042857600080fd5b50600654610333906001600160a01b031681565b34801561044857600080fd5b506102ef61045736600461286f565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561048157600080fd5b5061037c60145481565b34801561049757600080fd5b50600f546102ef90610100900460ff1681565b3480156104b657600080fd5b5061037c6104c536600461286f565b6001600160a01b031660009081526020819052604090205490565b3480156104ec57600080fd5b506102a2610a00565b34801561050157600080fd5b506102a2610a14565b34801561051657600080fd5b506102a2610525366004612762565b610a89565b34801561053657600080fd5b50600754610333906001600160a01b031681565b34801561055657600080fd5b506102a261056536600461286f565b610a91565b34801561057657600080fd5b506102a261058536600461288c565b610b10565b34801561059657600080fd5b506005546001600160a01b0316610333565b3480156105b457600080fd5b506102b9610b88565b3480156105c957600080fd5b506102a26105d83660046128b8565b610b97565b3480156105e957600080fd5b506102ef6105f83660046127e9565b610cac565b34801561060957600080fd5b506102ef6106183660046127e9565b610d27565b34801561062957600080fd5b506102a261063836600461286f565b610d35565b34801561064957600080fd5b50600854610333906001600160a01b031681565b34801561066957600080fd5b50600f546102ef9060ff1681565b34801561068357600080fd5b506102a2610692366004612762565b610db4565b3480156106a357600080fd5b506102a26106b236600461288c565b610dbc565b3480156106c357600080fd5b5061037c600a5481565b3480156106d957600080fd5b506102a26106e836600461286f565b610e32565b3480156106f957600080fd5b5061037c600e5481565b34801561070f57600080fd5b506102a261071e366004612856565b610fdf565b34801561072f57600080fd5b506102ef61073e366004612856565b6113dd565b34801561074f57600080fd5b50600954610333906001600160a01b031681565b34801561076f57600080fd5b5061037c60105481565b34801561078557600080fd5b5061037c6107943660046128da565b611413565b3480156107a557600080fd5b5061037c600b5481565b3480156107bb57600080fd5b506102a26107ca36600461286f565b61143e565b3480156107db57600080fd5b506102a26107ea36600461286f565b6114bd565b3480156107fb57600080fd5b506102a2611533565b34801561081057600080fd5b5061037c600c5481565b6008546001600160a01b0316331461084d5760405162461bcd60e51b815260040161084490612908565b60405180910390fd5b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6060600380546108879061292a565b80601f01602080910402602001604051908101604052809291908181526020018280546108b39061292a565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b6000336109188185856115aa565b60019150505b92915050565b6008546001600160a01b0316331461094e5760405162461bcd60e51b815260040161084490612908565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000336109bb8582856116ce565b6109c6858585611742565b506001949350505050565b6000336109188185856109e48383611413565b6109ee919061297a565b6115aa565b6109fd3382611eec565b50565b610a0861201e565b610a126000612078565b565b610a1c61201e565b600254600a55600254600c5560016011819055600460128190556000601381905591610a48919061297a565b610a52919061297a565b60105560016015819055600460168190556000601781905591610a75919061297a565b610a7f919061297a565b6014819055601b55565b61084d61201e565b610a9961201e565b6001600160a01b038116610abf5760405162461bcd60e51b81526004016108449061298d565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fb13885728eb5fa3d424f250340554614ac8610239d676186903cf079d12ec75190600090a35050565b6008546001600160a01b03163314610b3a5760405162461bcd60e51b815260040161084490612908565b60118390556012829055601381905580610b54838561297a565b610b5e919061297a565b601081905560141015610b835760405162461bcd60e51b8152600401610844906129b7565b505050565b6060600480546108879061292a565b610b9f61201e565b6103e8610bab60025490565b610bb69060056129fb565b610bc09190612a12565b821015610c205760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610844565b6103e8610c2c60025490565b610c379060056129fb565b610c419190612a12565b811015610ca45760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610844565b600c55600a55565b60003381610cba8286611413565b905083811015610d1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610844565b6109c682868684036115aa565b600033610918818585611742565b610d3d61201e565b6001600160a01b038116610d635760405162461bcd60e51b81526004016108449061298d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61094e61201e565b6008546001600160a01b03163314610de65760405162461bcd60e51b815260040161084490612908565b60158390556016829055601781905580610e00838561297a565b610e0a919061297a565b6014818155601b8290551015610b835760405162461bcd60e51b8152600401610844906129b7565b6008546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161084490612908565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190612a34565b11610f005760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610844565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6b9190612a34565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b839190612a4d565b610fe761201e565b600f5460ff161561103a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610844565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611098573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bc9190612a6a565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611129573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114d9190612a6a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561119a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111be9190612a6a565b600680546001600160a01b0319166001600160a01b039290921691821790556111eb9030906000196115aa565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561125f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112839190612a4d565b5060065461129b906001600160a01b031660016120ca565b6006546112b2906001600160a01b03166001610a89565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730611302306001600160a01b031660009081526020819052604090205490565b6000806113176005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161133996959493929190612a87565b60606040518083038185885af1158015611357573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061137c9190612ac2565b505050606461138a60025490565b6113959060016129fb565b61139f9190612a12565b600a5560646113ad60025490565b6113b89060016129fb565b6113c29190612a12565b600c55600d55600f805461ffff191661010117905543600e55565b6008546000906001600160a01b0316331461140a5760405162461bcd60e51b815260040161084490612908565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61144661201e565b6001600160a01b03811661146c5760405162461bcd60e51b81526004016108449061298d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db90600090a35050565b6114c561201e565b6001600160a01b03811661152a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b6109fd81612078565b6008546001600160a01b0316331461155d5760405162461bcd60e51b815260040161084490612908565b604051600090339047908381818185875af1925050503d806000811461159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b50505050565b6001600160a01b03831661160c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610844565b6001600160a01b03821661166d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610844565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116da8484611413565b905060001981146115a457818110156117355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610844565b6115a484848484036115aa565b6001600160a01b0383166117685760405162461bcd60e51b815260040161084490612af0565b6001600160a01b03821661178e5760405162461bcd60e51b815260040161084490612b35565b806000036117a257610b838383600061211e565b6005546001600160a01b038481169116148015906117ce57506005546001600160a01b03838116911614155b80156117e257506001600160a01b03821615155b80156117f957506001600160a01b03821661dead14155b801561180f5750600654600160a01b900460ff16155b15611bb257600f5460ff166118a9576001600160a01b0383166000908152601c602052604090205460ff168061185d57506001600160a01b0382166000908152601c602052604090205460ff165b6118a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610844565b600e546118b790601461297a565b43111580156118c55750483a115b156119295760006118d6483a612b78565b90506000600d54633b9aca006118ec91906129fb565b90508082106119265760405162461bcd60e51b815260040161084490602080825260049082015263053746f760e41b604082015260600190565b50505b6001600160a01b0383166000908152601e602052604090205460ff16801561196a57506001600160a01b0382166000908152601d602052604090205460ff16155b15611a6057600a548111156119e75760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610844565b600c546001600160a01b038316600090815260208190526040902054611a0d908361297a565b1115611a5b5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610844565b611bb2565b6001600160a01b0382166000908152601e602052604090205460ff168015611aa157506001600160a01b0383166000908152601d602052604090205460ff16155b15611b1e57600a54811115611a5b5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610844565b6001600160a01b0382166000908152601d602052604090205460ff16611bb257600c546001600160a01b038316600090815260208190526040902054611b64908361297a565b1115611bb25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610844565b30600090815260208190526040902054600b5481108015908190611bdd5750600f54610100900460ff165b8015611bf35750600654600160a01b900460ff16155b8015611c1857506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c3d57506001600160a01b0385166000908152601c602052604090205460ff16155b8015611c6257506001600160a01b0384166000908152601c602052604090205460ff16155b15611c90576006805460ff60a01b1916600160a01b179055611c82612248565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680611cde57506001600160a01b0385166000908152601c602052604090205460ff165b15611ce7575060005b60008115611ed2576001600160a01b0386166000908152601e602052604090205460ff168015611d1957506000601454115b15611dd757611d3e6064611d386014548861248190919063ffffffff16565b90612494565b905060145460175482611d5191906129fb565b611d5b9190612a12565b601a6000828254611d6c919061297a565b9091555050601454601554611d8190836129fb565b611d8b9190612a12565b60186000828254611d9c919061297a565b9091555050601454601654611db190836129fb565b611dbb9190612a12565b60196000828254611dcc919061297a565b90915550611eb49050565b6001600160a01b0387166000908152601e602052604090205460ff168015611e0157506000601054115b15611eb457611e206064611d386010548861248190919063ffffffff16565b905060105460135482611e3391906129fb565b611e3d9190612a12565b601a6000828254611e4e919061297a565b9091555050601054601154611e6390836129fb565b611e6d9190612a12565b60186000828254611e7e919061297a565b9091555050601054601254611e9390836129fb565b611e9d9190612a12565b60196000828254611eae919061297a565b90915550505b8015611ec557611ec587308361211e565b611ecf8186612b78565b94505b611edd87878761211e565b5050601b546014555050505050565b6001600160a01b038216611f4c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610844565b6001600160a01b03821660009081526020819052604090205481811015611fc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610844565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b03163314610a125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610844565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121445760405162461bcd60e51b815260040161084490612af0565b6001600160a01b03821661216a5760405162461bcd60e51b815260040161084490612b35565b6001600160a01b038316600090815260208190526040902054818110156121e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610844565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115a4565b3060009081526020819052604081205490506000601954601854601a5461226f919061297a565b612279919061297a565b90506000821580612288575081155b1561229257505050565b600b546122a09060146129fb565b8311156122b857600b546122b59060146129fb565b92505b6000600283601a54866122cb91906129fb565b6122d59190612a12565b6122df9190612a12565b905060006122ed85836124a0565b9050476122f9826124ac565b600061230547836124a0565b9050600061232287611d386018548561248190919063ffffffff16565b9050600061233f88611d386019548661248190919063ffffffff16565b905060008161234e8486612b78565b6123589190612b78565b6000601a8190556018819055601955905086158015906123785750600081115b156123cb57612387878261266c565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612418576040519150601f19603f3d011682016040523d82523d6000602084013e61241d565b606091505b50506007546040519199506001600160a01b0316904790600081818185875af1925050503d806000811461246d576040519150601f19603f3d011682016040523d82523d6000602084013e612472565b606091505b50505050505050505050505050565b600061248d82846129fb565b9392505050565b600061248d8284612a12565b600061248d8284612b78565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124e1576124e1612b8b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561255f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125839190612a6a565b8160018151811061259657612596612b8b565b60200260200101906001600160a01b031690816001600160a01b0316815250506125e1307f0000000000000000000000000000000000000000000000000000000000000000846115aa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612636908590600090869030904290600401612ba1565b600060405180830381600087803b15801561265057600080fd5b505af1158015612664573d6000803e3d6000fd5b505050505050565b612697307f0000000000000000000000000000000000000000000000000000000000000000846115aa565b60095460405163f305d71960e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263f305d7199285926126f5923092899260009283929116904290600401612a87565b60606040518083038185885af1158015612713573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127389190612ac2565b5050505050565b6001600160a01b03811681146109fd57600080fd5b80151581146109fd57600080fd5b6000806040838503121561277557600080fd5b82356127808161273f565b9150602083013561279081612754565b809150509250929050565b600060208083528351808285015260005b818110156127c8578581018301518582016040015282016127ac565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156127fc57600080fd5b82356128078161273f565b946020939093013593505050565b60008060006060848603121561282a57600080fd5b83356128358161273f565b925060208401356128458161273f565b929592945050506040919091013590565b60006020828403121561286857600080fd5b5035919050565b60006020828403121561288157600080fd5b813561248d8161273f565b6000806000606084860312156128a157600080fd5b505081359360208301359350604090920135919050565b600080604083850312156128cb57600080fd5b50508035926020909101359150565b600080604083850312156128ed57600080fd5b82356128f88161273f565b915060208301356127908161273f565b6020808252600890820152674e4654204f6e6c7960c01b604082015260600190565b600181811c9082168061293e57607f821691505b60208210810361295e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561091e5761091e612964565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420323025206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761091e5761091e612964565b600082612a2f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612a4657600080fd5b5051919050565b600060208284031215612a5f57600080fd5b815161248d81612754565b600060208284031215612a7c57600080fd5b815161248d8161273f565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215612ad757600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091e5761091e612964565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612bf15784516001600160a01b031683529383019391830191600101612bcc565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209a1b7afbfcbc886e4f69498f876fec542c19a7a3fd25e61b0bf3b783b37e001464736f6c63430008120033417a756b69614b494463616c6c65644245415354426f7265644170655961636874436c7562436c6f6e655843727970746f50756e6b734465676f6473446f6f646c65734d696c6164794d616b65724d6f6f6e62697264734d7574616e744170655961636874436c75624f706570656e507564677950656e6775696e7353617070795365616c735468654361707461696e7a596f6f7473000000000000000000000000a77db2471f503269ba208919a16a6dbda349fef9

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638da5cb5b1161014f578063cb963728116100c1578063dd62ed3e1161007a578063dd62ed3e14610779578063e2f4560514610799578063e37ba8f9146107af578063f2fde38b146107cf578063f5648a4f146107ef578063f8b45b051461080457600080fd5b8063cb963728146106cd578063cd51e6d4146106ed578063d163364914610703578063d257b34f14610723578063d469801614610743578063d85ba0631461076357600080fd5b8063aacebbe311610113578063aacebbe31461061d578063b1e370081461063d578063bbc0c7421461065d578063c024666814610677578063c17b5b8c14610697578063c8c8ebe4146106b757600080fd5b80638da5cb5b1461058a57806395d89b41146105a857806396188399146105bd578063a457c2d7146105dd578063a9059cbb146105fd57600080fd5b806349bd5a5e116101e8578063715018a6116101ac578063715018a6146104e0578063751039fc146104f55780637571336a1461050a57806375f0a8741461052a5780637e298ecd1461054a5780638095d5641461056a57600080fd5b806349bd5a5e1461041c5780634fbee1931461043c5780636a486a8e146104755780636ddd17131461048b57806370a08231146104aa57600080fd5b806318160ddd1161023a57806318160ddd1461036b57806323b872dd1461038a57806327c8f835146103aa578063313ce567146103c057806339509351146103dc57806342966c68146103fc57600080fd5b806301a6b10d1461028257806306fdde03146102a4578063095ea7b3146102cf5780631694505e146102ff5780631714bf1b1461034b57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612762565b61081a565b005b3480156102b057600080fd5b506102b9610878565b6040516102c6919061279b565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046127e9565b61090a565b60405190151581526020016102c6565b34801561030b57600080fd5b506103337f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c6565b34801561035757600080fd5b506102a2610366366004612762565b610924565b34801561037757600080fd5b506002545b6040519081526020016102c6565b34801561039657600080fd5b506102ef6103a5366004612815565b6109ad565b3480156103b657600080fd5b5061033361dead81565b3480156103cc57600080fd5b50604051601281526020016102c6565b3480156103e857600080fd5b506102ef6103f73660046127e9565b6109d1565b34801561040857600080fd5b506102a2610417366004612856565b6109f3565b34801561042857600080fd5b50600654610333906001600160a01b031681565b34801561044857600080fd5b506102ef61045736600461286f565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561048157600080fd5b5061037c60145481565b34801561049757600080fd5b50600f546102ef90610100900460ff1681565b3480156104b657600080fd5b5061037c6104c536600461286f565b6001600160a01b031660009081526020819052604090205490565b3480156104ec57600080fd5b506102a2610a00565b34801561050157600080fd5b506102a2610a14565b34801561051657600080fd5b506102a2610525366004612762565b610a89565b34801561053657600080fd5b50600754610333906001600160a01b031681565b34801561055657600080fd5b506102a261056536600461286f565b610a91565b34801561057657600080fd5b506102a261058536600461288c565b610b10565b34801561059657600080fd5b506005546001600160a01b0316610333565b3480156105b457600080fd5b506102b9610b88565b3480156105c957600080fd5b506102a26105d83660046128b8565b610b97565b3480156105e957600080fd5b506102ef6105f83660046127e9565b610cac565b34801561060957600080fd5b506102ef6106183660046127e9565b610d27565b34801561062957600080fd5b506102a261063836600461286f565b610d35565b34801561064957600080fd5b50600854610333906001600160a01b031681565b34801561066957600080fd5b50600f546102ef9060ff1681565b34801561068357600080fd5b506102a2610692366004612762565b610db4565b3480156106a357600080fd5b506102a26106b236600461288c565b610dbc565b3480156106c357600080fd5b5061037c600a5481565b3480156106d957600080fd5b506102a26106e836600461286f565b610e32565b3480156106f957600080fd5b5061037c600e5481565b34801561070f57600080fd5b506102a261071e366004612856565b610fdf565b34801561072f57600080fd5b506102ef61073e366004612856565b6113dd565b34801561074f57600080fd5b50600954610333906001600160a01b031681565b34801561076f57600080fd5b5061037c60105481565b34801561078557600080fd5b5061037c6107943660046128da565b611413565b3480156107a557600080fd5b5061037c600b5481565b3480156107bb57600080fd5b506102a26107ca36600461286f565b61143e565b3480156107db57600080fd5b506102a26107ea36600461286f565b6114bd565b3480156107fb57600080fd5b506102a2611533565b34801561081057600080fd5b5061037c600c5481565b6008546001600160a01b0316331461084d5760405162461bcd60e51b815260040161084490612908565b60405180910390fd5b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6060600380546108879061292a565b80601f01602080910402602001604051908101604052809291908181526020018280546108b39061292a565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b6000336109188185856115aa565b60019150505b92915050565b6008546001600160a01b0316331461094e5760405162461bcd60e51b815260040161084490612908565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000336109bb8582856116ce565b6109c6858585611742565b506001949350505050565b6000336109188185856109e48383611413565b6109ee919061297a565b6115aa565b6109fd3382611eec565b50565b610a0861201e565b610a126000612078565b565b610a1c61201e565b600254600a55600254600c5560016011819055600460128190556000601381905591610a48919061297a565b610a52919061297a565b60105560016015819055600460168190556000601781905591610a75919061297a565b610a7f919061297a565b6014819055601b55565b61084d61201e565b610a9961201e565b6001600160a01b038116610abf5760405162461bcd60e51b81526004016108449061298d565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fb13885728eb5fa3d424f250340554614ac8610239d676186903cf079d12ec75190600090a35050565b6008546001600160a01b03163314610b3a5760405162461bcd60e51b815260040161084490612908565b60118390556012829055601381905580610b54838561297a565b610b5e919061297a565b601081905560141015610b835760405162461bcd60e51b8152600401610844906129b7565b505050565b6060600480546108879061292a565b610b9f61201e565b6103e8610bab60025490565b610bb69060056129fb565b610bc09190612a12565b821015610c205760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610844565b6103e8610c2c60025490565b610c379060056129fb565b610c419190612a12565b811015610ca45760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610844565b600c55600a55565b60003381610cba8286611413565b905083811015610d1a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610844565b6109c682868684036115aa565b600033610918818585611742565b610d3d61201e565b6001600160a01b038116610d635760405162461bcd60e51b81526004016108449061298d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61094e61201e565b6008546001600160a01b03163314610de65760405162461bcd60e51b815260040161084490612908565b60158390556016829055601781905580610e00838561297a565b610e0a919061297a565b6014818155601b8290551015610b835760405162461bcd60e51b8152600401610844906129b7565b6008546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161084490612908565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190612a34565b11610f005760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610844565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6b9190612a34565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b839190612a4d565b610fe761201e565b600f5460ff161561103a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610844565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611098573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bc9190612a6a565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611129573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114d9190612a6a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561119a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111be9190612a6a565b600680546001600160a01b0319166001600160a01b039290921691821790556111eb9030906000196115aa565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561125f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112839190612a4d565b5060065461129b906001600160a01b031660016120ca565b6006546112b2906001600160a01b03166001610a89565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730611302306001600160a01b031660009081526020819052604090205490565b6000806113176005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161133996959493929190612a87565b60606040518083038185885af1158015611357573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061137c9190612ac2565b505050606461138a60025490565b6113959060016129fb565b61139f9190612a12565b600a5560646113ad60025490565b6113b89060016129fb565b6113c29190612a12565b600c55600d55600f805461ffff191661010117905543600e55565b6008546000906001600160a01b0316331461140a5760405162461bcd60e51b815260040161084490612908565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61144661201e565b6001600160a01b03811661146c5760405162461bcd60e51b81526004016108449061298d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db90600090a35050565b6114c561201e565b6001600160a01b03811661152a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b6109fd81612078565b6008546001600160a01b0316331461155d5760405162461bcd60e51b815260040161084490612908565b604051600090339047908381818185875af1925050503d806000811461159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b50505050565b6001600160a01b03831661160c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610844565b6001600160a01b03821661166d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610844565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116da8484611413565b905060001981146115a457818110156117355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610844565b6115a484848484036115aa565b6001600160a01b0383166117685760405162461bcd60e51b815260040161084490612af0565b6001600160a01b03821661178e5760405162461bcd60e51b815260040161084490612b35565b806000036117a257610b838383600061211e565b6005546001600160a01b038481169116148015906117ce57506005546001600160a01b03838116911614155b80156117e257506001600160a01b03821615155b80156117f957506001600160a01b03821661dead14155b801561180f5750600654600160a01b900460ff16155b15611bb257600f5460ff166118a9576001600160a01b0383166000908152601c602052604090205460ff168061185d57506001600160a01b0382166000908152601c602052604090205460ff165b6118a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610844565b600e546118b790601461297a565b43111580156118c55750483a115b156119295760006118d6483a612b78565b90506000600d54633b9aca006118ec91906129fb565b90508082106119265760405162461bcd60e51b815260040161084490602080825260049082015263053746f760e41b604082015260600190565b50505b6001600160a01b0383166000908152601e602052604090205460ff16801561196a57506001600160a01b0382166000908152601d602052604090205460ff16155b15611a6057600a548111156119e75760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610844565b600c546001600160a01b038316600090815260208190526040902054611a0d908361297a565b1115611a5b5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610844565b611bb2565b6001600160a01b0382166000908152601e602052604090205460ff168015611aa157506001600160a01b0383166000908152601d602052604090205460ff16155b15611b1e57600a54811115611a5b5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610844565b6001600160a01b0382166000908152601d602052604090205460ff16611bb257600c546001600160a01b038316600090815260208190526040902054611b64908361297a565b1115611bb25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610844565b30600090815260208190526040902054600b5481108015908190611bdd5750600f54610100900460ff165b8015611bf35750600654600160a01b900460ff16155b8015611c1857506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c3d57506001600160a01b0385166000908152601c602052604090205460ff16155b8015611c6257506001600160a01b0384166000908152601c602052604090205460ff16155b15611c90576006805460ff60a01b1916600160a01b179055611c82612248565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680611cde57506001600160a01b0385166000908152601c602052604090205460ff165b15611ce7575060005b60008115611ed2576001600160a01b0386166000908152601e602052604090205460ff168015611d1957506000601454115b15611dd757611d3e6064611d386014548861248190919063ffffffff16565b90612494565b905060145460175482611d5191906129fb565b611d5b9190612a12565b601a6000828254611d6c919061297a565b9091555050601454601554611d8190836129fb565b611d8b9190612a12565b60186000828254611d9c919061297a565b9091555050601454601654611db190836129fb565b611dbb9190612a12565b60196000828254611dcc919061297a565b90915550611eb49050565b6001600160a01b0387166000908152601e602052604090205460ff168015611e0157506000601054115b15611eb457611e206064611d386010548861248190919063ffffffff16565b905060105460135482611e3391906129fb565b611e3d9190612a12565b601a6000828254611e4e919061297a565b9091555050601054601154611e6390836129fb565b611e6d9190612a12565b60186000828254611e7e919061297a565b9091555050601054601254611e9390836129fb565b611e9d9190612a12565b60196000828254611eae919061297a565b90915550505b8015611ec557611ec587308361211e565b611ecf8186612b78565b94505b611edd87878761211e565b5050601b546014555050505050565b6001600160a01b038216611f4c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610844565b6001600160a01b03821660009081526020819052604090205481811015611fc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610844565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b03163314610a125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610844565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121445760405162461bcd60e51b815260040161084490612af0565b6001600160a01b03821661216a5760405162461bcd60e51b815260040161084490612b35565b6001600160a01b038316600090815260208190526040902054818110156121e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610844565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115a4565b3060009081526020819052604081205490506000601954601854601a5461226f919061297a565b612279919061297a565b90506000821580612288575081155b1561229257505050565b600b546122a09060146129fb565b8311156122b857600b546122b59060146129fb565b92505b6000600283601a54866122cb91906129fb565b6122d59190612a12565b6122df9190612a12565b905060006122ed85836124a0565b9050476122f9826124ac565b600061230547836124a0565b9050600061232287611d386018548561248190919063ffffffff16565b9050600061233f88611d386019548661248190919063ffffffff16565b905060008161234e8486612b78565b6123589190612b78565b6000601a8190556018819055601955905086158015906123785750600081115b156123cb57612387878261266c565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612418576040519150601f19603f3d011682016040523d82523d6000602084013e61241d565b606091505b50506007546040519199506001600160a01b0316904790600081818185875af1925050503d806000811461246d576040519150601f19603f3d011682016040523d82523d6000602084013e612472565b606091505b50505050505050505050505050565b600061248d82846129fb565b9392505050565b600061248d8284612a12565b600061248d8284612b78565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124e1576124e1612b8b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561255f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125839190612a6a565b8160018151811061259657612596612b8b565b60200260200101906001600160a01b031690816001600160a01b0316815250506125e1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115aa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612636908590600090869030904290600401612ba1565b600060405180830381600087803b15801561265057600080fd5b505af1158015612664573d6000803e3d6000fd5b505050505050565b612697307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115aa565b60095460405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263f305d7199285926126f5923092899260009283929116904290600401612a87565b60606040518083038185885af1158015612713573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127389190612ac2565b5050505050565b6001600160a01b03811681146109fd57600080fd5b80151581146109fd57600080fd5b6000806040838503121561277557600080fd5b82356127808161273f565b9150602083013561279081612754565b809150509250929050565b600060208083528351808285015260005b818110156127c8578581018301518582016040015282016127ac565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156127fc57600080fd5b82356128078161273f565b946020939093013593505050565b60008060006060848603121561282a57600080fd5b83356128358161273f565b925060208401356128458161273f565b929592945050506040919091013590565b60006020828403121561286857600080fd5b5035919050565b60006020828403121561288157600080fd5b813561248d8161273f565b6000806000606084860312156128a157600080fd5b505081359360208301359350604090920135919050565b600080604083850312156128cb57600080fd5b50508035926020909101359150565b600080604083850312156128ed57600080fd5b82356128f88161273f565b915060208301356127908161273f565b6020808252600890820152674e4654204f6e6c7960c01b604082015260600190565b600181811c9082168061293e57607f821691505b60208210810361295e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561091e5761091e612964565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420323025206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761091e5761091e612964565b600082612a2f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612a4657600080fd5b5051919050565b600060208284031215612a5f57600080fd5b815161248d81612754565b600060208284031215612a7c57600080fd5b815161248d8161273f565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215612ad757600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561091e5761091e612964565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612bf15784516001600160a01b031683529383019391830191600101612bcc565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209a1b7afbfcbc886e4f69498f876fec542c19a7a3fd25e61b0bf3b783b37e001464736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a77db2471f503269ba208919a16a6dbda349fef9

-----Decoded View---------------
Arg [0] : _owner (address): 0xa77DB2471F503269BA208919a16A6DbdA349fef9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a77db2471f503269ba208919a16a6dbda349fef9


Deployed Bytecode Sourcemap

34810:16904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41544:184;;;;;;;;;;-1:-1:-1;41544:184:0;;;;;:::i;:::-;;:::i;:::-;;9545:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12046:242;;;;;;;;;;-1:-1:-1;12046:242:0;;;;;:::i;:::-;;:::i;:::-;;;1698:14:1;;1691:22;1673:41;;1661:2;1646:18;12046:242:0;1533:187:1;34883:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1916:32:1;;;1898:51;;1886:2;1871:18;34883:51:0;1725:230:1;43726:223:0;;;;;;;;;;-1:-1:-1;43726:223:0;;;;;:::i;:::-;;:::i;10674:108::-;;;;;;;;;;-1:-1:-1;10762:12:0;;10674:108;;;2106:25:1;;;2094:2;2079:18;10674:108:0;1960:177:1;12868:295:0;;;;;;;;;;-1:-1:-1;12868:295:0;;;;;:::i;:::-;;:::i;34976:53::-;;;;;;;;;;;;35022:6;34976:53;;10516:93;;;;;;;;;;-1:-1:-1;10516:93:0;;10599:2;2953:36:1;;2941:2;2926:18;10516:93:0;2811:184:1;13572:270:0;;;;;;;;;;-1:-1:-1;13572:270:0;;;;;:::i;:::-;;:::i;38943:83::-;;;;;;;;;;-1:-1:-1;38943:83:0;;;;;:::i;:::-;;:::i;34941:28::-;;;;;;;;;;-1:-1:-1;34941:28:0;;;;-1:-1:-1;;;;;34941:28:0;;;44883:126;;;;;;;;;;-1:-1:-1;44883:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44973:28:0;44949:4;44973:28;;;:19;:28;;;;;;;;;44883:126;35577:28;;;;;;;;;;;;;;;;35393:31;;;;;;;;;;-1:-1:-1;35393:31:0;;;;;;;;;;;10845:177;;;;;;;;;;-1:-1:-1;10845:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10996:18:0;10964:7;10996:18;;;;;;;;;;;;10845:177;2925:103;;;;;;;;;;;;;:::i;40120:534::-;;;;;;;;;;;;;:::i;41393:143::-;;;;;;;;;;-1:-1:-1;41393:143:0;;;;;:::i;:::-;;:::i;35068:30::-;;;;;;;;;;-1:-1:-1;35068:30:0;;;;-1:-1:-1;;;;;35068:30:0;;;43090:286;;;;;;;;;;-1:-1:-1;43090:286:0;;;;;:::i;:::-;;:::i;41736:455::-;;;;;;;;;;-1:-1:-1;41736:455:0;;;;;:::i;:::-;;:::i;2284:87::-;;;;;;;;;;-1:-1:-1;2357:6:0;;-1:-1:-1;;;;;2357:6:0;2284:87;;9764:104;;;;;;;;;;;;;:::i;40878:507::-;;;;;;;;;;-1:-1:-1;40878:507:0;;;;;:::i;:::-;;:::i;14345:505::-;;;;;;;;;;-1:-1:-1;14345:505:0;;;;;:::i;:::-;;:::i;11228:234::-;;;;;;;;;;-1:-1:-1;11228:234:0;;;;;:::i;:::-;;:::i;42748:334::-;;;;;;;;;;-1:-1:-1;42748:334:0;;;;;:::i;:::-;;:::i;35105:24::-;;;;;;;;;;-1:-1:-1;35105:24:0;;;;-1:-1:-1;;;;;35105:24:0;;;35353:33;;;;;;;;;;-1:-1:-1;35353:33:0;;;;;;;;43957:182;;;;;;;;;;-1:-1:-1;43957:182:0;;;;;:::i;:::-;;:::i;42199:541::-;;;;;;;;;;-1:-1:-1;42199:541:0;;;;;:::i;:::-;;:::i;35175:35::-;;;;;;;;;;;;;;;;44383:296;;;;;;;;;;-1:-1:-1;44383:296:0;;;;;:::i;:::-;;:::i;35317:27::-;;;;;;;;;;;;;;;;39034:1078;;;;;;;;;;-1:-1:-1;39034:1078:0;;;;;:::i;:::-;;:::i;40662:208::-;;;;;;;;;;-1:-1:-1;40662:208:0;;;;;:::i;:::-;;:::i;35136:30::-;;;;;;;;;;-1:-1:-1;35136:30:0;;;;-1:-1:-1;;;;;35136:30:0;;;35433:27;;;;;;;;;;;;;;;;11525:201;;;;;;;;;;-1:-1:-1;11525:201:0;;;;;:::i;:::-;;:::i;35217:33::-;;;;;;;;;;;;;;;;43384:334;;;;;;;;;;-1:-1:-1;43384:334:0;;;;;:::i;:::-;;:::i;3183:238::-;;;;;;;;;;-1:-1:-1;3183:238:0;;;;;:::i;:::-;;:::i;44147:228::-;;;;;;;;;;;;;:::i;35257:24::-;;;;;;;;;;;;;;;;41544:184;41644:9;;-1:-1:-1;;;;;41644:9:0;41630:10;:23;41622:44;;;;-1:-1:-1;;;41622:44:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;41677:36:0;;;;;;;;:31;:36;;;;;:43;;-1:-1:-1;;41677:43:0;;;;;;;;;;41544:184::o;9545:100::-;9599:13;9632:5;9625:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9545:100;:::o;12046:242::-;12165:4;909:10;12226:32;909:10;12242:7;12251:6;12226:8;:32::i;:::-;12276:4;12269:11;;;12046:242;;;;;:::o;43726:223::-;43819:9;;-1:-1:-1;;;;;43819:9:0;43805:10;:23;43797:44;;;;-1:-1:-1;;;43797:44:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43852:28:0;;;;;;:19;:28;;;;;;;;;:39;;-1:-1:-1;;43852:39:0;;;;;;;;;;43907:34;;1673:41:1;;;43907:34:0;;1646:18:1;43907:34:0;;;;;;;43726:223;;:::o;12868:295::-;12999:4;909:10;13057:38;13073:4;909:10;13088:6;13057:15;:38::i;:::-;13106:27;13116:4;13122:2;13126:6;13106:9;:27::i;:::-;-1:-1:-1;13151:4:0;;12868:295;-1:-1:-1;;;;12868:295:0:o;13572:270::-;13687:4;909:10;13748:64;909:10;13764:7;13801:10;13773:25;909:10;13764:7;13773:9;:25::i;:::-;:38;;;;:::i;:::-;13748:8;:64::i;38943:83::-;38993:25;38999:10;39011:6;38993:5;:25::i;:::-;38943:83;:::o;2925:103::-;2170:13;:11;:13::i;:::-;2990:30:::1;3017:1;2990:18;:30::i;:::-;2925:103::o:0;40120:534::-;2170:13;:11;:13::i;:::-;10762:12;;40174:20:::1;:36:::0;10762:12;;40221:9:::1;:25:::0;40277:1:::1;40259:15;:19:::0;;;40301:1:::1;40289:9;:13:::0;;;-1:-1:-1;40313:15:0::1;:19:::0;;;-1:-1:-1;40358:27:0::1;::::0;40301:1;40358:27:::1;:::i;:::-;:45;;;;:::i;:::-;40343:12;:60:::0;40435:1:::1;40416:16;:20:::0;;;40460:1:::1;40447:10;:14:::0;;;-1:-1:-1;40472:16:0::1;:20:::0;;;-1:-1:-1;40532:42:0::1;::::0;40460:1;40532:42:::1;:::i;:::-;:74;;;;:::i;:::-;40503:13;:103:::0;;;40619:11:::1;:27:::0;40120:534::o;41393:143::-;2170:13;:11;:13::i;43090:286::-;2170:13;:11;:13::i;:::-;-1:-1:-1;;;;;43196:24:0;::::1;43188:53;;;;-1:-1:-1::0;;;43188:53:0::1;;;;;;;:::i;:::-;43272:9;::::0;;-1:-1:-1;;;;;43292:22:0;;::::1;-1:-1:-1::0;;;;;;43292:22:0;::::1;::::0;::::1;::::0;;;43330:38:::1;::::0;43272:9;::::1;::::0;;;43330:38:::1;::::0;43252:17:::1;::::0;43330:38:::1;43177:199;43090:286:::0;:::o;41736:455::-;41898:9;;-1:-1:-1;;;;;41898:9:0;41884:10;:23;41876:44;;;;-1:-1:-1;;;41876:44:0;;;;;;;:::i;:::-;41931:15;:31;;;41973:9;:19;;;42003:15;:31;;;42021:13;42060:27;41985:7;41949:13;42060:27;:::i;:::-;:45;;;;:::i;:::-;42045:12;:60;;;42140:2;-1:-1:-1;42124:18:0;42116:67;;;;-1:-1:-1;;;42116:67:0;;;;;;;:::i;:::-;41736:455;;;:::o;9764:104::-;9820:13;9853:7;9846:14;;;;;:::i;40878:507::-;2170:13;:11;:13::i;:::-;41072:4:::1;41051:13;10762:12:::0;;;10674:108;41051:13:::1;:17;::::0;41067:1:::1;41051:17;:::i;:::-;41050:26;;;;:::i;:::-;41036:9;:41;;41014:131;;;::::0;-1:-1:-1;;;41014:131:0;;6734:2:1;41014:131:0::1;::::0;::::1;6716:21:1::0;6773:2;6753:18;;;6746:30;6812:34;6792:18;;;6785:62;-1:-1:-1;;;6863:18:1;;;6856:38;6911:19;;41014:131:0::1;6532:404:1::0;41014:131:0::1;41220:4;41199:13;10762:12:::0;;;10674:108;41199:13:::1;:17;::::0;41215:1:::1;41199:17;:::i;:::-;41198:26;;;;:::i;:::-;41178:15;:47;;41156:140;;;::::0;-1:-1:-1;;;41156:140:0;;7143:2:1;41156:140:0::1;::::0;::::1;7125:21:1::0;7182:2;7162:18;;;7155:30;7221:34;7201:18;;;7194:62;-1:-1:-1;;;7272:18:1;;;7265:41;7323:19;;41156:140:0::1;6941:407:1::0;41156:140:0::1;41307:9;:27:::0;41345:20:::1;:32:::0;40878:507::o;14345:505::-;14465:4;909:10;14465:4;14553:25;909:10;14570:7;14553:9;:25::i;:::-;14526:52;;14631:15;14611:16;:35;;14589:122;;;;-1:-1:-1;;;14589:122:0;;7555:2:1;14589:122:0;;;7537:21:1;7594:2;7574:18;;;7567:30;7633:34;7613:18;;;7606:62;-1:-1:-1;;;7684:18:1;;;7677:35;7729:19;;14589:122:0;7353:401:1;14589:122:0;14747:60;14756:5;14763:7;14791:15;14772:16;:34;14747:8;:60::i;11228:234::-;11343:4;909:10;11404:28;909:10;11421:2;11425:6;11404:9;:28::i;42748:334::-;2170:13;:11;:13::i;:::-;-1:-1:-1;;;;;42866:30:0;::::1;42858:59;;;;-1:-1:-1::0;;;42858:59:0::1;;;;;;;:::i;:::-;42948:15;::::0;;-1:-1:-1;;;;;42974:34:0;;::::1;-1:-1:-1::0;;;;;;42974:34:0;::::1;::::0;::::1;::::0;;;43024:50:::1;::::0;42948:15;::::1;::::0;;;43024:50:::1;::::0;42928:17:::1;::::0;43024:50:::1;42847:235;42748:334:::0;:::o;43957:182::-;2170:13;:11;:13::i;42199:541::-;42362:9;;-1:-1:-1;;;;;42362:9:0;42348:10;:23;42340:44;;;;-1:-1:-1;;;42340:44:0;;;;;;;:::i;:::-;42395:16;:32;;;42438:10;:20;;;42469:16;:32;;;42488:13;42541:42;42451:7;42414:13;42541:42;:::i;:::-;:74;;;;:::i;:::-;42512:13;:103;;;42626:11;:27;;;-1:-1:-1;42672:19:0;42664:68;;;;-1:-1:-1;;;42664:68:0;;;;;;;:::i;44383:296::-;44464:9;;-1:-1:-1;;;;;44464:9:0;44450:10;:23;44442:44;;;;-1:-1:-1;;;44442:44:0;;;;;;;:::i;:::-;44505:35;;-1:-1:-1;;;44505:35:0;;44534:4;44505:35;;;1898:51:1;44543:1:0;;-1:-1:-1;;;;;44505:20:0;;;;;1871:18:1;;44505:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;44497:61;;;;-1:-1:-1;;;44497:61:0;;8150:2:1;44497:61:0;;;8132:21:1;8189:1;8169:18;;;8162:29;-1:-1:-1;;;8207:18:1;;;8200:39;8256:18;;44497:61:0;7948:332:1;44497:61:0;44586:35;;-1:-1:-1;;;44586:35:0;;44615:4;44586:35;;;1898:51:1;44569:14:0;;-1:-1:-1;;;;;44586:20:0;;;;;1871:18:1;;44586:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44632:39;;-1:-1:-1;;;44632:39:0;;44652:10;44632:39;;;8459:51:1;8526:18;;;8519:34;;;44569:52:0;;-1:-1:-1;;;;;;44632:19:0;;;;;8432:18:1;;44632:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;39034:1078::-;2170:13;:11;:13::i;:::-;39107::::1;::::0;::::1;;39106:14;39098:50;;;::::0;-1:-1:-1;;;39098:50:0;;9016:2:1;39098:50:0::1;::::0;::::1;8998:21:1::0;9055:2;9035:18;;;9028:30;9094:25;9074:18;;;9067:53;9137:18;;39098:50:0::1;8814:347:1::0;39098:50:0::1;39195:15;-1:-1:-1::0;;;;;39195:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39177:55:0::1;;39255:4;39275:15;-1:-1:-1::0;;;;;39275:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39177:131;::::0;-1:-1:-1;;;;;;39177:131:0::1;::::0;;;;;;-1:-1:-1;;;;;9652:15:1;;;39177:131:0::1;::::0;::::1;9634:34:1::0;9704:15;;9684:18;;;9677:43;9569:18;;39177:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39161:13;:147:::0;;-1:-1:-1;;;;;;39161:147:0::1;-1:-1:-1::0;;;;;39161:147:0;;;::::1;::::0;;::::1;::::0;;39319:66:::1;::::0;39336:4:::1;::::0;-1:-1:-1;;39319:8:0::1;:66::i;:::-;39403:13;::::0;39396:111:::1;::::0;-1:-1:-1;;;39396:111:0;;-1:-1:-1;;;;;39448:15:0::1;8477:32:1::0;;39396:111:0::1;::::0;::::1;8459:51:1::0;-1:-1:-1;;8526:18:1;;;8519:34;39403:13:0;;::::1;::::0;39396:29:::1;::::0;8432:18:1;;39396:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;39557:13:0::1;::::0;39520:58:::1;::::0;-1:-1:-1;;;;;39557:13:0::1;::::0;39520:28:::1;:58::i;:::-;39623:13;::::0;39589:55:::1;::::0;-1:-1:-1;;;;;39623:13:0::1;::::0;39589:25:::1;:55::i;:::-;39657:15;-1:-1:-1::0;;;;;39657:31:0::1;;39696:21;39741:4;39761:24;39779:4;-1:-1:-1::0;;;;;10996:18:0;10964:7;10996:18;;;;;;;;;;;;10845:177;39761:24:::1;39800:1;39816::::0;39832:7:::1;2357:6:::0;;-1:-1:-1;;;;;2357:6:0;;2284:87;39832:7:::1;39854:15;39657:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39936:3;39915:13;10762:12:::0;;;10674:108;39915:13:::1;:17;::::0;39931:1:::1;39915:17;:::i;:::-;39914:25;;;;:::i;:::-;39891:20;:48:::0;39984:3:::1;39963:13;10762:12:::0;;;10674:108;39963:13:::1;:17;::::0;39979:1:::1;39963:17;:::i;:::-;39962:25;;;;:::i;:::-;39950:9;:37:::0;39998:2:::1;:8:::0;40017:13:::1;:20:::0;;-1:-1:-1;;40048:18:0;;;;;40092:12:::1;40077;:27:::0;39034:1078::o;40662:208::-;40777:9;;40733:4;;-1:-1:-1;;;;;40777:9:0;40763:10;:23;40755:44;;;;-1:-1:-1;;;40755:44:0;;;;;;;:::i;:::-;-1:-1:-1;40810:18:0;:30;40858:4;;40662:208::o;11525:201::-;-1:-1:-1;;;;;11691:18:0;;;11659:7;11691:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11525:201::o;43384:334::-;2170:13;:11;:13::i;:::-;-1:-1:-1;;;;;43502:30:0;::::1;43494:59;;;;-1:-1:-1::0;;;43494:59:0::1;;;;;;;:::i;:::-;43584:15;::::0;;-1:-1:-1;;;;;43610:34:0;;::::1;-1:-1:-1::0;;;;;;43610:34:0;::::1;::::0;::::1;::::0;;;43660:50:::1;::::0;43584:15;::::1;::::0;;;43660:50:::1;::::0;43564:17:::1;::::0;43660:50:::1;43483:235;43384:334:::0;:::o;3183:238::-;2170:13;:11;:13::i;:::-;-1:-1:-1;;;;;3286:22:0;::::1;3264:110;;;::::0;-1:-1:-1;;;3264:110:0;;10856:2:1;3264:110:0::1;::::0;::::1;10838:21:1::0;10895:2;10875:18;;;10868:30;10934:34;10914:18;;;10907:62;-1:-1:-1;;;10985:18:1;;;10978:36;11031:19;;3264:110:0::1;10654:402:1::0;3264:110:0::1;3385:28;3404:8;3385:18;:28::i;44147:228::-:0;44215:9;;-1:-1:-1;;;;;44215:9:0;44201:10;:23;44193:44;;;;-1:-1:-1;;;44193:44:0;;;;;;;:::i;:::-;44285:82;;44248:12;;44293:10;;44317:21;;44248:12;44285:82;44248:12;44285:82;44317:21;44293:10;44285:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;44147:228:0:o;18478:380::-;-1:-1:-1;;;;;18614:19:0;;18606:68;;;;-1:-1:-1;;;18606:68:0;;11473:2:1;18606:68:0;;;11455:21:1;11512:2;11492:18;;;11485:30;11551:34;11531:18;;;11524:62;-1:-1:-1;;;11602:18:1;;;11595:34;11646:19;;18606:68:0;11271:400:1;18606:68:0;-1:-1:-1;;;;;18693:21:0;;18685:68;;;;-1:-1:-1;;;18685:68:0;;11878:2:1;18685:68:0;;;11860:21:1;11917:2;11897:18;;;11890:30;11956:34;11936:18;;;11929:62;-1:-1:-1;;;12007:18:1;;;12000:32;12049:19;;18685:68:0;11676:398:1;18685:68:0;-1:-1:-1;;;;;18766:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18818:32;;2106:25:1;;;18818:32:0;;2079:18:1;18818:32:0;;;;;;;18478:380;;;:::o;19149:502::-;19284:24;19311:25;19321:5;19328:7;19311:9;:25::i;:::-;19284:52;;-1:-1:-1;;19351:16:0;:37;19347:297;;19451:6;19431:16;:26;;19405:117;;;;-1:-1:-1;;;19405:117:0;;12281:2:1;19405:117:0;;;12263:21:1;12320:2;12300:18;;;12293:30;12359:31;12339:18;;;12332:59;12408:18;;19405:117:0;12079:353:1;19405:117:0;19566:51;19575:5;19582:7;19610:6;19591:16;:25;19566:8;:51::i;45017:4016::-;-1:-1:-1;;;;;45149:18:0;;45141:68;;;;-1:-1:-1;;;45141:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45228:16:0;;45220:64;;;;-1:-1:-1;;;45220:64:0;;;;;;;:::i;:::-;45301:6;45311:1;45301:11;45297:93;;45329:28;45345:4;45351:2;45355:1;45329:15;:28::i;45297:93::-;2357:6;;-1:-1:-1;;;;;45420:15:0;;;2357:6;;45420:15;;;;:45;;-1:-1:-1;2357:6:0;;-1:-1:-1;;;;;45452:13:0;;;2357:6;;45452:13;;45420:45;:78;;;;-1:-1:-1;;;;;;45482:16:0;;;;45420:78;:112;;;;-1:-1:-1;;;;;;45515:17:0;;35022:6;45515:17;;45420:112;:138;;;;-1:-1:-1;45550:8:0;;-1:-1:-1;;;45550:8:0;;;;45549:9;45420:138;45402:1821;;;45590:13;;;;45585:210;;-1:-1:-1;;;;;45654:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45683:23:0;;;;;;:19;:23;;;;;;;;45654:52;45624:155;;;;-1:-1:-1;;;45624:155:0;;13449:2:1;45624:155:0;;;13431:21:1;13488:2;13468:18;;;13461:30;13527:31;13507:18;;;13500:59;13576:18;;45624:155:0;13247:353:1;45624:155:0;45873:12;;:17;;45888:2;45873:17;:::i;:::-;45857:12;:33;;:64;;;;;45908:13;45894:11;:27;45857:64;45835:270;;;45956:11;45970:27;45984:13;45970:11;:27;:::i;:::-;45956:41;;46016:12;46031:2;;46037:5;46031:12;;;;:::i;:::-;46016:27;;46076:4;46070:3;:10;46062:27;;;;-1:-1:-1;;;46062:27:0;;;;;;13940:2:1;13922:21;;;13979:1;13959:18;;;13952:29;-1:-1:-1;;;14012:2:1;13997:18;;13990:34;14056:2;14041:18;;13738:327;46062:27:0;45937:168;;45835:270;-1:-1:-1;;;;;46167:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;46220:35:0;;;;;;:31;:35;;;;;;;;46219:36;46167:88;46145:1067;;;46330:20;;46320:6;:30;;46290:164;;;;-1:-1:-1;;;46290:164:0;;14272:2:1;46290:164:0;;;14254:21:1;14311:2;14291:18;;;14284:30;14350:34;14330:18;;;14323:62;14421:30;14401:18;;;14394:58;14469:19;;46290:164:0;14070:424:1;46290:164:0;46529:9;;-1:-1:-1;;;;;10996:18:0;;10964:7;10996:18;;;;;;;;;;;46503:22;;:6;:22;:::i;:::-;:35;;46473:135;;;;-1:-1:-1;;;46473:135:0;;14701:2:1;46473:135:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:28;14759:18;;;14752:56;14825:18;;46473:135:0;14499:350:1;46473:135:0;46145:1067;;;-1:-1:-1;;;;;46690:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;46741:37:0;;;;;;:31;:37;;;;;;;;46740:38;46690:88;46668:544;;;46853:20;;46843:6;:30;;46813:165;;;;-1:-1:-1;;;46813:165:0;;15056:2:1;46813:165:0;;;15038:21:1;15095:2;15075:18;;;15068:30;15134:34;15114:18;;;15107:62;15205:31;15185:18;;;15178:59;15254:19;;46813:165:0;14854:425:1;46668:544:0;-1:-1:-1;;;;;47005:35:0;;;;;;:31;:35;;;;;;;;47000:212;;47117:9;;-1:-1:-1;;;;;10996:18:0;;10964:7;10996:18;;;;;;;;;;;47091:22;;:6;:22;:::i;:::-;:35;;47061:135;;;;-1:-1:-1;;;47061:135:0;;14701:2:1;47061:135:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:28;14759:18;;;14752:56;14825:18;;47061:135:0;14499:350:1;47061:135:0;47284:4;47235:28;10996:18;;;;;;;;;;;47342;;47318:42;;;;;;;47391:35;;-1:-1:-1;47415:11:0;;;;;;;47391:35;:61;;;;-1:-1:-1;47444:8:0;;-1:-1:-1;;;47444:8:0;;;;47443:9;47391:61;:110;;;;-1:-1:-1;;;;;;47470:31:0;;;;;;:25;:31;;;;;;;;47469:32;47391:110;:153;;;;-1:-1:-1;;;;;;47519:25:0;;;;;;:19;:25;;;;;;;;47518:26;47391:153;:194;;;;-1:-1:-1;;;;;;47562:23:0;;;;;;:19;:23;;;;;;;;47561:24;47391:194;47373:326;;;47612:8;:15;;-1:-1:-1;;;;47612:15:0;-1:-1:-1;;;47612:15:0;;;47644:10;:8;:10::i;:::-;47671:8;:16;;-1:-1:-1;;;;47671:16:0;;;47373:326;47727:8;;-1:-1:-1;;;;;47752:25:0;;47711:12;47752:25;;;:19;:25;;;;;;47727:8;-1:-1:-1;;;47727:8:0;;;;;47726:9;;47752:25;;:52;;-1:-1:-1;;;;;;47781:23:0;;;;;;:19;:23;;;;;;;;47752:52;47748:100;;;-1:-1:-1;47831:5:0;47748:100;47860:12;47893:7;47889:1053;;;-1:-1:-1;;;;;47945:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;47994:1;47978:13;;:17;47945:50;47941:852;;;48023:34;48053:3;48023:25;48034:13;;48023:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;48016:41;;48126:13;;48106:16;;48099:4;:23;;;;:::i;:::-;48098:41;;;;:::i;:::-;48076:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48208:13:0;;48188:16;;48181:23;;:4;:23;:::i;:::-;48180:41;;;;:::i;:::-;48158:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48320:13:0;;48285:10;;48278:17;;:4;:17;:::i;:::-;48277:56;;;;:::i;:::-;48240:12;;:93;;;;;;;:::i;:::-;;;;-1:-1:-1;47941:852:0;;-1:-1:-1;47941:852:0;;-1:-1:-1;;;;;48395:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;48445:1;48430:12;;:16;48395:51;48391:402;;;48474:33;48503:3;48474:24;48485:12;;48474:6;:10;;:24;;;;:::i;:33::-;48467:40;;48575:12;;48556:15;;48549:4;:22;;;;:::i;:::-;48548:39;;;;:::i;:::-;48526:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;48655:12:0;;48636:15;;48629:22;;:4;:22;:::i;:::-;48628:39;;;;:::i;:::-;48606:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;48765:12:0;;48731:9;;48724:16;;:4;:16;:::i;:::-;48723:54;;;;:::i;:::-;48686:12;;:91;;;;;;;:::i;:::-;;;;-1:-1:-1;;48391:402:0;48813:8;;48809:91;;48842:42;48858:4;48872;48879;48842:15;:42::i;:::-;48916:14;48926:4;48916:14;;:::i;:::-;;;47889:1053;48954:33;48970:4;48976:2;48980:6;48954:15;:33::i;:::-;-1:-1:-1;;49014:11:0;;48998:13;:27;-1:-1:-1;;;;;45017:4016:0:o;17365:675::-;-1:-1:-1;;;;;17449:21:0;;17441:67;;;;-1:-1:-1;;;17441:67:0;;15486:2:1;17441:67:0;;;15468:21:1;15525:2;15505:18;;;15498:30;15564:34;15544:18;;;15537:62;-1:-1:-1;;;15615:18:1;;;15608:31;15656:19;;17441:67:0;15284:397:1;17441:67:0;-1:-1:-1;;;;;17608:18:0;;17583:22;17608:18;;;;;;;;;;;17645:24;;;;17637:71;;;;-1:-1:-1;;;17637:71:0;;15888:2:1;17637:71:0;;;15870:21:1;15927:2;15907:18;;;15900:30;15966:34;15946:18;;;15939:62;-1:-1:-1;;;16017:18:1;;;16010:32;16059:19;;17637:71:0;15686:398:1;17637:71:0;-1:-1:-1;;;;;17744:18:0;;:9;:18;;;;;;;;;;;17765:23;;;17744:44;;17883:12;:22;;;;;;;17934:37;2106:25:1;;;17744:9:0;;:18;17934:37;;2079:18:1;17934:37:0;;;;;;;41736:455;;;:::o;2449:132::-;2357:6;;-1:-1:-1;;;;;2357:6:0;909:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;16291:2:1;2505:68:0;;;16273:21:1;;;16310:18;;;16303:30;16369:34;16349:18;;;16342:62;16421:18;;2505:68:0;16089:356:1;3581:191:0;3674:6;;;-1:-1:-1;;;;;3691:17:0;;;-1:-1:-1;;;;;;3691:17:0;;;;;;;3724:40;;3674:6;;;3691:17;3674:6;;3724:40;;3655:16;;3724:40;3644:128;3581:191;:::o;44687:188::-;-1:-1:-1;;;;;44770:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44770:39:0;;;;;;;;;;44827:40;;44770:39;;:31;44827:40;;;44687:188;;:::o;15320:877::-;-1:-1:-1;;;;;15451:18:0;;15443:68;;;;-1:-1:-1;;;15443:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15530:16:0;;15522:64;;;;-1:-1:-1;;;15522:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15672:15:0;;15650:19;15672:15;;;;;;;;;;;15720:21;;;;15698:109;;;;-1:-1:-1;;;15698:109:0;;16652:2:1;15698:109:0;;;16634:21:1;16691:2;16671:18;;;16664:30;16730:34;16710:18;;;16703:62;-1:-1:-1;;;16781:18:1;;;16774:36;16827:19;;15698:109:0;16450:402:1;15698:109:0;-1:-1:-1;;;;;15843:15:0;;;:9;:15;;;;;;;;;;;15861:20;;;15843:38;;16061:13;;;;;;;;;;:23;;;;;;16113:26;;2106:25:1;;;16061:13:0;;16113:26;;2079:18:1;16113:26:0;;;;;;;16152:37;41736:455;49928:1783;50011:4;49967:23;10996:18;;;;;;;;;;;49967:50;;50028:25;50124:12;;50090:18;;50056;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;50028:108;-1:-1:-1;50147:12:0;50176:20;;;:46;;-1:-1:-1;50200:22:0;;50176:46;50172:85;;;50239:7;;;49928:1783::o;50172:85::-;50291:18;;:23;;50312:2;50291:23;:::i;:::-;50273:15;:41;50269:115;;;50349:18;;:23;;50370:2;50349:23;:::i;:::-;50331:41;;50269:115;50396:23;50509:1;50476:17;50441:18;;50423:15;:36;;;;:::i;:::-;50422:71;;;;:::i;:::-;:88;;;;:::i;:::-;50396:114;-1:-1:-1;50521:26:0;50550:36;:15;50396:114;50550:19;:36::i;:::-;50521:65;-1:-1:-1;50627:21:0;50661:36;50521:65;50661:16;:36::i;:::-;50710:18;50731:44;:21;50757:17;50731:25;:44::i;:::-;50710:65;;50788:23;50814:81;50867:17;50814:34;50829:18;;50814:10;:14;;:34;;;;:::i;:81::-;50788:107;;50908:17;50928:75;50975:17;50928:28;50943:12;;50928:10;:14;;:28;;;;:::i;:75::-;50908:95;-1:-1:-1;51016:23:0;50908:95;51042:41;51068:15;51042:10;:41;:::i;:::-;:66;;;;:::i;:::-;51142:1;51121:18;:22;;;51154:18;:22;;;51187:12;:16;51016:92;-1:-1:-1;51220:19:0;;;;;:42;;;51261:1;51243:15;:19;51220:42;51216:278;;;51279:46;51292:15;51309;51279:12;:46::i;:::-;51449:18;;51345:137;;;17059:25:1;;;17115:2;17100:18;;17093:34;;;17143:18;;;17136:34;;;;51345:137:0;;;;;;17047:2:1;51345:137:0;;;51216:278;51528:9;;51520:69;;-1:-1:-1;;;;;51528:9:0;;;;51551;;51520:69;;;;51551:9;51528;51520:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51624:15:0;;51616:87;;51506:83;;-1:-1:-1;;;;;;51624:15:0;;51667:21;;51616:87;;;;51667:21;51624:15;51616:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;49928:1783:0:o;24826:98::-;24884:7;24911:5;24915:1;24911;:5;:::i;:::-;24904:12;24826:98;-1:-1:-1;;;24826:98:0:o;25225:::-;25283:7;25310:5;25314:1;25310;:5;:::i;24469:98::-;24527:7;24554:5;24558:1;24554;:5;:::i;49041:501::-;49131:16;;;49145:1;49131:16;;;;;;;;49107:21;;49131:16;;;;;;;;;;-1:-1:-1;49131:16:0;49107:40;;49176:4;49158;49163:1;49158:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;49158:23:0;;;-1:-1:-1;;;;;49158:23:0;;;;;49202:15;-1:-1:-1;;;;;49202:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49192:4;49197:1;49192:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;49192:32:0;;;-1:-1:-1;;;;;49192:32:0;;;;;49237:62;49254:4;49269:15;49287:11;49237:8;:62::i;:::-;49338:196;;-1:-1:-1;;;49338:196:0;;-1:-1:-1;;;;;49338:15:0;:66;;;;:196;;49419:11;;49445:1;;49461:4;;49488;;49508:15;;49338:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49096:446;49041:501;:::o;49550:370::-;49631:62;49648:4;49663:15;49681:11;49631:8;:62::i;:::-;49856:15;;49706:206;;-1:-1:-1;;;49706:206:0;;-1:-1:-1;;;;;49706:15:0;:31;;;;;49745:9;;49706:206;;49778:4;;49798:11;;49824:1;;;;49856:15;;;49886;;49706:206;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49550:370;;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:118;236:5;229:13;222:21;215:5;212:32;202:60;;258:1;255;248:12;273:382;338:6;346;399:2;387:9;378:7;374:23;370:32;367:52;;;415:1;412;405:12;367:52;454:9;441:23;473:31;498:5;473:31;:::i;:::-;523:5;-1:-1:-1;580:2:1;565:18;;552:32;593:30;552:32;593:30;:::i;:::-;642:7;632:17;;;273:382;;;;;:::o;660:548::-;772:4;801:2;830;819:9;812:21;862:6;856:13;905:6;900:2;889:9;885:18;878:34;930:1;940:140;954:6;951:1;948:13;940:140;;;1049:14;;;1045:23;;1039:30;1015:17;;;1034:2;1011:26;1004:66;969:10;;940:140;;;944:3;1129:1;1124:2;1115:6;1104:9;1100:22;1096:31;1089:42;1199:2;1192;1188:7;1183:2;1175:6;1171:15;1167:29;1156:9;1152:45;1148:54;1140:62;;;;660:548;;;;:::o;1213:315::-;1281:6;1289;1342:2;1330:9;1321:7;1317:23;1313:32;1310:52;;;1358:1;1355;1348:12;1310:52;1397:9;1384:23;1416:31;1441:5;1416:31;:::i;:::-;1466:5;1518:2;1503:18;;;;1490:32;;-1:-1:-1;;;1213:315:1:o;2142:456::-;2219:6;2227;2235;2288:2;2276:9;2267:7;2263:23;2259:32;2256:52;;;2304:1;2301;2294:12;2256:52;2343:9;2330:23;2362:31;2387:5;2362:31;:::i;:::-;2412:5;-1:-1:-1;2469:2:1;2454:18;;2441:32;2482:33;2441:32;2482:33;:::i;:::-;2142:456;;2534:7;;-1:-1:-1;;;2588:2:1;2573:18;;;;2560:32;;2142:456::o;3000:180::-;3059:6;3112:2;3100:9;3091:7;3087:23;3083:32;3080:52;;;3128:1;3125;3118:12;3080:52;-1:-1:-1;3151:23:1;;3000:180;-1:-1:-1;3000:180:1:o;3185:247::-;3244:6;3297:2;3285:9;3276:7;3272:23;3268:32;3265:52;;;3313:1;3310;3303:12;3265:52;3352:9;3339:23;3371:31;3396:5;3371:31;:::i;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:388::-;4079:6;4087;4140:2;4128:9;4119:7;4115:23;4111:32;4108:52;;;4156:1;4153;4146:12;4108:52;4195:9;4182:23;4214:31;4239:5;4214:31;:::i;:::-;4264:5;-1:-1:-1;4321:2:1;4306:18;;4293:32;4334:33;4293:32;4334:33;:::i;4404:331::-;4606:2;4588:21;;;4645:1;4625:18;;;4618:29;-1:-1:-1;;;4678:2:1;4663:18;;4656:38;4726:2;4711:18;;4404:331::o;4740:380::-;4819:1;4815:12;;;;4862;;;4883:61;;4937:4;4929:6;4925:17;4915:27;;4883:61;4990:2;4982:6;4979:14;4959:18;4956:38;4953:161;;5036:10;5031:3;5027:20;5024:1;5017:31;5071:4;5068:1;5061:15;5099:4;5096:1;5089:15;4953:161;;4740:380;;;:::o;5125:127::-;5186:10;5181:3;5177:20;5174:1;5167:31;5217:4;5214:1;5207:15;5241:4;5238:1;5231:15;5257:125;5322:9;;;5343:10;;;5340:36;;;5356:18;;:::i;5387:340::-;5589:2;5571:21;;;5628:2;5608:18;;;5601:30;-1:-1:-1;;;5662:2:1;5647:18;;5640:46;5718:2;5703:18;;5387:340::o;5732:400::-;5934:2;5916:21;;;5973:2;5953:18;;;5946:30;6012:34;6007:2;5992:18;;5985:62;-1:-1:-1;;;6078:2:1;6063:18;;6056:34;6122:3;6107:19;;5732:400::o;6137:168::-;6210:9;;;6241;;6258:15;;;6252:22;;6238:37;6228:71;;6279:18;;:::i;6310:217::-;6350:1;6376;6366:132;;6420:10;6415:3;6411:20;6408:1;6401:31;6455:4;6452:1;6445:15;6483:4;6480:1;6473:15;6366:132;-1:-1:-1;6512:9:1;;6310:217::o;7759:184::-;7829:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:52;;;7898:1;7895;7888:12;7850:52;-1:-1:-1;7921:16:1;;7759:184;-1:-1:-1;7759:184:1:o;8564:245::-;8631:6;8684:2;8672:9;8663:7;8659:23;8655:32;8652:52;;;8700:1;8697;8690:12;8652:52;8732:9;8726:16;8751:28;8773:5;8751:28;:::i;9166:251::-;9236:6;9289:2;9277:9;9268:7;9264:23;9260:32;9257:52;;;9305:1;9302;9295:12;9257:52;9337:9;9331:16;9356:31;9381:5;9356:31;:::i;9731:607::-;-1:-1:-1;;;;;10090:15:1;;;10072:34;;10137:2;10122:18;;10115:34;;;;10180:2;10165:18;;10158:34;;;;10223:2;10208:18;;10201:34;;;;10272:15;;;10266:3;10251:19;;10244:44;10052:3;10304:19;;10297:35;;;;10021:3;10006:19;;9731:607::o;10343:306::-;10431:6;10439;10447;10500:2;10488:9;10479:7;10475:23;10471:32;10468:52;;;10516:1;10513;10506:12;10468:52;10545:9;10539:16;10529:26;;10595:2;10584:9;10580:18;10574:25;10564:35;;10639:2;10628:9;10624:18;10618:25;10608:35;;10343:306;;;;;:::o;12437:401::-;12639:2;12621:21;;;12678:2;12658:18;;;12651:30;12717:34;12712:2;12697:18;;12690:62;-1:-1:-1;;;12783:2:1;12768:18;;12761:35;12828:3;12813:19;;12437:401::o;12843:399::-;13045:2;13027:21;;;13084:2;13064:18;;;13057:30;13123:34;13118:2;13103:18;;13096:62;-1:-1:-1;;;13189:2:1;13174:18;;13167:33;13232:3;13217:19;;12843:399::o;13605:128::-;13672:9;;;13693:11;;;13690:37;;;13707:18;;:::i;17313:127::-;17374:10;17369:3;17365:20;17362:1;17355:31;17405:4;17402:1;17395:15;17429:4;17426:1;17419:15;17445:980;17707:4;17755:3;17744:9;17740:19;17786:6;17775:9;17768:25;17812:2;17850:6;17845:2;17834:9;17830:18;17823:34;17893:3;17888:2;17877:9;17873:18;17866:31;17917:6;17952;17946:13;17983:6;17975;17968:22;18021:3;18010:9;18006:19;17999:26;;18060:2;18052:6;18048:15;18034:29;;18081:1;18091:195;18105:6;18102:1;18099:13;18091:195;;;18170:13;;-1:-1:-1;;;;;18166:39:1;18154:52;;18261:15;;;;18226:12;;;;18202:1;18120:9;18091:195;;;-1:-1:-1;;;;;;;18342:32:1;;;;18337:2;18322:18;;18315:60;-1:-1:-1;;;18406:3:1;18391:19;18384:35;18303:3;17445:980;-1:-1:-1;;;17445:980:1:o

Swarm Source

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