ETH Price: $3,497.98 (+2.01%)
Gas: 2 Gwei

Token

Hydra (HYDRA)
 

Overview

Max Total Supply

7,594,666,764.888888888888888885 HYDRA

Holders

948 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,350,151.499864202047186895 HYDRA

Value
$0.00
0xb1a06f1c78ea28bed28f42b3dde157c706c0fe43
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hydra The Dragon - is a memecoin, ready to soar the skies of Ethereum.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HydraToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-28
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

// pragma solidity ^0.8.0;

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

// pragma solidity ^0.8.0;

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

    bool private _swapping;
    bool public swapEnabled = false;
    bool public dynamicTaxesEnabled = true;
    bool public dynamicLimitsEnabled = true;
    bool public launched;

    address public marketingWallet;
    address public developmentWallet;

    uint256 public launchBlock;
    uint256 public launchTime;

    uint256 public defaultMaxTransaction;
    uint256 public defaultMaxWallet;

    uint256 public swapTokensAtAmount;

    uint256 public buyFees;

    uint256 public sellFees;

    uint256 private previousFee;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    modifier lockSwapping() {
        _swapping = true;
        _;
        _swapping = false;
    }

    constructor(address _owner) ERC20("Hydra", "HYDRA") {
        uint256 totalSupply = 8888888888888888888888888888;
        address treasuryWallet = 0x6487D57C6F1071fbDA05A004523bf30A0274Cf36;
        address mmWallet = 0x52fb046A45B972a38Eff06f7f1527B1AC756D8D5;
        address partnershipsWallet = 0xA04Fc5Ec6b042B28841ead6883EC50Dd4d7B5071;
        address communityGrowthWallet = 0xde38D49a22a18536Ec45cbf4f517003704fa8dc7;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        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
        );
        
        defaultMaxTransaction = (totalSupply * 5) / 1000;
        defaultMaxWallet = (totalSupply * 5) / 1000;

        swapTokensAtAmount = (totalSupply * 1) / 1000;

        buyFees = 3;
        sellFees = 3;
        previousFee = sellFees;

        marketingWallet = 0x632b3089140558a9ce3a94011A8207939633f64D;
        developmentWallet = 0xE08dd3eF9e52aC3f3794D1544c713EC67809DFA7;

        excludeFromFees(owner(), true);
        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(developmentWallet, true);
        excludeFromFees(treasuryWallet, true);
        excludeFromFees(mmWallet, true);
        excludeFromFees(partnershipsWallet, true);
        excludeFromFees(communityGrowthWallet, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(developmentWallet, true);
        excludeFromMaxTransaction(treasuryWallet, true);
        excludeFromMaxTransaction(mmWallet, true);
        excludeFromMaxTransaction(partnershipsWallet, true);
        excludeFromMaxTransaction(communityGrowthWallet, true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(communityGrowthWallet, (totalSupply * 2) / 100);
        _mint(partnershipsWallet, (totalSupply * 5) / 100);
        _mint(mmWallet, (totalSupply * 8) / 100);
        _mint(_owner, (totalSupply * 21) / 100);
        _mint(treasuryWallet, (totalSupply * 28) / 100);
        _mint(owner(), (totalSupply * 36) / 100);
    }

    receive() external payable {}

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

    function setSwapEnabled(bool value) public onlyOwner {
        swapEnabled = value;
    }

    function setDynamicTaxesEnabled(bool value) public onlyOwner {
        dynamicTaxesEnabled = value;
    }

    function setDynamicLimitsEnabled(bool value) public onlyOwner {
        dynamicLimitsEnabled = value;
    }

    function setLaunched()
        public
        onlyOwner
    {
        require(!launched, "ERC20: Already launched.");
        launched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
    }

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

    function updateDefaultLimits(
        uint256 maxTransaction,
        uint256 maxWallet
    ) external onlyOwner {
        require(
            maxTransaction >= ((totalSupply() * 1) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.1%"
        );
        require(
            maxWallet >= ((totalSupply() * 1) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.1%"
        );
        defaultMaxTransaction = maxTransaction;
        defaultMaxWallet = maxWallet;
    }

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

    function bulkExcludeFromMaxTransaction(
        address[] calldata accounts,
        bool value
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedMaxTransactionAmount[accounts[i]] = value;
        }
    }

    function updateBuyFees(uint256 _buyFees) public onlyOwner {
        buyFees = _buyFees;
        require(buyFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(uint256 _sellFees) public onlyOwner {
        sellFees = _sellFees;
        previousFee = sellFees;
        require(sellFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

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

    function updateDevelopmentWallet(address _developmentWallet)
        public
        onlyOwner
    {
        require(_developmentWallet != address(0), "ERC20: Address 0");
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit developmentWalletUpdated(developmentWallet, oldWallet);
    }

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

    function bulkExcludeFromFees(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = value;
        }
    }

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

    function withdrawStuckTokens(address tkn) public onlyOwner {
        if (tkn == address(0)) {
            bool success;
            (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
            );
        } else {
            require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
            uint256 amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(msg.sender, amount);
        }
    }

    function unclog() public onlyOwner lockSwapping {
        swapTokensForEth(
            balanceOf(address(this))
        );

        uint256 ethBalance = address(this).balance;
        uint256 ethMarketing = ethBalance / 2;
        uint256 ethDevelopment = ethBalance - ethMarketing;

        bool success;
        (success, ) = address(marketingWallet).call{value: ethMarketing}("");

        (success, ) = address(developmentWallet).call{value: ethDevelopment}(
            ""
        );
    }

    function _setAutomatedMarketMakerPair(address pair, bool value)
        internal
        virtual
    {
        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");

        require(!_isBot[from], "ERC20: bot detected");
        require(!_isBot[msg.sender], "ERC20: bot detected");
        require(!_isBot[tx.origin], "ERC20: bot detected");

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

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !_swapping
        ) {
            uint256 maxTransaction;
            uint256 maxWallet;
            if (dynamicLimitsEnabled) {
                if (block.timestamp > launchTime + (1 hours)) {
                    maxTransaction = totalSupply();
                    maxWallet = totalSupply();
                } else if (block.timestamp > launchTime + (20 minutes)) {
                    maxTransaction = (totalSupply() * 111) / 10000;
                    maxWallet = (totalSupply() * 111) / 10000;
                } else if (block.timestamp > launchTime + (10 minutes)) {
                    maxTransaction = (totalSupply() * 55) / 10000;
                    maxWallet = (totalSupply() * 55) / 10000;
                } else {
                    maxTransaction = (totalSupply() * 28) / 10000;
                    maxWallet = (totalSupply() * 28) / 10000;
                }
            } else {
                maxTransaction = defaultMaxTransaction;
                maxWallet = defaultMaxWallet;
            }

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransaction,
                    "ERC20: Buy transfer amount exceeds the maxTransaction."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransaction,
                    "ERC20: Sell transfer amount exceeds the maxTransaction."
                );
            } 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]
        ) {
            swapBack(contractTokenBalance);
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;
        uint256 totalFees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                if (dynamicTaxesEnabled) {
                    if (block.timestamp > launchTime + (1 days)) {
                        totalFees = sellFees;
                    } else if (block.timestamp > launchTime + (2 hours)) {
                        totalFees = 5;
                    } else if (block.timestamp > launchTime + (30 minutes)) {
                        totalFees = 20;
                    } else if (block.timestamp > launchTime + (15 minutes)) {
                        totalFees = 30;
                    } else if (block.timestamp > launchTime + (5 minutes)) {
                        totalFees = 35;
                    } else {
                        totalFees = 40;
                    }
                } else {
                    totalFees = sellFees;
                }
                fees = amount.mul(totalFees).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                if (dynamicTaxesEnabled) {
                    if (block.timestamp > launchTime + (1 days)) {
                        totalFees = buyFees;
                    } else if (block.timestamp > launchTime + (2 hours)) {
                        totalFees = 5;
                    } else if (block.timestamp > launchTime + (30 minutes)) {
                        totalFees = 8;
                    } else if (block.timestamp > launchTime + (15 minutes)) {
                        totalFees = 15;
                    } else if (block.timestamp > launchTime + (5 minutes)) {
                        totalFees = 25;
                    } else {
                        totalFees = 40;
                    }
                } else {
                    totalFees = buyFees;
                }
                fees = amount.mul(totalFees).div(100);
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) internal virtual {
        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 swapBack(uint256 contractTokenBalance)
        internal
        virtual
        lockSwapping
    {
        bool success;

        if (contractTokenBalance == 0) {
            return;
        }

        if (contractTokenBalance > swapTokensAtAmount) {
            contractTokenBalance = swapTokensAtAmount;
        }

        swapTokensForEth(contractTokenBalance);

        uint256 ethBalance = address(this).balance;
        uint256 ethMarketing = ethBalance / 2;
        uint256 ethDevelopment = ethBalance - ethMarketing;

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

        (success, ) = address(developmentWallet).call{value: ethDevelopment}(
            ""
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFees","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":[],"name":"defaultMaxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicTaxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLaunched","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"unclog","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":"_buyFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTransaction","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"updateDefaultLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","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":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805462ffffff60a81b191661010160b01b1790553480156200002757600080fd5b506040516200377b3803806200377b8339810160408190526200004a91620009e5565b60405180604001604052806005815260200164487964726160d81b81525060405180604001604052806005815260200164485944524160d81b815250816003908162000097919062000abb565b506004620000a6828262000abb565b505050620000c3620000bd6200064b60201b60201c565b6200064f565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b1cb8b770373d5772b8e38e3890736487d57c6f1071fbda05a004523bf30a0274cf36907352fb046a45b972a38eff06f7f1527b1ac756d8d59073a04fc5ec6b042b28841ead6883ec50dd4d7b50719073de38d49a22a18536ec45cbf4f517003704fa8dc79062000153903090600019620006a1565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba9190620009e5565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002309190620009e5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200027e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a49190620009e5565b600680546001600160a01b0319166001600160a01b03929092169182179055620002d3903090600019620006a1565b60065460805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af11580156200032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000350919062000b87565b506103e86200036186600562000bc1565b6200036d919062000be1565b600b556103e86200038086600562000bc1565b6200038c919062000be1565b600c556103e86200039f86600162000bc1565b620003ab919062000be1565b600d556003600e819055600f819055601055600780546001600160a01b031990811673632b3089140558a9ce3a94011a8207939633f64d179091556008805490911673e08dd3ef9e52ac3f3794d1544c713ec67809dfa7179055620004246200041c6005546001600160a01b031690565b6001620007cd565b62000431866001620007cd565b6200043e306001620007cd565b6200044d61dead6001620007cd565b60075462000466906001600160a01b03166001620007cd565b6008546200047f906001600160a01b03166001620007cd565b6200048c846001620007cd565b62000499836001620007cd565b620004a6826001620007cd565b620004b3816001620007cd565b620004d2620004ca6005546001600160a01b031690565b600162000836565b620004df86600162000836565b620004ec30600162000836565b620004fb61dead600162000836565b6080516200050b90600162000836565b60065462000524906001600160a01b0316600162000836565b6007546200053d906001600160a01b0316600162000836565b60085462000556906001600160a01b0316600162000836565b6200056384600162000836565b6200057083600162000836565b6200057d82600162000836565b6200058a81600162000836565b600654620005a3906001600160a01b031660016200086b565b620005c9816064620005b788600262000bc1565b620005c3919062000be1565b620008bf565b620005dd826064620005b788600562000bc1565b620005f1836064620005b788600862000bc1565b62000605866064620005b788601562000bc1565b62000619846064620005b788601c62000bc1565b6200063f620006306005546001600160a01b031690565b6064620005b788602462000bc1565b50505050505062000c1a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620007095760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200076c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620007d762000982565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200084062000982565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620009175760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000700565b80600260008282546200092b919062000c04565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620009de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000700565b565b505050565b600060208284031215620009f857600080fd5b81516001600160a01b038116811462000a1057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a4257607f821691505b60208210810362000a6357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620009e057600081815260208120601f850160051c8101602086101562000a925750805b601f850160051c820191505b8181101562000ab35782815560010162000a9e565b505050505050565b81516001600160401b0381111562000ad75762000ad762000a17565b62000aef8162000ae8845462000a2d565b8462000a69565b602080601f83116001811462000b27576000841562000b0e5750858301515b600019600386901b1c1916600185901b17855562000ab3565b600085815260208120601f198616915b8281101562000b585788860151825594840194600190910190840162000b37565b508582101562000b775787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000b9a57600080fd5b8151801515811462000a1057600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000bdb5762000bdb62000bab565b92915050565b60008262000bff57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000bdb5762000bdb62000bab565b608051612b2962000c526000396000818161036d01528181610e15015281816121fd015281816122b601526122f20152612b296000f3fe6080604052600436106102b25760003560e01c80638091f3bf11610175578063d00efb2f116100dc578063e0f3ccf511610095578063eba4c3331161006f578063eba4c33314610856578063f023f57314610876578063f26a992e14610896578063f2fde38b146108b757600080fd5b8063e0f3ccf514610814578063e2f456051461082a578063e4748b9e1461084057600080fd5b8063d00efb2f14610768578063d257b34f1461077e578063d7d1d10e1461079e578063d84f5a37146107be578063dd62ed3e146107d4578063e01af92c146107f457600080fd5b8063a9059cbb1161012e578063a9059cbb146106a8578063aacebbe3146106c8578063c0246668146106e8578063c04a541414610708578063c073b63314610728578063cb9637281461074857600080fd5b80638091f3bf146105ff5780638da5cb5b146106205780639507b19b1461063e57806395d89b41146106535780639c0db5f314610668578063a457c2d71461068857600080fd5b806342966c681161021957806370a08231116101d257806370a082311461053e578063715018a61461057457806371fc4688146105895780637571336a146105a957806375f0a874146105c9578063790ca413146105e957600080fd5b806342966c681461046f57806349bd5a5e1461048f5780634fbee193146104af57806367c45349146104e85780636ddd1713146104fd5780636f0816f91461051e57600080fd5b80631f89aa931161026b5780631f89aa93146103c657806323b872dd146103dc57806327c8f835146103fc578063313ce56714610412578063395093511461042e5780633a03c07e1461044e57600080fd5b806306fdde03146102be578063095ea7b3146102e95780630c8c076014610319578063155ca7c11461033b5780631694505e1461035b57806318160ddd146103a757600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108d7565b6040516102e09190612618565b60405180910390f35b3480156102f557600080fd5b5061030961030436600461267b565b610969565b60405190151581526020016102e0565b34801561032557600080fd5b506103396103343660046126b5565b610983565b005b34801561034757600080fd5b506103396103563660046126d2565b6109a9565b34801561036757600080fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102e0565b3480156103b357600080fd5b506002545b6040519081526020016102e0565b3480156103d257600080fd5b506103b8600b5481565b3480156103e857600080fd5b506103096103f7366004612758565b610a28565b34801561040857600080fd5b5061038f61dead81565b34801561041e57600080fd5b50604051601281526020016102e0565b34801561043a57600080fd5b5061030961044936600461267b565b610a4c565b34801561045a57600080fd5b5060065461030990600160b81b900460ff1681565b34801561047b57600080fd5b5061033961048a366004612799565b610a6e565b34801561049b57600080fd5b5060065461038f906001600160a01b031681565b3480156104bb57600080fd5b506103096104ca3660046127b2565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104f457600080fd5b50610339610a7b565b34801561050957600080fd5b5060065461030990600160a81b900460ff1681565b34801561052a57600080fd5b506103396105393660046127cf565b610b9b565b34801561054a57600080fd5b506103b86105593660046127b2565b6001600160a01b031660009081526020819052604090205490565b34801561058057600080fd5b50610339610cb8565b34801561059557600080fd5b506103396105a4366004612799565b610ccc565b3480156105b557600080fd5b506103396105c43660046127f1565b610cfa565b3480156105d557600080fd5b5060075461038f906001600160a01b031681565b3480156105f557600080fd5b506103b8600a5481565b34801561060b57600080fd5b5060065461030990600160c01b900460ff1681565b34801561062c57600080fd5b506005546001600160a01b031661038f565b34801561064a57600080fd5b50610339610d2d565b34801561065f57600080fd5b506102d3610dac565b34801561067457600080fd5b506103396106833660046126d2565b610dbb565b34801561069457600080fd5b506103096106a336600461267b565b610f17565b3480156106b457600080fd5b506103096106c336600461267b565b610f92565b3480156106d457600080fd5b506103396106e33660046127b2565b610fa0565b3480156106f457600080fd5b506103396107033660046127f1565b611042565b34801561071457600080fd5b5060085461038f906001600160a01b031681565b34801561073457600080fd5b506103396107433660046126b5565b6110a9565b34801561075457600080fd5b506103396107633660046127b2565b6110cf565b34801561077457600080fd5b506103b860095481565b34801561078a57600080fd5b50610309610799366004612799565b6112be565b3480156107aa57600080fd5b506103396107b93660046126d2565b6113fe565b3480156107ca57600080fd5b506103b8600c5481565b3480156107e057600080fd5b506103b86107ef36600461282a565b611477565b34801561080057600080fd5b5061033961080f3660046126b5565b6114a2565b34801561082057600080fd5b506103b8600f5481565b34801561083657600080fd5b506103b8600d5481565b34801561084c57600080fd5b506103b8600e5481565b34801561086257600080fd5b50610339610871366004612799565b6114c8565b34801561088257600080fd5b506103396108913660046127b2565b6114fb565b3480156108a257600080fd5b5060065461030990600160b01b900460ff1681565b3480156108c357600080fd5b506103396108d23660046127b2565b61159d565b6060600380546108e690612858565b80601f016020809104026020016040519081016040528092919081815260200182805461091290612858565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600033610977818585611613565b60019150505b92915050565b61098b611737565b60068054911515600160b01b0260ff60b01b19909216919091179055565b6109b1611737565b60005b82811015610a225781601160008686858181106109d3576109d3612892565b90506020020160208101906109e891906127b2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610a1a816128be565b9150506109b4565b50505050565b600033610a36858285611791565b610a41858585611805565b506001949350505050565b600033610977818585610a5f8383611477565b610a6991906128d7565b611613565b610a783382612074565b50565b610a83611737565b6006805460ff60a01b1916600160a01b179055610abd610ab8306001600160a01b031660009081526020819052604090205490565b6121a6565b476000610acb6002836128ea565b90506000610ad9828461290c565b6007546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610b2b576040519150601f19603f3d011682016040523d82523d6000602084013e610b30565b606091505b50506008546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610b80576040519150601f19603f3d011682016040523d82523d6000602084013e610b85565b606091505b50506006805460ff60a01b191690555050505050565b610ba3611737565b6103e8610baf60025490565b610bba90600161291f565b610bc491906128ea565b821015610c295760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e312560c01b60648201526084015b60405180910390fd5b6103e8610c3560025490565b610c4090600161291f565b610c4a91906128ea565b811015610cad5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b6064820152608401610c20565b600b91909155600c55565b610cc0611737565b610cca6000612366565b565b610cd4611737565b600e819055600a811115610a785760405162461bcd60e51b8152600401610c2090612936565b610d02611737565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610d35611737565b600654600160c01b900460ff1615610d8f5760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e00000000000000006044820152606401610c20565b6006805460ff60c01b1916600160c01b1790554360095542600a55565b6060600480546108e690612858565b610dc3611737565b60005b82811015610a22576006546001600160a01b0316848483818110610dec57610dec612892565b9050602002016020810190610e0191906127b2565b6001600160a01b031614158015610e7057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610e4f57610e4f612892565b9050602002016020810190610e6491906127b2565b6001600160a01b031614155b8015610eab575030848483818110610e8a57610e8a612892565b9050602002016020810190610e9f91906127b2565b6001600160a01b031614155b15610f05578160146000868685818110610ec757610ec7612892565b9050602002016020810190610edc91906127b2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610f0f816128be565b915050610dc6565b60003381610f258286611477565b905083811015610f855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c20565b610a418286868403611613565b600033610977818585611805565b610fa8611737565b6001600160a01b038116610ff15760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610c20565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61104a611737565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110b1611737565b60068054911515600160b81b0260ff60b81b19909216919091179055565b6110d7611737565b6001600160a01b03811661113657604051600090339047908381818185875af1925050503d8060008114611127576040519150601f19603f3d011682016040523d82523d6000602084013e61112c565b606091505b50610a7892505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561117d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a1919061297a565b116111da5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610c20565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611221573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611245919061297a565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b99190612993565b505050565b60006112c8611737565b620186a06112d560025490565b6112e090600161291f565b6112ea91906128ea565b82101561135f5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610c20565b6103e861136b60025490565b61137690600561291f565b61138091906128ea565b8211156113f55760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610c20565b50600d55600190565b611406611737565b60005b82811015610a2257816012600086868581811061142857611428612892565b905060200201602081019061143d91906127b2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061146f816128be565b915050611409565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114aa611737565b60068054911515600160a81b0260ff60a81b19909216919091179055565b6114d0611737565b600f8190556010819055600a811115610a785760405162461bcd60e51b8152600401610c2090612936565b611503611737565b6001600160a01b03811661154c5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610c20565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a35050565b6115a5611737565b6001600160a01b03811661160a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b610a7881612366565b6001600160a01b0383166116755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b6001600160a01b0382166116d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610cca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c20565b600061179d8484611477565b90506000198114610a2257818110156117f85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c20565b610a228484848403611613565b6001600160a01b03831661182b5760405162461bcd60e51b8152600401610c20906129b0565b6001600160a01b0382166118515760405162461bcd60e51b8152600401610c20906129f5565b6001600160a01b03831660009081526014602052604090205460ff161561188a5760405162461bcd60e51b8152600401610c2090612a38565b3360009081526014602052604090205460ff16156118ba5760405162461bcd60e51b8152600401610c2090612a38565b3260009081526014602052604090205460ff16156118ea5760405162461bcd60e51b8152600401610c2090612a38565b806000036118fe576112b9838360006123b8565b6005546001600160a01b0384811691161480159061192a57506005546001600160a01b03838116911614155b801561193e57506001600160a01b03821615155b801561195557506001600160a01b03821661dead14155b801561196b5750600654600160a01b900460ff16155b15611d21576006546000908190600160b81b900460ff1615611a8f57600a5461199690610e106128d7565b4211156119ab576002549150815b9050611a98565b600a546119ba906104b06128d7565b421115611a05576127106119cd60025490565b6119d890606f61291f565b6119e291906128ea565b91506127106119f060025490565b6119fb90606f61291f565b6119a491906128ea565b600a54611a14906102586128d7565b421115611a5557612710611a2760025490565b611a3290603761291f565b611a3c91906128ea565b9150612710611a4a60025490565b6119fb90603761291f565b612710611a6160025490565b611a6c90601c61291f565b611a7691906128ea565b9150612710611a8460025490565b6119fb90601c61291f565b5050600b54600c545b6001600160a01b03851660009081526013602052604090205460ff168015611ad957506001600160a01b03841660009081526012602052604090205460ff16155b15611bca5781831115611b4d5760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b6064820152608401610c20565b80611b6d856001600160a01b031660009081526020819052604090205490565b611b7790856128d7565b1115611bc55760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610c20565b611d1e565b6001600160a01b03841660009081526013602052604090205460ff168015611c0b57506001600160a01b03851660009081526012602052604090205460ff16155b15611c865781831115611bc55760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e0000000000000000006064820152608401610c20565b6001600160a01b03841660009081526012602052604090205460ff16611d1e5780611cc6856001600160a01b031660009081526020819052604090205490565b611cd090856128d7565b1115611d1e5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610c20565b50505b30600090815260208190526040902054600d5481108015908190611d4e5750600654600160a81b900460ff165b8015611d645750600654600160a01b900460ff16155b8015611d8957506001600160a01b03851660009081526013602052604090205460ff16155b8015611dae57506001600160a01b03851660009081526011602052604090205460ff16155b8015611dd357506001600160a01b03841660009081526011602052604090205460ff16155b15611de157611de1826124e2565b6006546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611e2f57506001600160a01b03851660009081526011602052604090205460ff165b15611e38575060005b6000808215612059576001600160a01b03871660009081526013602052604090205460ff168015611e6b57506000600f54115b15611f4357600654600160b01b900460ff1615611f2257600a54611e9290620151806128d7565b421115611ea25750600f54611f27565b600a54611eb190611c206128d7565b421115611ec057506005611f27565b600a54611ecf906107086128d7565b421115611ede57506014611f27565b600a54611eed906103846128d7565b421115611efc5750601e611f27565b600a54611f0b9061012c6128d7565b421115611f1a57506023611f27565b506028611f27565b50600f545b611f3c6064611f3688846125f9565b9061260c565b915061203b565b6001600160a01b03881660009081526013602052604090205460ff168015611f6d57506000600e54115b1561203b57600654600160b01b900460ff161561202457600a54611f9490620151806128d7565b421115611fa45750600e54612029565b600a54611fb390611c206128d7565b421115611fc257506005612029565b600a54611fd1906107086128d7565b421115611fe057506008612029565b600a54611fef906103846128d7565b421115611ffe5750600f612029565b600a5461200d9061012c6128d7565b42111561201c57506019612029565b506028612029565b50600e545b6120386064611f3688846125f9565b91505b811561204c5761204c8830846123b8565b612056828761290c565b95505b6120648888886123b8565b5050601054600f55505050505050565b6001600160a01b0382166120d45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c20565b6001600160a01b038216600090815260208190526040902054818110156121485760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c20565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121db576121db612892565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227d9190612a65565b8160018151811061229057612290612892565b60200260200101906001600160a01b031690816001600160a01b0316815250506122db307f000000000000000000000000000000000000000000000000000000000000000084611613565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612330908590600090869030904290600401612a82565b600060405180830381600087803b15801561234a57600080fd5b505af115801561235e573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166123de5760405162461bcd60e51b8152600401610c20906129b0565b6001600160a01b0382166124045760405162461bcd60e51b8152600401610c20906129f5565b6001600160a01b0383166000908152602081905260409020548181101561247c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c20565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a22565b6006805460ff60a01b1916600160a01b179055600081810361250457506125e9565b600d5482111561251457600d5491505b61251d826121a6565b47600061252b6002836128ea565b90506000612539828461290c565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114612587576040519150601f19603f3d011682016040523d82523d6000602084013e61258c565b606091505b50506008546040519195506001600160a01b0316908290600081818185875af1925050503d80600081146125dc576040519150601f19603f3d011682016040523d82523d6000602084013e6125e1565b606091505b505050505050505b506006805460ff60a01b19169055565b6000612605828461291f565b9392505050565b600061260582846128ea565b600060208083528351808285015260005b8181101561264557858101830151858201604001528201612629565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7857600080fd5b6000806040838503121561268e57600080fd5b823561269981612666565b946020939093013593505050565b8015158114610a7857600080fd5b6000602082840312156126c757600080fd5b8135612605816126a7565b6000806000604084860312156126e757600080fd5b833567ffffffffffffffff808211156126ff57600080fd5b818601915086601f83011261271357600080fd5b81358181111561272257600080fd5b8760208260051b850101111561273757600080fd5b6020928301955093505084013561274d816126a7565b809150509250925092565b60008060006060848603121561276d57600080fd5b833561277881612666565b9250602084013561278881612666565b929592945050506040919091013590565b6000602082840312156127ab57600080fd5b5035919050565b6000602082840312156127c457600080fd5b813561260581612666565b600080604083850312156127e257600080fd5b50508035926020909101359150565b6000806040838503121561280457600080fd5b823561280f81612666565b9150602083013561281f816126a7565b809150509250929050565b6000806040838503121561283d57600080fd5b823561284881612666565b9150602083013561281f81612666565b600181811c9082168061286c57607f821691505b60208210810361288c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128d0576128d06128a8565b5060010190565b8082018082111561097d5761097d6128a8565b60008261290757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561097d5761097d6128a8565b808202811582820484141761097d5761097d6128a8565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561298c57600080fd5b5051919050565b6000602082840312156129a557600080fd5b8151612605816126a7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b600060208284031215612a7757600080fd5b815161260581612666565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ad25784516001600160a01b031683529383019391830191600101612aad565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220400b32d0491043713fc669a5e90d103944ec586baa2f54204ea9e22c0ab8811f64736f6c63430008110033000000000000000000000000ea4a27747ffb046e50c24515e205cca27fd79375

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638091f3bf11610175578063d00efb2f116100dc578063e0f3ccf511610095578063eba4c3331161006f578063eba4c33314610856578063f023f57314610876578063f26a992e14610896578063f2fde38b146108b757600080fd5b8063e0f3ccf514610814578063e2f456051461082a578063e4748b9e1461084057600080fd5b8063d00efb2f14610768578063d257b34f1461077e578063d7d1d10e1461079e578063d84f5a37146107be578063dd62ed3e146107d4578063e01af92c146107f457600080fd5b8063a9059cbb1161012e578063a9059cbb146106a8578063aacebbe3146106c8578063c0246668146106e8578063c04a541414610708578063c073b63314610728578063cb9637281461074857600080fd5b80638091f3bf146105ff5780638da5cb5b146106205780639507b19b1461063e57806395d89b41146106535780639c0db5f314610668578063a457c2d71461068857600080fd5b806342966c681161021957806370a08231116101d257806370a082311461053e578063715018a61461057457806371fc4688146105895780637571336a146105a957806375f0a874146105c9578063790ca413146105e957600080fd5b806342966c681461046f57806349bd5a5e1461048f5780634fbee193146104af57806367c45349146104e85780636ddd1713146104fd5780636f0816f91461051e57600080fd5b80631f89aa931161026b5780631f89aa93146103c657806323b872dd146103dc57806327c8f835146103fc578063313ce56714610412578063395093511461042e5780633a03c07e1461044e57600080fd5b806306fdde03146102be578063095ea7b3146102e95780630c8c076014610319578063155ca7c11461033b5780631694505e1461035b57806318160ddd146103a757600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108d7565b6040516102e09190612618565b60405180910390f35b3480156102f557600080fd5b5061030961030436600461267b565b610969565b60405190151581526020016102e0565b34801561032557600080fd5b506103396103343660046126b5565b610983565b005b34801561034757600080fd5b506103396103563660046126d2565b6109a9565b34801561036757600080fd5b5061038f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102e0565b3480156103b357600080fd5b506002545b6040519081526020016102e0565b3480156103d257600080fd5b506103b8600b5481565b3480156103e857600080fd5b506103096103f7366004612758565b610a28565b34801561040857600080fd5b5061038f61dead81565b34801561041e57600080fd5b50604051601281526020016102e0565b34801561043a57600080fd5b5061030961044936600461267b565b610a4c565b34801561045a57600080fd5b5060065461030990600160b81b900460ff1681565b34801561047b57600080fd5b5061033961048a366004612799565b610a6e565b34801561049b57600080fd5b5060065461038f906001600160a01b031681565b3480156104bb57600080fd5b506103096104ca3660046127b2565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104f457600080fd5b50610339610a7b565b34801561050957600080fd5b5060065461030990600160a81b900460ff1681565b34801561052a57600080fd5b506103396105393660046127cf565b610b9b565b34801561054a57600080fd5b506103b86105593660046127b2565b6001600160a01b031660009081526020819052604090205490565b34801561058057600080fd5b50610339610cb8565b34801561059557600080fd5b506103396105a4366004612799565b610ccc565b3480156105b557600080fd5b506103396105c43660046127f1565b610cfa565b3480156105d557600080fd5b5060075461038f906001600160a01b031681565b3480156105f557600080fd5b506103b8600a5481565b34801561060b57600080fd5b5060065461030990600160c01b900460ff1681565b34801561062c57600080fd5b506005546001600160a01b031661038f565b34801561064a57600080fd5b50610339610d2d565b34801561065f57600080fd5b506102d3610dac565b34801561067457600080fd5b506103396106833660046126d2565b610dbb565b34801561069457600080fd5b506103096106a336600461267b565b610f17565b3480156106b457600080fd5b506103096106c336600461267b565b610f92565b3480156106d457600080fd5b506103396106e33660046127b2565b610fa0565b3480156106f457600080fd5b506103396107033660046127f1565b611042565b34801561071457600080fd5b5060085461038f906001600160a01b031681565b34801561073457600080fd5b506103396107433660046126b5565b6110a9565b34801561075457600080fd5b506103396107633660046127b2565b6110cf565b34801561077457600080fd5b506103b860095481565b34801561078a57600080fd5b50610309610799366004612799565b6112be565b3480156107aa57600080fd5b506103396107b93660046126d2565b6113fe565b3480156107ca57600080fd5b506103b8600c5481565b3480156107e057600080fd5b506103b86107ef36600461282a565b611477565b34801561080057600080fd5b5061033961080f3660046126b5565b6114a2565b34801561082057600080fd5b506103b8600f5481565b34801561083657600080fd5b506103b8600d5481565b34801561084c57600080fd5b506103b8600e5481565b34801561086257600080fd5b50610339610871366004612799565b6114c8565b34801561088257600080fd5b506103396108913660046127b2565b6114fb565b3480156108a257600080fd5b5060065461030990600160b01b900460ff1681565b3480156108c357600080fd5b506103396108d23660046127b2565b61159d565b6060600380546108e690612858565b80601f016020809104026020016040519081016040528092919081815260200182805461091290612858565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600033610977818585611613565b60019150505b92915050565b61098b611737565b60068054911515600160b01b0260ff60b01b19909216919091179055565b6109b1611737565b60005b82811015610a225781601160008686858181106109d3576109d3612892565b90506020020160208101906109e891906127b2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610a1a816128be565b9150506109b4565b50505050565b600033610a36858285611791565b610a41858585611805565b506001949350505050565b600033610977818585610a5f8383611477565b610a6991906128d7565b611613565b610a783382612074565b50565b610a83611737565b6006805460ff60a01b1916600160a01b179055610abd610ab8306001600160a01b031660009081526020819052604090205490565b6121a6565b476000610acb6002836128ea565b90506000610ad9828461290c565b6007546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610b2b576040519150601f19603f3d011682016040523d82523d6000602084013e610b30565b606091505b50506008546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610b80576040519150601f19603f3d011682016040523d82523d6000602084013e610b85565b606091505b50506006805460ff60a01b191690555050505050565b610ba3611737565b6103e8610baf60025490565b610bba90600161291f565b610bc491906128ea565b821015610c295760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e312560c01b60648201526084015b60405180910390fd5b6103e8610c3560025490565b610c4090600161291f565b610c4a91906128ea565b811015610cad5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b6064820152608401610c20565b600b91909155600c55565b610cc0611737565b610cca6000612366565b565b610cd4611737565b600e819055600a811115610a785760405162461bcd60e51b8152600401610c2090612936565b610d02611737565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610d35611737565b600654600160c01b900460ff1615610d8f5760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e00000000000000006044820152606401610c20565b6006805460ff60c01b1916600160c01b1790554360095542600a55565b6060600480546108e690612858565b610dc3611737565b60005b82811015610a22576006546001600160a01b0316848483818110610dec57610dec612892565b9050602002016020810190610e0191906127b2565b6001600160a01b031614158015610e7057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610e4f57610e4f612892565b9050602002016020810190610e6491906127b2565b6001600160a01b031614155b8015610eab575030848483818110610e8a57610e8a612892565b9050602002016020810190610e9f91906127b2565b6001600160a01b031614155b15610f05578160146000868685818110610ec757610ec7612892565b9050602002016020810190610edc91906127b2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610f0f816128be565b915050610dc6565b60003381610f258286611477565b905083811015610f855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c20565b610a418286868403611613565b600033610977818585611805565b610fa8611737565b6001600160a01b038116610ff15760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610c20565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61104a611737565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110b1611737565b60068054911515600160b81b0260ff60b81b19909216919091179055565b6110d7611737565b6001600160a01b03811661113657604051600090339047908381818185875af1925050503d8060008114611127576040519150601f19603f3d011682016040523d82523d6000602084013e61112c565b606091505b50610a7892505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561117d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a1919061297a565b116111da5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610c20565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611221573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611245919061297a565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b99190612993565b505050565b60006112c8611737565b620186a06112d560025490565b6112e090600161291f565b6112ea91906128ea565b82101561135f5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610c20565b6103e861136b60025490565b61137690600561291f565b61138091906128ea565b8211156113f55760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610c20565b50600d55600190565b611406611737565b60005b82811015610a2257816012600086868581811061142857611428612892565b905060200201602081019061143d91906127b2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061146f816128be565b915050611409565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114aa611737565b60068054911515600160a81b0260ff60a81b19909216919091179055565b6114d0611737565b600f8190556010819055600a811115610a785760405162461bcd60e51b8152600401610c2090612936565b611503611737565b6001600160a01b03811661154c5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610c20565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a35050565b6115a5611737565b6001600160a01b03811661160a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b610a7881612366565b6001600160a01b0383166116755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b6001600160a01b0382166116d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610cca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c20565b600061179d8484611477565b90506000198114610a2257818110156117f85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c20565b610a228484848403611613565b6001600160a01b03831661182b5760405162461bcd60e51b8152600401610c20906129b0565b6001600160a01b0382166118515760405162461bcd60e51b8152600401610c20906129f5565b6001600160a01b03831660009081526014602052604090205460ff161561188a5760405162461bcd60e51b8152600401610c2090612a38565b3360009081526014602052604090205460ff16156118ba5760405162461bcd60e51b8152600401610c2090612a38565b3260009081526014602052604090205460ff16156118ea5760405162461bcd60e51b8152600401610c2090612a38565b806000036118fe576112b9838360006123b8565b6005546001600160a01b0384811691161480159061192a57506005546001600160a01b03838116911614155b801561193e57506001600160a01b03821615155b801561195557506001600160a01b03821661dead14155b801561196b5750600654600160a01b900460ff16155b15611d21576006546000908190600160b81b900460ff1615611a8f57600a5461199690610e106128d7565b4211156119ab576002549150815b9050611a98565b600a546119ba906104b06128d7565b421115611a05576127106119cd60025490565b6119d890606f61291f565b6119e291906128ea565b91506127106119f060025490565b6119fb90606f61291f565b6119a491906128ea565b600a54611a14906102586128d7565b421115611a5557612710611a2760025490565b611a3290603761291f565b611a3c91906128ea565b9150612710611a4a60025490565b6119fb90603761291f565b612710611a6160025490565b611a6c90601c61291f565b611a7691906128ea565b9150612710611a8460025490565b6119fb90601c61291f565b5050600b54600c545b6001600160a01b03851660009081526013602052604090205460ff168015611ad957506001600160a01b03841660009081526012602052604090205460ff16155b15611bca5781831115611b4d5760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b6064820152608401610c20565b80611b6d856001600160a01b031660009081526020819052604090205490565b611b7790856128d7565b1115611bc55760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610c20565b611d1e565b6001600160a01b03841660009081526013602052604090205460ff168015611c0b57506001600160a01b03851660009081526012602052604090205460ff16155b15611c865781831115611bc55760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e0000000000000000006064820152608401610c20565b6001600160a01b03841660009081526012602052604090205460ff16611d1e5780611cc6856001600160a01b031660009081526020819052604090205490565b611cd090856128d7565b1115611d1e5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610c20565b50505b30600090815260208190526040902054600d5481108015908190611d4e5750600654600160a81b900460ff165b8015611d645750600654600160a01b900460ff16155b8015611d8957506001600160a01b03851660009081526013602052604090205460ff16155b8015611dae57506001600160a01b03851660009081526011602052604090205460ff16155b8015611dd357506001600160a01b03841660009081526011602052604090205460ff16155b15611de157611de1826124e2565b6006546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611e2f57506001600160a01b03851660009081526011602052604090205460ff165b15611e38575060005b6000808215612059576001600160a01b03871660009081526013602052604090205460ff168015611e6b57506000600f54115b15611f4357600654600160b01b900460ff1615611f2257600a54611e9290620151806128d7565b421115611ea25750600f54611f27565b600a54611eb190611c206128d7565b421115611ec057506005611f27565b600a54611ecf906107086128d7565b421115611ede57506014611f27565b600a54611eed906103846128d7565b421115611efc5750601e611f27565b600a54611f0b9061012c6128d7565b421115611f1a57506023611f27565b506028611f27565b50600f545b611f3c6064611f3688846125f9565b9061260c565b915061203b565b6001600160a01b03881660009081526013602052604090205460ff168015611f6d57506000600e54115b1561203b57600654600160b01b900460ff161561202457600a54611f9490620151806128d7565b421115611fa45750600e54612029565b600a54611fb390611c206128d7565b421115611fc257506005612029565b600a54611fd1906107086128d7565b421115611fe057506008612029565b600a54611fef906103846128d7565b421115611ffe5750600f612029565b600a5461200d9061012c6128d7565b42111561201c57506019612029565b506028612029565b50600e545b6120386064611f3688846125f9565b91505b811561204c5761204c8830846123b8565b612056828761290c565b95505b6120648888886123b8565b5050601054600f55505050505050565b6001600160a01b0382166120d45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c20565b6001600160a01b038216600090815260208190526040902054818110156121485760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c20565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121db576121db612892565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227d9190612a65565b8160018151811061229057612290612892565b60200260200101906001600160a01b031690816001600160a01b0316815250506122db307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611613565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612330908590600090869030904290600401612a82565b600060405180830381600087803b15801561234a57600080fd5b505af115801561235e573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166123de5760405162461bcd60e51b8152600401610c20906129b0565b6001600160a01b0382166124045760405162461bcd60e51b8152600401610c20906129f5565b6001600160a01b0383166000908152602081905260409020548181101561247c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c20565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a22565b6006805460ff60a01b1916600160a01b179055600081810361250457506125e9565b600d5482111561251457600d5491505b61251d826121a6565b47600061252b6002836128ea565b90506000612539828461290c565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114612587576040519150601f19603f3d011682016040523d82523d6000602084013e61258c565b606091505b50506008546040519195506001600160a01b0316908290600081818185875af1925050503d80600081146125dc576040519150601f19603f3d011682016040523d82523d6000602084013e6125e1565b606091505b505050505050505b506006805460ff60a01b19169055565b6000612605828461291f565b9392505050565b600061260582846128ea565b600060208083528351808285015260005b8181101561264557858101830151858201604001528201612629565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7857600080fd5b6000806040838503121561268e57600080fd5b823561269981612666565b946020939093013593505050565b8015158114610a7857600080fd5b6000602082840312156126c757600080fd5b8135612605816126a7565b6000806000604084860312156126e757600080fd5b833567ffffffffffffffff808211156126ff57600080fd5b818601915086601f83011261271357600080fd5b81358181111561272257600080fd5b8760208260051b850101111561273757600080fd5b6020928301955093505084013561274d816126a7565b809150509250925092565b60008060006060848603121561276d57600080fd5b833561277881612666565b9250602084013561278881612666565b929592945050506040919091013590565b6000602082840312156127ab57600080fd5b5035919050565b6000602082840312156127c457600080fd5b813561260581612666565b600080604083850312156127e257600080fd5b50508035926020909101359150565b6000806040838503121561280457600080fd5b823561280f81612666565b9150602083013561281f816126a7565b809150509250929050565b6000806040838503121561283d57600080fd5b823561284881612666565b9150602083013561281f81612666565b600181811c9082168061286c57607f821691505b60208210810361288c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128d0576128d06128a8565b5060010190565b8082018082111561097d5761097d6128a8565b60008261290757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561097d5761097d6128a8565b808202811582820484141761097d5761097d6128a8565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561298c57600080fd5b5051919050565b6000602082840312156129a557600080fd5b8151612605816126a7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b600060208284031215612a7757600080fd5b815161260581612666565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ad25784516001600160a01b031683529383019391830191600101612aad565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220400b32d0491043713fc669a5e90d103944ec586baa2f54204ea9e22c0ab8811f64736f6c63430008110033

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

000000000000000000000000ea4a27747ffb046e50c24515e205cca27fd79375

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

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


Deployed Bytecode Sourcemap

34704:16907:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9439:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11940:242;;;;;;;;;;-1:-1:-1;11940:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11940:242:0;1023:187:1;39452:107:0;;;;;;;;;;-1:-1:-1;39452:107:0;;;;;:::i;:::-;;:::i;:::-;;42645:241;;;;;;;;;;-1:-1:-1;42645:241:0;;;;;:::i;:::-;;:::i;34784:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2530:32:1;;;2512:51;;2500:2;2485:18;34784:51:0;2339:230:1;10568:108:0;;;;;;;;;;-1:-1:-1;10656:12:0;;10568:108;;;2720:25:1;;;2708:2;2693:18;10568:108:0;2574:177:1;35271:36:0;;;;;;;;;;;;;;;;12762:295;;;;;;;;;;-1:-1:-1;12762:295:0;;;;;:::i;:::-;;:::i;34877:53::-;;;;;;;;;;;;34923:6;34877:53;;10410:93;;;;;;;;;;-1:-1:-1;10410:93:0;;10493:2;3567:36:1;;3555:2;3540:18;10410:93:0;3425:184:1;13466:270:0;;;;;;;;;;-1:-1:-1;13466:270:0;;;;;:::i;:::-;;:::i;35051:39::-;;;;;;;;;;-1:-1:-1;35051:39:0;;;;-1:-1:-1;;;35051:39:0;;;;;;39264:81;;;;;;;;;;-1:-1:-1;39264:81:0;;;;;:::i;:::-;;:::i;34842:28::-;;;;;;;;;;-1:-1:-1;34842:28:0;;;;-1:-1:-1;;;;;34842:28:0;;;44502:126;;;;;;;;;;-1:-1:-1;44502:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44592:28:0;44568:4;44592:28;;;:19;:28;;;;;;;;;44502:126;43756:510;;;;;;;;;;;;;:::i;34968:31::-;;;;;;;;;;-1:-1:-1;34968:31:0;;;;-1:-1:-1;;;34968:31:0;;;;;;40439:504;;;;;;;;;;-1:-1:-1;40439:504:0;;;;;:::i;:::-;;:::i;10739:177::-;;;;;;;;;;-1:-1:-1;10739:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10890:18:0;10858:7;10890:18;;;;;;;;;;;;10739:177;2819:103;;;;;;;;;;;;;:::i;41401:168::-;;;;;;;;;;-1:-1:-1;41401:168:0;;;;;:::i;:::-;;:::i;40951:169::-;;;;;;;;;;-1:-1:-1;40951:169:0;;;;;:::i;:::-;;:::i;35126:30::-;;;;;;;;;;-1:-1:-1;35126:30:0;;;;-1:-1:-1;;;;;35126:30:0;;;35237:25;;;;;;;;;;;;;;;;35097:20;;;;;;;;;;-1:-1:-1;35097:20:0;;;;-1:-1:-1;;;35097:20:0;;;;;;2178:87;;;;;;;;;;-1:-1:-1;2251:6:0;;-1:-1:-1;;;;;2251:6:0;2178:87;;39684:230;;;;;;;;;;;;;:::i;9658:104::-;;;;;;;;;;;;;:::i;42894:374::-;;;;;;;;;;-1:-1:-1;42894:374:0;;;;;:::i;:::-;;:::i;14239:505::-;;;;;;;;;;-1:-1:-1;14239:505:0;;;;;:::i;:::-;;:::i;11122:234::-;;;;;;;;;;-1:-1:-1;11122:234:0;;;;;:::i;:::-;;:::i;41791:309::-;;;;;;;;;;-1:-1:-1;41791:309:0;;;;;:::i;:::-;;:::i;42464:173::-;;;;;;;;;;-1:-1:-1;42464:173:0;;;;;:::i;:::-;;:::i;35163:32::-;;;;;;;;;;-1:-1:-1;35163:32:0;;;;-1:-1:-1;;;;;35163:32:0;;;39567:109;;;;;;;;;;-1:-1:-1;39567:109:0;;;;;:::i;:::-;;:::i;43276:472::-;;;;;;;;;;-1:-1:-1;43276:472:0;;;;;:::i;:::-;;:::i;35204:26::-;;;;;;;;;;;;;;;;39922:509;;;;;;;;;;-1:-1:-1;39922:509:0;;;;;:::i;:::-;;:::i;41128:265::-;;;;;;;;;;-1:-1:-1;41128:265:0;;;;;:::i;:::-;;:::i;35314:31::-;;;;;;;;;;;;;;;;11419:201;;;;;;;;;;-1:-1:-1;11419:201:0;;;;;:::i;:::-;;:::i;39353:91::-;;;;;;;;;;-1:-1:-1;39353:91:0;;;;;:::i;:::-;;:::i;35427:23::-;;;;;;;;;;;;;;;;35354:33;;;;;;;;;;;;;;;;35396:22;;;;;;;;;;;;;;;;41577:206;;;;;;;;;;-1:-1:-1;41577:206:0;;;;;:::i;:::-;;:::i;42108:348::-;;;;;;;;;;-1:-1:-1;42108:348:0;;;;;:::i;:::-;;:::i;35006:38::-;;;;;;;;;;-1:-1:-1;35006:38:0;;;;-1:-1:-1;;;35006:38:0;;;;;;3077:238;;;;;;;;;;-1:-1:-1;3077:238:0;;;;;:::i;:::-;;:::i;9439:100::-;9493:13;9526:5;9519:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9439:100;:::o;11940:242::-;12059:4;803:10;12120:32;803:10;12136:7;12145:6;12120:8;:32::i;:::-;12170:4;12163:11;;;11940:242;;;;;:::o;39452:107::-;2064:13;:11;:13::i;:::-;39524:19:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;39524:27:0::1;-1:-1:-1::0;;;;39524:27:0;;::::1;::::0;;;::::1;::::0;;39452:107::o;42645:241::-;2064:13;:11;:13::i;:::-;42771:9:::1;42766:113;42786:19:::0;;::::1;42766:113;;;42862:5;42827:19;:32;42847:8;;42856:1;42847:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42827:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42827:32:0;:40;;-1:-1:-1;;42827:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42807:3;::::1;::::0;::::1;:::i;:::-;;;;42766:113;;;;42645:241:::0;;;:::o;12762:295::-;12893:4;803:10;12951:38;12967:4;803:10;12982:6;12951:15;:38::i;:::-;13000:27;13010:4;13016:2;13020:6;13000:9;:27::i;:::-;-1:-1:-1;13045:4:0;;12762:295;-1:-1:-1;;;;12762:295:0:o;13466:270::-;13581:4;803:10;13642:64;803:10;13658:7;13695:10;13667:25;803:10;13658:7;13667:9;:25::i;:::-;:38;;;;:::i;:::-;13642:8;:64::i;39264:81::-;39312:25;39318:10;39330:6;39312:5;:25::i;:::-;39264:81;:::o;43756:510::-;2064:13;:11;:13::i;:::-;36163:9:::1;:16:::0;;-1:-1:-1;;;;36163:16:0::1;-1:-1:-1::0;;;36163:16:0::1;::::0;;43815:66:::2;43846:24;43864:4;-1:-1:-1::0;;;;;10890:18:0;10858:7;10890:18;;;;;;;;;;;;10739:177;43846:24:::2;43815:16;:66::i;:::-;43915:21;43894:18;43970:14;43983:1;43915:21:::0;43970:14:::2;:::i;:::-;43947:37:::0;-1:-1:-1;43995:22:0::2;44020:25;43947:37:::0;44020:10;:25:::2;:::i;:::-;44103:15;::::0;44095:54:::2;::::0;43995:50;;-1:-1:-1;44058:12:0::2;::::0;-1:-1:-1;;;;;44103:15:0;;::::2;::::0;44132:12;;44058;44095:54;44058:12;44095:54;44132:12;44103:15;44095:54:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;44184:17:0::2;::::0;44176:82:::2;::::0;44081:68;;-1:-1:-1;;;;;;44184:17:0::2;::::0;44215:14;;44176:82:::2;::::0;;;44215:14;44184:17;44176:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;36202:9:0::1;:17:::0;;-1:-1:-1;;;;36202:17:0::1;::::0;;-1:-1:-1;;;;;43756:510:0:o;40439:504::-;2064:13;:11;:13::i;:::-;40629:4:::1;40608:13;10656:12:::0;;;10568:108;40608:13:::1;:17;::::0;40624:1:::1;40608:17;:::i;:::-;40607:26;;;;:::i;:::-;40588:14;:46;;40566:136;;;::::0;-1:-1:-1;;;40566:136:0;;6943:2:1;40566:136:0::1;::::0;::::1;6925:21:1::0;6982:2;6962:18;;;6955:30;7021:34;7001:18;;;6994:62;-1:-1:-1;;;7072:18:1;;;7065:38;7120:19;;40566:136:0::1;;;;;;;;;40771:4;40750:13;10656:12:::0;;;10568:108;40750:13:::1;:17;::::0;40766:1:::1;40750:17;:::i;:::-;40749:26;;;;:::i;:::-;40735:9;:41;;40713:134;;;::::0;-1:-1:-1;;;40713:134:0;;7352:2:1;40713:134:0::1;::::0;::::1;7334:21:1::0;7391:2;7371:18;;;7364:30;7430:34;7410:18;;;7403:62;-1:-1:-1;;;7481:18:1;;;7474:41;7532:19;;40713:134:0::1;7150:407:1::0;40713:134:0::1;40858:21;:38:::0;;;;40907:16:::1;:28:::0;40439:504::o;2819:103::-;2064:13;:11;:13::i;:::-;2884:30:::1;2911:1;2884:18;:30::i;:::-;2819:103::o:0;41401:168::-;2064:13;:11;:13::i;:::-;41470:7:::1;:18:::0;;;41518:2:::1;41507:13:::0;::::1;;41499:62;;;;-1:-1:-1::0;;;41499:62:0::1;;;;;;;:::i;40951:169::-:0;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;41065:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:47;;-1:-1:-1;;41065:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40951:169::o;39684:230::-;2064:13;:11;:13::i;:::-;39767:8:::1;::::0;-1:-1:-1;;;39767:8:0;::::1;;;39766:9;39758:46;;;::::0;-1:-1:-1;;;39758:46:0;;8169:2:1;39758:46:0::1;::::0;::::1;8151:21:1::0;8208:2;8188:18;;;8181:30;8247:26;8227:18;;;8220:54;8291:18;;39758:46:0::1;7967:348:1::0;39758:46:0::1;39815:8;:15:::0;;-1:-1:-1;;;;39815:15:0::1;-1:-1:-1::0;;;39815:15:0::1;::::0;;39855:12:::1;39841:11;:26:::0;39891:15:::1;39878:10;:28:::0;39684:230::o;9658:104::-;9714:13;9747:7;9740:14;;;;;:::i;42894:374::-;2064:13;:11;:13::i;:::-;42985:9:::1;42980:281;43000:19:::0;;::::1;42980:281;;;43079:13;::::0;-1:-1:-1;;;;;43079:13:0::1;43064:8:::0;;43073:1;43064:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43064:28:0::1;;;43063:92;;;;;43138:15;-1:-1:-1::0;;;;;43115:39:0::1;:8;;43124:1;43115:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43115:39:0::1;;;43063:92;:143;;;;-1:-1:-1::0;43200:4:0::1;43177:8:::0;;43186:1;43177:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43177:28:0::1;;;43063:143;43041:208;;;43244:5;43222:6;:19;43229:8;;43238:1;43229:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43222:19:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43222:19:0;:27;;-1:-1:-1;;43222:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43041:208:::1;43021:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42980:281;;14239:505:::0;14359:4;803:10;14359:4;14447:25;803:10;14464:7;14447:9;:25::i;:::-;14420:52;;14525:15;14505:16;:35;;14483:122;;;;-1:-1:-1;;;14483:122:0;;8522:2:1;14483:122:0;;;8504:21:1;8561:2;8541:18;;;8534:30;8600:34;8580:18;;;8573:62;-1:-1:-1;;;8651:18:1;;;8644:35;8696:19;;14483:122:0;8320:401:1;14483:122:0;14641:60;14650:5;14657:7;14685:15;14666:16;:34;14641:8;:60::i;11122:234::-;11237:4;803:10;11298:28;803:10;11315:2;11319:6;11298:9;:28::i;41791:309::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;41884:30:0;::::1;41876:59;;;::::0;-1:-1:-1;;;41876:59:0;;8928:2:1;41876:59:0::1;::::0;::::1;8910:21:1::0;8967:2;8947:18;;;8940:30;-1:-1:-1;;;8986:18:1;;;8979:46;9042:18;;41876:59:0::1;8726:340:1::0;41876:59:0::1;41966:15;::::0;;-1:-1:-1;;;;;41992:34:0;;::::1;-1:-1:-1::0;;;;;;41992:34:0;::::1;::::0;::::1;::::0;;;42042:50:::1;::::0;41966:15;::::1;::::0;;;42042:50:::1;::::0;41946:17:::1;::::0;42042:50:::1;41865:235;41791:309:::0;:::o;42464:173::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;42546:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;42546:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42598:31;;1163:41:1;;;42598:31:0::1;::::0;1136:18:1;42598:31:0::1;;;;;;;42464:173:::0;;:::o;39567:109::-;2064:13;:11;:13::i;:::-;39640:20:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;39640:28:0::1;-1:-1:-1::0;;;;39640:28:0;;::::1;::::0;;;::::1;::::0;;39567:109::o;43276:472::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;43350:17:0;::::1;43346:395;;43425:86;::::0;43384:12:::1;::::0;43433:10:::1;::::0;43457:21:::1;::::0;43384:12;43425:86;43384:12;43425:86;43457:21;43433:10;43425:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;43346:395:0::1;::::0;-1:-1:-1;;;43346:395:0::1;;43552:36;::::0;-1:-1:-1;;;43552:36:0;;43582:4:::1;43552:36;::::0;::::1;2512:51:1::0;43591:1:0::1;::::0;-1:-1:-1;;;;;43552:21:0;::::1;::::0;::::1;::::0;2485:18:1;;43552:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;43544:62;;;::::0;-1:-1:-1;;;43544:62:0;;9462:2:1;43544:62:0::1;::::0;::::1;9444:21:1::0;9501:1;9481:18;;;9474:29;-1:-1:-1;;;9519:18:1;;;9512:39;9568:18;;43544:62:0::1;9260:332:1::0;43544:62:0::1;43638:36;::::0;-1:-1:-1;;;43638:36:0;;43668:4:::1;43638:36;::::0;::::1;2512:51:1::0;43621:14:0::1;::::0;-1:-1:-1;;;;;43638:21:0;::::1;::::0;::::1;::::0;2485:18:1;;43638:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43689:40;::::0;-1:-1:-1;;;43689:40:0;;43710:10:::1;43689:40;::::0;::::1;9771:51:1::0;9838:18;;;9831:34;;;43621:53:0;;-1:-1:-1;;;;;;43689:20:0;::::1;::::0;::::1;::::0;9744:18:1;;43689:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43529:212;43276:472:::0;:::o;39922:509::-;40028:4;2064:13;:11;:13::i;:::-;40107:6:::1;40086:13;10656:12:::0;;;10568:108;40086:13:::1;:17;::::0;40102:1:::1;40086:17;:::i;:::-;40085:28;;;;:::i;:::-;40072:9;:41;;40050:151;;;::::0;-1:-1:-1;;;40050:151:0;;10328:2:1;40050:151:0::1;::::0;::::1;10310:21:1::0;10367:2;10347:18;;;10340:30;10406:34;10386:18;;;10379:62;10477:30;10457:18;;;10450:58;10525:19;;40050:151:0::1;10126:424:1::0;40050:151:0::1;40269:4;40248:13;10656:12:::0;;;10568:108;40248:13:::1;:17;::::0;40264:1:::1;40248:17;:::i;:::-;40247:26;;;;:::i;:::-;40234:9;:39;;40212:148;;;::::0;-1:-1:-1;;;40212:148:0;;10757:2:1;40212:148:0::1;::::0;::::1;10739:21:1::0;10796:2;10776:18;;;10769:30;10835:34;10815:18;;;10808:62;10906:29;10886:18;;;10879:57;10953:19;;40212:148:0::1;10555:423:1::0;40212:148:0::1;-1:-1:-1::0;40371:18:0::1;:30:::0;40419:4:::1;::::0;39922:509::o;41128:265::-;2064:13;:11;:13::i;:::-;41266:9:::1;41261:125;41281:19:::0;;::::1;41261:125;;;41369:5;41322:31;:44;41354:8;;41363:1;41354:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41322:44:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41322:44:0;:52;;-1:-1:-1;;41322:52:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41302:3;::::1;::::0;::::1;:::i;:::-;;;;41261:125;;11419:201:::0;-1:-1:-1;;;;;11585:18:0;;;11553:7;11585:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11419:201::o;39353:91::-;2064:13;:11;:13::i;:::-;39417:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;39417:19:0::1;-1:-1:-1::0;;;;39417:19:0;;::::1;::::0;;;::::1;::::0;;39353:91::o;41577:206::-;2064:13;:11;:13::i;:::-;41648:8:::1;:20:::0;;;41679:11:::1;:22:::0;;;41732:2:::1;41720:14:::0;::::1;;41712:63;;;;-1:-1:-1::0;;;41712:63:0::1;;;;;;;:::i;42108:348::-:0;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;42228:32:0;::::1;42220:61;;;::::0;-1:-1:-1;;;42220:61:0;;8928:2:1;42220:61:0::1;::::0;::::1;8910:21:1::0;8967:2;8947:18;;;8940:30;-1:-1:-1;;;8986:18:1;;;8979:46;9042:18;;42220:61:0::1;8726:340:1::0;42220:61:0::1;42312:17;::::0;;-1:-1:-1;;;;;42340:38:0;;::::1;-1:-1:-1::0;;;;;;42340:38:0;::::1;::::0;::::1;::::0;;;42394:54:::1;::::0;42312:17;::::1;::::0;;;42394:54:::1;::::0;42292:17:::1;::::0;42394:54:::1;42209:247;42108:348:::0;:::o;3077:238::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;3180:22:0;::::1;3158:110;;;::::0;-1:-1:-1;;;3158:110:0;;11185:2:1;3158:110:0::1;::::0;::::1;11167:21:1::0;11224:2;11204:18;;;11197:30;11263:34;11243:18;;;11236:62;-1:-1:-1;;;11314:18:1;;;11307:36;11360:19;;3158:110:0::1;10983:402:1::0;3158:110:0::1;3279:28;3298:8;3279:18;:28::i;18372:380::-:0;-1:-1:-1;;;;;18508:19:0;;18500:68;;;;-1:-1:-1;;;18500:68:0;;11592:2:1;18500:68:0;;;11574:21:1;11631:2;11611:18;;;11604:30;11670:34;11650:18;;;11643:62;-1:-1:-1;;;11721:18:1;;;11714:34;11765:19;;18500:68:0;11390:400:1;18500:68:0;-1:-1:-1;;;;;18587:21:0;;18579:68;;;;-1:-1:-1;;;18579:68:0;;11997:2:1;18579:68:0;;;11979:21:1;12036:2;12016:18;;;12009:30;12075:34;12055:18;;;12048:62;-1:-1:-1;;;12126:18:1;;;12119:32;12168:19;;18579:68:0;11795:398:1;18579:68:0;-1:-1:-1;;;;;18660:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18712:32;;2720:25:1;;;18712:32:0;;2693:18:1;18712:32:0;;;;;;;18372:380;;;:::o;2343:132::-;2251:6;;-1:-1:-1;;;;;2251:6:0;803:10;2407:23;2399:68;;;;-1:-1:-1;;;2399:68:0;;12400:2:1;2399:68:0;;;12382:21:1;;;12419:18;;;12412:30;12478:34;12458:18;;;12451:62;12530:18;;2399:68:0;12198:356:1;19043:502:0;19178:24;19205:25;19215:5;19222:7;19205:9;:25::i;:::-;19178:52;;-1:-1:-1;;19245:16:0;:37;19241:297;;19345:6;19325:16;:26;;19299:117;;;;-1:-1:-1;;;19299:117:0;;12761:2:1;19299:117:0;;;12743:21:1;12800:2;12780:18;;;12773:30;12839:31;12819:18;;;12812:59;12888:18;;19299:117:0;12559:353:1;19299:117:0;19460:51;19469:5;19476:7;19504:6;19485:16;:25;19460:8;:51::i;44636:5697::-;-1:-1:-1;;;;;44768:18:0;;44760:68;;;;-1:-1:-1;;;44760:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44847:16:0;;44839:64;;;;-1:-1:-1;;;44839:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44925:12:0;;;;;;:6;:12;;;;;;;;44924:13;44916:45;;;;-1:-1:-1;;;44916:45:0;;;;;;;:::i;:::-;44988:10;44981:18;;;;:6;:18;;;;;;;;44980:19;44972:51;;;;-1:-1:-1;;;44972:51:0;;;;;;;:::i;:::-;45050:9;45043:17;;;;:6;:17;;;;;;;;45042:18;45034:50;;;;-1:-1:-1;;;45034:50:0;;;;;;;:::i;:::-;45101:6;45111:1;45101:11;45097:93;;45129:28;45145:4;45151:2;45155:1;45129:15;:28::i;45097:93::-;2251:6;;-1:-1:-1;;;;;45220:15:0;;;2251:6;;45220:15;;;;:45;;-1:-1:-1;2251:6:0;;-1:-1:-1;;;;;45252:13:0;;;2251:6;;45252:13;;45220:45;:78;;;;-1:-1:-1;;;;;;45282:16:0;;;;45220:78;:112;;;;-1:-1:-1;;;;;;45315:17:0;;34923:6;45315:17;;45220:112;:139;;;;-1:-1:-1;45350:9:0;;-1:-1:-1;;;45350:9:0;;;;45349:10;45220:139;45202:2271;;;45459:20;;45386:22;;;;-1:-1:-1;;;45459:20:0;;;;45455:924;;;45522:10;;:22;;45536:7;45522:22;:::i;:::-;45504:15;:40;45500:738;;;10656:12;;;-1:-1:-1;10656:12:0;45634:13;45622:25;;45455:924;;45500:738;45695:10;;:25;;45709:10;45695:25;:::i;:::-;45677:15;:43;45673:565;;;45786:5;45763:13;10656:12;;;10568:108;45763:13;:19;;45779:3;45763:19;:::i;:::-;45762:29;;;;:::i;:::-;45745:46;;45850:5;45827:13;10656:12;;;10568:108;45827:13;:19;;45843:3;45827:19;:::i;:::-;45826:29;;;;:::i;45673:565::-;45903:10;;:25;;45917:10;45903:25;:::i;:::-;45885:15;:43;45881:357;;;45993:5;45971:13;10656:12;;;10568:108;45971:13;:18;;45987:2;45971:18;:::i;:::-;45970:28;;;;:::i;:::-;45953:45;;46056:5;46034:13;10656:12;;;10568:108;46034:13;:18;;46050:2;46034:18;:::i;45881:357::-;46150:5;46128:13;10656:12;;;10568:108;46128:13;:18;;46144:2;46128:18;:::i;:::-;46127:28;;;;:::i;:::-;46110:45;;46213:5;46191:13;10656:12;;;10568:108;46191:13;:18;;46207:2;46191:18;:::i;45455:924::-;-1:-1:-1;;46295:21:0;;46347:16;;45455:924;-1:-1:-1;;;;;46441:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;46494:35:0;;;;;;:31;:35;;;;;;;;46493:36;46441:88;46419:1043;;;46604:14;46594:6;:24;;46564:152;;;;-1:-1:-1;;;46564:152:0;;14277:2:1;46564:152:0;;;14259:21:1;14316:2;14296:18;;;14289:30;14355:34;14335:18;;;14328:62;-1:-1:-1;;;14406:18:1;;;14399:52;14468:19;;46564:152:0;14075:418:1;46564:152:0;46791:9;46774:13;46784:2;-1:-1:-1;;;;;10890:18:0;10858:7;10890:18;;;;;;;;;;;;10739:177;46774:13;46765:22;;:6;:22;:::i;:::-;:35;;46735:135;;;;-1:-1:-1;;;46735:135:0;;14700:2:1;46735:135:0;;;14682:21:1;14739:2;14719:18;;;14712:30;14778:28;14758:18;;;14751:56;14824:18;;46735:135:0;14498:350:1;46735:135:0;46419:1043;;;-1:-1:-1;;;;;46952:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;47003:37:0;;;;;;:31;:37;;;;;;;;47002:38;46952:88;46930:532;;;47115:14;47105:6;:24;;47075:153;;;;-1:-1:-1;;;47075:153:0;;15055:2:1;47075:153:0;;;15037:21:1;15094:2;15074:18;;;15067:30;15133:34;15113:18;;;15106:62;15204:25;15184:18;;;15177:53;15247:19;;47075:153:0;14853:419:1;46930:532:0;-1:-1:-1;;;;;47255:35:0;;;;;;:31;:35;;;;;;;;47250:212;;47367:9;47350:13;47360:2;-1:-1:-1;;;;;10890:18:0;10858:7;10890:18;;;;;;;;;;;;10739:177;47350:13;47341:22;;:6;:22;:::i;:::-;:35;;47311:135;;;;-1:-1:-1;;;47311:135:0;;14700:2:1;47311:135:0;;;14682:21:1;14739:2;14719:18;;;14712:30;14778:28;14758:18;;;14751:56;14824:18;;47311:135:0;14498:350:1;47311:135:0;45371:2102;;45202:2271;47534:4;47485:28;10890:18;;;;;;;;;;;47592;;47568:42;;;;;;;47641:35;;-1:-1:-1;47665:11:0;;-1:-1:-1;;;47665:11:0;;;;47641:35;:62;;;;-1:-1:-1;47694:9:0;;-1:-1:-1;;;47694:9:0;;;;47693:10;47641:62;:111;;;;-1:-1:-1;;;;;;47721:31:0;;;;;;:25;:31;;;;;;;;47720:32;47641:111;:154;;;;-1:-1:-1;;;;;;47770:25:0;;;;;;:19;:25;;;;;;;;47769:26;47641:154;:195;;;;-1:-1:-1;;;;;;47813:23:0;;;;;;:19;:23;;;;;;;;47812:24;47641:195;47623:282;;;47863:30;47872:20;47863:8;:30::i;:::-;47933:9;;-1:-1:-1;;;;;47959:25:0;;47917:12;47959:25;;;:19;:25;;;;;;47933:9;-1:-1:-1;;;47933:9:0;;;;;47932:10;;47959:25;;:52;;-1:-1:-1;;;;;;47988:23:0;;;;;;:19;:23;;;;;;;;47959:52;47955:100;;;-1:-1:-1;48038:5:0;47955:100;48067:12;48094:17;48132:7;48128:2119;;;-1:-1:-1;;;;;48184:29:0;;;;;;:25;:29;;;;;;;;:45;;;;;48228:1;48217:8;;:12;48184:45;48180:1918;;;48254:19;;-1:-1:-1;;;48254:19:0;;;;48250:798;;;48320:10;;:21;;48334:6;48320:21;:::i;:::-;48302:15;:39;48298:662;;;-1:-1:-1;48382:8:0;;48250:798;;48298:662;48442:10;;:22;;48456:7;48442:22;:::i;:::-;48424:15;:40;48420:540;;;-1:-1:-1;48505:1:0;48250:798;;48420:540;48558:10;;:25;;48572:10;48558:25;:::i;:::-;48540:15;:43;48536:424;;;-1:-1:-1;48624:2:0;48250:798;;48536:424;48678:10;;:25;;48692:10;48678:25;:::i;:::-;48660:15;:43;48656:304;;;-1:-1:-1;48744:2:0;48250:798;;48656:304;48798:10;;:24;;48812:9;48798:24;:::i;:::-;48780:15;:42;48776:184;;;-1:-1:-1;48863:2:0;48250:798;;48776:184;-1:-1:-1;48934:2:0;48250:798;;;-1:-1:-1;49020:8:0;;48250:798;49073:30;49099:3;49073:21;:6;49084:9;49073:10;:21::i;:::-;:25;;:30::i;:::-;49066:37;;48180:1918;;;-1:-1:-1;;;;;49165:31:0;;;;;;:25;:31;;;;;;;;:46;;;;;49210:1;49200:7;;:11;49165:46;49161:937;;;49236:19;;-1:-1:-1;;;49236:19:0;;;;49232:795;;;49302:10;;:21;;49316:6;49302:21;:::i;:::-;49284:15;:39;49280:660;;;-1:-1:-1;49364:7:0;;49232:795;;49280:660;49423:10;;:22;;49437:7;49423:22;:::i;:::-;49405:15;:40;49401:539;;;-1:-1:-1;49486:1:0;49232:795;;49401:539;49539:10;;:25;;49553:10;49539:25;:::i;:::-;49521:15;:43;49517:423;;;-1:-1:-1;49605:1:0;49232:795;;49517:423;49658:10;;:25;;49672:10;49658:25;:::i;:::-;49640:15;:43;49636:304;;;-1:-1:-1;49724:2:0;49232:795;;49636:304;49778:10;;:24;;49792:9;49778:24;:::i;:::-;49760:15;:42;49756:184;;;-1:-1:-1;49843:2:0;49232:795;;49756:184;-1:-1:-1;49914:2:0;49232:795;;;-1:-1:-1;50000:7:0;;49232:795;50052:30;50078:3;50052:21;:6;50063:9;50052:10;:21::i;:30::-;50045:37;;49161:937;50118:8;;50114:91;;50147:42;50163:4;50177;50184;50147:15;:42::i;:::-;50221:14;50231:4;50221:14;;:::i;:::-;;;48128:2119;50259:33;50275:4;50281:2;50285:6;50259:15;:33::i;:::-;-1:-1:-1;;50314:11:0;;50303:8;:22;-1:-1:-1;;;;;;44636:5697:0:o;17259:675::-;-1:-1:-1;;;;;17343:21:0;;17335:67;;;;-1:-1:-1;;;17335:67:0;;15479:2:1;17335:67:0;;;15461:21:1;15518:2;15498:18;;;15491:30;15557:34;15537:18;;;15530:62;-1:-1:-1;;;15608:18:1;;;15601:31;15649:19;;17335:67:0;15277:397:1;17335:67:0;-1:-1:-1;;;;;17502:18:0;;17477:22;17502:18;;;;;;;;;;;17539:24;;;;17531:71;;;;-1:-1:-1;;;17531:71:0;;15881:2:1;17531:71:0;;;15863:21:1;15920:2;15900:18;;;15893:30;15959:34;15939:18;;;15932:62;-1:-1:-1;;;16010:18:1;;;16003:32;16052:19;;17531:71:0;15679:398:1;17531:71:0;-1:-1:-1;;;;;17638:18:0;;:9;:18;;;;;;;;;;;17659:23;;;17638:44;;17777:12;:22;;;;;;;17828:37;2720:25:1;;;17638:9:0;;:18;17828:37;;2693:18:1;17828:37:0;;;;;;;43689:40:::1;43529:212;43276:472:::0;:::o;50341:510::-;50440:16;;;50454:1;50440:16;;;;;;;;50416:21;;50440:16;;;;;;;;;;-1:-1:-1;50440:16:0;50416:40;;50485:4;50467;50472:1;50467:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50467:23:0;;;-1:-1:-1;;;;;50467:23:0;;;;;50511:15;-1:-1:-1;;;;;50511:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50501:4;50506:1;50501:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50501:32:0;;;-1:-1:-1;;;;;50501:32:0;;;;;50546:62;50563:4;50578:15;50596:11;50546:8;:62::i;:::-;50647:196;;-1:-1:-1;;;50647:196:0;;-1:-1:-1;;;;;50647:15:0;:66;;;;:196;;50728:11;;50754:1;;50770:4;;50797;;50817:15;;50647:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50405:446;50341:510;:::o;3475:191::-;3568:6;;;-1:-1:-1;;;;;3585:17:0;;;-1:-1:-1;;;;;;3585:17:0;;;;;;;3618:40;;3568:6;;;3585:17;3568:6;;3618:40;;3549:16;;3618:40;3538:128;3475:191;:::o;15214:877::-;-1:-1:-1;;;;;15345:18:0;;15337:68;;;;-1:-1:-1;;;15337:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15424:16:0;;15416:64;;;;-1:-1:-1;;;15416:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15566:15:0;;15544:19;15566:15;;;;;;;;;;;15614:21;;;;15592:109;;;;-1:-1:-1;;;15592:109:0;;17657:2:1;15592:109:0;;;17639:21:1;17696:2;17676:18;;;17669:30;17735:34;17715:18;;;17708:62;-1:-1:-1;;;17786:18:1;;;17779:36;17832:19;;15592:109:0;17455:402:1;15592:109:0;-1:-1:-1;;;;;15737:15:0;;;:9;:15;;;;;;;;;;;15755:20;;;15737:38;;15955:13;;;;;;;;;;:23;;;;;;16007:26;;2720:25:1;;;15955:13:0;;16007:26;;2693:18:1;16007:26:0;;;;;;;16046:37;43276:472;50859:749;36163:9;:16;;-1:-1:-1;;;;36163:16:0;-1:-1:-1;;;36163:16:0;;;;51009:25;;;51005:64:::1;;51051:7;;;51005:64;51108:18;;51085:20;:41;51081:115;;;51166:18;;51143:41;;51081:115;51208:38;51225:20;51208:16;:38::i;:::-;51280:21;51259:18;51335:14;51348:1;51280:21:::0;51335:14:::1;:::i;:::-;51312:37:::0;-1:-1:-1;51360:22:0::1;51385:25;51312:37:::0;51385:10;:25:::1;:::i;:::-;51445:15;::::0;51437:54:::1;::::0;51360:50;;-1:-1:-1;;;;;;51445:15:0::1;::::0;51474:12;;51437:54:::1;::::0;;;51474:12;51445:15;51437:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;51526:17:0::1;::::0;51518:82:::1;::::0;51423:68;;-1:-1:-1;;;;;;51526:17:0::1;::::0;51557:14;;51518:82:::1;::::0;;;51557:14;51526:17;51518:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;;36190:1:0::1;-1:-1:-1::0;36202:9:0;:17;;-1:-1:-1;;;;36202:17:0;;;50859:749::o;24720:98::-;24778:7;24805:5;24809:1;24805;:5;:::i;:::-;24798:12;24720:98;-1:-1:-1;;;24720:98:0:o;25119:::-;25177:7;25204:5;25208:1;25204;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:118::-;1301:5;1294:13;1287:21;1280:5;1277:32;1267:60;;1323:1;1320;1313:12;1338:241;1394:6;1447:2;1435:9;1426:7;1422:23;1418:32;1415:52;;;1463:1;1460;1453:12;1415:52;1502:9;1489:23;1521:28;1543:5;1521:28;:::i;1584:750::-;1676:6;1684;1692;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;1801:9;1788:23;1830:18;1871:2;1863:6;1860:14;1857:34;;;1887:1;1884;1877:12;1857:34;1925:6;1914:9;1910:22;1900:32;;1970:7;1963:4;1959:2;1955:13;1951:27;1941:55;;1992:1;1989;1982:12;1941:55;2032:2;2019:16;2058:2;2050:6;2047:14;2044:34;;;2074:1;2071;2064:12;2044:34;2129:7;2122:4;2112:6;2109:1;2105:14;2101:2;2097:23;2093:34;2090:47;2087:67;;;2150:1;2147;2140:12;2087:67;2181:4;2173:13;;;;-1:-1:-1;2205:6:1;-1:-1:-1;;2246:20:1;;2233:34;2276:28;2233:34;2276:28;:::i;:::-;2323:5;2313:15;;;1584:750;;;;;:::o;2756:456::-;2833:6;2841;2849;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;2957:9;2944:23;2976:31;3001:5;2976:31;:::i;:::-;3026:5;-1:-1:-1;3083:2:1;3068:18;;3055:32;3096:33;3055:32;3096:33;:::i;:::-;2756:456;;3148:7;;-1:-1:-1;;;3202:2:1;3187:18;;;;3174:32;;2756:456::o;3614:180::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;-1:-1:-1;3765:23:1;;3614:180;-1:-1:-1;3614:180:1:o;3799:247::-;3858:6;3911:2;3899:9;3890:7;3886:23;3882:32;3879:52;;;3927:1;3924;3917:12;3879:52;3966:9;3953:23;3985:31;4010:5;3985:31;:::i;4051:248::-;4119:6;4127;4180:2;4168:9;4159:7;4155:23;4151:32;4148:52;;;4196:1;4193;4186:12;4148:52;-1:-1:-1;;4219:23:1;;;4289:2;4274:18;;;4261:32;;-1:-1:-1;4051:248:1:o;4304:382::-;4369:6;4377;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4485:9;4472:23;4504:31;4529:5;4504:31;:::i;:::-;4554:5;-1:-1:-1;4611:2:1;4596:18;;4583:32;4624:30;4583:32;4624:30;:::i;:::-;4673:7;4663:17;;;4304:382;;;;;:::o;4691:388::-;4759:6;4767;4820:2;4808:9;4799:7;4795:23;4791:32;4788:52;;;4836:1;4833;4826:12;4788:52;4875:9;4862:23;4894:31;4919:5;4894:31;:::i;:::-;4944:5;-1:-1:-1;5001:2:1;4986:18;;4973:32;5014:33;4973:32;5014:33;:::i;5084:380::-;5163:1;5159:12;;;;5206;;;5227:61;;5281:4;5273:6;5269:17;5259:27;;5227:61;5334:2;5326:6;5323:14;5303:18;5300:38;5297:161;;5380:10;5375:3;5371:20;5368:1;5361:31;5415:4;5412:1;5405:15;5443:4;5440:1;5433:15;5297:161;;5084:380;;;:::o;5469:127::-;5530:10;5525:3;5521:20;5518:1;5511:31;5561:4;5558:1;5551:15;5585:4;5582:1;5575:15;5601:127;5662:10;5657:3;5653:20;5650:1;5643:31;5693:4;5690:1;5683:15;5717:4;5714:1;5707:15;5733:135;5772:3;5793:17;;;5790:43;;5813:18;;:::i;:::-;-1:-1:-1;5860:1:1;5849:13;;5733:135::o;5873:125::-;5938:9;;;5959:10;;;5956:36;;;5972:18;;:::i;6003:217::-;6043:1;6069;6059:132;;6113:10;6108:3;6104:20;6101:1;6094:31;6148:4;6145:1;6138:15;6176:4;6173:1;6166:15;6059:132;-1:-1:-1;6205:9:1;;6003:217::o;6225:128::-;6292:9;;;6313:11;;;6310:37;;;6327:18;;:::i;6568:168::-;6641:9;;;6672;;6689:15;;;6683:22;;6669:37;6659:71;;6710:18;;:::i;7562:400::-;7764:2;7746:21;;;7803:2;7783:18;;;7776:30;7842:34;7837:2;7822:18;;7815:62;-1:-1:-1;;;7908:2:1;7893:18;;7886:34;7952:3;7937:19;;7562:400::o;9071:184::-;9141:6;9194:2;9182:9;9173:7;9169:23;9165:32;9162:52;;;9210:1;9207;9200:12;9162:52;-1:-1:-1;9233:16:1;;9071:184;-1:-1:-1;9071:184:1:o;9876:245::-;9943:6;9996:2;9984:9;9975:7;9971:23;9967:32;9964:52;;;10012:1;10009;10002:12;9964:52;10044:9;10038:16;10063:28;10085:5;10063:28;:::i;12917:401::-;13119:2;13101:21;;;13158:2;13138:18;;;13131:30;13197:34;13192:2;13177:18;;13170:62;-1:-1:-1;;;13263:2:1;13248:18;;13241:35;13308:3;13293:19;;12917:401::o;13323:399::-;13525:2;13507:21;;;13564:2;13544:18;;;13537:30;13603:34;13598:2;13583:18;;13576:62;-1:-1:-1;;;13669:2:1;13654:18;;13647:33;13712:3;13697:19;;13323:399::o;13727:343::-;13929:2;13911:21;;;13968:2;13948:18;;;13941:30;-1:-1:-1;;;14002:2:1;13987:18;;13980:49;14061:2;14046:18;;13727:343::o;16214:251::-;16284:6;16337:2;16325:9;16316:7;16312:23;16308:32;16305:52;;;16353:1;16350;16343:12;16305:52;16385:9;16379:16;16404:31;16429:5;16404:31;:::i;16470:980::-;16732:4;16780:3;16769:9;16765:19;16811:6;16800:9;16793:25;16837:2;16875:6;16870:2;16859:9;16855:18;16848:34;16918:3;16913:2;16902:9;16898:18;16891:31;16942:6;16977;16971:13;17008:6;17000;16993:22;17046:3;17035:9;17031:19;17024:26;;17085:2;17077:6;17073:15;17059:29;;17106:1;17116:195;17130:6;17127:1;17124:13;17116:195;;;17195:13;;-1:-1:-1;;;;;17191:39:1;17179:52;;17286:15;;;;17251:12;;;;17227:1;17145:9;17116:195;;;-1:-1:-1;;;;;;;17367:32:1;;;;17362:2;17347:18;;17340:60;-1:-1:-1;;;17431:3:1;17416:19;17409:35;17328:3;16470:980;-1:-1:-1;;;16470:980:1:o

Swarm Source

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