ETH Price: $2,064.56 (+7.17%)
 

Overview

Max Total Supply

1,000,000,000 ESCROW

Holders

14

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EscrowToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-10-12
*/

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

    Telegram:   https://t.me/ESCROWERC
    X:          https://twitter.com/ESCROWERC
    Website:    https://helloescrow.com

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

// 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 EscrowToken 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;
    bool public dynamicTaxesEnabled;
    bool public launched;

    address public marketingWallet;
    address public developmentWallet;

    uint256 public launchBlock;
    uint256 public launchTime;

    uint256 public maxTransaction;
    uint256 public maxWallet;

    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() ERC20("Escrow", "ESCROW") {
        uint256 totalSupply = 1_000_000_000 ether;
        address pinkSaleFactory = 0x5f9322b5a8E24D891061dfA6698D36578c8Aa35f;

        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
        );
        _approve(owner(), pinkSaleFactory, type(uint256).max);

        maxTransaction = totalSupply;
        maxWallet = totalSupply;

        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyFees = 5;
        sellFees = 5;
        previousFee = sellFees;

        marketingWallet = 0xF9d90Ff723F5D0eBbd29c1546cB0f70AcCB20033;
        developmentWallet = 0xa2e9d0E28D4a07BccE594b7860Df6aEC987919a0;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(developmentWallet, true);
        excludeFromFees(pinkSaleFactory, 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(pinkSaleFactory, true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(owner(), totalSupply);
    }

    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 launch() public onlyOwner {
        require(!launched, "ERC20: Already launched.");
        launched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
        dynamicTaxesEnabled = true;
    }

    function setSwapTokensAtAmount(uint256 newAmount) public onlyOwner {
        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;
    }

    function setLimits(uint256 _maxTransaction, uint256 _maxWallet)
        external
        onlyOwner
    {
        require(
            _maxTransaction >= ((totalSupply() * 1) / 1000),
            "ERC20: Cannot set maxTransaction lower than 0.1%"
        );
        require(
            _maxWallet >= ((totalSupply() * 1) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.1%"
        );
        maxTransaction = _maxTransaction;
        maxWallet = _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 setBuyFees(uint256 _buyFees) public onlyOwner {
        require(_buyFees <= 10, "ERC20: Must keep fees at 10% or less");
        buyFees = _buyFees;
    }

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

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

    function setDevelopmentWallet(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
        ) {
            if (!launched) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Not launched."
                );
            }

            //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 + (15 minutes)) {
                        totalFees = sellFees;
                    } else {
                        totalFees = 20;
                    }
                } else {
                    totalFees = sellFees;
                }
                fees = amount.mul(totalFees).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                if (dynamicTaxesEnabled) {
                    if (block.timestamp > launchTime + (15 minutes)) {
                        totalFees = buyFees;
                    } else if (block.timestamp > launchTime + (10 minutes)) {
                        totalFees = 10;
                    } else if (block.timestamp > launchTime + (5 minutes)) {
                        totalFees = 15;
                    } else {
                        totalFees = 20;
                    }
                } 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);

        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 * 10) {
            contractTokenBalance = swapTokensAtAmount * 10;
        }

        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

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"launch","outputs":[],"stateMutability":"nonpayable","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":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_buyFees","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405180604001604052806006815260200165457363726f7760d01b81525060405180604001604052806006815260200165455343524f5760d01b815250816003908162000061919062000914565b50600462000070828262000914565b5050506200008d62000087620004d660201b60201c565b620004da565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce800000090735f9322b5a8e24d891061dfa6698d36578c8aa35f90620000db9030906000196200052c565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200011c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001429190620009e0565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000192573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b89190620009e0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000206573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022c9190620009e0565b600680546001600160a01b0319166001600160a01b039290921691821790556200025b9030906000196200052c565b60065460805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620002b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d8919062000a12565b50620002fa620002f06005546001600160a01b031690565b826000196200052c565b600b829055600c8290556127106200031483600562000a4c565b62000320919062000a6c565b600d556005600e819055600f819055601055600780546001600160a01b031990811673f9d90ff723f5d0ebbd29c1546cb0f70accb20033179091556008805490911673a2e9d0e28d4a07bcce594b7860df6aec987919a017905562000399620003916005546001600160a01b031690565b600162000658565b620003a630600162000658565b620003b561dead600162000658565b600754620003ce906001600160a01b0316600162000658565b600854620003e7906001600160a01b0316600162000658565b620003f481600162000658565b620004136200040b6005546001600160a01b031690565b6001620006c1565b62000420306001620006c1565b6200042f61dead6001620006c1565b6080516200043f906001620006c1565b60065462000458906001600160a01b03166001620006c1565b60075462000471906001600160a01b03166001620006c1565b6008546200048a906001600160a01b03166001620006c1565b62000497816001620006c1565b600654620004b0906001600160a01b03166001620006f6565b620004ce620004c76005546001600160a01b031690565b836200074a565b505062000aa5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005945760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200058b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620006626200080d565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620006cb6200080d565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620007a25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200058b565b8060026000828254620007b6919062000a8f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620008695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200058b565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200089b57607f821691505b602082108103620008bc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200086b57600081815260208120601f850160051c81016020861015620008eb5750805b601f850160051c820191505b818110156200090c57828155600101620008f7565b505050505050565b81516001600160401b0381111562000930576200093062000870565b620009488162000941845462000886565b84620008c2565b602080601f831160018114620009805760008415620009675750858301515b600019600386901b1c1916600185901b1785556200090c565b600085815260208120601f198616915b82811015620009b15788860151825594840194600190910190840162000990565b5085821015620009d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620009f357600080fd5b81516001600160a01b038116811462000a0b57600080fd5b9392505050565b60006020828403121562000a2557600080fd5b8151801515811462000a0b57600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000a665762000a6662000a36565b92915050565b60008262000a8a57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a665762000a6662000a36565b60805161296462000add6000396000818161035c01528181610de101528181612022015281816120db015261211701526129646000f3fe60806040526004361061028c5760003560e01c80638091f3bf1161015a578063cb963728116100c1578063e0f3ccf51161007a578063e0f3ccf5146107d7578063e2f45605146107ed578063e4748b9e14610803578063f26a992e14610819578063f2fde38b1461083a578063f8b45b051461085a57600080fd5b8063cb96372814610721578063d00efb2f14610741578063d7d1d10e14610757578063dcf7aef314610777578063dd62ed3e14610797578063e01af92c146107b757600080fd5b8063a9059cbb11610113578063a9059cbb1461066b578063afa4f3b21461068b578063c0246668146106ab578063c04a5414146106cb578063c3f70b52146106eb578063c4590d3f1461070157600080fd5b80638091f3bf146105b75780638da5cb5b146105d857806395927c25146105f657806395d89b41146106165780639c0db5f31461062b578063a457c2d71461064b57600080fd5b806342966c68116101fe57806370a08231116101b757806370a08231146104f6578063715018a61461052c57806372ac2486146105415780637571336a1461056157806375f0a87414610581578063790ca413146105a157600080fd5b806342966c681461042757806349bd5a5e146104475780634fbee193146104675780635d098b38146104a057806367c45349146104c05780636ddd1713146104d557600080fd5b80631694505e116102505780631694505e1461034a57806318160ddd1461039657806323b872dd146103b557806327c8f835146103d5578063313ce567146103eb578063395093511461040757600080fd5b806301339c211461029857806306fdde03146102af578063095ea7b3146102da5780630c8c07601461030a578063155ca7c11461032a57600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610870565b005b3480156102bb57600080fd5b506102c46108f6565b6040516102d19190612453565b60405180910390f35b3480156102e657600080fd5b506102fa6102f53660046124b6565b610988565b60405190151581526020016102d1565b34801561031657600080fd5b506102ad6103253660046124f0565b6109a2565b34801561033657600080fd5b506102ad61034536600461250d565b6109c8565b34801561035657600080fd5b5061037e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d1565b3480156103a257600080fd5b506002545b6040519081526020016102d1565b3480156103c157600080fd5b506102fa6103d0366004612593565b610a47565b3480156103e157600080fd5b5061037e61dead81565b3480156103f757600080fd5b50604051601281526020016102d1565b34801561041357600080fd5b506102fa6104223660046124b6565b610a6b565b34801561043357600080fd5b506102ad6104423660046125d4565b610a8d565b34801561045357600080fd5b5060065461037e906001600160a01b031681565b34801561047357600080fd5b506102fa6104823660046125ed565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104ac57600080fd5b506102ad6104bb3660046125ed565b610a9a565b3480156104cc57600080fd5b506102ad610b3c565b3480156104e157600080fd5b506006546102fa90600160a81b900460ff1681565b34801561050257600080fd5b506103a76105113660046125ed565b6001600160a01b031660009081526020819052604090205490565b34801561053857600080fd5b506102ad610c5c565b34801561054d57600080fd5b506102ad61055c3660046125ed565b610c70565b34801561056d57600080fd5b506102ad61057c36600461260a565b610d12565b34801561058d57600080fd5b5060075461037e906001600160a01b031681565b3480156105ad57600080fd5b506103a7600a5481565b3480156105c357600080fd5b506006546102fa90600160b81b900460ff1681565b3480156105e457600080fd5b506005546001600160a01b031661037e565b34801561060257600080fd5b506102ad6106113660046125d4565b610d45565b34801561062257600080fd5b506102c4610d78565b34801561063757600080fd5b506102ad61064636600461250d565b610d87565b34801561065757600080fd5b506102fa6106663660046124b6565b610ee3565b34801561067757600080fd5b506102fa6106863660046124b6565b610f5e565b34801561069757600080fd5b506102ad6106a63660046125d4565b610f6c565b3480156106b757600080fd5b506102ad6106c636600461260a565b6110a6565b3480156106d757600080fd5b5060085461037e906001600160a01b031681565b3480156106f757600080fd5b506103a7600b5481565b34801561070d57600080fd5b506102ad61071c366004612643565b61110d565b34801561072d57600080fd5b506102ad61073c3660046125ed565b61122d565b34801561074d57600080fd5b506103a760095481565b34801561076357600080fd5b506102ad61077236600461250d565b61141c565b34801561078357600080fd5b506102ad6107923660046125d4565b611495565b3480156107a357600080fd5b506103a76107b2366004612665565b6114c3565b3480156107c357600080fd5b506102ad6107d23660046124f0565b6114ee565b3480156107e357600080fd5b506103a7600f5481565b3480156107f957600080fd5b506103a7600d5481565b34801561080f57600080fd5b506103a7600e5481565b34801561082557600080fd5b506006546102fa90600160b01b900460ff1681565b34801561084657600080fd5b506102ad6108553660046125ed565b611514565b34801561086657600080fd5b506103a7600c5481565b61087861158a565b600654600160b81b900460ff16156108d75760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e000000000000000060448201526064015b60405180910390fd5b600680544360095542600a5561ffff60b01b191661010160b01b179055565b60606003805461090590612693565b80601f016020809104026020016040519081016040528092919081815260200182805461093190612693565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b6000336109968185856115e4565b60019150505b92915050565b6109aa61158a565b60068054911515600160b01b0260ff60b01b19909216919091179055565b6109d061158a565b60005b82811015610a415781601160008686858181106109f2576109f26126cd565b9050602002016020810190610a0791906125ed565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610a39816126f9565b9150506109d3565b50505050565b600033610a55858285611708565b610a6085858561177c565b506001949350505050565b600033610996818585610a7e83836114c3565b610a889190612712565b6115e4565b610a973382611e99565b50565b610aa261158a565b6001600160a01b038116610aeb5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064016108ce565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610b4461158a565b6006805460ff60a01b1916600160a01b179055610b7e610b79306001600160a01b031660009081526020819052604090205490565b611fcb565b476000610b8c600283612725565b90506000610b9a8284612747565b6007546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610bec576040519150601f19603f3d011682016040523d82523d6000602084013e610bf1565b606091505b50506008546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610c41576040519150601f19603f3d011682016040523d82523d6000602084013e610c46565b606091505b50506006805460ff60a01b191690555050505050565b610c6461158a565b610c6e600061218b565b565b610c7861158a565b6001600160a01b038116610cc15760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064016108ce565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a35050565b610d1a61158a565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610d4d61158a565b600a811115610d6e5760405162461bcd60e51b81526004016108ce9061275a565b600f819055601055565b60606004805461090590612693565b610d8f61158a565b60005b82811015610a41576006546001600160a01b0316848483818110610db857610db86126cd565b9050602002016020810190610dcd91906125ed565b6001600160a01b031614158015610e3c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610e1b57610e1b6126cd565b9050602002016020810190610e3091906125ed565b6001600160a01b031614155b8015610e77575030848483818110610e5657610e566126cd565b9050602002016020810190610e6b91906125ed565b6001600160a01b031614155b15610ed1578160146000868685818110610e9357610e936126cd565b9050602002016020810190610ea891906125ed565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610edb816126f9565b915050610d92565b60003381610ef182866114c3565b905083811015610f515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108ce565b610a6082868684036115e4565b60003361099681858561177c565b610f7461158a565b620186a0610f8160025490565b610f8c90600161279e565b610f969190612725565b81101561100b5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016108ce565b6103e861101760025490565b61102290600561279e565b61102c9190612725565b8111156110a15760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016108ce565b600d55565b6110ae61158a565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61111561158a565b6103e861112160025490565b61112c90600161279e565b6111369190612725565b82101561119e5760405162461bcd60e51b815260206004820152603060248201527f45524332303a2043616e6e6f7420736574206d61785472616e73616374696f6e60448201526f206c6f776572207468616e20302e312560801b60648201526084016108ce565b6103e86111aa60025490565b6111b590600161279e565b6111bf9190612725565b8110156112225760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b60648201526084016108ce565b600b91909155600c55565b61123561158a565b6001600160a01b03811661129457604051600090339047908381818185875af1925050503d8060008114611285576040519150601f19603f3d011682016040523d82523d6000602084013e61128a565b606091505b50610a9792505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156112db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ff91906127b5565b116113385760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016108ce565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a391906127b5565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141791906127ce565b505050565b61142461158a565b60005b82811015610a41578160126000868685818110611446576114466126cd565b905060200201602081019061145b91906125ed565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061148d816126f9565b915050611427565b61149d61158a565b600a8111156114be5760405162461bcd60e51b81526004016108ce9061275a565b600e55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114f661158a565b60068054911515600160a81b0260ff60a81b19909216919091179055565b61151c61158a565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ce565b610a978161218b565b6005546001600160a01b03163314610c6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ce565b6001600160a01b0383166116465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ce565b6001600160a01b0382166116a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061171484846114c3565b90506000198114610a41578181101561176f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108ce565b610a4184848484036115e4565b6001600160a01b0383166117a25760405162461bcd60e51b81526004016108ce906127eb565b6001600160a01b0382166117c85760405162461bcd60e51b81526004016108ce90612830565b6001600160a01b03831660009081526014602052604090205460ff16156118015760405162461bcd60e51b81526004016108ce90612873565b3360009081526014602052604090205460ff16156118315760405162461bcd60e51b81526004016108ce90612873565b3260009081526014602052604090205460ff16156118615760405162461bcd60e51b81526004016108ce90612873565b8060000361187557611417838360006121dd565b6005546001600160a01b038481169116148015906118a157506005546001600160a01b03838116911614155b80156118b557506001600160a01b03821615155b80156118cc57506001600160a01b03821661dead14155b80156118e25750600654600160a01b900460ff16155b15611bfc57600654600160b81b900460ff1661197a576001600160a01b03831660009081526011602052604090205460ff168061193757506001600160a01b03821660009081526011602052604090205460ff165b61197a5760405162461bcd60e51b815260206004820152601460248201527322a92199181d102737ba103630bab731b432b21760611b60448201526064016108ce565b6001600160a01b03831660009081526013602052604090205460ff1680156119bb57506001600160a01b03821660009081526012602052604090205460ff16155b15611aaa57600b54811115611a315760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b60648201526084016108ce565b600c546001600160a01b038316600090815260208190526040902054611a579083612712565b1115611aa55760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108ce565b611bfc565b6001600160a01b03821660009081526013602052604090205460ff168015611aeb57506001600160a01b03831660009081526012602052604090205460ff16155b15611b6857600b54811115611aa55760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e00000000000000000060648201526084016108ce565b6001600160a01b03821660009081526012602052604090205460ff16611bfc57600c546001600160a01b038316600090815260208190526040902054611bae9083612712565b1115611bfc5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108ce565b30600090815260208190526040902054600d5481108015908190611c295750600654600160a81b900460ff165b8015611c3f5750600654600160a01b900460ff16155b8015611c6457506001600160a01b03851660009081526013602052604090205460ff16155b8015611c8957506001600160a01b03851660009081526011602052604090205460ff16155b8015611cae57506001600160a01b03841660009081526011602052604090205460ff16155b15611cbc57611cbc82612307565b6006546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611d0a57506001600160a01b03851660009081526011602052604090205460ff165b15611d13575060005b6000808215611e7e576001600160a01b03871660009081526013602052604090205460ff168015611d4657506000600f54115b15611da557600654600160b01b900460ff1615611d8457600a54611d6c90610384612712565b421115611d7c5750600f54611d89565b506014611d89565b50600f545b611d9e6064611d988884612434565b90612447565b9150611e60565b6001600160a01b03881660009081526013602052604090205460ff168015611dcf57506000600e54115b15611e6057600654600160b01b900460ff1615611e4957600a54611df590610384612712565b421115611e055750600e54611e4e565b600a54611e1490610258612712565b421115611e235750600a611e4e565b600a54611e329061012c612712565b421115611e415750600f611e4e565b506014611e4e565b50600e545b611e5d6064611d988884612434565b91505b8115611e7157611e718830846121dd565b611e7b8287612747565b95505b611e898888886121dd565b5050601054600f55505050505050565b6001600160a01b038216611ef95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108ce565b6001600160a01b03821660009081526020819052604090205481811015611f6d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108ce565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612000576120006126cd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561207e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a291906128a0565b816001815181106120b5576120b56126cd565b60200260200101906001600160a01b031690816001600160a01b031681525050612100307f0000000000000000000000000000000000000000000000000000000000000000846115e4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906121559085906000908690309042906004016128bd565b600060405180830381600087803b15801561216f57600080fd5b505af1158015612183573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166122035760405162461bcd60e51b81526004016108ce906127eb565b6001600160a01b0382166122295760405162461bcd60e51b81526004016108ce90612830565b6001600160a01b038316600090815260208190526040902054818110156122a15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ce565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a41565b6006805460ff60a01b1916600160a01b17905560008181036123295750612424565b600d5461233790600a61279e565b82111561234f57600d5461234c90600a61279e565b91505b61235882611fcb565b476000612366600283612725565b905060006123748284612747565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d80600081146123c2576040519150601f19603f3d011682016040523d82523d6000602084013e6123c7565b606091505b50506008546040519195506001600160a01b0316908290600081818185875af1925050503d8060008114612417576040519150601f19603f3d011682016040523d82523d6000602084013e61241c565b606091505b505050505050505b506006805460ff60a01b19169055565b6000612440828461279e565b9392505050565b60006124408284612725565b600060208083528351808285015260005b8181101561248057858101830151858201604001528201612464565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a9757600080fd5b600080604083850312156124c957600080fd5b82356124d4816124a1565b946020939093013593505050565b8015158114610a9757600080fd5b60006020828403121561250257600080fd5b8135612440816124e2565b60008060006040848603121561252257600080fd5b833567ffffffffffffffff8082111561253a57600080fd5b818601915086601f83011261254e57600080fd5b81358181111561255d57600080fd5b8760208260051b850101111561257257600080fd5b60209283019550935050840135612588816124e2565b809150509250925092565b6000806000606084860312156125a857600080fd5b83356125b3816124a1565b925060208401356125c3816124a1565b929592945050506040919091013590565b6000602082840312156125e657600080fd5b5035919050565b6000602082840312156125ff57600080fd5b8135612440816124a1565b6000806040838503121561261d57600080fd5b8235612628816124a1565b91506020830135612638816124e2565b809150509250929050565b6000806040838503121561265657600080fd5b50508035926020909101359150565b6000806040838503121561267857600080fd5b8235612683816124a1565b91506020830135612638816124a1565b600181811c908216806126a757607f821691505b6020821081036126c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161270b5761270b6126e3565b5060010190565b8082018082111561099c5761099c6126e3565b60008261274257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099c5761099c6126e3565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761099c5761099c6126e3565b6000602082840312156127c757600080fd5b5051919050565b6000602082840312156127e057600080fd5b8151612440816124e2565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b6000602082840312156128b257600080fd5b8151612440816124a1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561290d5784516001600160a01b0316835293830193918301916001016128e8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220451e3695d0422bb00a2c8ef32aeebcda69ba4e1bbea4a776f73d9379c0dc8d3864736f6c63430008110033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638091f3bf1161015a578063cb963728116100c1578063e0f3ccf51161007a578063e0f3ccf5146107d7578063e2f45605146107ed578063e4748b9e14610803578063f26a992e14610819578063f2fde38b1461083a578063f8b45b051461085a57600080fd5b8063cb96372814610721578063d00efb2f14610741578063d7d1d10e14610757578063dcf7aef314610777578063dd62ed3e14610797578063e01af92c146107b757600080fd5b8063a9059cbb11610113578063a9059cbb1461066b578063afa4f3b21461068b578063c0246668146106ab578063c04a5414146106cb578063c3f70b52146106eb578063c4590d3f1461070157600080fd5b80638091f3bf146105b75780638da5cb5b146105d857806395927c25146105f657806395d89b41146106165780639c0db5f31461062b578063a457c2d71461064b57600080fd5b806342966c68116101fe57806370a08231116101b757806370a08231146104f6578063715018a61461052c57806372ac2486146105415780637571336a1461056157806375f0a87414610581578063790ca413146105a157600080fd5b806342966c681461042757806349bd5a5e146104475780634fbee193146104675780635d098b38146104a057806367c45349146104c05780636ddd1713146104d557600080fd5b80631694505e116102505780631694505e1461034a57806318160ddd1461039657806323b872dd146103b557806327c8f835146103d5578063313ce567146103eb578063395093511461040757600080fd5b806301339c211461029857806306fdde03146102af578063095ea7b3146102da5780630c8c07601461030a578063155ca7c11461032a57600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610870565b005b3480156102bb57600080fd5b506102c46108f6565b6040516102d19190612453565b60405180910390f35b3480156102e657600080fd5b506102fa6102f53660046124b6565b610988565b60405190151581526020016102d1565b34801561031657600080fd5b506102ad6103253660046124f0565b6109a2565b34801561033657600080fd5b506102ad61034536600461250d565b6109c8565b34801561035657600080fd5b5061037e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102d1565b3480156103a257600080fd5b506002545b6040519081526020016102d1565b3480156103c157600080fd5b506102fa6103d0366004612593565b610a47565b3480156103e157600080fd5b5061037e61dead81565b3480156103f757600080fd5b50604051601281526020016102d1565b34801561041357600080fd5b506102fa6104223660046124b6565b610a6b565b34801561043357600080fd5b506102ad6104423660046125d4565b610a8d565b34801561045357600080fd5b5060065461037e906001600160a01b031681565b34801561047357600080fd5b506102fa6104823660046125ed565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104ac57600080fd5b506102ad6104bb3660046125ed565b610a9a565b3480156104cc57600080fd5b506102ad610b3c565b3480156104e157600080fd5b506006546102fa90600160a81b900460ff1681565b34801561050257600080fd5b506103a76105113660046125ed565b6001600160a01b031660009081526020819052604090205490565b34801561053857600080fd5b506102ad610c5c565b34801561054d57600080fd5b506102ad61055c3660046125ed565b610c70565b34801561056d57600080fd5b506102ad61057c36600461260a565b610d12565b34801561058d57600080fd5b5060075461037e906001600160a01b031681565b3480156105ad57600080fd5b506103a7600a5481565b3480156105c357600080fd5b506006546102fa90600160b81b900460ff1681565b3480156105e457600080fd5b506005546001600160a01b031661037e565b34801561060257600080fd5b506102ad6106113660046125d4565b610d45565b34801561062257600080fd5b506102c4610d78565b34801561063757600080fd5b506102ad61064636600461250d565b610d87565b34801561065757600080fd5b506102fa6106663660046124b6565b610ee3565b34801561067757600080fd5b506102fa6106863660046124b6565b610f5e565b34801561069757600080fd5b506102ad6106a63660046125d4565b610f6c565b3480156106b757600080fd5b506102ad6106c636600461260a565b6110a6565b3480156106d757600080fd5b5060085461037e906001600160a01b031681565b3480156106f757600080fd5b506103a7600b5481565b34801561070d57600080fd5b506102ad61071c366004612643565b61110d565b34801561072d57600080fd5b506102ad61073c3660046125ed565b61122d565b34801561074d57600080fd5b506103a760095481565b34801561076357600080fd5b506102ad61077236600461250d565b61141c565b34801561078357600080fd5b506102ad6107923660046125d4565b611495565b3480156107a357600080fd5b506103a76107b2366004612665565b6114c3565b3480156107c357600080fd5b506102ad6107d23660046124f0565b6114ee565b3480156107e357600080fd5b506103a7600f5481565b3480156107f957600080fd5b506103a7600d5481565b34801561080f57600080fd5b506103a7600e5481565b34801561082557600080fd5b506006546102fa90600160b01b900460ff1681565b34801561084657600080fd5b506102ad6108553660046125ed565b611514565b34801561086657600080fd5b506103a7600c5481565b61087861158a565b600654600160b81b900460ff16156108d75760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e000000000000000060448201526064015b60405180910390fd5b600680544360095542600a5561ffff60b01b191661010160b01b179055565b60606003805461090590612693565b80601f016020809104026020016040519081016040528092919081815260200182805461093190612693565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b6000336109968185856115e4565b60019150505b92915050565b6109aa61158a565b60068054911515600160b01b0260ff60b01b19909216919091179055565b6109d061158a565b60005b82811015610a415781601160008686858181106109f2576109f26126cd565b9050602002016020810190610a0791906125ed565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610a39816126f9565b9150506109d3565b50505050565b600033610a55858285611708565b610a6085858561177c565b506001949350505050565b600033610996818585610a7e83836114c3565b610a889190612712565b6115e4565b610a973382611e99565b50565b610aa261158a565b6001600160a01b038116610aeb5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064016108ce565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610b4461158a565b6006805460ff60a01b1916600160a01b179055610b7e610b79306001600160a01b031660009081526020819052604090205490565b611fcb565b476000610b8c600283612725565b90506000610b9a8284612747565b6007546040519192506000916001600160a01b039091169084908381818185875af1925050503d8060008114610bec576040519150601f19603f3d011682016040523d82523d6000602084013e610bf1565b606091505b50506008546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610c41576040519150601f19603f3d011682016040523d82523d6000602084013e610c46565b606091505b50506006805460ff60a01b191690555050505050565b610c6461158a565b610c6e600061218b565b565b610c7861158a565b6001600160a01b038116610cc15760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064016108ce565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a35050565b610d1a61158a565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610d4d61158a565b600a811115610d6e5760405162461bcd60e51b81526004016108ce9061275a565b600f819055601055565b60606004805461090590612693565b610d8f61158a565b60005b82811015610a41576006546001600160a01b0316848483818110610db857610db86126cd565b9050602002016020810190610dcd91906125ed565b6001600160a01b031614158015610e3c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610e1b57610e1b6126cd565b9050602002016020810190610e3091906125ed565b6001600160a01b031614155b8015610e77575030848483818110610e5657610e566126cd565b9050602002016020810190610e6b91906125ed565b6001600160a01b031614155b15610ed1578160146000868685818110610e9357610e936126cd565b9050602002016020810190610ea891906125ed565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610edb816126f9565b915050610d92565b60003381610ef182866114c3565b905083811015610f515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108ce565b610a6082868684036115e4565b60003361099681858561177c565b610f7461158a565b620186a0610f8160025490565b610f8c90600161279e565b610f969190612725565b81101561100b5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016108ce565b6103e861101760025490565b61102290600561279e565b61102c9190612725565b8111156110a15760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016108ce565b600d55565b6110ae61158a565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61111561158a565b6103e861112160025490565b61112c90600161279e565b6111369190612725565b82101561119e5760405162461bcd60e51b815260206004820152603060248201527f45524332303a2043616e6e6f7420736574206d61785472616e73616374696f6e60448201526f206c6f776572207468616e20302e312560801b60648201526084016108ce565b6103e86111aa60025490565b6111b590600161279e565b6111bf9190612725565b8110156112225760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b60648201526084016108ce565b600b91909155600c55565b61123561158a565b6001600160a01b03811661129457604051600090339047908381818185875af1925050503d8060008114611285576040519150601f19603f3d011682016040523d82523d6000602084013e61128a565b606091505b50610a9792505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156112db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ff91906127b5565b116113385760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016108ce565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561137f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a391906127b5565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141791906127ce565b505050565b61142461158a565b60005b82811015610a41578160126000868685818110611446576114466126cd565b905060200201602081019061145b91906125ed565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061148d816126f9565b915050611427565b61149d61158a565b600a8111156114be5760405162461bcd60e51b81526004016108ce9061275a565b600e55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114f661158a565b60068054911515600160a81b0260ff60a81b19909216919091179055565b61151c61158a565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ce565b610a978161218b565b6005546001600160a01b03163314610c6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ce565b6001600160a01b0383166116465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ce565b6001600160a01b0382166116a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061171484846114c3565b90506000198114610a41578181101561176f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108ce565b610a4184848484036115e4565b6001600160a01b0383166117a25760405162461bcd60e51b81526004016108ce906127eb565b6001600160a01b0382166117c85760405162461bcd60e51b81526004016108ce90612830565b6001600160a01b03831660009081526014602052604090205460ff16156118015760405162461bcd60e51b81526004016108ce90612873565b3360009081526014602052604090205460ff16156118315760405162461bcd60e51b81526004016108ce90612873565b3260009081526014602052604090205460ff16156118615760405162461bcd60e51b81526004016108ce90612873565b8060000361187557611417838360006121dd565b6005546001600160a01b038481169116148015906118a157506005546001600160a01b03838116911614155b80156118b557506001600160a01b03821615155b80156118cc57506001600160a01b03821661dead14155b80156118e25750600654600160a01b900460ff16155b15611bfc57600654600160b81b900460ff1661197a576001600160a01b03831660009081526011602052604090205460ff168061193757506001600160a01b03821660009081526011602052604090205460ff165b61197a5760405162461bcd60e51b815260206004820152601460248201527322a92199181d102737ba103630bab731b432b21760611b60448201526064016108ce565b6001600160a01b03831660009081526013602052604090205460ff1680156119bb57506001600160a01b03821660009081526012602052604090205460ff16155b15611aaa57600b54811115611a315760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b60648201526084016108ce565b600c546001600160a01b038316600090815260208190526040902054611a579083612712565b1115611aa55760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108ce565b611bfc565b6001600160a01b03821660009081526013602052604090205460ff168015611aeb57506001600160a01b03831660009081526012602052604090205460ff16155b15611b6857600b54811115611aa55760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e00000000000000000060648201526084016108ce565b6001600160a01b03821660009081526012602052604090205460ff16611bfc57600c546001600160a01b038316600090815260208190526040902054611bae9083612712565b1115611bfc5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108ce565b30600090815260208190526040902054600d5481108015908190611c295750600654600160a81b900460ff165b8015611c3f5750600654600160a01b900460ff16155b8015611c6457506001600160a01b03851660009081526013602052604090205460ff16155b8015611c8957506001600160a01b03851660009081526011602052604090205460ff16155b8015611cae57506001600160a01b03841660009081526011602052604090205460ff16155b15611cbc57611cbc82612307565b6006546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611d0a57506001600160a01b03851660009081526011602052604090205460ff165b15611d13575060005b6000808215611e7e576001600160a01b03871660009081526013602052604090205460ff168015611d4657506000600f54115b15611da557600654600160b01b900460ff1615611d8457600a54611d6c90610384612712565b421115611d7c5750600f54611d89565b506014611d89565b50600f545b611d9e6064611d988884612434565b90612447565b9150611e60565b6001600160a01b03881660009081526013602052604090205460ff168015611dcf57506000600e54115b15611e6057600654600160b01b900460ff1615611e4957600a54611df590610384612712565b421115611e055750600e54611e4e565b600a54611e1490610258612712565b421115611e235750600a611e4e565b600a54611e329061012c612712565b421115611e415750600f611e4e565b506014611e4e565b50600e545b611e5d6064611d988884612434565b91505b8115611e7157611e718830846121dd565b611e7b8287612747565b95505b611e898888886121dd565b5050601054600f55505050505050565b6001600160a01b038216611ef95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108ce565b6001600160a01b03821660009081526020819052604090205481811015611f6d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108ce565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612000576120006126cd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561207e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a291906128a0565b816001815181106120b5576120b56126cd565b60200260200101906001600160a01b031690816001600160a01b031681525050612100307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115e4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906121559085906000908690309042906004016128bd565b600060405180830381600087803b15801561216f57600080fd5b505af1158015612183573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166122035760405162461bcd60e51b81526004016108ce906127eb565b6001600160a01b0382166122295760405162461bcd60e51b81526004016108ce90612830565b6001600160a01b038316600090815260208190526040902054818110156122a15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ce565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a41565b6006805460ff60a01b1916600160a01b17905560008181036123295750612424565b600d5461233790600a61279e565b82111561234f57600d5461234c90600a61279e565b91505b61235882611fcb565b476000612366600283612725565b905060006123748284612747565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d80600081146123c2576040519150601f19603f3d011682016040523d82523d6000602084013e6123c7565b606091505b50506008546040519195506001600160a01b0316908290600081818185875af1925050503d8060008114612417576040519150601f19603f3d011682016040523d82523d6000602084013e61241c565b606091505b505050505050505b506006805460ff60a01b19169055565b6000612440828461279e565b9392505050565b60006124408284612725565b600060208083528351808285015260005b8181101561248057858101830151858201604001528201612464565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a9757600080fd5b600080604083850312156124c957600080fd5b82356124d4816124a1565b946020939093013593505050565b8015158114610a9757600080fd5b60006020828403121561250257600080fd5b8135612440816124e2565b60008060006040848603121561252257600080fd5b833567ffffffffffffffff8082111561253a57600080fd5b818601915086601f83011261254e57600080fd5b81358181111561255d57600080fd5b8760208260051b850101111561257257600080fd5b60209283019550935050840135612588816124e2565b809150509250925092565b6000806000606084860312156125a857600080fd5b83356125b3816124a1565b925060208401356125c3816124a1565b929592945050506040919091013590565b6000602082840312156125e657600080fd5b5035919050565b6000602082840312156125ff57600080fd5b8135612440816124a1565b6000806040838503121561261d57600080fd5b8235612628816124a1565b91506020830135612638816124e2565b809150509250929050565b6000806040838503121561265657600080fd5b50508035926020909101359150565b6000806040838503121561267857600080fd5b8235612683816124a1565b91506020830135612638816124a1565b600181811c908216806126a757607f821691505b6020821081036126c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161270b5761270b6126e3565b5060010190565b8082018082111561099c5761099c6126e3565b60008261274257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099c5761099c6126e3565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761099c5761099c6126e3565b6000602082840312156127c757600080fd5b5051919050565b6000602082840312156127e057600080fd5b8151612440816124e2565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b6000602082840312156128b257600080fd5b8151612440816124a1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561290d5784516001600160a01b0316835293830193918301916001016128e8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220451e3695d0422bb00a2c8ef32aeebcda69ba4e1bbea4a776f73d9379c0dc8d3864736f6c63430008110033

