ETH Price: $2,267.41 (+2.28%)

Token

Fable of the Dwagon (TYWANT)
 

Overview

Max Total Supply

1,000,000,000,000,000 TYWANT

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.001768507868757536 TYWANT

Value
$0.00
0x7a6e5218d49FEa3748Ab4B8cEbD5152a1eAACc82
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:
TYWANT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-02
*/

/**
2% max tx

Tywant – Fable of the Dwagon is created to support his daddy, Tyrant.

But the $Tywant is creating its own life too.

3% of each transaction goes directly to the $Tyrant deployer.

We have 6% Tax on every BUY/SELL

https://t.me/TYWANTportal
www.fableofdwagon.com
https://twitter.com/TYWANTerc


*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction 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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    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 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;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public marketingWallet2;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Fable of the Dwagon", "TYWANT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 6;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 30;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1 * 1e15 * 1e18;

        maxTransactionAmount = 2 * 1e13 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 4 * 1e13 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 2) / 1000; // 0.2% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xe924913b9584188c5Db031D15e21A0eA9971Fa19); // set as marketing wallet
        marketingWallet2 = address(0x509561B04ed9C4244A68667f11F6504ea2F3b67a); // set as marketing wallet
        devWallet = address(0x6BD72A62bd476BC7113010CB939EE39fA80D6a19); // set as dev wallet [daddy TYRANT]

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 11, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 30, "Must keep fees at 30% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600c55600d8054600160ff199182168117909255610e10600e556107086010556012805462ffffff1916831790556014805490911690911790553480156200004d57600080fd5b50604080518082018252601381527f4661626c65206f662074686520447761676f6e00000000000000000000000000602080830191825283518085019094526006845265151655d0539560d21b908401528151919291620000b191600391620006e1565b508051620000c7906004906020840190620006e1565b505050620000e4620000de6200043060201b60201c565b62000434565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200010681600162000486565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000151573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000177919062000787565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb919062000787565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000239573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025f919062000787565b6001600160a01b031660a08190526200027a90600162000486565b60a0516200028a90600162000500565b6cfc6f7c40458122964d000000006009556d01f8def8808b02452c9a00000000600b556006600080601e81806d314dc6448d9338c15b0a000000006103e8620002d5826002620007cf565b620002e19190620007f1565b600a556016879055601786905560188590558462000300878962000814565b6200030c919062000814565b601555601a849055601b839055601c829055816200032b848662000814565b62000337919062000814565b601955600680546001600160a01b031990811673e924913b9584188c5db031d15e21a0ea9971fa191790915560078054821673509561b04ed9c4244a68667f11f6504ea2f3b67a17905560088054909116736bd72a62bd476bc7113010cb939ee39fa80d6a19179055620003bf620003b76005546001600160a01b031690565b600162000554565b620003cc30600162000554565b620003db61dead600162000554565b620003fa620003f26005546001600160a01b031690565b600162000486565b6200040730600162000486565b6200041661dead600162000486565b620004223382620005fc565b50505050505050506200086c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004d55760405162461bcd60e51b8152602060048201819052602482015260008051602062003abf83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200059f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003abf8339815191526044820152606401620004cc565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006545760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004cc565b806002600082825462000668919062000814565b90915550506001600160a01b038216600090815260208190526040812080548392906200069790849062000814565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006ef906200082f565b90600052602060002090601f0160209004810192826200071357600085556200075e565b82601f106200072e57805160ff19168380011785556200075e565b828001600101855582156200075e579182015b828111156200075e57825182559160200191906001019062000741565b506200076c92915062000770565b5090565b5b808211156200076c576000815560010162000771565b6000602082840312156200079a57600080fd5b81516001600160a01b0381168114620007b257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007ec57620007ec620007b9565b500290565b6000826200080f57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200082a576200082a620007b9565b500190565b600181811c908216806200084457607f821691505b602082108114156200086657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516131cb620008f46000396000818161062c015281816111b6015281816118cc015281816119670152818161199301528181611d2e01528181612903015281816129a501526129d101526000818161049d01528181611cf001528181612adb01528181612b9401528181612bd001528181612c4a0152612ca701526131cb6000f3fe6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610af4578063f637434214610b14578063f8b45b0514610b2a578063fe72b27a14610b4057600080fd5b8063dd62ed3e14610a6d578063e2f4560514610ab3578063e884f26014610ac9578063f11a24d314610ade57600080fd5b8063c876d0b9116100dc578063c876d0b914610a07578063c8c8ebe414610a21578063d257b34f14610a37578063d85ba06314610a5757600080fd5b8063bbc0c74214610988578063c0246668146109a7578063c17b5b8c146109c7578063c18bc195146109e757600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610902578063a9059cbb14610918578063aacebbe314610938578063b62496f51461095857600080fd5b80639ec22c0e146108a05780639fccce32146108b6578063a0d82dc5146108cc578063a457c2d7146108e257600080fd5b8063924de9b7116101c1578063924de9b71461083557806395d89b41146108555780639a7a23d61461086a5780639c3b4fdc1461088a57600080fd5b80638a8c523c146107cc5780638da5cb5b146107e15780638ea5220f146107ff578063921369131461081f57600080fd5b80632e82f1a0116102e257806370a08231116102755780637571336a116102445780637571336a1461075657806375f0a874146107765780637bce5a04146107965780638095d564146107ac57600080fd5b806370a08231146106d6578063715018a61461070c578063730c188814610721578063751039fc1461074157600080fd5b80634a62bb65116102b15780634a62bb651461064e5780634fbee193146106685780636a486a8e146106a05780636ddd1713146106b657600080fd5b80632e82f1a0146105c4578063313ce567146105de57806339509351146105fa57806349bd5a5e1461061a57600080fd5b8063184c16c51161035a578063203e727e11610329578063203e727e1461055857806323b872dd1461057857806327c8f835146105985780632c3e486c146105ae57600080fd5b8063184c16c514610500578063199ffc72146105165780631a8145bb1461052c5780631f3fed8f1461054257600080fd5b806310d5de531161039657806310d5de531461045b5780631694505e1461048b57806318160ddd146104bf5780631816467f146104de57600080fd5b806306fdde03146103c8578063095ea7b3146103f35780630d0020f21461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b60565b6040516103ea9190612d25565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612d8f565b610bf2565b60405190151581526020016103ea565b34801561042f57600080fd5b50600754610443906001600160a01b031681565b6040516001600160a01b0390911681526020016103ea565b34801561046757600080fd5b50610413610476366004612dbb565b60216020526000908152604090205460ff1681565b34801561049757600080fd5b506104437f000000000000000000000000000000000000000000000000000000000000000081565b3480156104cb57600080fd5b506002545b6040519081526020016103ea565b3480156104ea57600080fd5b506104fe6104f9366004612dbb565b610c08565b005b34801561050c57600080fd5b506104d060105481565b34801561052257600080fd5b506104d0600c5481565b34801561053857600080fd5b506104d0601e5481565b34801561054e57600080fd5b506104d0601d5481565b34801561056457600080fd5b506104fe610573366004612dd8565b610c98565b34801561058457600080fd5b50610413610593366004612df1565b610d75565b3480156105a457600080fd5b5061044361dead81565b3480156105ba57600080fd5b506104d0600e5481565b3480156105d057600080fd5b50600d546104139060ff1681565b3480156105ea57600080fd5b50604051601281526020016103ea565b34801561060657600080fd5b50610413610615366004612d8f565b610e1f565b34801561062657600080fd5b506104437f000000000000000000000000000000000000000000000000000000000000000081565b34801561065a57600080fd5b506012546104139060ff1681565b34801561067457600080fd5b50610413610683366004612dbb565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156106ac57600080fd5b506104d060195481565b3480156106c257600080fd5b506012546104139062010000900460ff1681565b3480156106e257600080fd5b506104d06106f1366004612dbb565b6001600160a01b031660009081526020819052604090205490565b34801561071857600080fd5b506104fe610e5b565b34801561072d57600080fd5b506104fe61073c366004612e42565b610e91565b34801561074d57600080fd5b50610413610fba565b34801561076257600080fd5b506104fe610771366004612e77565b610ff7565b34801561078257600080fd5b50600654610443906001600160a01b031681565b3480156107a257600080fd5b506104d060165481565b3480156107b857600080fd5b506104fe6107c7366004612eac565b61104c565b3480156107d857600080fd5b506104fe6110f4565b3480156107ed57600080fd5b506005546001600160a01b0316610443565b34801561080b57600080fd5b50600854610443906001600160a01b031681565b34801561082b57600080fd5b506104d0601a5481565b34801561084157600080fd5b506104fe610850366004612ed8565b611135565b34801561086157600080fd5b506103dd61117b565b34801561087657600080fd5b506104fe610885366004612e77565b61118a565b34801561089657600080fd5b506104d060185481565b3480156108ac57600080fd5b506104d060115481565b3480156108c257600080fd5b506104d0601f5481565b3480156108d857600080fd5b506104d0601c5481565b3480156108ee57600080fd5b506104136108fd366004612d8f565b61126a565b34801561090e57600080fd5b506104d0600f5481565b34801561092457600080fd5b50610413610933366004612d8f565b611303565b34801561094457600080fd5b506104fe610953366004612dbb565b611310565b34801561096457600080fd5b50610413610973366004612dbb565b60226020526000908152604090205460ff1681565b34801561099457600080fd5b5060125461041390610100900460ff1681565b3480156109b357600080fd5b506104fe6109c2366004612e77565b611397565b3480156109d357600080fd5b506104fe6109e2366004612eac565b61141e565b3480156109f357600080fd5b506104fe610a02366004612dd8565b6114c1565b348015610a1357600080fd5b506014546104139060ff1681565b348015610a2d57600080fd5b506104d060095481565b348015610a4357600080fd5b50610413610a52366004612dd8565b611592565b348015610a6357600080fd5b506104d060155481565b348015610a7957600080fd5b506104d0610a88366004612ef3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610abf57600080fd5b506104d0600a5481565b348015610ad557600080fd5b506104136116e9565b348015610aea57600080fd5b506104d060175481565b348015610b0057600080fd5b506104fe610b0f366004612dbb565b611726565b348015610b2057600080fd5b506104d0601b5481565b348015610b3657600080fd5b506104d0600b5481565b348015610b4c57600080fd5b50610413610b5b366004612dd8565b6117c1565b606060038054610b6f90612f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9b90612f2c565b8015610be85780601f10610bbd57610100808354040283529160200191610be8565b820191906000526020600020905b815481529060010190602001808311610bcb57829003601f168201915b5050505050905090565b6000610bff338484611a3b565b50600192915050565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b8152600401610c3290612f67565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610c3290612f67565b670de0b6b3a76400006103e8610cd760025490565b610ce2906001612fb2565b610cec9190612fd1565b610cf69190612fd1565b811015610d5d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c32565b610d6f81670de0b6b3a7640000612fb2565b60095550565b6000610d82848484611b5f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e075760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c32565b610e148533858403611a3b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bff918590610e56908690612ff3565b611a3b565b6005546001600160a01b03163314610e855760405162461bcd60e51b8152600401610c3290612f67565b610e8f6000612430565b565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610c3290612f67565b610258831015610f295760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c32565b6103e88211158015610f39575060015b610f9e5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c32565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fe75760405162461bcd60e51b8152600401610c3290612f67565b506012805460ff19169055600190565b6005546001600160a01b031633146110215760405162461bcd60e51b8152600401610c3290612f67565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110765760405162461bcd60e51b8152600401610c3290612f67565b601683905560178290556018819055806110908385612ff3565b61109a9190612ff3565b6015819055600b10156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c32565b505050565b6005546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610c3290612f67565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b0316331461115f5760405162461bcd60e51b8152600401610c3290612f67565b60128054911515620100000262ff000019909216919091179055565b606060048054610b6f90612f2c565b6005546001600160a01b031633146111b45760405162461bcd60e51b8152600401610c3290612f67565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561125c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c32565b6112668282612482565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c32565b6112f93385858403611a3b565b5060019392505050565b6000610bff338484611b5f565b6005546001600160a01b0316331461133a5760405162461bcd60e51b8152600401610c3290612f67565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113c15760405162461bcd60e51b8152600401610c3290612f67565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114485760405162461bcd60e51b8152600401610c3290612f67565b601a839055601b829055601c819055806114628385612ff3565b61146c9190612ff3565b6019819055601e10156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610c32565b6005546001600160a01b031633146114eb5760405162461bcd60e51b8152600401610c3290612f67565b670de0b6b3a76400006103e861150060025490565b61150b906005612fb2565b6115159190612fd1565b61151f9190612fd1565b81101561157a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c32565b61158c81670de0b6b3a7640000612fb2565b600b5550565b6005546000906001600160a01b031633146115bf5760405162461bcd60e51b8152600401610c3290612f67565b620186a06115cc60025490565b6115d7906001612fb2565b6115e19190612fd1565b82101561164e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c32565b6103e861165a60025490565b611665906005612fb2565b61166f9190612fd1565b8211156116db5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c32565b50600a81905560015b919050565b6005546000906001600160a01b031633146117165760405162461bcd60e51b8152600401610c3290612f67565b506014805460ff19169055600190565b6005546001600160a01b031633146117505760405162461bcd60e51b8152600401610c3290612f67565b6001600160a01b0381166117b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c32565b6117be81612430565b50565b6005546000906001600160a01b031633146117ee5760405162461bcd60e51b8152600401610c3290612f67565b6010546011546117fe9190612ff3565b421161184c5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c32565b6103e88211156118b15760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c32565b426011556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa15801561191c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611940919061300b565b9050600061195a61271061195484876124d6565b906124e9565b9050801561198f5761198f7f000000000000000000000000000000000000000000000000000000000000000061dead836124f5565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119ef57600080fd5b505af1158015611a03573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a9d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c32565b6001600160a01b038216611afe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c32565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b855760405162461bcd60e51b8152600401610c3290613024565b6001600160a01b038216611bab5760405162461bcd60e51b8152600401610c3290613069565b80611bbc576110ef838360006124f5565b60125460ff1615612077576005546001600160a01b03848116911614801590611bf357506005546001600160a01b03838116911614155b8015611c0757506001600160a01b03821615155b8015611c1e57506001600160a01b03821661dead14155b8015611c345750600554600160a01b900460ff16155b1561207757601254610100900460ff16611cca576001600160a01b038316600090815260208052604090205460ff1680611c8557506001600160a01b038216600090815260208052604090205460ff165b611cca5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c32565b60145460ff1615611e11576005546001600160a01b03838116911614801590611d2557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d6357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611e1157326000908152601360205260409020544311611dfe5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c32565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e5257506001600160a01b03821660009081526021602052604090205460ff16155b15611f3657600954811115611ec75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c32565b600b546001600160a01b038316600090815260208190526040902054611eed9083612ff3565b1115611f315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b612077565b6001600160a01b03821660009081526022602052604090205460ff168015611f7757506001600160a01b03831660009081526021602052604090205460ff16155b15611fed57600954811115611f315760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c32565b6001600160a01b03821660009081526021602052604090205460ff1661207757600b546001600160a01b0383166000908152602081905260409020546120339083612ff3565b11156120775760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b30600090815260208190526040902054600a54811080159081906120a3575060125462010000900460ff165b80156120b95750600554600160a01b900460ff16155b80156120de57506001600160a01b03851660009081526022602052604090205460ff16155b801561210257506001600160a01b038516600090815260208052604090205460ff16155b801561212657506001600160a01b038416600090815260208052604090205460ff16155b15612154576005805460ff60a01b1916600160a01b17905561214661264a565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561218657506001600160a01b03841660009081526022602052604090205460ff165b80156121945750600d5460ff165b80156121af5750600e54600f546121ab9190612ff3565b4210155b80156121d357506001600160a01b038516600090815260208052604090205460ff16155b156121e2576121e06128e8565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b90920482161591168061222e57506001600160a01b038516600090815260208052604090205460ff165b15612237575060005b6000811561241c576001600160a01b03861660009081526022602052604090205460ff16801561226957506000601954115b15612321576122886064611954601954886124d690919063ffffffff16565b9050601954601b548261229b9190612fb2565b6122a59190612fd1565b601e60008282546122b69190612ff3565b9091555050601954601c546122cb9083612fb2565b6122d59190612fd1565b601f60008282546122e69190612ff3565b9091555050601954601a546122fb9083612fb2565b6123059190612fd1565b601d60008282546123169190612ff3565b909155506123fe9050565b6001600160a01b03871660009081526022602052604090205460ff16801561234b57506000601554115b156123fe5761236a6064611954601554886124d690919063ffffffff16565b90506015546017548261237d9190612fb2565b6123879190612fd1565b601e60008282546123989190612ff3565b90915550506015546018546123ad9083612fb2565b6123b79190612fd1565b601f60008282546123c89190612ff3565b90915550506015546016546123dd9083612fb2565b6123e79190612fd1565b601d60008282546123f89190612ff3565b90915550505b801561240f5761240f8730836124f5565b61241981866130ac565b94505b6124278787876124f5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124e28284612fb2565b9392505050565b60006124e28284612fd1565b6001600160a01b03831661251b5760405162461bcd60e51b8152600401610c3290613024565b6001600160a01b0382166125415760405162461bcd60e51b8152600401610c3290613069565b6001600160a01b038316600090815260208190526040902054818110156125b95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c32565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125f0908490612ff3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161263c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126719190612ff3565b61267b9190612ff3565b9050600082158061268a575081155b1561269457505050565b600a546126a2906014612fb2565b8311156126ba57600a546126b7906014612fb2565b92505b6000600283601e54866126cd9190612fb2565b6126d79190612fd1565b6126e19190612fd1565b905060006126ef8583612a78565b9050476126fb82612a84565b60006127074783612a78565b9050600061272487611954601d54856124d690919063ffffffff16565b9050600061274188611954601f54866124d690919063ffffffff16565b905060008161275084866130ac565b61275a91906130ac565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d80600081146127b7576040519150601f19603f3d011682016040523d82523d6000602084013e6127bc565b606091505b509098505086158015906127d05750600081115b15612823576127df8782612c44565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006128304760026124e9565b6006546040519192506001600160a01b0316908290600081818185875af1925050503d806000811461287e576040519150601f19603f3d011682016040523d82523d6000602084013e612883565b606091505b5050600754604051919a506001600160a01b0316904790600081818185875af1925050503d80600081146128d3576040519150601f19603f3d011682016040523d82523d6000602084013e6128d8565b606091505b5050505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612955573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612979919061300b565b90506000612998612710611954600c54856124d690919063ffffffff16565b905080156129cd576129cd7f000000000000000000000000000000000000000000000000000000000000000061dead836124f5565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2d57600080fd5b505af1158015612a41573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124e282846130ac565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ab957612ab96130c3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b5b91906130d9565b81600181518110612b6e57612b6e6130c3565b60200260200101906001600160a01b031690816001600160a01b031681525050612bb9307f000000000000000000000000000000000000000000000000000000000000000084611a3b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612c0e9085906000908690309042906004016130f6565b600060405180830381600087803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b505050505050565b612c6f307f000000000000000000000000000000000000000000000000000000000000000084611a3b565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612cf9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d1e9190613167565b5050505050565b600060208083528351808285015260005b81811015612d5257858101830151858201604001528201612d36565b81811115612d64576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117be57600080fd5b60008060408385031215612da257600080fd5b8235612dad81612d7a565b946020939093013593505050565b600060208284031215612dcd57600080fd5b81356124e281612d7a565b600060208284031215612dea57600080fd5b5035919050565b600080600060608486031215612e0657600080fd5b8335612e1181612d7a565b92506020840135612e2181612d7a565b929592945050506040919091013590565b803580151581146116e457600080fd5b600080600060608486031215612e5757600080fd5b8335925060208401359150612e6e60408501612e32565b90509250925092565b60008060408385031215612e8a57600080fd5b8235612e9581612d7a565b9150612ea360208401612e32565b90509250929050565b600080600060608486031215612ec157600080fd5b505081359360208301359350604090920135919050565b600060208284031215612eea57600080fd5b6124e282612e32565b60008060408385031215612f0657600080fd5b8235612f1181612d7a565b91506020830135612f2181612d7a565b809150509250929050565b600181811c90821680612f4057607f821691505b60208210811415612f6157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612fcc57612fcc612f9c565b500290565b600082612fee57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561300657613006612f9c565b500190565b60006020828403121561301d57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156130be576130be612f9c565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130eb57600080fd5b81516124e281612d7a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131465784516001600160a01b031683529383019391830191600101613121565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561317c57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220898f82c1ab232b801568da2fcbd5be31624e4aab7ff27c39fb539d9b16cda61764736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610af4578063f637434214610b14578063f8b45b0514610b2a578063fe72b27a14610b4057600080fd5b8063dd62ed3e14610a6d578063e2f4560514610ab3578063e884f26014610ac9578063f11a24d314610ade57600080fd5b8063c876d0b9116100dc578063c876d0b914610a07578063c8c8ebe414610a21578063d257b34f14610a37578063d85ba06314610a5757600080fd5b8063bbc0c74214610988578063c0246668146109a7578063c17b5b8c146109c7578063c18bc195146109e757600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610902578063a9059cbb14610918578063aacebbe314610938578063b62496f51461095857600080fd5b80639ec22c0e146108a05780639fccce32146108b6578063a0d82dc5146108cc578063a457c2d7146108e257600080fd5b8063924de9b7116101c1578063924de9b71461083557806395d89b41146108555780639a7a23d61461086a5780639c3b4fdc1461088a57600080fd5b80638a8c523c146107cc5780638da5cb5b146107e15780638ea5220f146107ff578063921369131461081f57600080fd5b80632e82f1a0116102e257806370a08231116102755780637571336a116102445780637571336a1461075657806375f0a874146107765780637bce5a04146107965780638095d564146107ac57600080fd5b806370a08231146106d6578063715018a61461070c578063730c188814610721578063751039fc1461074157600080fd5b80634a62bb65116102b15780634a62bb651461064e5780634fbee193146106685780636a486a8e146106a05780636ddd1713146106b657600080fd5b80632e82f1a0146105c4578063313ce567146105de57806339509351146105fa57806349bd5a5e1461061a57600080fd5b8063184c16c51161035a578063203e727e11610329578063203e727e1461055857806323b872dd1461057857806327c8f835146105985780632c3e486c146105ae57600080fd5b8063184c16c514610500578063199ffc72146105165780631a8145bb1461052c5780631f3fed8f1461054257600080fd5b806310d5de531161039657806310d5de531461045b5780631694505e1461048b57806318160ddd146104bf5780631816467f146104de57600080fd5b806306fdde03146103c8578063095ea7b3146103f35780630d0020f21461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b60565b6040516103ea9190612d25565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612d8f565b610bf2565b60405190151581526020016103ea565b34801561042f57600080fd5b50600754610443906001600160a01b031681565b6040516001600160a01b0390911681526020016103ea565b34801561046757600080fd5b50610413610476366004612dbb565b60216020526000908152604090205460ff1681565b34801561049757600080fd5b506104437f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104cb57600080fd5b506002545b6040519081526020016103ea565b3480156104ea57600080fd5b506104fe6104f9366004612dbb565b610c08565b005b34801561050c57600080fd5b506104d060105481565b34801561052257600080fd5b506104d0600c5481565b34801561053857600080fd5b506104d0601e5481565b34801561054e57600080fd5b506104d0601d5481565b34801561056457600080fd5b506104fe610573366004612dd8565b610c98565b34801561058457600080fd5b50610413610593366004612df1565b610d75565b3480156105a457600080fd5b5061044361dead81565b3480156105ba57600080fd5b506104d0600e5481565b3480156105d057600080fd5b50600d546104139060ff1681565b3480156105ea57600080fd5b50604051601281526020016103ea565b34801561060657600080fd5b50610413610615366004612d8f565b610e1f565b34801561062657600080fd5b506104437f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c59941381565b34801561065a57600080fd5b506012546104139060ff1681565b34801561067457600080fd5b50610413610683366004612dbb565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156106ac57600080fd5b506104d060195481565b3480156106c257600080fd5b506012546104139062010000900460ff1681565b3480156106e257600080fd5b506104d06106f1366004612dbb565b6001600160a01b031660009081526020819052604090205490565b34801561071857600080fd5b506104fe610e5b565b34801561072d57600080fd5b506104fe61073c366004612e42565b610e91565b34801561074d57600080fd5b50610413610fba565b34801561076257600080fd5b506104fe610771366004612e77565b610ff7565b34801561078257600080fd5b50600654610443906001600160a01b031681565b3480156107a257600080fd5b506104d060165481565b3480156107b857600080fd5b506104fe6107c7366004612eac565b61104c565b3480156107d857600080fd5b506104fe6110f4565b3480156107ed57600080fd5b506005546001600160a01b0316610443565b34801561080b57600080fd5b50600854610443906001600160a01b031681565b34801561082b57600080fd5b506104d0601a5481565b34801561084157600080fd5b506104fe610850366004612ed8565b611135565b34801561086157600080fd5b506103dd61117b565b34801561087657600080fd5b506104fe610885366004612e77565b61118a565b34801561089657600080fd5b506104d060185481565b3480156108ac57600080fd5b506104d060115481565b3480156108c257600080fd5b506104d0601f5481565b3480156108d857600080fd5b506104d0601c5481565b3480156108ee57600080fd5b506104136108fd366004612d8f565b61126a565b34801561090e57600080fd5b506104d0600f5481565b34801561092457600080fd5b50610413610933366004612d8f565b611303565b34801561094457600080fd5b506104fe610953366004612dbb565b611310565b34801561096457600080fd5b50610413610973366004612dbb565b60226020526000908152604090205460ff1681565b34801561099457600080fd5b5060125461041390610100900460ff1681565b3480156109b357600080fd5b506104fe6109c2366004612e77565b611397565b3480156109d357600080fd5b506104fe6109e2366004612eac565b61141e565b3480156109f357600080fd5b506104fe610a02366004612dd8565b6114c1565b348015610a1357600080fd5b506014546104139060ff1681565b348015610a2d57600080fd5b506104d060095481565b348015610a4357600080fd5b50610413610a52366004612dd8565b611592565b348015610a6357600080fd5b506104d060155481565b348015610a7957600080fd5b506104d0610a88366004612ef3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610abf57600080fd5b506104d0600a5481565b348015610ad557600080fd5b506104136116e9565b348015610aea57600080fd5b506104d060175481565b348015610b0057600080fd5b506104fe610b0f366004612dbb565b611726565b348015610b2057600080fd5b506104d0601b5481565b348015610b3657600080fd5b506104d0600b5481565b348015610b4c57600080fd5b50610413610b5b366004612dd8565b6117c1565b606060038054610b6f90612f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9b90612f2c565b8015610be85780601f10610bbd57610100808354040283529160200191610be8565b820191906000526020600020905b815481529060010190602001808311610bcb57829003601f168201915b5050505050905090565b6000610bff338484611a3b565b50600192915050565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b8152600401610c3290612f67565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610c3290612f67565b670de0b6b3a76400006103e8610cd760025490565b610ce2906001612fb2565b610cec9190612fd1565b610cf69190612fd1565b811015610d5d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c32565b610d6f81670de0b6b3a7640000612fb2565b60095550565b6000610d82848484611b5f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e075760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c32565b610e148533858403611a3b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bff918590610e56908690612ff3565b611a3b565b6005546001600160a01b03163314610e855760405162461bcd60e51b8152600401610c3290612f67565b610e8f6000612430565b565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610c3290612f67565b610258831015610f295760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c32565b6103e88211158015610f39575060015b610f9e5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c32565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fe75760405162461bcd60e51b8152600401610c3290612f67565b506012805460ff19169055600190565b6005546001600160a01b031633146110215760405162461bcd60e51b8152600401610c3290612f67565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110765760405162461bcd60e51b8152600401610c3290612f67565b601683905560178290556018819055806110908385612ff3565b61109a9190612ff3565b6015819055600b10156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c32565b505050565b6005546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610c3290612f67565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b0316331461115f5760405162461bcd60e51b8152600401610c3290612f67565b60128054911515620100000262ff000019909216919091179055565b606060048054610b6f90612f2c565b6005546001600160a01b031633146111b45760405162461bcd60e51b8152600401610c3290612f67565b7f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c5994136001600160a01b0316826001600160a01b0316141561125c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c32565b6112668282612482565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c32565b6112f93385858403611a3b565b5060019392505050565b6000610bff338484611b5f565b6005546001600160a01b0316331461133a5760405162461bcd60e51b8152600401610c3290612f67565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113c15760405162461bcd60e51b8152600401610c3290612f67565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114485760405162461bcd60e51b8152600401610c3290612f67565b601a839055601b829055601c819055806114628385612ff3565b61146c9190612ff3565b6019819055601e10156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610c32565b6005546001600160a01b031633146114eb5760405162461bcd60e51b8152600401610c3290612f67565b670de0b6b3a76400006103e861150060025490565b61150b906005612fb2565b6115159190612fd1565b61151f9190612fd1565b81101561157a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c32565b61158c81670de0b6b3a7640000612fb2565b600b5550565b6005546000906001600160a01b031633146115bf5760405162461bcd60e51b8152600401610c3290612f67565b620186a06115cc60025490565b6115d7906001612fb2565b6115e19190612fd1565b82101561164e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c32565b6103e861165a60025490565b611665906005612fb2565b61166f9190612fd1565b8211156116db5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c32565b50600a81905560015b919050565b6005546000906001600160a01b031633146117165760405162461bcd60e51b8152600401610c3290612f67565b506014805460ff19169055600190565b6005546001600160a01b031633146117505760405162461bcd60e51b8152600401610c3290612f67565b6001600160a01b0381166117b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c32565b6117be81612430565b50565b6005546000906001600160a01b031633146117ee5760405162461bcd60e51b8152600401610c3290612f67565b6010546011546117fe9190612ff3565b421161184c5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c32565b6103e88211156118b15760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c32565b426011556040516370a0823160e01b81526001600160a01b037f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c59941316600482015260009030906370a0823190602401602060405180830381865afa15801561191c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611940919061300b565b9050600061195a61271061195484876124d6565b906124e9565b9050801561198f5761198f7f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c59941361dead836124f5565b60007f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c5994139050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119ef57600080fd5b505af1158015611a03573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a9d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c32565b6001600160a01b038216611afe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c32565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b855760405162461bcd60e51b8152600401610c3290613024565b6001600160a01b038216611bab5760405162461bcd60e51b8152600401610c3290613069565b80611bbc576110ef838360006124f5565b60125460ff1615612077576005546001600160a01b03848116911614801590611bf357506005546001600160a01b03838116911614155b8015611c0757506001600160a01b03821615155b8015611c1e57506001600160a01b03821661dead14155b8015611c345750600554600160a01b900460ff16155b1561207757601254610100900460ff16611cca576001600160a01b038316600090815260208052604090205460ff1680611c8557506001600160a01b038216600090815260208052604090205460ff165b611cca5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c32565b60145460ff1615611e11576005546001600160a01b03838116911614801590611d2557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d6357507f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c5994136001600160a01b0316826001600160a01b031614155b15611e1157326000908152601360205260409020544311611dfe5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c32565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e5257506001600160a01b03821660009081526021602052604090205460ff16155b15611f3657600954811115611ec75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c32565b600b546001600160a01b038316600090815260208190526040902054611eed9083612ff3565b1115611f315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b612077565b6001600160a01b03821660009081526022602052604090205460ff168015611f7757506001600160a01b03831660009081526021602052604090205460ff16155b15611fed57600954811115611f315760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c32565b6001600160a01b03821660009081526021602052604090205460ff1661207757600b546001600160a01b0383166000908152602081905260409020546120339083612ff3565b11156120775760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b30600090815260208190526040902054600a54811080159081906120a3575060125462010000900460ff165b80156120b95750600554600160a01b900460ff16155b80156120de57506001600160a01b03851660009081526022602052604090205460ff16155b801561210257506001600160a01b038516600090815260208052604090205460ff16155b801561212657506001600160a01b038416600090815260208052604090205460ff16155b15612154576005805460ff60a01b1916600160a01b17905561214661264a565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561218657506001600160a01b03841660009081526022602052604090205460ff165b80156121945750600d5460ff165b80156121af5750600e54600f546121ab9190612ff3565b4210155b80156121d357506001600160a01b038516600090815260208052604090205460ff16155b156121e2576121e06128e8565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b90920482161591168061222e57506001600160a01b038516600090815260208052604090205460ff165b15612237575060005b6000811561241c576001600160a01b03861660009081526022602052604090205460ff16801561226957506000601954115b15612321576122886064611954601954886124d690919063ffffffff16565b9050601954601b548261229b9190612fb2565b6122a59190612fd1565b601e60008282546122b69190612ff3565b9091555050601954601c546122cb9083612fb2565b6122d59190612fd1565b601f60008282546122e69190612ff3565b9091555050601954601a546122fb9083612fb2565b6123059190612fd1565b601d60008282546123169190612ff3565b909155506123fe9050565b6001600160a01b03871660009081526022602052604090205460ff16801561234b57506000601554115b156123fe5761236a6064611954601554886124d690919063ffffffff16565b90506015546017548261237d9190612fb2565b6123879190612fd1565b601e60008282546123989190612ff3565b90915550506015546018546123ad9083612fb2565b6123b79190612fd1565b601f60008282546123c89190612ff3565b90915550506015546016546123dd9083612fb2565b6123e79190612fd1565b601d60008282546123f89190612ff3565b90915550505b801561240f5761240f8730836124f5565b61241981866130ac565b94505b6124278787876124f5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124e28284612fb2565b9392505050565b60006124e28284612fd1565b6001600160a01b03831661251b5760405162461bcd60e51b8152600401610c3290613024565b6001600160a01b0382166125415760405162461bcd60e51b8152600401610c3290613069565b6001600160a01b038316600090815260208190526040902054818110156125b95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c32565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125f0908490612ff3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161263c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126719190612ff3565b61267b9190612ff3565b9050600082158061268a575081155b1561269457505050565b600a546126a2906014612fb2565b8311156126ba57600a546126b7906014612fb2565b92505b6000600283601e54866126cd9190612fb2565b6126d79190612fd1565b6126e19190612fd1565b905060006126ef8583612a78565b9050476126fb82612a84565b60006127074783612a78565b9050600061272487611954601d54856124d690919063ffffffff16565b9050600061274188611954601f54866124d690919063ffffffff16565b905060008161275084866130ac565b61275a91906130ac565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d80600081146127b7576040519150601f19603f3d011682016040523d82523d6000602084013e6127bc565b606091505b509098505086158015906127d05750600081115b15612823576127df8782612c44565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006128304760026124e9565b6006546040519192506001600160a01b0316908290600081818185875af1925050503d806000811461287e576040519150601f19603f3d011682016040523d82523d6000602084013e612883565b606091505b5050600754604051919a506001600160a01b0316904790600081818185875af1925050503d80600081146128d3576040519150601f19603f3d011682016040523d82523d6000602084013e6128d8565b606091505b5050505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c599413166004820152600090819030906370a0823190602401602060405180830381865afa158015612955573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612979919061300b565b90506000612998612710611954600c54856124d690919063ffffffff16565b905080156129cd576129cd7f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c59941361dead836124f5565b60007f00000000000000000000000001847daf217d8482abb1ce7a8c1badef7c5994139050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2d57600080fd5b505af1158015612a41573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124e282846130ac565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ab957612ab96130c3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b5b91906130d9565b81600181518110612b6e57612b6e6130c3565b60200260200101906001600160a01b031690816001600160a01b031681525050612bb9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a3b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612c0e9085906000908690309042906004016130f6565b600060405180830381600087803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b505050505050565b612c6f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a3b565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612cf9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d1e9190613167565b5050505050565b600060208083528351808285015260005b81811015612d5257858101830151858201604001528201612d36565b81811115612d64576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117be57600080fd5b60008060408385031215612da257600080fd5b8235612dad81612d7a565b946020939093013593505050565b600060208284031215612dcd57600080fd5b81356124e281612d7a565b600060208284031215612dea57600080fd5b5035919050565b600080600060608486031215612e0657600080fd5b8335612e1181612d7a565b92506020840135612e2181612d7a565b929592945050506040919091013590565b803580151581146116e457600080fd5b600080600060608486031215612e5757600080fd5b8335925060208401359150612e6e60408501612e32565b90509250925092565b60008060408385031215612e8a57600080fd5b8235612e9581612d7a565b9150612ea360208401612e32565b90509250929050565b600080600060608486031215612ec157600080fd5b505081359360208301359350604090920135919050565b600060208284031215612eea57600080fd5b6124e282612e32565b60008060408385031215612f0657600080fd5b8235612f1181612d7a565b91506020830135612f2181612d7a565b809150509250929050565b600181811c90821680612f4057607f821691505b60208210811415612f6157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612fcc57612fcc612f9c565b500290565b600082612fee57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561300657613006612f9c565b500190565b60006020828403121561301d57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156130be576130be612f9c565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130eb57600080fd5b81516124e281612d7a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131465784516001600160a01b031683529383019391830191600101613121565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561317c57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220898f82c1ab232b801568da2fcbd5be31624e4aab7ff27c39fb539d9b16cda61764736f6c634300080a0033

Deployed Bytecode Sourcemap

33059:19763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9887:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12054:169;;;;;;;;;;-1:-1:-1;12054:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;12054:169:0;1072:187:1;33367:31:0;;;;;;;;;;-1:-1:-1;33367:31:0;;;;-1:-1:-1;;;;;33367:31:0;;;;;;-1:-1:-1;;;;;1428:32:1;;;1410:51;;1398:2;1383:18;33367:31:0;1264:203:1;34724:63:0;;;;;;;;;;-1:-1:-1;34724:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33135:51;;;;;;;;;;;;;;;11007:108;;;;;;;;;;-1:-1:-1;11095:12:0;;11007:108;;;2105:25:1;;;2093:2;2078:18;11007:108:0;1959:177:1;41992:157:0;;;;;;;;;;-1:-1:-1;41992:157:0;;;;;:::i;:::-;;:::i;:::-;;33738:47;;;;;;;;;;;;;;;;33553:36;;;;;;;;;;;;;;;;34508:33;;;;;;;;;;;;;;;;34468;;;;;;;;;;;;;;;;39306:275;;;;;;;;;;-1:-1:-1;39306:275:0;;;;;:::i;:::-;;:::i;12705:492::-;;;;;;;;;;-1:-1:-1;12705:492:0;;;;;:::i;:::-;;:::i;33238:53::-;;;;;;;;;;;;33284:6;33238:53;;33648:45;;;;;;;;;;;;;;;;33609:32;;;;;;;;;;-1:-1:-1;33609:32:0;;;;;;;;10849:93;;;;;;;;;;-1:-1:-1;10849:93:0;;10932:2;2929:36:1;;2917:2;2902:18;10849:93:0;2787:184:1;13606:215:0;;;;;;;;;;-1:-1:-1;13606:215:0;;;;;:::i;:::-;;:::i;33193:38::-;;;;;;;;;;;;;;;33836:33;;;;;;;;;;-1:-1:-1;33836:33:0;;;;;;;;42157:126;;;;;;;;;;-1:-1:-1;42157:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42247:28:0;42223:4;42247:28;;;:19;:28;;;;;;;;;42157:126;34323:28;;;;;;;;;;;;;;;;33916:31;;;;;;;;;;-1:-1:-1;33916:31:0;;;;;;;;;;;11178:127;;;;;;;;;;-1:-1:-1;11178:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11279:18:0;11252:7;11279:18;;;;;;;;;;;;11178:127;3122:103;;;;;;;;;;;;;:::i;50404:555::-;;;;;;;;;;-1:-1:-1;50404:555:0;;;;;:::i;:::-;;:::i;38414:121::-;;;;;;;;;;;;;:::i;39853:167::-;;;;;;;;;;-1:-1:-1;39853:167:0;;;;;:::i;:::-;;:::i;33330:30::-;;;;;;;;;;-1:-1:-1;33330:30:0;;;;-1:-1:-1;;;;;33330:30:0;;;34216;;;;;;;;;;;;;;;;40224:403;;;;;;;;;;-1:-1:-1;40224:403:0;;;;;:::i;:::-;;:::i;38207:155::-;;;;;;;;;;;;;:::i;2471:87::-;;;;;;;;;;-1:-1:-1;2544:6:0;;-1:-1:-1;;;;;2544:6:0;2471:87;;33405:24;;;;;;;;;;-1:-1:-1;33405:24:0;;;;-1:-1:-1;;;;;33405:24:0;;;34358:31;;;;;;;;;;;;;;;;40116:100;;;;;;;;;;-1:-1:-1;40116:100:0;;;;;:::i;:::-;;:::i;10106:104::-;;;;;;;;;;;;;:::i;41245:304::-;;;;;;;;;;-1:-1:-1;41245:304:0;;;;;:::i;:::-;;:::i;34290:24::-;;;;;;;;;;;;;;;;33792:35;;;;;;;;;;;;;;;;34548:27;;;;;;;;;;;;;;;;34434:25;;;;;;;;;;;;;;;;14324:413;;;;;;;;;;-1:-1:-1;14324:413:0;;;;;:::i;:::-;;:::i;33700:29::-;;;;;;;;;;;;;;;;11518:175;;;;;;;;;;-1:-1:-1;11518:175:0;;;;;:::i;:::-;;:::i;41753:231::-;;;;;;;;;;-1:-1:-1;41753:231:0;;;;;:::i;:::-;;:::i;34945:57::-;;;;;;;;;;-1:-1:-1;34945:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33876:33;;;;;;;;;;-1:-1:-1;33876:33:0;;;;;;;;;;;41055:182;;;;;;;;;;-1:-1:-1;41055:182:0;;;;;:::i;:::-;;:::i;40635:412::-;;;;;;;;;;-1:-1:-1;40635:412:0;;;;;:::i;:::-;;:::i;39589:256::-;;;;;;;;;;-1:-1:-1;39589:256:0;;;;;:::i;:::-;;:::i;34134:39::-;;;;;;;;;;-1:-1:-1;34134:39:0;;;;;;;;33438:35;;;;;;;;;;;;;;;;38801:497;;;;;;;;;;-1:-1:-1;38801:497:0;;;;;:::i;:::-;;:::i;34182:27::-;;;;;;;;;;;;;;;;11756:151;;;;;;;;;;-1:-1:-1;11756:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11872:18:0;;;11845:7;11872:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11756:151;33480:33;;;;;;;;;;;;;;;;38596:135;;;;;;;;;;;;;:::i;34253:30::-;;;;;;;;;;;;;;;;3380:201;;;;;;;;;;-1:-1:-1;3380:201:0;;;;;:::i;:::-;;:::i;34396:31::-;;;;;;;;;;;;;;;;33520:24;;;;;;;;;;;;;;;;51763:1056;;;;;;;;;;-1:-1:-1;51763:1056:0;;;;;:::i;:::-;;:::i;9887:100::-;9941:13;9974:5;9967:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9887:100;:::o;12054:169::-;12137:4;12154:39;1224:10;12177:7;12186:6;12154:8;:39::i;:::-;-1:-1:-1;12211:4:0;12054:169;;;;:::o;41992:157::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;;;;;;;;;42099:9:::1;::::0;42071:38:::1;::::0;-1:-1:-1;;;;;42099:9:0;;::::1;::::0;42071:38;::::1;::::0;::::1;::::0;42099:9:::1;::::0;42071:38:::1;42120:9;:21:::0;;-1:-1:-1;;;;;;42120:21:0::1;-1:-1:-1::0;;;;;42120:21:0;;;::::1;::::0;;;::::1;::::0;;41992:157::o;39306:275::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;39443:4:::1;39435;39414:13;11095:12:::0;;;11007:108;39414:13:::1;:17;::::0;39430:1:::1;39414:17;:::i;:::-;39413:26;;;;:::i;:::-;39412:35;;;;:::i;:::-;39402:6;:45;;39380:142;;;::::0;-1:-1:-1;;;39380:142:0;;6156:2:1;39380:142:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:45;6340:19;;39380:142:0::1;5954:411:1::0;39380:142:0::1;39556:17;:6:::0;39566::::1;39556:17;:::i;:::-;39533:20;:40:::0;-1:-1:-1;39306:275:0:o;12705:492::-;12845:4;12862:36;12872:6;12880:9;12891:6;12862:9;:36::i;:::-;-1:-1:-1;;;;;12938:19:0;;12911:24;12938:19;;;:11;:19;;;;;;;;1224:10;12938:33;;;;;;;;12990:26;;;;12982:79;;;;-1:-1:-1;;;12982:79:0;;6572:2:1;12982:79:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:1;;;6694:38;6749:19;;12982:79:0;6370:404:1;12982:79:0;13097:57;13106:6;1224:10;13147:6;13128:16;:25;13097:8;:57::i;:::-;-1:-1:-1;13185:4:0;;12705:492;-1:-1:-1;;;;12705:492:0:o;13606:215::-;1224:10;13694:4;13743:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13743:34:0;;;;;;;;;;13694:4;;13711:80;;13734:7;;13743:47;;13780:10;;13743:47;:::i;:::-;13711:8;:80::i;3122:103::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;3187:30:::1;3214:1;3187:18;:30::i;:::-;3122:103::o:0;50404:555::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;50606:3:::1;50583:19;:26;;50561:127;;;::::0;-1:-1:-1;;;50561:127:0;;7114:2:1;50561:127:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:49;7302:19;;50561:127:0::1;6912:415:1::0;50561:127:0::1;50733:4;50721:8;:16;;:33;;;;-1:-1:-1::0;50741:13:0;50721:33:::1;50699:131;;;::::0;-1:-1:-1;;;50699:131:0;;7534:2:1;50699:131:0::1;::::0;::::1;7516:21:1::0;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:46;7719:19;;50699:131:0::1;7332:412:1::0;50699:131:0::1;50841:15;:37:::0;;;;50889:16:::1;:27:::0;50927:13:::1;:24:::0;;-1:-1:-1;;50927:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50404:555::o;38414:121::-;2544:6;;38466:4;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;-1:-1:-1;38483:14:0::1;:22:::0;;-1:-1:-1;;38483:22:0::1;::::0;;;38414:121;:::o;39853:167::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39966:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39966:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39853:167::o;40224:403::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;40374:15:::1;:31:::0;;;40416:15:::1;:31:::0;;;40458:9:::1;:19:::0;;;40470:7;40503:33:::1;40434:13:::0;40392;40503:33:::1;:::i;:::-;:45;;;;:::i;:::-;40488:12;:60:::0;;;40583:2:::1;-1:-1:-1::0;40567:18:0::1;40559:60;;;::::0;-1:-1:-1;;;40559:60:0;;7951:2:1;40559:60:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029:31;8009:18;;;8002:59;8078:18;;40559:60:0::1;7749:353:1::0;40559:60:0::1;40224:403:::0;;;:::o;38207:155::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;38262:13:::1;:20:::0;;-1:-1:-1;;38293:18:0;;;;;38339:15:::1;38322:14;:32:::0;38207:155::o;40116:100::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;40187:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;40187:21:0;;::::1;::::0;;;::::1;::::0;;40116:100::o;10106:104::-;10162:13;10195:7;10188:14;;;;;:::i;41245:304::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;41389:13:::1;-1:-1:-1::0;;;;;41381:21:0::1;:4;-1:-1:-1::0;;;;;41381:21:0::1;;;41359:128;;;::::0;-1:-1:-1;;;41359:128:0;;8309:2:1;41359:128:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;8458:27;8438:18;;;8431:55;8503:19;;41359:128:0::1;8107:421:1::0;41359:128:0::1;41500:41;41529:4;41535:5;41500:28;:41::i;:::-;41245:304:::0;;:::o;14324:413::-;1224:10;14417:4;14461:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14461:34:0;;;;;;;;;;14514:35;;;;14506:85;;;;-1:-1:-1;;;14506:85:0;;8735:2:1;14506:85:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;-1:-1:-1;;;8864:18:1;;;8857:35;8909:19;;14506:85:0;8533:401:1;14506:85:0;14627:67;1224:10;14650:7;14678:15;14659:16;:34;14627:8;:67::i;:::-;-1:-1:-1;14725:4:0;;14324:413;-1:-1:-1;;;14324:413:0:o;11518:175::-;11604:4;11621:42;1224:10;11645:9;11656:6;11621:9;:42::i;41753:231::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;41913:15:::1;::::0;41870:59:::1;::::0;-1:-1:-1;;;;;41913:15:0;;::::1;::::0;41870:59;::::1;::::0;::::1;::::0;41913:15:::1;::::0;41870:59:::1;41940:15;:36:::0;;-1:-1:-1;;;;;;41940:36:0::1;-1:-1:-1::0;;;;;41940:36:0;;;::::1;::::0;;;::::1;::::0;;41753:231::o;41055:182::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41140:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;41140:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41195:34;;1212:41:1;;;41195:34:0::1;::::0;1185:18:1;41195:34:0::1;;;;;;;41055:182:::0;;:::o;40635:412::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;40786:16:::1;:32:::0;;;40829:16:::1;:32:::0;;;40872:10:::1;:20:::0;;;40885:7;40919:35:::1;40848:13:::0;40805;40919:35:::1;:::i;:::-;:48;;;;:::i;:::-;40903:13;:64:::0;;;41003:2:::1;-1:-1:-1::0;40986:19:0::1;40978:61;;;::::0;-1:-1:-1;;;40978:61:0;;9141:2:1;40978:61:0::1;::::0;::::1;9123:21:1::0;9180:2;9160:18;;;9153:30;9219:31;9199:18;;;9192:59;9268:18;;40978:61:0::1;8939:353:1::0;39589:256:0;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;39729:4:::1;39721;39700:13;11095:12:::0;;;11007:108;39700:13:::1;:17;::::0;39716:1:::1;39700:17;:::i;:::-;39699:26;;;;:::i;:::-;39698:35;;;;:::i;:::-;39688:6;:45;;39666:131;;;::::0;-1:-1:-1;;;39666:131:0;;9499:2:1;39666:131:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:34;9557:18;;;9550:62;-1:-1:-1;;;9628:18:1;;;9621:34;9672:19;;39666:131:0::1;9297:400:1::0;39666:131:0::1;39820:17;:6:::0;39830::::1;39820:17;:::i;:::-;39808:9;:29:::0;-1:-1:-1;39589:256:0:o;38801:497::-;2544:6;;38909:4;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;38988:6:::1;38967:13;11095:12:::0;;;11007:108;38967:13:::1;:17;::::0;38983:1:::1;38967:17;:::i;:::-;38966:28;;;;:::i;:::-;38953:9;:41;;38931:144;;;::::0;-1:-1:-1;;;38931:144:0;;9904:2:1;38931:144:0::1;::::0;::::1;9886:21:1::0;9943:2;9923:18;;;9916:30;9982:34;9962:18;;;9955:62;-1:-1:-1;;;10033:18:1;;;10026:51;10094:19;;38931:144:0::1;9702:417:1::0;38931:144:0::1;39143:4;39122:13;11095:12:::0;;;11007:108;39122:13:::1;:17;::::0;39138:1:::1;39122:17;:::i;:::-;39121:26;;;;:::i;:::-;39108:9;:39;;39086:141;;;::::0;-1:-1:-1;;;39086:141:0;;10326:2:1;39086:141:0::1;::::0;::::1;10308:21:1::0;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:50;10515:19;;39086:141:0::1;10124:416:1::0;39086:141:0::1;-1:-1:-1::0;39238:18:0::1;:30:::0;;;39286:4:::1;2762:1;38801:497:::0;;;:::o;38596:135::-;2544:6;;38656:4;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;-1:-1:-1;38673:20:0::1;:28:::0;;-1:-1:-1;;38673:28:0::1;::::0;;;38596:135;:::o;3380:201::-;2544:6;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3469:22:0;::::1;3461:73;;;::::0;-1:-1:-1;;;3461:73:0;;10747:2:1;3461:73:0::1;::::0;::::1;10729:21:1::0;10786:2;10766:18;;;10759:30;10825:34;10805:18;;;10798:62;-1:-1:-1;;;10876:18:1;;;10869:36;10922:19;;3461:73:0::1;10545:402:1::0;3461:73:0::1;3545:28;3564:8;3545:18;:28::i;:::-;3380:201:::0;:::o;51763:1056::-;2544:6;;51874:4;;-1:-1:-1;;;;;2544:6:0;1224:10;2691:23;2683:68;;;;-1:-1:-1;;;2683:68:0;;;;;;;:::i;:::-;51959:19:::1;;51936:20;;:42;;;;:::i;:::-;51918:15;:60;51896:142;;;::::0;-1:-1:-1;;;51896:142:0;;11154:2:1;51896:142:0::1;::::0;::::1;11136:21:1::0;;;11173:18;;;11166:30;11232:34;11212:18;;;11205:62;11284:18;;51896:142:0::1;10952:356:1::0;51896:142:0::1;52068:4;52057:7;:15;;52049:70;;;::::0;-1:-1:-1;;;52049:70:0;;11515:2:1;52049:70:0::1;::::0;::::1;11497:21:1::0;11554:2;11534:18;;;11527:30;11593:34;11573:18;;;11566:62;-1:-1:-1;;;11644:18:1;;;11637:40;11694:19;;52049:70:0::1;11313:406:1::0;52049:70:0::1;52153:15;52130:20;:38:::0;52254:29:::1;::::0;-1:-1:-1;;;52254:29:0;;-1:-1:-1;;;;;52269:13:0::1;1428:32:1::0;52254:29:0::1;::::0;::::1;1410:51:1::0;52223:28:0::1;::::0;52254:4:::1;::::0;:14:::1;::::0;1383:18:1;;52254:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52223:60:::0;-1:-1:-1;52333:20:0::1;52356:44;52394:5;52356:33;52223:60:::0;52381:7;52356:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;52333:67:::0;-1:-1:-1;52505:16:0;;52501:110:::1;;52538:61;52554:13;52577:6;52586:12;52538:15;:61::i;:::-;52686:19;52723:13;52686:51;;52748:4;-1:-1:-1::0;;;;;52748:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52775:14:0::1;::::0;::::1;::::0;-1:-1:-1;52775:14:0;;-1:-1:-1;52775:14:0::1;-1:-1:-1::0;52807:4:0::1;::::0;51763:1056;-1:-1:-1;;;;51763:1056:0:o;18008:380::-;-1:-1:-1;;;;;18144:19:0;;18136:68;;;;-1:-1:-1;;;18136:68:0;;12115:2:1;18136:68:0;;;12097:21:1;12154:2;12134:18;;;12127:30;12193:34;12173:18;;;12166:62;-1:-1:-1;;;12244:18:1;;;12237:34;12288:19;;18136:68:0;11913:400:1;18136:68:0;-1:-1:-1;;;;;18223:21:0;;18215:68;;;;-1:-1:-1;;;18215:68:0;;12520:2:1;18215:68:0;;;12502:21:1;12559:2;12539:18;;;12532:30;12598:34;12578:18;;;12571:62;-1:-1:-1;;;12649:18:1;;;12642:32;12691:19;;18215:68:0;12318:398:1;18215:68:0;-1:-1:-1;;;;;18296:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18348:32;;2105:25:1;;;18348:32:0;;2078:18:1;18348:32:0;;;;;;;18008:380;;;:::o;42341:5011::-;-1:-1:-1;;;;;42473:18:0;;42465:68;;;;-1:-1:-1;;;42465:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42552:16:0;;42544:64;;;;-1:-1:-1;;;42544:64:0;;;;;;;:::i;:::-;42625:11;42621:93;;42653:28;42669:4;42675:2;42679:1;42653:15;:28::i;42621:93::-;42730:14;;;;42726:2487;;;2544:6;;-1:-1:-1;;;;;42783:15:0;;;2544:6;;42783:15;;;;:49;;-1:-1:-1;2544:6:0;;-1:-1:-1;;;;;42819:13:0;;;2544:6;;42819:13;;42783:49;:86;;;;-1:-1:-1;;;;;;42853:16:0;;;;42783:86;:128;;;;-1:-1:-1;;;;;;42890:21:0;;42904:6;42890:21;;42783:128;:158;;;;-1:-1:-1;42933:8:0;;-1:-1:-1;;;42933:8:0;;;;42932:9;42783:158;42761:2441;;;42981:13;;;;;;;42976:223;;-1:-1:-1;;;;;43053:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43082:23:0;;;;;;:19;:23;;;;;;;;43053:52;43019:160;;;;-1:-1:-1;;;43019:160:0;;13733:2:1;43019:160:0;;;13715:21:1;13772:2;13752:18;;;13745:30;-1:-1:-1;;;13791:18:1;;;13784:52;13853:18;;43019:160:0;13531:346:1;43019:160:0;43355:20;;;;43351:641;;;2544:6;;-1:-1:-1;;;;;43430:13:0;;;2544:6;;43430:13;;;;:72;;;43486:15;-1:-1:-1;;;;;43472:30:0;:2;-1:-1:-1;;;;;43472:30:0;;;43430:72;:129;;;;;43545:13;-1:-1:-1;;;;;43531:28:0;:2;-1:-1:-1;;;;;43531:28:0;;;43430:129;43400:573;;;43677:9;43648:39;;;;:28;:39;;;;;;43723:12;-1:-1:-1;43610:258:0;;;;-1:-1:-1;;;43610:258:0;;14084:2:1;43610:258:0;;;14066:21:1;14123:2;14103:18;;;14096:30;14162:34;14142:18;;;14135:62;14233:34;14213:18;;;14206:62;-1:-1:-1;;;14284:19:1;;;14277:40;14334:19;;43610:258:0;13882:477:1;43610:258:0;43924:9;43895:39;;;;:28;:39;;;;;43937:12;43895:54;;43400:573;-1:-1:-1;;;;;44066:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;44123:35:0;;;;;;:31;:35;;;;;;;;44122:36;44066:92;44040:1147;;;44245:20;;44235:6;:30;;44201:169;;;;-1:-1:-1;;;44201:169:0;;14566:2:1;44201:169:0;;;14548:21:1;14605:2;14585:18;;;14578:30;14644:34;14624:18;;;14617:62;-1:-1:-1;;;14695:18:1;;;14688:51;14756:19;;44201:169:0;14364:417:1;44201:169:0;44453:9;;-1:-1:-1;;;;;11279:18:0;;11252:7;11279:18;;;;;;;;;;;44427:22;;:6;:22;:::i;:::-;:35;;44393:140;;;;-1:-1:-1;;;44393:140:0;;14988:2:1;44393:140:0;;;14970:21:1;15027:2;15007:18;;;15000:30;-1:-1:-1;;;15046:18:1;;;15039:49;15105:18;;44393:140:0;14786:343:1;44393:140:0;44040:1147;;;-1:-1:-1;;;;;44631:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44686:37:0;;;;;;:31;:37;;;;;;;;44685:38;44631:92;44605:582;;;44810:20;;44800:6;:30;;44766:170;;;;-1:-1:-1;;;44766:170:0;;15336:2:1;44766:170:0;;;15318:21:1;15375:2;15355:18;;;15348:30;15414:34;15394:18;;;15387:62;-1:-1:-1;;;15465:18:1;;;15458:52;15527:19;;44766:170:0;15134:418:1;44605:582:0;-1:-1:-1;;;;;44967:35:0;;;;;;:31;:35;;;;;;;;44962:225;;45087:9;;-1:-1:-1;;;;;11279:18:0;;11252:7;11279:18;;;;;;;;;;;45061:22;;:6;:22;:::i;:::-;:35;;45027:140;;;;-1:-1:-1;;;45027:140:0;;14988:2:1;45027:140:0;;;14970:21:1;15027:2;15007:18;;;15000:30;-1:-1:-1;;;15046:18:1;;;15039:49;15105:18;;45027:140:0;14786:343:1;45027:140:0;45274:4;45225:28;11279:18;;;;;;;;;;;45332;;45308:42;;;;;;;45381:35;;-1:-1:-1;45405:11:0;;;;;;;45381:35;:61;;;;-1:-1:-1;45434:8:0;;-1:-1:-1;;;45434:8:0;;;;45433:9;45381:61;:110;;;;-1:-1:-1;;;;;;45460:31:0;;;;;;:25;:31;;;;;;;;45459:32;45381:110;:153;;;;-1:-1:-1;;;;;;45509:25:0;;;;;;:19;:25;;;;;;;;45508:26;45381:153;:194;;;;-1:-1:-1;;;;;;45552:23:0;;;;;;:19;:23;;;;;;;;45551:24;45381:194;45363:326;;;45602:8;:15;;-1:-1:-1;;;;45602:15:0;-1:-1:-1;;;45602:15:0;;;45634:10;:8;:10::i;:::-;45661:8;:16;;-1:-1:-1;;;;45661:16:0;;;45363:326;45720:8;;-1:-1:-1;;;45720:8:0;;;;45719:9;:55;;;;-1:-1:-1;;;;;;45745:29:0;;;;;;:25;:29;;;;;;;;45719:55;:85;;;;-1:-1:-1;45791:13:0;;;;45719:85;:153;;;;;45857:15;;45840:14;;:32;;;;:::i;:::-;45821:15;:51;;45719:153;:196;;;;-1:-1:-1;;;;;;45890:25:0;;;;;;:19;:25;;;;;;;;45889:26;45719:196;45701:282;;;45942:29;:27;:29::i;:::-;;45701:282;46011:8;;-1:-1:-1;;;;;46121:25:0;;45995:12;46121:25;;;:19;:25;;;;;;46011:8;-1:-1:-1;;;46011:8:0;;;;;46010:9;;46121:25;;:52;;-1:-1:-1;;;;;;46150:23:0;;;;;;:19;:23;;;;;;;;46121:52;46117:100;;;-1:-1:-1;46200:5:0;46117:100;46229:12;46334:7;46330:969;;;-1:-1:-1;;;;;46386:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46435:1;46419:13;;:17;46386:50;46382:768;;;46464:34;46494:3;46464:25;46475:13;;46464:6;:10;;:25;;;;:::i;:34::-;46457:41;;46567:13;;46547:16;;46540:4;:23;;;;:::i;:::-;46539:41;;;;:::i;:::-;46517:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46637:13:0;;46623:10;;46616:17;;:4;:17;:::i;:::-;46615:35;;;;:::i;:::-;46599:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46719:13:0;;46699:16;;46692:23;;:4;:23;:::i;:::-;46691:41;;;;:::i;:::-;46669:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;46382:768:0;;-1:-1:-1;46382:768:0;;-1:-1:-1;;;;;46794:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46844:1;46829:12;;:16;46794:51;46790:360;;;46873:33;46902:3;46873:24;46884:12;;46873:6;:10;;:24;;;;:::i;:33::-;46866:40;;46974:12;;46955:15;;46948:4;:22;;;;:::i;:::-;46947:39;;;;:::i;:::-;46925:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;47042:12:0;;47029:9;;47022:16;;:4;:16;:::i;:::-;47021:33;;;;:::i;:::-;47005:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;47122:12:0;;47103:15;;47096:22;;:4;:22;:::i;:::-;47095:39;;;;:::i;:::-;47073:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46790:360:0;47170:8;;47166:91;;47199:42;47215:4;47229;47236;47199:15;:42::i;:::-;47273:14;47283:4;47273:14;;:::i;:::-;;;46330:969;47311:33;47327:4;47333:2;47337:6;47311:15;:33::i;:::-;42454:4898;;;;42341:5011;;;:::o;3741:191::-;3834:6;;;-1:-1:-1;;;;;3851:17:0;;;-1:-1:-1;;;;;;3851:17:0;;;;;;;3884:40;;3834:6;;;3851:17;3834:6;;3884:40;;3815:16;;3884:40;3804:128;3741:191;:::o;41557:188::-;-1:-1:-1;;;;;41640:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41640:39:0;;;;;;;;;;41697:40;;41640:39;;:31;41697:40;;;41557:188;;:::o;23461:98::-;23519:7;23546:5;23550:1;23546;:5;:::i;:::-;23539:12;23461:98;-1:-1:-1;;;23461:98:0:o;23860:::-;23918:7;23945:5;23949:1;23945;:5;:::i;15227:733::-;-1:-1:-1;;;;;15367:20:0;;15359:70;;;;-1:-1:-1;;;15359:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15448:23:0;;15440:71;;;;-1:-1:-1;;;15440:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15608:17:0;;15584:21;15608:17;;;;;;;;;;;15644:23;;;;15636:74;;;;-1:-1:-1;;;15636:74:0;;15889:2:1;15636:74:0;;;15871:21:1;15928:2;15908:18;;;15901:30;15967:34;15947:18;;;15940:62;-1:-1:-1;;;16018:18:1;;;16011:36;16064:19;;15636:74:0;15687:402:1;15636:74:0;-1:-1:-1;;;;;15746:17:0;;;:9;:17;;;;;;;;;;;15766:22;;;15746:42;;15810:20;;;;;;;;:30;;15782:6;;15746:9;15810:30;;15782:6;;15810:30;:::i;:::-;;;;;;;;15875:9;-1:-1:-1;;;;;15858:35:0;15867:6;-1:-1:-1;;;;;15858:35:0;;15886:6;15858:35;;;;2105:25:1;;2093:2;2078:18;;1959:177;15858:35:0;;;;;;;;15348:612;15227:733;;;:::o;48482:1914::-;48565:4;48521:23;11279:18;;;;;;;;;;;48521:50;;48582:25;48678:12;;48644:18;;48610;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48582:108;-1:-1:-1;48701:12:0;48730:20;;;:46;;-1:-1:-1;48754:22:0;;48730:46;48726:85;;;48793:7;;;48482:1914::o;48726:85::-;48845:18;;:23;;48866:2;48845:23;:::i;:::-;48827:15;:41;48823:115;;;48903:18;;:23;;48924:2;48903:23;:::i;:::-;48885:41;;48823:115;48999:23;49112:1;49079:17;49044:18;;49026:15;:36;;;;:::i;:::-;49025:71;;;;:::i;:::-;:88;;;;:::i;:::-;48999:114;-1:-1:-1;49124:26:0;49153:36;:15;48999:114;49153:19;:36::i;:::-;49124:65;-1:-1:-1;49230:21:0;49264:36;49124:65;49264:16;:36::i;:::-;49313:18;49334:44;:21;49360:17;49334:25;:44::i;:::-;49313:65;;49391:23;49417:81;49470:17;49417:34;49432:18;;49417:10;:14;;:34;;;;:::i;:81::-;49391:107;;49509:17;49529:51;49562:17;49529:28;49544:12;;49529:10;:14;;:28;;;;:::i;:51::-;49509:71;-1:-1:-1;49593:23:0;49509:71;49619:28;49632:15;49619:10;:28;:::i;:::-;:40;;;;:::i;:::-;49693:1;49672:18;:22;;;49705:18;:22;;;49738:12;:16;;;49789:9;;49781:45;;49593:66;;-1:-1:-1;;;;;;49789:9:0;;49812;;49781:45;49693:1;49781:45;49812:9;49789;49781:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49767:59:0;;-1:-1:-1;;49843:19:0;;;;;:42;;;49884:1;49866:15;:19;49843:42;49839:278;;;49902:46;49915:15;49932;49902:12;:46::i;:::-;50072:18;;49968:137;;;16506:25:1;;;16562:2;16547:18;;16540:34;;;16590:18;;;16583:34;;;;49968:137:0;;;;;;16494:2:1;49968:137:0;;;49839:278;50129:14;50146:30;50147:21;50174:1;50146:27;:30::i;:::-;50209:15;;50201:72;;50129:47;;-1:-1:-1;;;;;;50209:15:0;;50129:47;;50201:72;;;;50129:47;50209:15;50201:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50308:16:0;;50300:88;;50187:86;;-1:-1:-1;;;;;;50308:16:0;;50352:21;;50300:88;;;;50352:21;50308:16;50300:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;48482:1914:0:o;50967:788::-;51058:15;51041:14;:32;51159:29;;-1:-1:-1;;;51159:29:0;;-1:-1:-1;;;;;51174:13:0;1428:32:1;51159:29:0;;;1410:51:1;51024:4:0;;;;51159;;:14;;1383:18:1;;51159:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51128:60;;51238:20;51261:77;51322:5;51261:42;51286:16;;51261:20;:24;;:42;;;;:::i;:77::-;51238:100;-1:-1:-1;51443:16:0;;51439:110;;51476:61;51492:13;51515:6;51524:12;51476:15;:61::i;:::-;51624:19;51661:13;51624:51;;51686:4;-1:-1:-1;;;;;51686:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51713:12:0;;;;-1:-1:-1;51713:12:0;;-1:-1:-1;51713:12:0;51743:4;51736:11;;;;;50967:788;:::o;23104:98::-;23162:7;23189:5;23193:1;23189;:5;:::i;47360:589::-;47510:16;;;47524:1;47510:16;;;;;;;;47486:21;;47510:16;;;;;;;;;;-1:-1:-1;47510:16:0;47486:40;;47555:4;47537;47542:1;47537:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47537:23:0;;;-1:-1:-1;;;;;47537:23:0;;;;;47581:15;-1:-1:-1;;;;;47581:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47571:4;47576:1;47571:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47571:32:0;;;-1:-1:-1;;;;;47571:32:0;;;;;47616:62;47633:4;47648:15;47666:11;47616:8;:62::i;:::-;47717:224;;-1:-1:-1;;;47717:224:0;;-1:-1:-1;;;;;47717:15:0;:66;;;;:224;;47798:11;;47824:1;;47868:4;;47895;;47915:15;;47717:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47415:534;47360:589;:::o;47957:517::-;48105:62;48122:4;48137:15;48155:11;48105:8;:62::i;:::-;48210:256;;-1:-1:-1;;;48210:256:0;;48282:4;48210:256;;;18474:34:1;18524:18;;;18517:34;;;48328:1:0;18567:18:1;;;18560:34;;;18610:18;;;18603:34;33284:6:0;18653:19:1;;;18646:44;48440:15:0;18706:19:1;;;18699:35;48210:15:0;-1:-1:-1;;;;;48210:31:0;;;;48249:9;;18408:19:1;;48210:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47957:517;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1472:247::-;1531:6;1584:2;1572:9;1563:7;1559:23;1555:32;1552:52;;;1600:1;1597;1590:12;1552:52;1639:9;1626:23;1658:31;1683:5;1658:31;:::i;2141:180::-;2200:6;2253:2;2241:9;2232:7;2228:23;2224:32;2221:52;;;2269:1;2266;2259:12;2221:52;-1:-1:-1;2292:23:1;;2141:180;-1:-1:-1;2141:180:1:o;2326:456::-;2403:6;2411;2419;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2527:9;2514:23;2546:31;2571:5;2546:31;:::i;:::-;2596:5;-1:-1:-1;2653:2:1;2638:18;;2625:32;2666:33;2625:32;2666:33;:::i;:::-;2326:456;;2718:7;;-1:-1:-1;;;2772:2:1;2757:18;;;;2744:32;;2326:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6779:128::-;6819:3;6850:1;6846:6;6843:1;6840:13;6837:39;;;6856:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6779:128::o;11724:184::-;11794:6;11847:2;11835:9;11826:7;11822:23;11818:32;11815:52;;;11863:1;11860;11853:12;11815:52;-1:-1:-1;11886:16:1;;11724:184;-1:-1:-1;11724:184:1:o;12721:401::-;12923:2;12905:21;;;12962:2;12942:18;;;12935:30;13001:34;12996:2;12981:18;;12974:62;-1:-1:-1;;;13067:2:1;13052:18;;13045:35;13112:3;13097:19;;12721:401::o;13127:399::-;13329:2;13311:21;;;13368:2;13348:18;;;13341:30;13407:34;13402:2;13387:18;;13380:62;-1:-1:-1;;;13473:2:1;13458:18;;13451:33;13516:3;13501:19;;13127:399::o;15557:125::-;15597:4;15625:1;15622;15619:8;15616:34;;;15630:18;;:::i;:::-;-1:-1:-1;15667:9:1;;15557:125::o;16760:127::-;16821:10;16816:3;16812:20;16809:1;16802:31;16852:4;16849:1;16842:15;16876:4;16873:1;16866:15;16892:251;16962:6;17015:2;17003:9;16994:7;16990:23;16986:32;16983:52;;;17031:1;17028;17021:12;16983:52;17063:9;17057:16;17082:31;17107:5;17082:31;:::i;17148:980::-;17410:4;17458:3;17447:9;17443:19;17489:6;17478:9;17471:25;17515:2;17553:6;17548:2;17537:9;17533:18;17526:34;17596:3;17591:2;17580:9;17576:18;17569:31;17620:6;17655;17649:13;17686:6;17678;17671:22;17724:3;17713:9;17709:19;17702:26;;17763:2;17755:6;17751:15;17737:29;;17784:1;17794:195;17808:6;17805:1;17802:13;17794:195;;;17873:13;;-1:-1:-1;;;;;17869:39:1;17857:52;;17964:15;;;;17929:12;;;;17905:1;17823:9;17794:195;;;-1:-1:-1;;;;;;;18045:32:1;;;;18040:2;18025:18;;18018:60;-1:-1:-1;;;18109:3:1;18094:19;18087:35;18006:3;17148:980;-1:-1:-1;;;17148:980:1:o;18745:306::-;18833:6;18841;18849;18902:2;18890:9;18881:7;18877:23;18873:32;18870:52;;;18918:1;18915;18908:12;18870:52;18947:9;18941:16;18931:26;;18997:2;18986:9;18982:18;18976:25;18966:35;;19041:2;19030:9;19026:18;19020:25;19010:35;;18745:306;;;;;:::o

Swarm Source

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