Deployed Bytecode Sourcemap

34932:14118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38766:239;;;;;;;;;;;;;:::i;:::-;;9667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12168:242;;;;;;;;;;-1:-1:-1;12168:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12168:242:0;1023:187:1;38651:107:0;;;;;;;;;;-1:-1:-1;38651:107:0;;;;;:::i;:::-;;:::i;41619:241::-;;;;;;;;;;-1:-1:-1;41619:241:0;;;;;:::i;:::-;;:::i;35013:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2530:32:1;;;2512:51;;2500:2;2485:18;35013:51:0;2339:230:1;10796:108:0;;;;;;;;;;-1:-1:-1;10884:12:0;;10796:108;;;2720:25:1;;;2708:2;2693:18;10796:108:0;2574:177:1;12990:295:0;;;;;;;;;;-1:-1:-1;12990:295:0;;;;;:::i;:::-;;:::i;35106:53::-;;;;;;;;;;;;35152:6;35106:53;;10638:93;;;;;;;;;;-1:-1:-1;10638:93:0;;10721:2;3567:36:1;;3555:2;3540:18;10638:93:0;3425:184:1;13694:270:0;;;;;;;;;;-1:-1:-1;13694:270:0;;;;;:::i;:::-;;:::i;38463:81::-;;;;;;;;;;-1:-1:-1;38463:81:0;;;;;:::i;:::-;;:::i;35071:28::-;;;;;;;;;;-1:-1:-1;35071:28:0;;;;-1:-1:-1;;;;;35071:28:0;;;43456:126;;;;;;;;;;-1:-1:-1;43456:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;43546:28:0;43522:4;43546:28;;;:19;:28;;;;;;;;;43456:126;40794:306;;;;;;;;;;-1:-1:-1;40794:306:0;;;;;:::i;:::-;;:::i;42734:486::-;;;;;;;;;;;;;:::i;35197:23::-;;;;;;;;;;-1:-1:-1;35197:23:0;;;;-1:-1:-1;;;35197:23:0;;;;;;10967:177;;;;;;;;;;-1:-1:-1;10967:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11118:18:0;11086:7;11118:18;;;;;;;;;;;;10967:177;3047:103;;;;;;;;;;;;;:::i;41108:322::-;;;;;;;;;;-1:-1:-1;41108:322:0;;;;;:::i;:::-;;:::i;39958:169::-;;;;;;;;;;-1:-1:-1;39958:169:0;;;;;:::i;:::-;;:::i;35294:30::-;;;;;;;;;;-1:-1:-1;35294:30:0;;;;-1:-1:-1;;;;;35294:30:0;;;35405:25;;;;;;;;;;;;;;;;35265:20;;;;;;;;;;-1:-1:-1;35265:20:0;;;;-1:-1:-1;;;35265:20:0;;;;;;2406:87;;;;;;;;;;-1:-1:-1;2479:6:0;;-1:-1:-1;;;;;2479:6:0;2406:87;;40582:204;;;;;;;;;;-1:-1:-1;40582:204:0;;;;;:::i;:::-;;:::i;9886:104::-;;;;;;;;;;;;;:::i;41868:374::-;;;;;;;;;;-1:-1:-1;41868:374:0;;;;;:::i;:::-;;:::i;14467:505::-;;;;;;;;;;-1:-1:-1;14467:505:0;;;;;:::i;:::-;;:::i;11350:234::-;;;;;;;;;;-1:-1:-1;11350:234:0;;;;;:::i;:::-;;:::i;39013:437::-;;;;;;;;;;-1:-1:-1;39013:437:0;;;;;:::i;:::-;;:::i;41438:173::-;;;;;;;;;;-1:-1:-1;41438:173:0;;;;;:::i;:::-;;:::i;35331:32::-;;;;;;;;;;-1:-1:-1;35331:32:0;;;;-1:-1:-1;;;;;35331:32:0;;;35439:29;;;;;;;;;;;;;;;;39458:492;;;;;;;;;;-1:-1:-1;39458:492:0;;;;;:::i;:::-;;:::i;42250:476::-;;;;;;;;;;-1:-1:-1;42250:476:0;;;;;:::i;:::-;;:::i;35372:26::-;;;;;;;;;;;;;;;;40135:265;;;;;;;;;;-1:-1:-1;40135:265:0;;;;;:::i;:::-;;:::i;40408:166::-;;;;;;;;;;-1:-1:-1;40408:166:0;;;;;:::i;:::-;;:::i;11647:201::-;;;;;;;;;;-1:-1:-1;11647:201:0;;;;;:::i;:::-;;:::i;38552:91::-;;;;;;;;;;-1:-1:-1;38552:91:0;;;;;:::i;:::-;;:::i;35581:23::-;;;;;;;;;;;;;;;;35508:33;;;;;;;;;;;;;;;;35550:22;;;;;;;;;;;;;;;;35227:31;;;;;;;;;;-1:-1:-1;35227:31:0;;;;-1:-1:-1;;;35227:31:0;;;;;;3305:238;;;;;;;;;;-1:-1:-1;3305:238:0;;;;;:::i;:::-;;:::i;35475:24::-;;;;;;;;;;;;;;;;38766:239;2292:13;:11;:13::i;:::-;38821:8:::1;::::0;-1:-1:-1;;;38821:8:0;::::1;;;38820:9;38812:46;;;::::0;-1:-1:-1;;;38812:46:0;;5286:2:1;38812:46:0::1;::::0;::::1;5268:21:1::0;5325:2;5305:18;;;5298:30;5364:26;5344:18;;;5337:54;5408:18;;38812:46:0::1;;;;;;;;;38869:8;:15:::0;;38909:12:::1;38895:11;:26:::0;38945:15:::1;38932:10;:28:::0;-1:-1:-1;;;;38971:26:0;-1:-1:-1;;;38971:26:0;;;38766:239::o;9667:100::-;9721:13;9754:5;9747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9667:100;:::o;12168:242::-;12287:4;1031:10;12348:32;1031:10;12364:7;12373:6;12348:8;:32::i;:::-;12398:4;12391:11;;;12168:242;;;;;:::o;38651:107::-;2292:13;:11;:13::i;:::-;38723:19:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;38723:27:0::1;-1:-1:-1::0;;;;38723:27:0;;::::1;::::0;;;::::1;::::0;;38651:107::o;41619:241::-;2292:13;:11;:13::i;:::-;41745:9:::1;41740:113;41760:19:::0;;::::1;41740:113;;;41836:5;41801:19;:32;41821:8;;41830:1;41821:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41801:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41801:32:0;:40;;-1:-1:-1;;41801:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41781:3;::::1;::::0;::::1;:::i;:::-;;;;41740:113;;;;41619:241:::0;;;:::o;12990:295::-;13121:4;1031:10;13179:38;13195:4;1031:10;13210:6;13179:15;:38::i;:::-;13228:27;13238:4;13244:2;13248:6;13228:9;:27::i;:::-;-1:-1:-1;13273:4:0;;12990:295;-1:-1:-1;;;;12990:295:0:o;13694:270::-;13809:4;1031:10;13870:64;1031:10;13886:7;13923:10;13895:25;1031:10;13886:7;13895:9;:25::i;:::-;:38;;;;:::i;:::-;13870:8;:64::i;38463:81::-;38511:25;38517:10;38529:6;38511:5;:25::i;:::-;38463:81;:::o;40794:306::-;2292:13;:11;:13::i;:::-;-1:-1:-1;;;;;40884:30:0;::::1;40876:59;;;::::0;-1:-1:-1;;;40876:59:0;;6558:2:1;40876:59:0::1;::::0;::::1;6540:21:1::0;6597:2;6577:18;;;6570:30;-1:-1:-1;;;6616:18:1;;;6609:46;6672:18;;40876:59:0::1;6356:340:1::0;40876:59:0::1;40966:15;::::0;;-1:-1:-1;;;;;40992:34:0;;::::1;-1:-1:-1::0;;;;;;40992:34:0;::::1;::::0;::::1;::::0;;;41042:50:::1;::::0;40966:15;::::1;::::0;;;41042:50:::1;::::0;40946:17:::1;::::0;41042:50:::1;40865:235;40794:306:::0;:::o;42734:486::-;2292:13;:11;:13::i;:::-;36317:9:::1;:16:::0;;-1:-1:-1;;;;36317:16:0::1;-1:-1:-1::0;;;36317:16:0::1;::::0;;42793:42:::2;42810:24;42828:4;-1:-1:-1::0;;;;;11118:18:0;11086:7;11118:18;;;;;;;;;;;;10967:177;42810:24:::2;42793:16;:42::i;:::-;42869:21;42848:18;42924:14;42937:1;42869:21:::0;42924:14:::2;:::i;:::-;42901:37:::0;-1:-1:-1;42949:22:0::2;42974:25;42901:37:::0;42974:10;:25:::2;:::i;:::-;43057:15;::::0;43049:54:::2;::::0;42949:50;;-1:-1:-1;43012:12:0::2;::::0;-1:-1:-1;;;;;43057:15:0;;::::2;::::0;43086:12;;43012;43049:54;43012:12;43049:54;43086:12;43057:15;43049:54:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;43138:17:0::2;::::0;43130:82:::2;::::0;43035:68;;-1:-1:-1;;;;;;43138:17:0::2;::::0;43169:14;;43130:82:::2;::::0;;;43169:14;43138:17;43130:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;36356:9:0::1;:17:::0;;-1:-1:-1;;;;36356:17:0::1;::::0;;-1:-1:-1;;;;;42734:486:0:o;3047:103::-;2292:13;:11;:13::i;:::-;3112:30:::1;3139:1;3112:18;:30::i;:::-;3047:103::o:0;41108:322::-;2292:13;:11;:13::i;:::-;-1:-1:-1;;;;;41202:32:0;::::1;41194:61;;;::::0;-1:-1:-1;;;41194:61:0;;6558:2:1;41194:61:0::1;::::0;::::1;6540:21:1::0;6597:2;6577:18;;;6570:30;-1:-1:-1;;;6616:18:1;;;6609:46;6672:18;;41194:61:0::1;6356:340:1::0;41194:61:0::1;41286:17;::::0;;-1:-1:-1;;;;;41314:38:0;;::::1;-1:-1:-1::0;;;;;;41314:38:0;::::1;::::0;::::1;::::0;;;41368:54:::1;::::0;41286:17;::::1;::::0;;;41368:54:::1;::::0;41266:17:::1;::::0;41368:54:::1;41183:247;41108:322:::0;:::o;39958:169::-;2292:13;:11;:13::i;:::-;-1:-1:-1;;;;;40072:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:47;;-1:-1:-1;;40072:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39958:169::o;40582:204::-;2292:13;:11;:13::i;:::-;40671:2:::1;40658:9;:15;;40650:64;;;;-1:-1:-1::0;;;40650:64:0::1;;;;;;;:::i;:::-;40725:8;:20:::0;;;40756:11:::1;:22:::0;40582:204::o;9886:104::-;9942:13;9975:7;9968:14;;;;;:::i;41868:374::-;2292:13;:11;:13::i;:::-;41959:9:::1;41954:281;41974:19:::0;;::::1;41954:281;;;42053:13;::::0;-1:-1:-1;;;;;42053:13:0::1;42038:8:::0;;42047:1;42038:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42038:28:0::1;;;42037:92;;;;;42112:15;-1:-1:-1::0;;;;;42089:39:0::1;:8;;42098:1;42089:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42089:39:0::1;;;42037:92;:143;;;;-1:-1:-1::0;42174:4:0::1;42151:8:::0;;42160:1;42151:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42151:28:0::1;;;42037:143;42015:208;;;42218:5;42196:6;:19;42203:8;;42212:1;42203:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42196:19:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42196:19:0;:27;;-1:-1:-1;;42196:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42015:208:::1;41995:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41954:281;;14467:505:::0;14587:4;1031:10;14587:4;14675:25;1031:10;14692:7;14675:9;:25::i;:::-;14648:52;;14753:15;14733:16;:35;;14711:122;;;;-1:-1:-1;;;14711:122:0;;7873:2:1;14711:122:0;;;7855:21:1;7912:2;7892:18;;;7885:30;7951:34;7931:18;;;7924:62;-1:-1:-1;;;8002:18:1;;;7995:35;8047:19;;14711:122:0;7671:401:1;14711:122:0;14869:60;14878:5;14885:7;14913:15;14894:16;:34;14869:8;:60::i;11350:234::-;11465:4;1031:10;11526:28;1031:10;11543:2;11547:6;11526:9;:28::i;39013:437::-;2292:13;:11;:13::i;:::-;39148:6:::1;39127:13;10884:12:::0;;;10796:108;39127:13:::1;:17;::::0;39143:1:::1;39127:17;:::i;:::-;39126:28;;;;:::i;:::-;39113:9;:41;;39091:151;;;::::0;-1:-1:-1;;;39091:151:0;;8452:2:1;39091:151:0::1;::::0;::::1;8434:21:1::0;8491:2;8471:18;;;8464:30;8530:34;8510:18;;;8503:62;8601:30;8581:18;;;8574:58;8649:19;;39091:151:0::1;8250:424:1::0;39091:151:0::1;39310:4;39289:13;10884:12:::0;;;10796:108;39289:13:::1;:17;::::0;39305:1:::1;39289:17;:::i;:::-;39288:26;;;;:::i;:::-;39275:9;:39;;39253:148;;;::::0;-1:-1:-1;;;39253:148:0;;8881:2:1;39253:148:0::1;::::0;::::1;8863:21:1::0;8920:2;8900:18;;;8893:30;8959:34;8939:18;;;8932:62;9030:29;9010:18;;;9003:57;9077:19;;39253:148:0::1;8679:423:1::0;39253:148:0::1;39412:18;:30:::0;39013:437::o;41438:173::-;2292:13;:11;:13::i;:::-;-1:-1:-1;;;;;41520:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;41520:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41572:31;;1163:41:1;;;41572:31:0::1;::::0;1136:18:1;41572:31:0::1;;;;;;;41438:173:::0;;:::o;39458:492::-;2292:13;:11;:13::i;:::-;39639:4:::1;39618:13;10884:12:::0;;;10796:108;39618:13:::1;:17;::::0;39634:1:::1;39618:17;:::i;:::-;39617:26;;;;:::i;:::-;39597:15;:47;;39575:145;;;::::0;-1:-1:-1;;;39575:145:0;;9309:2:1;39575:145:0::1;::::0;::::1;9291:21:1::0;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:1;;;9431:46;9494:19;;39575:145:0::1;9107:412:1::0;39575:145:0::1;39790:4;39769:13;10884:12:::0;;;10796:108;39769:13:::1;:17;::::0;39785:1:::1;39769:17;:::i;:::-;39768:26;;;;:::i;:::-;39753:10;:42;;39731:135;;;::::0;-1:-1:-1;;;39731:135:0;;9726:2:1;39731:135:0::1;::::0;::::1;9708:21:1::0;9765:2;9745:18;;;9738:30;9804:34;9784:18;;;9777:62;-1:-1:-1;;;9855:18:1;;;9848:41;9906:19;;39731:135:0::1;9524:407:1::0;39731:135:0::1;39877:14;:32:::0;;;;39920:9:::1;:22:::0;39458:492::o;42250:476::-;2292:13;:11;:13::i;:::-;-1:-1:-1;;;;;42324:17:0;::::1;42320:399;;42399:90;::::0;42358:12:::1;::::0;42407:10:::1;::::0;42449:21:::1;::::0;42358:12;42399:90;42358:12;42399:90;42449:21;42407:10;42399:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;42320:399:0::1;::::0;-1:-1:-1;;;42320:399:0::1;;42530:36;::::0;-1:-1:-1;;;42530:36:0;;42560:4:::1;42530:36;::::0;::::1;2512:51:1::0;42569:1:0::1;::::0;-1:-1:-1;;;;;42530:21:0;::::1;::::0;::::1;::::0;2485:18:1;;42530:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;42522:62;;;::::0;-1:-1:-1;;;42522:62:0;;10327:2:1;42522:62:0::1;::::0;::::1;10309:21:1::0;10366:1;10346:18;;;10339:29;-1:-1:-1;;;10384:18:1;;;10377:39;10433:18;;42522:62:0::1;10125:332:1::0;42522:62:0::1;42616:36;::::0;-1:-1:-1;;;42616:36:0;;42646:4:::1;42616:36;::::0;::::1;2512:51:1::0;42599:14:0::1;::::0;-1:-1:-1;;;;;42616:21:0;::::1;::::0;::::1;::::0;2485:18:1;;42616:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42667:40;::::0;-1:-1:-1;;;42667:40:0;;42688:10:::1;42667:40;::::0;::::1;10636:51:1::0;10703:18;;;10696:34;;;42599:53:0;;-1:-1:-1;;;;;;42667:20:0;::::1;::::0;::::1;::::0;10609:18:1;;42667:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42507:212;42250:476:::0;:::o;40135:265::-;2292:13;:11;:13::i;:::-;40273:9:::1;40268:125;40288:19:::0;;::::1;40268:125;;;40376:5;40329:31;:44;40361:8;;40370:1;40361:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40329:44:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40329:44:0;:52;;-1:-1:-1;;40329:52:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40309:3;::::1;::::0;::::1;:::i;:::-;;;;40268:125;;40408:166:::0;2292:13;:11;:13::i;:::-;40494:2:::1;40482:8;:14;;40474:63;;;;-1:-1:-1::0;;;40474:63:0::1;;;;;;;:::i;:::-;40548:7;:18:::0;40408:166::o;11647:201::-;-1:-1:-1;;;;;11813:18:0;;;11781:7;11813:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11647:201::o;38552:91::-;2292:13;:11;:13::i;:::-;38616:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;38616:19:0::1;-1:-1:-1::0;;;;38616:19:0;;::::1;::::0;;;::::1;::::0;;38552:91::o;3305:238::-;2292:13;:11;:13::i;:::-;-1:-1:-1;;;;;3408:22:0;::::1;3386:110;;;::::0;-1:-1:-1;;;3386:110:0;;11193:2:1;3386:110:0::1;::::0;::::1;11175:21:1::0;11232:2;11212:18;;;11205:30;11271:34;11251:18;;;11244:62;-1:-1:-1;;;11322:18:1;;;11315:36;11368:19;;3386:110:0::1;10991:402:1::0;3386:110:0::1;3507:28;3526:8;3507:18;:28::i;2571:132::-:0;2479:6;;-1:-1:-1;;;;;2479:6:0;1031:10;2635:23;2627:68;;;;-1:-1:-1;;;2627:68:0;;11600:2:1;2627:68:0;;;11582:21:1;;;11619:18;;;11612:30;11678:34;11658:18;;;11651:62;11730:18;;2627:68:0;11398:356:1;18600:380:0;-1:-1:-1;;;;;18736:19:0;;18728:68;;;;-1:-1:-1;;;18728:68:0;;11961:2:1;18728:68:0;;;11943:21:1;12000:2;11980:18;;;11973:30;12039:34;12019:18;;;12012:62;-1:-1:-1;;;12090:18:1;;;12083:34;12134:19;;18728:68:0;11759:400:1;18728:68:0;-1:-1:-1;;;;;18815:21:0;;18807:68;;;;-1:-1:-1;;;18807:68:0;;12366:2:1;18807:68:0;;;12348:21:1;12405:2;12385:18;;;12378:30;12444:34;12424:18;;;12417:62;-1:-1:-1;;;12495:18:1;;;12488:32;12537:19;;18807:68:0;12164:398:1;18807:68:0;-1:-1:-1;;;;;18888:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18940:32;;2720:25:1;;;18940:32:0;;2693:18:1;18940:32:0;;;;;;;18600:380;;;:::o;19271:502::-;19406:24;19433:25;19443:5;19450:7;19433:9;:25::i;:::-;19406:52;;-1:-1:-1;;19473:16:0;:37;19469:297;;19573:6;19553:16;:26;;19527:117;;;;-1:-1:-1;;;19527:117:0;;12769:2:1;19527:117:0;;;12751:21:1;12808:2;12788:18;;;12781:30;12847:31;12827:18;;;12820:59;12896:18;;19527:117:0;12567:353:1;19527:117:0;19688:51;19697:5;19704:7;19732:6;19713:16;:25;19688:8;:51::i;43590:4198::-;-1:-1:-1;;;;;43722:18:0;;43714:68;;;;-1:-1:-1;;;43714:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43801:16:0;;43793:64;;;;-1:-1:-1;;;43793:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43879:12:0;;;;;;:6;:12;;;;;;;;43878:13;43870:45;;;;-1:-1:-1;;;43870:45:0;;;;;;;:::i;:::-;43942:10;43935:18;;;;:6;:18;;;;;;;;43934:19;43926:51;;;;-1:-1:-1;;;43926:51:0;;;;;;;:::i;:::-;44004:9;43997:17;;;;:6;:17;;;;;;;;43996:18;43988:50;;;;-1:-1:-1;;;43988:50:0;;;;;;;:::i;:::-;44055:6;44065:1;44055:11;44051:93;;44083:28;44099:4;44105:2;44109:1;44083:15;:28::i;44051:93::-;2479:6;;-1:-1:-1;;;;;44174:15:0;;;2479:6;;44174:15;;;;:45;;-1:-1:-1;2479:6:0;;-1:-1:-1;;;;;44206:13:0;;;2479:6;;44206:13;;44174:45;:78;;;;-1:-1:-1;;;;;;44236:16:0;;;;44174:78;:112;;;;-1:-1:-1;;;;;;44269:17:0;;35152:6;44269:17;;44174:112;:139;;;;-1:-1:-1;44304:9:0;;-1:-1:-1;;;44304:9:0;;;;44303:10;44174:139;44156:1474;;;44345:8;;-1:-1:-1;;;44345:8:0;;;;44340:196;;-1:-1:-1;;;;;44404:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44433:23:0;;;;;;:19;:23;;;;;;;;44404:52;44374:146;;;;-1:-1:-1;;;44374:146:0;;14285:2:1;44374:146:0;;;14267:21:1;14324:2;14304:18;;;14297:30;-1:-1:-1;;;14343:18:1;;;14336:50;14403:18;;44374:146:0;14083:344:1;44374:146:0;-1:-1:-1;;;;;44598:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;44651:35:0;;;;;;:31;:35;;;;;;;;44650:36;44598:88;44576:1043;;;44761:14;;44751:6;:24;;44721:152;;;;-1:-1:-1;;;44721:152:0;;14634:2:1;44721:152:0;;;14616:21:1;14673:2;14653:18;;;14646:30;14712:34;14692:18;;;14685:62;-1:-1:-1;;;14763:18:1;;;14756:52;14825:19;;44721:152:0;14432:418:1;44721:152:0;44948:9;;-1:-1:-1;;;;;11118:18:0;;11086:7;11118:18;;;;;;;;;;;44922:22;;:6;:22;:::i;:::-;:35;;44892:135;;;;-1:-1:-1;;;44892:135:0;;15057:2:1;44892:135:0;;;15039:21:1;15096:2;15076:18;;;15069:30;15135:28;15115:18;;;15108:56;15181:18;;44892:135:0;14855:350:1;44892:135:0;44576:1043;;;-1:-1:-1;;;;;45109:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;45160:37:0;;;;;;:31;:37;;;;;;;;45159:38;45109:88;45087:532;;;45272:14;;45262:6;:24;;45232:153;;;;-1:-1:-1;;;45232:153:0;;15412:2:1;45232:153:0;;;15394:21:1;15451:2;15431:18;;;15424:30;15490:34;15470:18;;;15463:62;15561:25;15541:18;;;15534:53;15604:19;;45232:153:0;15210:419:1;45087:532:0;-1:-1:-1;;;;;45412:35:0;;;;;;:31;:35;;;;;;;;45407:212;;45524:9;;-1:-1:-1;;;;;11118:18:0;;11086:7;11118:18;;;;;;;;;;;45498:22;;:6;:22;:::i;:::-;:35;;45468:135;;;;-1:-1:-1;;;45468:135:0;;15057:2:1;45468:135:0;;;15039:21:1;15096:2;15076:18;;;15069:30;15135:28;15115:18;;;15108:56;15181:18;;45468:135:0;14855:350:1;45468:135:0;45691:4;45642:28;11118:18;;;;;;;;;;;45749;;45725:42;;;;;;;45798:35;;-1:-1:-1;45822:11:0;;-1:-1:-1;;;45822:11:0;;;;45798:35;:62;;;;-1:-1:-1;45851:9:0;;-1:-1:-1;;;45851:9:0;;;;45850:10;45798:62;:111;;;;-1:-1:-1;;;;;;45878:31:0;;;;;;:25;:31;;;;;;;;45877:32;45798:111;:154;;;;-1:-1:-1;;;;;;45927:25:0;;;;;;:19;:25;;;;;;;;45926:26;45798:154;:195;;;;-1:-1:-1;;;;;;45970:23:0;;;;;;:19;:23;;;;;;;;45969:24;45798:195;45780:282;;;46020:30;46029:20;46020:8;:30::i;:::-;46090:9;;-1:-1:-1;;;;;46116:25:0;;46074:12;46116:25;;;:19;:25;;;;;;46090:9;-1:-1:-1;;;46090:9:0;;;;;46089:10;;46116:25;;:52;;-1:-1:-1;;;;;;46145:23:0;;;;;;:19;:23;;;;;;;;46116:52;46112:100;;;-1:-1:-1;46195:5:0;46112:100;46224:12;46251:17;46289:7;46285:1417;;;-1:-1:-1;;;;;46341:29:0;;;;;;:25;:29;;;;;;;;:45;;;;;46385:1;46374:8;;:12;46341:45;46337:1216;;;46411:19;;-1:-1:-1;;;46411:19:0;;;;46407:327;;;46477:10;;:25;;46491:10;46477:25;:::i;:::-;46459:15;:43;46455:191;;;-1:-1:-1;46543:8:0;;46407:327;;46455:191;-1:-1:-1;46620:2:0;46407:327;;;-1:-1:-1;46706:8:0;;46407:327;46759:30;46785:3;46759:21;:6;46770:9;46759:10;:21::i;:::-;:25;;:30::i;:::-;46752:37;;46337:1216;;;-1:-1:-1;;;;;46851:31:0;;;;;;:25;:31;;;;;;;;:46;;;;;46896:1;46886:7;;:11;46851:46;46847:706;;;46922:19;;-1:-1:-1;;;46922:19:0;;;;46918:564;;;46988:10;;:25;;47002:10;46988:25;:::i;:::-;46970:15;:43;46966:429;;;-1:-1:-1;47054:7:0;;46918:564;;46966:429;47113:10;;:25;;47127:10;47113:25;:::i;:::-;47095:15;:43;47091:304;;;-1:-1:-1;47179:2:0;46918:564;;47091:304;47233:10;;:24;;47247:9;47233:24;:::i;:::-;47215:15;:42;47211:184;;;-1:-1:-1;47298:2:0;46918:564;;47211:184;-1:-1:-1;47369:2:0;46918:564;;;-1:-1:-1;47455:7:0;;46918:564;47507:30;47533:3;47507:21;:6;47518:9;47507:10;:21::i;:30::-;47500:37;;46847:706;47573:8;;47569:91;;47602:42;47618:4;47632;47639;47602:15;:42::i;:::-;47676:14;47686:4;47676:14;;:::i;:::-;;;46285:1417;47714:33;47730:4;47736:2;47740:6;47714:15;:33::i;:::-;-1:-1:-1;;47769:11:0;;47758:8;:22;-1:-1:-1;;;;;;43590:4198:0:o;17487:675::-;-1:-1:-1;;;;;17571:21:0;;17563:67;;;;-1:-1:-1;;;17563:67:0;;15836:2:1;17563:67:0;;;15818:21:1;15875:2;15855:18;;;15848:30;15914:34;15894:18;;;15887:62;-1:-1:-1;;;15965:18:1;;;15958:31;16006:19;;17563:67:0;15634:397:1;17563:67:0;-1:-1:-1;;;;;17730:18:0;;17705:22;17730:18;;;;;;;;;;;17767:24;;;;17759:71;;;;-1:-1:-1;;;17759:71:0;;16238:2:1;17759:71:0;;;16220:21:1;16277:2;16257:18;;;16250:30;16316:34;16296:18;;;16289:62;-1:-1:-1;;;16367:18:1;;;16360:32;16409:19;;17759:71:0;16036:398:1;17759:71:0;-1:-1:-1;;;;;17866:18:0;;:9;:18;;;;;;;;;;;17887:23;;;17866:44;;18005:12;:22;;;;;;;18056:37;2720:25:1;;;17866:9:0;;:18;18056:37;;2693:18:1;18056:37:0;;;;;;;42667:40:::1;42507:212;42250:476:::0;:::o;47796:484::-;47895:16;;;47909:1;47895:16;;;;;;;;47871:21;;47895:16;;;;;;;;;;-1:-1:-1;47895:16:0;47871:40;;47940:4;47922;47927:1;47922:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47922:23:0;;;-1:-1:-1;;;;;47922:23:0;;;;;47966:15;-1:-1:-1;;;;;47966:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47956:4;47961:1;47956:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47956:32:0;;;-1:-1:-1;;;;;47956:32:0;;;;;48001:62;48018:4;48033:15;48051:11;48001:8;:62::i;:::-;48076:196;;-1:-1:-1;;;48076:196:0;;-1:-1:-1;;;;;48076:15:0;:66;;;;:196;;48157:11;;48183:1;;48199:4;;48226;;48246:15;;48076:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47860:420;47796:484;:::o;3703:191::-;3796:6;;;-1:-1:-1;;;;;3813:17:0;;;-1:-1:-1;;;;;;3813:17:0;;;;;;;3846:40;;3796:6;;;3813:17;3796:6;;3846:40;;3777:16;;3846:40;3766:128;3703:191;:::o;15442:877::-;-1:-1:-1;;;;;15573:18:0;;15565:68;;;;-1:-1:-1;;;15565:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15652:16:0;;15644:64;;;;-1:-1:-1;;;15644:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15794:15:0;;15772:19;15794:15;;;;;;;;;;;15842:21;;;;15820:109;;;;-1:-1:-1;;;15820:109:0;;18014:2:1;15820:109:0;;;17996:21:1;18053:2;18033:18;;;18026:30;18092:34;18072:18;;;18065:62;-1:-1:-1;;;18143:18:1;;;18136:36;18189:19;;15820:109:0;17812:402:1;15820:109:0;-1:-1:-1;;;;;15965:15:0;;;:9;:15;;;;;;;;;;;15983:20;;;15965:38;;16183:13;;;;;;;;;;:23;;;;;;16235:26;;2720:25:1;;;16183:13:0;;16235:26;;2693:18:1;16235:26:0;;;;;;;16274:37;42250:476;48288:759;36317:9;:16;;-1:-1:-1;;;;36317:16:0;-1:-1:-1;;;36317:16:0;;;;48438:25;;;48434:64:::1;;48480:7;;;48434:64;48537:18;::::0;:23:::1;::::0;48558:2:::1;48537:23;:::i;:::-;48514:20;:46;48510:125;;;48600:18;::::0;:23:::1;::::0;48621:2:::1;48600:23;:::i;:::-;48577:46;;48510:125;48647:38;48664:20;48647:16;:38::i;:::-;48719:21;48698:18;48774:14;48787:1;48719:21:::0;48774:14:::1;:::i;:::-;48751:37:::0;-1:-1:-1;48799:22:0::1;48824:25;48751:37:::0;48824:10;:25:::1;:::i;:::-;48884:15;::::0;48876:54:::1;::::0;48799:50;;-1:-1:-1;;;;;;48884:15:0::1;::::0;48913:12;;48876:54:::1;::::0;;;48913:12;48884:15;48876:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;48965:17:0::1;::::0;48957:82:::1;::::0;48862:68;;-1:-1:-1;;;;;;48965:17:0::1;::::0;48996:14;;48957:82:::1;::::0;;;48996:14;48965:17;48957:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;;36344:1:0::1;-1:-1:-1::0;36356:9:0;:17;;-1:-1:-1;;;;36356:17:0;;;48288:759::o;24948:98::-;25006:7;25033:5;25037:1;25033;:5;:::i;:::-;25026:12;24948:98;-1:-1:-1;;;24948:98:0:o;25347:::-;25405:7;25432:5;25436:1;25432;: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:382::-;4116:6;4124;4177:2;4165:9;4156:7;4152:23;4148:32;4145:52;;;4193:1;4190;4183:12;4145:52;4232:9;4219:23;4251:31;4276:5;4251:31;:::i;:::-;4301:5;-1:-1:-1;4358:2:1;4343:18;;4330:32;4371:30;4330:32;4371:30;:::i;:::-;4420:7;4410:17;;;4051:382;;;;;:::o;4438:248::-;4506:6;4514;4567:2;4555:9;4546:7;4542:23;4538:32;4535:52;;;4583:1;4580;4573:12;4535:52;-1:-1:-1;;4606:23:1;;;4676:2;4661:18;;;4648:32;;-1:-1:-1;4438:248:1: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;5437:380::-;5516:1;5512:12;;;;5559;;;5580:61;;5634:4;5626:6;5622:17;5612:27;;5580:61;5687:2;5679:6;5676:14;5656:18;5653:38;5650:161;;5733:10;5728:3;5724:20;5721:1;5714:31;5768:4;5765:1;5758:15;5796:4;5793:1;5786:15;5650:161;;5437:380;;;:::o;5822:127::-;5883:10;5878:3;5874:20;5871:1;5864:31;5914:4;5911:1;5904:15;5938:4;5935:1;5928:15;5954:127;6015:10;6010:3;6006:20;6003:1;5996:31;6046:4;6043:1;6036:15;6070:4;6067:1;6060:15;6086:135;6125:3;6146:17;;;6143:43;;6166:18;;:::i;:::-;-1:-1:-1;6213:1:1;6202:13;;6086:135::o;6226:125::-;6291:9;;;6312:10;;;6309:36;;;6325:18;;:::i;6701:217::-;6741:1;6767;6757:132;;6811:10;6806:3;6802:20;6799:1;6792:31;6846:4;6843:1;6836:15;6874:4;6871:1;6864:15;6757:132;-1:-1:-1;6903:9:1;;6701:217::o;6923:128::-;6990:9;;;7011:11;;;7008:37;;;7025:18;;:::i;7266:400::-;7468:2;7450:21;;;7507:2;7487:18;;;7480:30;7546:34;7541:2;7526:18;;7519:62;-1:-1:-1;;;7612:2:1;7597:18;;7590:34;7656:3;7641:19;;7266:400::o;8077:168::-;8150:9;;;8181;;8198:15;;;8192:22;;8178:37;8168:71;;8219:18;;:::i;9936:184::-;10006:6;10059:2;10047:9;10038:7;10034:23;10030:32;10027:52;;;10075:1;10072;10065:12;10027:52;-1:-1:-1;10098:16:1;;9936:184;-1:-1:-1;9936:184:1:o;10741:245::-;10808:6;10861:2;10849:9;10840:7;10836:23;10832:32;10829:52;;;10877:1;10874;10867:12;10829:52;10909:9;10903:16;10928:28;10950:5;10928:28;:::i;12925:401::-;13127:2;13109:21;;;13166:2;13146:18;;;13139:30;13205:34;13200:2;13185:18;;13178:62;-1:-1:-1;;;13271:2:1;13256:18;;13249:35;13316:3;13301:19;;12925:401::o;13331:399::-;13533:2;13515:21;;;13572:2;13552:18;;;13545:30;13611:34;13606:2;13591:18;;13584:62;-1:-1:-1;;;13677:2:1;13662:18;;13655:33;13720:3;13705:19;;13331:399::o;13735:343::-;13937:2;13919:21;;;13976:2;13956:18;;;13949:30;-1:-1:-1;;;14010:2:1;13995:18;;13988:49;14069:2;14054:18;;13735:343::o;16571:251::-;16641:6;16694:2;16682:9;16673:7;16669:23;16665:32;16662:52;;;16710:1;16707;16700:12;16662:52;16742:9;16736:16;16761:31;16786:5;16761:31;:::i;16827:980::-;17089:4;17137:3;17126:9;17122:19;17168:6;17157:9;17150:25;17194:2;17232:6;17227:2;17216:9;17212:18;17205:34;17275:3;17270:2;17259:9;17255:18;17248:31;17299:6;17334;17328:13;17365:6;17357;17350:22;17403:3;17392:9;17388:19;17381:26;;17442:2;17434:6;17430:15;17416:29;;17463:1;17473:195;17487:6;17484:1;17481:13;17473:195;;;17552:13;;-1:-1:-1;;;;;17548:39:1;17536:52;;17643:15;;;;17608:12;;;;17584:1;17502:9;17473:195;;;-1:-1:-1;;;;;;;17724:32:1;;;;17719:2;17704:18;;17697:60;-1:-1:-1;;;17788:3:1;17773:19;17766:35;17685:3;16827:980;-1:-1:-1;;;16827:980:1:o

Swarm Source

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