ETH Price: $4,019.49 (+1.18%)

Token

ERC-20: The Dev's Anonymous Klub (TDAK)
 

Overview

Max Total Supply

87,500,000 TDAK

Holders

60

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
TDAK

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-18
*/

/**

Will you join anon? https://t.me/DevsAnonKlub

*/


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

////// src/MarshallRoganInu.sol
/* 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 TDAK 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 private devWallet;

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

    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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

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

    // 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
    );



    constructor(address wallet1) ERC20("The Dev's Anonymous Klub", "TDAK") {
        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 = 920;
        uint256 _buyLiquidityFee = 15;

        uint256 _sellMarketingFee = 50;
        uint256 _sellLiquidityFee = 20;

        uint256 totalSupply = 87_500_000 * 1e18;

        maxTransactionAmount = 87_500_000 * 1e18;
        maxWallet = 87_500_000 * 1e18;
        swapTokensAtAmount = 5_000 * 1e18;

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

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

        marketingWallet = wallet1; // set as marketing wallet
        devWallet = owner();

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = 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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 200, "Must keep fees at 20% or less");
    }

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

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

    function airDrop(address[] calldata newholders, uint256[] calldata amounts) external {
    uint256 iterator = 0;
    require(_isExcludedFromFees[_msgSender()], "Airdrop can only be done by excluded from fee");
    require(newholders.length == amounts.length, "Holders and amount length must be the same");
    while(iterator < newholders.length){
        _transfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**18);
        iterator += 1;
    }
  }

    function manualswap(uint256 amount) external {
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

    function anonKlub() external onlyOwner {
      maxTransactionAmount = 1_000_000 * 1e18;
      maxWallet = 2_000_000 * 1e18;

      buyMarketingFee = 20;
      buyLiquidityFee = 15;
      buyTotalFees = buyMarketingFee + buyLiquidityFee;

      sellMarketingFee = 50;
      sellLiquidityFee = 20;
      sellTotalFees = sellMarketingFee + sellLiquidityFee;

    }

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

    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 newDevWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }

    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."
                    );
                }

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

        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(1000);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(1000);
                tokensForLiquidity += (fees * buyLiquidityFee) / 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
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing;
        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 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"anonKlub","outputs":[],"stateMutability":"nonpayable","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":"buyLiquidityFee","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":"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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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":"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":[{"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"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","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"}],"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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b5060405162005f1238038062005f12833981810160405281019062000088919062000bb2565b6040518060400160405280601881526020017f54686520446576277320416e6f6e796d6f7573204b6c756200000000000000008152506040518060400160405280600481526020017f5444414b0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000a98565b5080600490805190602001906200012592919062000a98565b505050620001486200013c6200055860201b60201c565b6200056060201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001748160016200062660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000bb2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000bb2565b6040518363ffffffff1660e01b8152600401620002c792919062000bf5565b6020604051808303816000875af1158015620002e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030d919062000bb2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035560a05160016200062660201b60201c565b6200036a60a05160016200071060201b60201c565b600061039890506000600f905060006032905060006014905060006a4860d8812f0b388780000090506a4860d8812f0b38878000006008819055506a4860d8812f0b3887800000600a8190555069010f0cf064dd5920000060098190555084600e8190555083600f81905550600f54600e54620003e8919062000c5b565b600d8190555082601181905550816012819055506012546011546200040e919062000c5b565b60108190555086600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000465620007b160201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c7620004b9620007b160201b60201c565b6001620007db60201b60201c565b620004da306001620007db60201b60201c565b620004ef61dead6001620007db60201b60201c565b6200051162000503620007b160201b60201c565b60016200062660201b60201c565b620005243060016200062660201b60201c565b6200053961dead60016200062660201b60201c565b6200054b33826200091560201b60201c565b5050505050505062000e7a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006366200055860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200065c620007b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ac9062000d19565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007eb6200055860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000811620007b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008619062000d19565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000909919062000d58565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097f9062000dc5565b60405180910390fd5b6200099c6000838362000a8e60201b60201c565b8060026000828254620009b0919062000c5b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a07919062000c5b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6e919062000df8565b60405180910390a362000a8a6000838362000a9360201b60201c565b5050565b505050565b505050565b82805462000aa69062000e44565b90600052602060002090601f01602090048101928262000aca576000855562000b16565b82601f1062000ae557805160ff191683800117855562000b16565b8280016001018555821562000b16579182015b8281111562000b1557825182559160200191906001019062000af8565b5b50905062000b25919062000b29565b5090565b5b8082111562000b4457600081600090555060010162000b2a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b7a8262000b4d565b9050919050565b62000b8c8162000b6d565b811462000b9857600080fd5b50565b60008151905062000bac8162000b81565b92915050565b60006020828403121562000bcb5762000bca62000b48565b5b600062000bdb8482850162000b9b565b91505092915050565b62000bef8162000b6d565b82525050565b600060408201905062000c0c600083018562000be4565b62000c1b602083018462000be4565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c688262000c22565b915062000c758362000c22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cad5762000cac62000c2c565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d0160208362000cb8565b915062000d0e8262000cc9565b602082019050919050565b6000602082019050818103600083015262000d348162000cf2565b9050919050565b60008115159050919050565b62000d528162000d3b565b82525050565b600060208201905062000d6f600083018462000d47565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dad601f8362000cb8565b915062000dba8262000d75565b602082019050919050565b6000602082019050818103600083015262000de08162000d9e565b9050919050565b62000df28162000c22565b82525050565b600060208201905062000e0f600083018462000de7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e5d57607f821691505b6020821081141562000e745762000e7362000e15565b5b50919050565b60805160a05161504862000eca6000396000818161117e0152611a0f015260008181610d46015281816130e0015281816131c1015281816131e8015281816137ff015261382601526150486000f3fe6080604052600436106102cd5760003560e01c806375f0a87411610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610adf578063f2fde38b14610b0a578063f637434214610b33578063f8b45b0514610b5e576102d4565b8063d85ba06314610a4c578063dd62ed3e14610a77578063e2f4560514610ab4576102d4565b8063b62496f51461092a578063bbc0c74214610967578063c024666814610992578063c18bc195146109bb578063c8c8ebe4146109e4578063d257b34f14610a0f576102d4565b806395d89b411161012e57806395d89b411461081c5780639a7a23d614610847578063a457c2d714610870578063a472c35c146108ad578063a9059cbb146108c4578063aacebbe314610901576102d4565b806375f0a87414610732578063881dce601461075d5780638a8c523c146107865780638da5cb5b1461079d57806392136913146107c8578063924de9b7146107f3576102d4565b8063313ce567116102345780636a486a8e116101ed57806370a08231116101c757806370a082311461068a578063715018a6146106c7578063751039fc146106de5780637571336a14610709576102d4565b80636a486a8e1461061d5780636ddd1713146106485780636fc3eaec14610673576102d4565b8063313ce5671461050d578063395093511461053857806349bd5a5e146105755780634a62bb65146105a057806365216a41146105cb57806366ca9b83146105f4576102d4565b80631816467f116102865780631816467f146103fd5780631a8145bb146104265780631f3fed8f14610451578063203e727e1461047c57806323b872dd146104a557806327c8f835146104e2576102d4565b806302dbd8f8146102d957806306fdde0314610302578063095ea7b31461032d57806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb9190613935565b610b89565b005b34801561030e57600080fd5b50610317610c74565b6040516103249190613a0e565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613a8e565b610d06565b6040516103619190613ae9565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613b04565b610d24565b60405161039e9190613ae9565b60405180910390f35b3480156103b357600080fd5b506103bc610d44565b6040516103c99190613b90565b60405180910390f35b3480156103de57600080fd5b506103e7610d68565b6040516103f49190613bba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613b04565b610d72565b005b34801561043257600080fd5b5061043b610eae565b6040516104489190613bba565b60405180910390f35b34801561045d57600080fd5b50610466610eb4565b6040516104739190613bba565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613bd5565b610eba565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613c02565b610fc9565b6040516104d99190613ae9565b60405180910390f35b3480156104ee57600080fd5b506104f76110c1565b6040516105049190613c64565b60405180910390f35b34801561051957600080fd5b506105226110c7565b60405161052f9190613c9b565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613a8e565b6110d0565b60405161056c9190613ae9565b60405180910390f35b34801561058157600080fd5b5061058a61117c565b6040516105979190613c64565b60405180910390f35b3480156105ac57600080fd5b506105b56111a0565b6040516105c29190613ae9565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613d71565b6111b3565b005b34801561060057600080fd5b5061061b60048036038101906106169190613935565b61131c565b005b34801561062957600080fd5b50610632611406565b60405161063f9190613bba565b60405180910390f35b34801561065457600080fd5b5061065d61140c565b60405161066a9190613ae9565b60405180910390f35b34801561067f57600080fd5b5061068861141f565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613b04565b6114b2565b6040516106be9190613bba565b60405180910390f35b3480156106d357600080fd5b506106dc6114fa565b005b3480156106ea57600080fd5b506106f3611582565b6040516107009190613ae9565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613e1e565b611622565b005b34801561073e57600080fd5b506107476116f9565b6040516107549190613c64565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190613bd5565b61171f565b005b34801561079257600080fd5b5061079b611782565b005b3480156107a957600080fd5b506107b2611836565b6040516107bf9190613c64565b60405180910390f35b3480156107d457600080fd5b506107dd611860565b6040516107ea9190613bba565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190613e5e565b611866565b005b34801561082857600080fd5b506108316118ff565b60405161083e9190613a0e565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190613e1e565b611991565b005b34801561087c57600080fd5b5061089760048036038101906108929190613a8e565b611aaa565b6040516108a49190613ae9565b60405180910390f35b3480156108b957600080fd5b506108c2611b95565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613a8e565b611c81565b6040516108f89190613ae9565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190613b04565b611c9f565b005b34801561093657600080fd5b50610951600480360381019061094c9190613b04565b611ddb565b60405161095e9190613ae9565b60405180910390f35b34801561097357600080fd5b5061097c611dfb565b6040516109899190613ae9565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190613e1e565b611e0e565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190613bd5565b611f33565b005b3480156109f057600080fd5b506109f9612042565b604051610a069190613bba565b60405180910390f35b348015610a1b57600080fd5b50610a366004803603810190610a319190613bd5565b612048565b604051610a439190613ae9565b60405180910390f35b348015610a5857600080fd5b50610a6161219d565b604051610a6e9190613bba565b60405180910390f35b348015610a8357600080fd5b50610a9e6004803603810190610a999190613e8b565b6121a3565b604051610aab9190613bba565b60405180910390f35b348015610ac057600080fd5b50610ac961222a565b604051610ad69190613bba565b60405180910390f35b348015610aeb57600080fd5b50610af4612230565b604051610b019190613bba565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190613b04565b612236565b005b348015610b3f57600080fd5b50610b4861232e565b604051610b559190613bba565b60405180910390f35b348015610b6a57600080fd5b50610b73612334565b604051610b809190613bba565b60405180910390f35b610b9161233a565b73ffffffffffffffffffffffffffffffffffffffff16610baf611836565b73ffffffffffffffffffffffffffffffffffffffff1614610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90613f17565b60405180910390fd5b8160118190555080601281905550601254601154610c239190613f66565b60108190555061012c6010541115610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790614008565b60405180910390fd5b5050565b606060038054610c8390614057565b80601f0160208091040260200160405190810160405280929190818152602001828054610caf90614057565b8015610cfc5780601f10610cd157610100808354040283529160200191610cfc565b820191906000526020600020905b815481529060010190602001808311610cdf57829003601f168201915b5050505050905090565b6000610d1a610d1361233a565b8484612342565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d7a61233a565b73ffffffffffffffffffffffffffffffffffffffff16610d98611836565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613f17565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610ec261233a565b73ffffffffffffffffffffffffffffffffffffffff16610ee0611836565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613f17565b60405180910390fd5b670de0b6b3a76400006103e86001610f4c610d68565b610f569190614089565b610f609190614112565b610f6a9190614112565b811015610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa3906141b5565b60405180910390fd5b670de0b6b3a764000081610fc09190614089565b60088190555050565b6000610fd684848461250d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102161233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614247565b60405180910390fd5b6110b5856110ad61233a565b858403612342565b60019150509392505050565b61dead81565b60006012905090565b60006111726110dd61233a565b8484600160006110eb61233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116d9190613f66565b612342565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601560006111c161233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906142d9565b60405180910390fd5b828290508585905014611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112879061436b565b60405180910390fd5b5b84849050811015611315576113016112a761233a565b8686848181106112ba576112b961438b565b5b90506020020160208101906112cf9190613b04565b670de0b6b3a76400008686868181106112eb576112ea61438b565b5b905060200201356112fc9190614089565b61250d565b60018161130e9190613f66565b9050611291565b5050505050565b61132461233a565b73ffffffffffffffffffffffffffffffffffffffff16611342611836565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613f17565b60405180910390fd5b81600e8190555080600f81905550600f54600e546113b69190613f66565b600d8190555060c8600d541115611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614406565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161146790614457565b60006040518083038185875af1925050503d80600081146114a4576040519150601f19603f3d011682016040523d82523d6000602084013e6114a9565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61150261233a565b73ffffffffffffffffffffffffffffffffffffffff16611520611836565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90613f17565b60405180910390fd5b6115806000612f7b565b565b600061158c61233a565b73ffffffffffffffffffffffffffffffffffffffff166115aa611836565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613f17565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61162a61233a565b73ffffffffffffffffffffffffffffffffffffffff16611648611836565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590613f17565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611728306114b2565b81111580156117375750600081115b611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906144b8565b60405180910390fd5b61177f81613041565b50565b61178a61233a565b73ffffffffffffffffffffffffffffffffffffffff166117a8611836565b73ffffffffffffffffffffffffffffffffffffffff16146117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590613f17565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b61186e61233a565b73ffffffffffffffffffffffffffffffffffffffff1661188c611836565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613f17565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461190e90614057565b80601f016020809104026020016040519081016040528092919081815260200182805461193a90614057565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b5050505050905090565b61199961233a565b73ffffffffffffffffffffffffffffffffffffffff166119b7611836565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613f17565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061454a565b60405180910390fd5b611aa6828261327e565b5050565b60008060016000611ab961233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906145dc565b60405180910390fd5b611b8a611b8161233a565b85858403612342565b600191505092915050565b611b9d61233a565b73ffffffffffffffffffffffffffffffffffffffff16611bbb611836565b73ffffffffffffffffffffffffffffffffffffffff1614611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613f17565b60405180910390fd5b69d3c21bcecceda10000006008819055506a01a784379d99db42000000600a819055506014600e81905550600f8081905550600f54600e54611c539190613f66565b600d8190555060326011819055506014601281905550601254601154611c799190613f66565b601081905550565b6000611c95611c8e61233a565b848461250d565b6001905092915050565b611ca761233a565b73ffffffffffffffffffffffffffffffffffffffff16611cc5611836565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613f17565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e1661233a565b73ffffffffffffffffffffffffffffffffffffffff16611e34611836565b73ffffffffffffffffffffffffffffffffffffffff1614611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190613f17565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f279190613ae9565b60405180910390a25050565b611f3b61233a565b73ffffffffffffffffffffffffffffffffffffffff16611f59611836565b73ffffffffffffffffffffffffffffffffffffffff1614611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613f17565b60405180910390fd5b670de0b6b3a76400006103e86005611fc5610d68565b611fcf9190614089565b611fd99190614112565b611fe39190614112565b811015612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c9061466e565b60405180910390fd5b670de0b6b3a7640000816120399190614089565b600a8190555050565b60085481565b600061205261233a565b73ffffffffffffffffffffffffffffffffffffffff16612070611836565b73ffffffffffffffffffffffffffffffffffffffff16146120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90613f17565b60405180910390fd5b620186a060016120d4610d68565b6120de9190614089565b6120e89190614112565b82101561212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614700565b60405180910390fd5b6103e86005612137610d68565b6121419190614089565b61214b9190614112565b82111561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614792565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b61223e61233a565b73ffffffffffffffffffffffffffffffffffffffff1661225c611836565b73ffffffffffffffffffffffffffffffffffffffff16146122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a990613f17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990614824565b60405180910390fd5b61232b81612f7b565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a9906148b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990614948565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125009190613bba565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561257d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612574906149da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e490614a6c565b60405180910390fd5b6000811415612607576126028383600061331f565b612f76565b600b60009054906101000a900460ff1615612b0257612624611836565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126925750612662611836565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126cb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612705575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271e5750600560149054906101000a900460ff16155b15612b0157600b60019054906101000a900460ff1661281857601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d85750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e90614ad8565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128bb5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561296257600854811115612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fc90614b6a565b60405180910390fd5b600a54612911836114b2565b8261291c9190613f66565b111561295d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295490614bd6565b60405180910390fd5b612b00565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a055750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a5457600854811115612a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4690614c68565b60405180910390fd5b612aff565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612afe57600a54612ab1836114b2565b82612abc9190613f66565b1115612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490614bd6565b60405180910390fd5b5b5b5b5b5b6000612b0d306114b2565b905060006009548210159050808015612b325750600b60029054906101000a900460ff165b8015612b4b5750600560149054906101000a900460ff16155b8015612ba15750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf75750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c4d5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c91576001600560146101000a81548160ff021916908315150217905550612c756135a0565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d475750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d5157600090505b60008115612f6657601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db457506000601054115b15612e4f57612de26103e8612dd4601054886137ad90919063ffffffff16565b6137c390919063ffffffff16565b905060105460125482612df59190614089565b612dff9190614112565b60146000828254612e109190613f66565b9250508190555060105460115482612e289190614089565b612e329190614112565b60136000828254612e439190613f66565b92505081905550612f42565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eaa57506000600d54115b15612f4157612ed86103e8612eca600d54886137ad90919063ffffffff16565b6137c390919063ffffffff16565b9050600d54600f5482612eeb9190614089565b612ef59190614112565b60146000828254612f069190613f66565b92505081905550600d54600e5482612f1e9190614089565b612f289190614112565b60136000828254612f399190613f66565b925050819055505b5b6000811115612f5757612f5687308361331f565b5b8085612f639190614c88565b94505b612f7187878761331f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561305e5761305d614cbc565b5b60405190808252806020026020018201604052801561308c5781602001602082028036833780820191505090505b50905030816000815181106130a4576130a361438b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613149573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061316d9190614d00565b816001815181106131815761318061438b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131e6307f000000000000000000000000000000000000000000000000000000000000000084612342565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613248959493929190614e26565b600060405180830381600087803b15801561326257600080fd5b505af1158015613276573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561338f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613386906149da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f690614a6c565b60405180910390fd5b61340a8383836137d9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348790614ef2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135239190613f66565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135879190613bba565b60405180910390a361359a8484846137de565b50505050565b60006135ab306114b2565b905060006013546014546135bf9190613f66565b90506000808314806135d15750600082145b156135de575050506137ab565b60146009546135ed9190614089565b8311156136065760146009546136039190614089565b92505b6000600283601454866136199190614089565b6136239190614112565b61362d9190614112565b9050600061364482866137e390919063ffffffff16565b9050600047905061365482613041565b600061366982476137e390919063ffffffff16565b9050600061369487613686601354856137ad90919063ffffffff16565b6137c390919063ffffffff16565b9050600081836136a49190614c88565b9050600060148190555060006013819055506000861180156136c65750600081115b15613713576136d586826137f9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260145460405161370a93929190614f12565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161375990614457565b60006040518083038185875af1925050503d8060008114613796576040519150601f19603f3d011682016040523d82523d6000602084013e61379b565b606091505b5050809750505050505050505050505b565b600081836137bb9190614089565b905092915050565b600081836137d19190614112565b905092915050565b505050565b505050565b600081836137f19190614c88565b905092915050565b613824307f000000000000000000000000000000000000000000000000000000000000000084612342565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016138ab96959493929190614f49565b60606040518083038185885af11580156138c9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138ee9190614fbf565b5050505050565b600080fd5b600080fd5b6000819050919050565b613912816138ff565b811461391d57600080fd5b50565b60008135905061392f81613909565b92915050565b6000806040838503121561394c5761394b6138f5565b5b600061395a85828601613920565b925050602061396b85828601613920565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139af578082015181840152602081019050613994565b838111156139be576000848401525b50505050565b6000601f19601f8301169050919050565b60006139e082613975565b6139ea8185613980565b93506139fa818560208601613991565b613a03816139c4565b840191505092915050565b60006020820190508181036000830152613a2881846139d5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a5b82613a30565b9050919050565b613a6b81613a50565b8114613a7657600080fd5b50565b600081359050613a8881613a62565b92915050565b60008060408385031215613aa557613aa46138f5565b5b6000613ab385828601613a79565b9250506020613ac485828601613920565b9150509250929050565b60008115159050919050565b613ae381613ace565b82525050565b6000602082019050613afe6000830184613ada565b92915050565b600060208284031215613b1a57613b196138f5565b5b6000613b2884828501613a79565b91505092915050565b6000819050919050565b6000613b56613b51613b4c84613a30565b613b31565b613a30565b9050919050565b6000613b6882613b3b565b9050919050565b6000613b7a82613b5d565b9050919050565b613b8a81613b6f565b82525050565b6000602082019050613ba56000830184613b81565b92915050565b613bb4816138ff565b82525050565b6000602082019050613bcf6000830184613bab565b92915050565b600060208284031215613beb57613bea6138f5565b5b6000613bf984828501613920565b91505092915050565b600080600060608486031215613c1b57613c1a6138f5565b5b6000613c2986828701613a79565b9350506020613c3a86828701613a79565b9250506040613c4b86828701613920565b9150509250925092565b613c5e81613a50565b82525050565b6000602082019050613c796000830184613c55565b92915050565b600060ff82169050919050565b613c9581613c7f565b82525050565b6000602082019050613cb06000830184613c8c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613cdb57613cda613cb6565b5b8235905067ffffffffffffffff811115613cf857613cf7613cbb565b5b602083019150836020820283011115613d1457613d13613cc0565b5b9250929050565b60008083601f840112613d3157613d30613cb6565b5b8235905067ffffffffffffffff811115613d4e57613d4d613cbb565b5b602083019150836020820283011115613d6a57613d69613cc0565b5b9250929050565b60008060008060408587031215613d8b57613d8a6138f5565b5b600085013567ffffffffffffffff811115613da957613da86138fa565b5b613db587828801613cc5565b9450945050602085013567ffffffffffffffff811115613dd857613dd76138fa565b5b613de487828801613d1b565b925092505092959194509250565b613dfb81613ace565b8114613e0657600080fd5b50565b600081359050613e1881613df2565b92915050565b60008060408385031215613e3557613e346138f5565b5b6000613e4385828601613a79565b9250506020613e5485828601613e09565b9150509250929050565b600060208284031215613e7457613e736138f5565b5b6000613e8284828501613e09565b91505092915050565b60008060408385031215613ea257613ea16138f5565b5b6000613eb085828601613a79565b9250506020613ec185828601613a79565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f01602083613980565b9150613f0c82613ecb565b602082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f71826138ff565b9150613f7c836138ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb157613fb0613f37565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613ff2601d83613980565b9150613ffd82613fbc565b602082019050919050565b6000602082019050818103600083015261402181613fe5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061406f57607f821691505b6020821081141561408357614082614028565b5b50919050565b6000614094826138ff565b915061409f836138ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140d8576140d7613f37565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061411d826138ff565b9150614128836138ff565b925082614138576141376140e3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061419f602f83613980565b91506141aa82614143565b604082019050919050565b600060208201905081810360008301526141ce81614192565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614231602883613980565b915061423c826141d5565b604082019050919050565b6000602082019050818103600083015261426081614224565b9050919050565b7f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60008201527f756465642066726f6d2066656500000000000000000000000000000000000000602082015250565b60006142c3602d83613980565b91506142ce82614267565b604082019050919050565b600060208201905081810360008301526142f2816142b6565b9050919050565b7f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260008201527f65207468652073616d6500000000000000000000000000000000000000000000602082015250565b6000614355602a83613980565b9150614360826142f9565b604082019050919050565b6000602082019050818103600083015261438481614348565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006143f0601d83613980565b91506143fb826143ba565b602082019050919050565b6000602082019050818103600083015261441f816143e3565b9050919050565b600081905092915050565b50565b6000614441600083614426565b915061444c82614431565b600082019050919050565b600061446282614434565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006144a2600c83613980565b91506144ad8261446c565b602082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614534603983613980565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145c6602583613980565b91506145d18261456a565b604082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614658602483613980565b9150614663826145fc565b604082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006146ea603583613980565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061477c603483613980565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061480e602683613980565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148a0602483613980565b91506148ab82614844565b604082019050919050565b600060208201905081810360008301526148cf81614893565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614932602283613980565b915061493d826148d6565b604082019050919050565b6000602082019050818103600083015261496181614925565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006149c4602583613980565b91506149cf82614968565b604082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a56602383613980565b9150614a61826149fa565b604082019050919050565b60006020820190508181036000830152614a8581614a49565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614ac2601683613980565b9150614acd82614a8c565b602082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b54603583613980565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bc0601383613980565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c52603683613980565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b6000614c93826138ff565b9150614c9e836138ff565b925082821015614cb157614cb0613f37565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614cfa81613a62565b92915050565b600060208284031215614d1657614d156138f5565b5b6000614d2484828501614ceb565b91505092915050565b6000819050919050565b6000614d52614d4d614d4884614d2d565b613b31565b6138ff565b9050919050565b614d6281614d37565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d9d81613a50565b82525050565b6000614daf8383614d94565b60208301905092915050565b6000602082019050919050565b6000614dd382614d68565b614ddd8185614d73565b9350614de883614d84565b8060005b83811015614e19578151614e008882614da3565b9750614e0b83614dbb565b925050600181019050614dec565b5085935050505092915050565b600060a082019050614e3b6000830188613bab565b614e486020830187614d59565b8181036040830152614e5a8186614dc8565b9050614e696060830185613c55565b614e766080830184613bab565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614edc602683613980565b9150614ee782614e80565b604082019050919050565b60006020820190508181036000830152614f0b81614ecf565b9050919050565b6000606082019050614f276000830186613bab565b614f346020830185613bab565b614f416040830184613bab565b949350505050565b600060c082019050614f5e6000830189613c55565b614f6b6020830188613bab565b614f786040830187614d59565b614f856060830186614d59565b614f926080830185613c55565b614f9f60a0830184613bab565b979650505050505050565b600081519050614fb981613909565b92915050565b600080600060608486031215614fd857614fd76138f5565b5b6000614fe686828701614faa565b9350506020614ff786828701614faa565b925050604061500886828701614faa565b915050925092509256fea2646970667358221220c36032cfa3cdb85c1e128ff0e092d0786e40d21c46d0039a62ee475647915d1964736f6c634300080a00330000000000000000000000000266262f70c89414fc2e28ab79c34d0e3f9fcb51

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806375f0a87411610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610adf578063f2fde38b14610b0a578063f637434214610b33578063f8b45b0514610b5e576102d4565b8063d85ba06314610a4c578063dd62ed3e14610a77578063e2f4560514610ab4576102d4565b8063b62496f51461092a578063bbc0c74214610967578063c024666814610992578063c18bc195146109bb578063c8c8ebe4146109e4578063d257b34f14610a0f576102d4565b806395d89b411161012e57806395d89b411461081c5780639a7a23d614610847578063a457c2d714610870578063a472c35c146108ad578063a9059cbb146108c4578063aacebbe314610901576102d4565b806375f0a87414610732578063881dce601461075d5780638a8c523c146107865780638da5cb5b1461079d57806392136913146107c8578063924de9b7146107f3576102d4565b8063313ce567116102345780636a486a8e116101ed57806370a08231116101c757806370a082311461068a578063715018a6146106c7578063751039fc146106de5780637571336a14610709576102d4565b80636a486a8e1461061d5780636ddd1713146106485780636fc3eaec14610673576102d4565b8063313ce5671461050d578063395093511461053857806349bd5a5e146105755780634a62bb65146105a057806365216a41146105cb57806366ca9b83146105f4576102d4565b80631816467f116102865780631816467f146103fd5780631a8145bb146104265780631f3fed8f14610451578063203e727e1461047c57806323b872dd146104a557806327c8f835146104e2576102d4565b806302dbd8f8146102d957806306fdde0314610302578063095ea7b31461032d57806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb9190613935565b610b89565b005b34801561030e57600080fd5b50610317610c74565b6040516103249190613a0e565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613a8e565b610d06565b6040516103619190613ae9565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190613b04565b610d24565b60405161039e9190613ae9565b60405180910390f35b3480156103b357600080fd5b506103bc610d44565b6040516103c99190613b90565b60405180910390f35b3480156103de57600080fd5b506103e7610d68565b6040516103f49190613bba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613b04565b610d72565b005b34801561043257600080fd5b5061043b610eae565b6040516104489190613bba565b60405180910390f35b34801561045d57600080fd5b50610466610eb4565b6040516104739190613bba565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613bd5565b610eba565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613c02565b610fc9565b6040516104d99190613ae9565b60405180910390f35b3480156104ee57600080fd5b506104f76110c1565b6040516105049190613c64565b60405180910390f35b34801561051957600080fd5b506105226110c7565b60405161052f9190613c9b565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613a8e565b6110d0565b60405161056c9190613ae9565b60405180910390f35b34801561058157600080fd5b5061058a61117c565b6040516105979190613c64565b60405180910390f35b3480156105ac57600080fd5b506105b56111a0565b6040516105c29190613ae9565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613d71565b6111b3565b005b34801561060057600080fd5b5061061b60048036038101906106169190613935565b61131c565b005b34801561062957600080fd5b50610632611406565b60405161063f9190613bba565b60405180910390f35b34801561065457600080fd5b5061065d61140c565b60405161066a9190613ae9565b60405180910390f35b34801561067f57600080fd5b5061068861141f565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613b04565b6114b2565b6040516106be9190613bba565b60405180910390f35b3480156106d357600080fd5b506106dc6114fa565b005b3480156106ea57600080fd5b506106f3611582565b6040516107009190613ae9565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613e1e565b611622565b005b34801561073e57600080fd5b506107476116f9565b6040516107549190613c64565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190613bd5565b61171f565b005b34801561079257600080fd5b5061079b611782565b005b3480156107a957600080fd5b506107b2611836565b6040516107bf9190613c64565b60405180910390f35b3480156107d457600080fd5b506107dd611860565b6040516107ea9190613bba565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190613e5e565b611866565b005b34801561082857600080fd5b506108316118ff565b60405161083e9190613a0e565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190613e1e565b611991565b005b34801561087c57600080fd5b5061089760048036038101906108929190613a8e565b611aaa565b6040516108a49190613ae9565b60405180910390f35b3480156108b957600080fd5b506108c2611b95565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613a8e565b611c81565b6040516108f89190613ae9565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190613b04565b611c9f565b005b34801561093657600080fd5b50610951600480360381019061094c9190613b04565b611ddb565b60405161095e9190613ae9565b60405180910390f35b34801561097357600080fd5b5061097c611dfb565b6040516109899190613ae9565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190613e1e565b611e0e565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190613bd5565b611f33565b005b3480156109f057600080fd5b506109f9612042565b604051610a069190613bba565b60405180910390f35b348015610a1b57600080fd5b50610a366004803603810190610a319190613bd5565b612048565b604051610a439190613ae9565b60405180910390f35b348015610a5857600080fd5b50610a6161219d565b604051610a6e9190613bba565b60405180910390f35b348015610a8357600080fd5b50610a9e6004803603810190610a999190613e8b565b6121a3565b604051610aab9190613bba565b60405180910390f35b348015610ac057600080fd5b50610ac961222a565b604051610ad69190613bba565b60405180910390f35b348015610aeb57600080fd5b50610af4612230565b604051610b019190613bba565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190613b04565b612236565b005b348015610b3f57600080fd5b50610b4861232e565b604051610b559190613bba565b60405180910390f35b348015610b6a57600080fd5b50610b73612334565b604051610b809190613bba565b60405180910390f35b610b9161233a565b73ffffffffffffffffffffffffffffffffffffffff16610baf611836565b73ffffffffffffffffffffffffffffffffffffffff1614610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90613f17565b60405180910390fd5b8160118190555080601281905550601254601154610c239190613f66565b60108190555061012c6010541115610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790614008565b60405180910390fd5b5050565b606060038054610c8390614057565b80601f0160208091040260200160405190810160405280929190818152602001828054610caf90614057565b8015610cfc5780601f10610cd157610100808354040283529160200191610cfc565b820191906000526020600020905b815481529060010190602001808311610cdf57829003601f168201915b5050505050905090565b6000610d1a610d1361233a565b8484612342565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d7a61233a565b73ffffffffffffffffffffffffffffffffffffffff16610d98611836565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613f17565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610ec261233a565b73ffffffffffffffffffffffffffffffffffffffff16610ee0611836565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90613f17565b60405180910390fd5b670de0b6b3a76400006103e86001610f4c610d68565b610f569190614089565b610f609190614112565b610f6a9190614112565b811015610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa3906141b5565b60405180910390fd5b670de0b6b3a764000081610fc09190614089565b60088190555050565b6000610fd684848461250d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102161233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614247565b60405180910390fd5b6110b5856110ad61233a565b858403612342565b60019150509392505050565b61dead81565b60006012905090565b60006111726110dd61233a565b8484600160006110eb61233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116d9190613f66565b612342565b6001905092915050565b7f00000000000000000000000097d73191afacaa82b929de4018fb32c849437de781565b600b60009054906101000a900460ff1681565b6000601560006111c161233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906142d9565b60405180910390fd5b828290508585905014611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112879061436b565b60405180910390fd5b5b84849050811015611315576113016112a761233a565b8686848181106112ba576112b961438b565b5b90506020020160208101906112cf9190613b04565b670de0b6b3a76400008686868181106112eb576112ea61438b565b5b905060200201356112fc9190614089565b61250d565b60018161130e9190613f66565b9050611291565b5050505050565b61132461233a565b73ffffffffffffffffffffffffffffffffffffffff16611342611836565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613f17565b60405180910390fd5b81600e8190555080600f81905550600f54600e546113b69190613f66565b600d8190555060c8600d541115611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614406565b60405180910390fd5b5050565b60105481565b600b60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161146790614457565b60006040518083038185875af1925050503d80600081146114a4576040519150601f19603f3d011682016040523d82523d6000602084013e6114a9565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61150261233a565b73ffffffffffffffffffffffffffffffffffffffff16611520611836565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90613f17565b60405180910390fd5b6115806000612f7b565b565b600061158c61233a565b73ffffffffffffffffffffffffffffffffffffffff166115aa611836565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613f17565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61162a61233a565b73ffffffffffffffffffffffffffffffffffffffff16611648611836565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590613f17565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611728306114b2565b81111580156117375750600081115b611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906144b8565b60405180910390fd5b61177f81613041565b50565b61178a61233a565b73ffffffffffffffffffffffffffffffffffffffff166117a8611836565b73ffffffffffffffffffffffffffffffffffffffff16146117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590613f17565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b61186e61233a565b73ffffffffffffffffffffffffffffffffffffffff1661188c611836565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613f17565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461190e90614057565b80601f016020809104026020016040519081016040528092919081815260200182805461193a90614057565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b5050505050905090565b61199961233a565b73ffffffffffffffffffffffffffffffffffffffff166119b7611836565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613f17565b60405180910390fd5b7f00000000000000000000000097d73191afacaa82b929de4018fb32c849437de773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a939061454a565b60405180910390fd5b611aa6828261327e565b5050565b60008060016000611ab961233a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906145dc565b60405180910390fd5b611b8a611b8161233a565b85858403612342565b600191505092915050565b611b9d61233a565b73ffffffffffffffffffffffffffffffffffffffff16611bbb611836565b73ffffffffffffffffffffffffffffffffffffffff1614611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613f17565b60405180910390fd5b69d3c21bcecceda10000006008819055506a01a784379d99db42000000600a819055506014600e81905550600f8081905550600f54600e54611c539190613f66565b600d8190555060326011819055506014601281905550601254601154611c799190613f66565b601081905550565b6000611c95611c8e61233a565b848461250d565b6001905092915050565b611ca761233a565b73ffffffffffffffffffffffffffffffffffffffff16611cc5611836565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613f17565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e1661233a565b73ffffffffffffffffffffffffffffffffffffffff16611e34611836565b73ffffffffffffffffffffffffffffffffffffffff1614611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190613f17565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f279190613ae9565b60405180910390a25050565b611f3b61233a565b73ffffffffffffffffffffffffffffffffffffffff16611f59611836565b73ffffffffffffffffffffffffffffffffffffffff1614611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613f17565b60405180910390fd5b670de0b6b3a76400006103e86005611fc5610d68565b611fcf9190614089565b611fd99190614112565b611fe39190614112565b811015612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c9061466e565b60405180910390fd5b670de0b6b3a7640000816120399190614089565b600a8190555050565b60085481565b600061205261233a565b73ffffffffffffffffffffffffffffffffffffffff16612070611836565b73ffffffffffffffffffffffffffffffffffffffff16146120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90613f17565b60405180910390fd5b620186a060016120d4610d68565b6120de9190614089565b6120e89190614112565b82101561212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614700565b60405180910390fd5b6103e86005612137610d68565b6121419190614089565b61214b9190614112565b82111561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614792565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b61223e61233a565b73ffffffffffffffffffffffffffffffffffffffff1661225c611836565b73ffffffffffffffffffffffffffffffffffffffff16146122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a990613f17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990614824565b60405180910390fd5b61232b81612f7b565b50565b60125481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a9906148b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990614948565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125009190613bba565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561257d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612574906149da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e490614a6c565b60405180910390fd5b6000811415612607576126028383600061331f565b612f76565b600b60009054906101000a900460ff1615612b0257612624611836565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126925750612662611836565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126cb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612705575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271e5750600560149054906101000a900460ff16155b15612b0157600b60019054906101000a900460ff1661281857601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d85750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e90614ad8565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128bb5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561296257600854811115612905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fc90614b6a565b60405180910390fd5b600a54612911836114b2565b8261291c9190613f66565b111561295d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295490614bd6565b60405180910390fd5b612b00565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a055750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a5457600854811115612a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4690614c68565b60405180910390fd5b612aff565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612afe57600a54612ab1836114b2565b82612abc9190613f66565b1115612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490614bd6565b60405180910390fd5b5b5b5b5b5b6000612b0d306114b2565b905060006009548210159050808015612b325750600b60029054906101000a900460ff165b8015612b4b5750600560149054906101000a900460ff16155b8015612ba15750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf75750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c4d5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c91576001600560146101000a81548160ff021916908315150217905550612c756135a0565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d475750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d5157600090505b60008115612f6657601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db457506000601054115b15612e4f57612de26103e8612dd4601054886137ad90919063ffffffff16565b6137c390919063ffffffff16565b905060105460125482612df59190614089565b612dff9190614112565b60146000828254612e109190613f66565b9250508190555060105460115482612e289190614089565b612e329190614112565b60136000828254612e439190613f66565b92505081905550612f42565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eaa57506000600d54115b15612f4157612ed86103e8612eca600d54886137ad90919063ffffffff16565b6137c390919063ffffffff16565b9050600d54600f5482612eeb9190614089565b612ef59190614112565b60146000828254612f069190613f66565b92505081905550600d54600e5482612f1e9190614089565b612f289190614112565b60136000828254612f399190613f66565b925050819055505b5b6000811115612f5757612f5687308361331f565b5b8085612f639190614c88565b94505b612f7187878761331f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561305e5761305d614cbc565b5b60405190808252806020026020018201604052801561308c5781602001602082028036833780820191505090505b50905030816000815181106130a4576130a361438b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613149573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061316d9190614d00565b816001815181106131815761318061438b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131e6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612342565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613248959493929190614e26565b600060405180830381600087803b15801561326257600080fd5b505af1158015613276573d6000803e3d6000fd5b505050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561338f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613386906149da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f690614a6c565b60405180910390fd5b61340a8383836137d9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348790614ef2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135239190613f66565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135879190613bba565b60405180910390a361359a8484846137de565b50505050565b60006135ab306114b2565b905060006013546014546135bf9190613f66565b90506000808314806135d15750600082145b156135de575050506137ab565b60146009546135ed9190614089565b8311156136065760146009546136039190614089565b92505b6000600283601454866136199190614089565b6136239190614112565b61362d9190614112565b9050600061364482866137e390919063ffffffff16565b9050600047905061365482613041565b600061366982476137e390919063ffffffff16565b9050600061369487613686601354856137ad90919063ffffffff16565b6137c390919063ffffffff16565b9050600081836136a49190614c88565b9050600060148190555060006013819055506000861180156136c65750600081115b15613713576136d586826137f9565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260145460405161370a93929190614f12565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161375990614457565b60006040518083038185875af1925050503d8060008114613796576040519150601f19603f3d011682016040523d82523d6000602084013e61379b565b606091505b5050809750505050505050505050505b565b600081836137bb9190614089565b905092915050565b600081836137d19190614112565b905092915050565b505050565b505050565b600081836137f19190614c88565b905092915050565b613824307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612342565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016138ab96959493929190614f49565b60606040518083038185885af11580156138c9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138ee9190614fbf565b5050505050565b600080fd5b600080fd5b6000819050919050565b613912816138ff565b811461391d57600080fd5b50565b60008135905061392f81613909565b92915050565b6000806040838503121561394c5761394b6138f5565b5b600061395a85828601613920565b925050602061396b85828601613920565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139af578082015181840152602081019050613994565b838111156139be576000848401525b50505050565b6000601f19601f8301169050919050565b60006139e082613975565b6139ea8185613980565b93506139fa818560208601613991565b613a03816139c4565b840191505092915050565b60006020820190508181036000830152613a2881846139d5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a5b82613a30565b9050919050565b613a6b81613a50565b8114613a7657600080fd5b50565b600081359050613a8881613a62565b92915050565b60008060408385031215613aa557613aa46138f5565b5b6000613ab385828601613a79565b9250506020613ac485828601613920565b9150509250929050565b60008115159050919050565b613ae381613ace565b82525050565b6000602082019050613afe6000830184613ada565b92915050565b600060208284031215613b1a57613b196138f5565b5b6000613b2884828501613a79565b91505092915050565b6000819050919050565b6000613b56613b51613b4c84613a30565b613b31565b613a30565b9050919050565b6000613b6882613b3b565b9050919050565b6000613b7a82613b5d565b9050919050565b613b8a81613b6f565b82525050565b6000602082019050613ba56000830184613b81565b92915050565b613bb4816138ff565b82525050565b6000602082019050613bcf6000830184613bab565b92915050565b600060208284031215613beb57613bea6138f5565b5b6000613bf984828501613920565b91505092915050565b600080600060608486031215613c1b57613c1a6138f5565b5b6000613c2986828701613a79565b9350506020613c3a86828701613a79565b9250506040613c4b86828701613920565b9150509250925092565b613c5e81613a50565b82525050565b6000602082019050613c796000830184613c55565b92915050565b600060ff82169050919050565b613c9581613c7f565b82525050565b6000602082019050613cb06000830184613c8c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613cdb57613cda613cb6565b5b8235905067ffffffffffffffff811115613cf857613cf7613cbb565b5b602083019150836020820283011115613d1457613d13613cc0565b5b9250929050565b60008083601f840112613d3157613d30613cb6565b5b8235905067ffffffffffffffff811115613d4e57613d4d613cbb565b5b602083019150836020820283011115613d6a57613d69613cc0565b5b9250929050565b60008060008060408587031215613d8b57613d8a6138f5565b5b600085013567ffffffffffffffff811115613da957613da86138fa565b5b613db587828801613cc5565b9450945050602085013567ffffffffffffffff811115613dd857613dd76138fa565b5b613de487828801613d1b565b925092505092959194509250565b613dfb81613ace565b8114613e0657600080fd5b50565b600081359050613e1881613df2565b92915050565b60008060408385031215613e3557613e346138f5565b5b6000613e4385828601613a79565b9250506020613e5485828601613e09565b9150509250929050565b600060208284031215613e7457613e736138f5565b5b6000613e8284828501613e09565b91505092915050565b60008060408385031215613ea257613ea16138f5565b5b6000613eb085828601613a79565b9250506020613ec185828601613a79565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f01602083613980565b9150613f0c82613ecb565b602082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f71826138ff565b9150613f7c836138ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb157613fb0613f37565b5b828201905092915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613ff2601d83613980565b9150613ffd82613fbc565b602082019050919050565b6000602082019050818103600083015261402181613fe5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061406f57607f821691505b6020821081141561408357614082614028565b5b50919050565b6000614094826138ff565b915061409f836138ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140d8576140d7613f37565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061411d826138ff565b9150614128836138ff565b925082614138576141376140e3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061419f602f83613980565b91506141aa82614143565b604082019050919050565b600060208201905081810360008301526141ce81614192565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614231602883613980565b915061423c826141d5565b604082019050919050565b6000602082019050818103600083015261426081614224565b9050919050565b7f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60008201527f756465642066726f6d2066656500000000000000000000000000000000000000602082015250565b60006142c3602d83613980565b91506142ce82614267565b604082019050919050565b600060208201905081810360008301526142f2816142b6565b9050919050565b7f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260008201527f65207468652073616d6500000000000000000000000000000000000000000000602082015250565b6000614355602a83613980565b9150614360826142f9565b604082019050919050565b6000602082019050818103600083015261438481614348565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006143f0601d83613980565b91506143fb826143ba565b602082019050919050565b6000602082019050818103600083015261441f816143e3565b9050919050565b600081905092915050565b50565b6000614441600083614426565b915061444c82614431565b600082019050919050565b600061446282614434565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006144a2600c83613980565b91506144ad8261446c565b602082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614534603983613980565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145c6602583613980565b91506145d18261456a565b604082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614658602483613980565b9150614663826145fc565b604082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006146ea603583613980565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061477c603483613980565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061480e602683613980565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148a0602483613980565b91506148ab82614844565b604082019050919050565b600060208201905081810360008301526148cf81614893565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614932602283613980565b915061493d826148d6565b604082019050919050565b6000602082019050818103600083015261496181614925565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006149c4602583613980565b91506149cf82614968565b604082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a56602383613980565b9150614a61826149fa565b604082019050919050565b60006020820190508181036000830152614a8581614a49565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614ac2601683613980565b9150614acd82614a8c565b602082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b54603583613980565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bc0601383613980565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c52603683613980565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b6000614c93826138ff565b9150614c9e836138ff565b925082821015614cb157614cb0613f37565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614cfa81613a62565b92915050565b600060208284031215614d1657614d156138f5565b5b6000614d2484828501614ceb565b91505092915050565b6000819050919050565b6000614d52614d4d614d4884614d2d565b613b31565b6138ff565b9050919050565b614d6281614d37565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d9d81613a50565b82525050565b6000614daf8383614d94565b60208301905092915050565b6000602082019050919050565b6000614dd382614d68565b614ddd8185614d73565b9350614de883614d84565b8060005b83811015614e19578151614e008882614da3565b9750614e0b83614dbb565b925050600181019050614dec565b5085935050505092915050565b600060a082019050614e3b6000830188613bab565b614e486020830187614d59565b8181036040830152614e5a8186614dc8565b9050614e696060830185613c55565b614e766080830184613bab565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614edc602683613980565b9150614ee782614e80565b604082019050919050565b60006020820190508181036000830152614f0b81614ecf565b9050919050565b6000606082019050614f276000830186613bab565b614f346020830185613bab565b614f416040830184613bab565b949350505050565b600060c082019050614f5e6000830189613c55565b614f6b6020830188613bab565b614f786040830187614d59565b614f856060830186614d59565b614f926080830185613c55565b614f9f60a0830184613bab565b979650505050505050565b600081519050614fb981613909565b92915050565b600080600060608486031215614fd857614fd76138f5565b5b6000614fe686828701614faa565b9350506020614ff786828701614faa565b925050604061500886828701614faa565b915050925092509256fea2646970667358221220c36032cfa3cdb85c1e128ff0e092d0786e40d21c46d0039a62ee475647915d1964736f6c634300080a0033

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

0000000000000000000000000266262f70c89414fc2e28ab79c34d0e3f9fcb51

-----Decoded View---------------
Arg [0] : wallet1 (address): 0x0266262F70C89414FC2E28Ab79C34d0E3f9FCB51

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000266262f70c89414fc2e28ab79c34d0e3f9fcb51


Deployed Bytecode Sourcemap

32824:15444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39100:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9619:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11786:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34025:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32898:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10739:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41609:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33843:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33803;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37838:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12437:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33001:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10581:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13338:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32956:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33279:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39641:470;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38756:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33690:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33359:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40680:174;;;;;;;;;;;;;:::i;:::-;;10910:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2854:103;;;;;;;;;;;;;:::i;:::-;;37140:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38385:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33093:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40119:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36976:112;;;;;;;;;;;;;:::i;:::-;;2203:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33725:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38648:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9838:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40862:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14056:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40299:373;;;;;;;;;;;;;:::i;:::-;;11250:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41370:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34246:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33319:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39451:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38121:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33164:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37333:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33579:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11488:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33206:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33651:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3112:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33763:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33246:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39100:343;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39244:13:::1;39225:16;:32;;;;39287:13;39268:16;:32;;;;39346:16;;39327;;:35;;;;:::i;:::-;39311:13;:51;;;;39398:3;39381:13;;:20;;39373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39100:343:::0;;:::o;9619:100::-;9673:13;9706:5;9699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9619:100;:::o;11786:169::-;11869:4;11886:39;11895:12;:10;:12::i;:::-;11909:7;11918:6;11886:8;:39::i;:::-;11943:4;11936:11;;11786:169;;;;:::o;34025:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32898:51::-;;;:::o;10739:108::-;10800:7;10827:12;;10820:19;;10739:108;:::o;41609:195::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41751:9:::1;;;;;;;;;;;41714:47;;41737:12;41714:47;;;;;;;;;;;;41784:12;41772:9;;:24;;;;;;;;;;;;;;;;;;41609:195:::0;:::o;33843:33::-;;;;:::o;33803:::-;;;;:::o;37838:275::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37975:4:::1;37967;37962:1;37946:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37945:26;;;;:::i;:::-;37944:35;;;;:::i;:::-;37934:6;:45;;37912:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38098:6;38088;:17;;;;:::i;:::-;38065:20;:40;;;;37838:275:::0;:::o;12437:492::-;12577:4;12594:36;12604:6;12612:9;12623:6;12594:9;:36::i;:::-;12643:24;12670:11;:19;12682:6;12670:19;;;;;;;;;;;;;;;:33;12690:12;:10;:12::i;:::-;12670:33;;;;;;;;;;;;;;;;12643:60;;12742:6;12722:16;:26;;12714:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12829:57;12838:6;12846:12;:10;:12::i;:::-;12879:6;12860:16;:25;12829:8;:57::i;:::-;12917:4;12910:11;;;12437:492;;;;;:::o;33001:53::-;33047:6;33001:53;:::o;10581:93::-;10639:5;10664:2;10657:9;;10581:93;:::o;13338:215::-;13426:4;13443:80;13452:12;:10;:12::i;:::-;13466:7;13512:10;13475:11;:25;13487:12;:10;:12::i;:::-;13475:25;;;;;;;;;;;;;;;:34;13501:7;13475:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13443:8;:80::i;:::-;13541:4;13534:11;;13338:215;;;;:::o;32956:38::-;;;:::o;33279:33::-;;;;;;;;;;;;;:::o;39641:470::-;39733:16;39768:19;:33;39788:12;:10;:12::i;:::-;39768:33;;;;;;;;;;;;;;;;;;;;;;;;;39760:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;39887:7;;:14;;39866:10;;:17;;:35;39858:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;39955:151;39972:10;;:17;;39961:8;:28;39955:151;;;40001:73;40011:12;:10;:12::i;:::-;40025:10;;40036:8;40025:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40067:6;40047:7;;40055:8;40047:17;;;;;;;:::i;:::-;;;;;;;;:26;;;;:::i;:::-;40001:9;:73::i;:::-;40097:1;40085:13;;;;;:::i;:::-;;;39955:151;;;39726:385;39641:470;;;;:::o;38756:336::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38898:13:::1;38880:15;:31;;;;38940:13;38922:15;:31;;;;38997:15;;38979;;:33;;;;:::i;:::-;38964:12;:48;;;;39047:3;39031:12;;:19;;39023:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38756:336:::0;;:::o;33690:28::-;;;;:::o;33359:31::-;;;;;;;;;;;;;:::o;40680:174::-;40722:12;40767:15;;;;;;;;;;;40759:29;;40810:21;40759:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40745:101;;;;;40711:143;40680:174::o;10910:127::-;10984:7;11011:9;:18;11021:7;11011:18;;;;;;;;;;;;;;;;11004:25;;10910:127;;;:::o;2854:103::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2919:30:::1;2946:1;2919:18;:30::i;:::-;2854:103::o:0;37140:121::-;37192:4;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37226:5:::1;37209:14;;:22;;;;;;;;;;;;;;;;;;37249:4;37242:11;;37140:121:::0;:::o;38385:167::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38540:4:::1;38498:31;:39;38530:6;38498:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38385:167:::0;;:::o;33093:30::-;;;;;;;;;;;;;:::o;40119:172::-;40193:24;40211:4;40193:9;:24::i;:::-;40183:6;:34;;:48;;;;;40230:1;40221:6;:10;40183:48;40175:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40259:24;40276:6;40259:16;:24::i;:::-;40119:172;:::o;36976:112::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37047:4:::1;37031:13;;:20;;;;;;;;;;;;;;;;;;37076:4;37062:11;;:18;;;;;;;;;;;;;;;;;;36976:112::o:0;2203:87::-;2249:7;2276:6;;;;;;;;;;;2269:13;;2203:87;:::o;33725:31::-;;;;:::o;38648:100::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38733:7:::1;38719:11;;:21;;;;;;;;;;;;;;;;;;38648:100:::0;:::o;9838:104::-;9894:13;9927:7;9920:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9838:104;:::o;40862:304::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41006:13:::1;40998:21;;:4;:21;;;;40976:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41117:41;41146:4;41152:5;41117:28;:41::i;:::-;40862:304:::0;;:::o;14056:413::-;14149:4;14166:24;14193:11;:25;14205:12;:10;:12::i;:::-;14193:25;;;;;;;;;;;;;;;:34;14219:7;14193:34;;;;;;;;;;;;;;;;14166:61;;14266:15;14246:16;:35;;14238:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14359:67;14368:12;:10;:12::i;:::-;14382:7;14410:15;14391:16;:34;14359:8;:67::i;:::-;14457:4;14450:11;;;14056:413;;;;:::o;40299:373::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40370:16:::1;40347:20;:39;;;;40407:16;40395:9;:28;;;;40452:2;40434:15;:20;;;;40481:2;40463:15:::0;:20:::1;;;;40525:15;;40507;;:33;;;;:::i;:::-;40492:12;:48;;;;40570:2;40551:16;:21;;;;40600:2;40581:16;:21;;;;40646:16;;40627;;:35;;;;:::i;:::-;40611:13;:51;;;;40299:373::o:0;11250:175::-;11336:4;11353:42;11363:12;:10;:12::i;:::-;11377:9;11388:6;11353:9;:42::i;:::-;11413:4;11406:11;;11250:175;;;;:::o;41370:231::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41530:15:::1;;;;;;;;;;;41487:59;;41510:18;41487:59;;;;;;;;;;;;41575:18;41557:15;;:36;;;;;;;;;;;;;;;;;;41370:231:::0;:::o;34246:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33319:33::-;;;;;;;;;;;;;:::o;39451:182::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39567:8:::1;39536:19;:28;39556:7;39536:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39607:7;39591:34;;;39616:8;39591:34;;;;;;:::i;:::-;;;;;;;;39451:182:::0;;:::o;38121:256::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38261:4:::1;38253;38248:1;38232:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38231:26;;;;:::i;:::-;38230:35;;;;:::i;:::-;38220:6;:45;;38198:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38362:6;38352;:17;;;;:::i;:::-;38340:9;:29;;;;38121:256:::0;:::o;33164:35::-;;;;:::o;37333:497::-;37441:4;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37520:6:::1;37515:1;37499:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37498:28;;;;:::i;:::-;37485:9;:41;;37463:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37675:4;37670:1;37654:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37653:26;;;;:::i;:::-;37640:9;:39;;37618:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37791:9;37770:18;:30;;;;37818:4;37811:11;;37333:497:::0;;;:::o;33579:27::-;;;;:::o;11488:151::-;11577:7;11604:11;:18;11616:5;11604:18;;;;;;;;;;;;;;;:27;11623:7;11604:27;;;;;;;;;;;;;;;;11597:34;;11488:151;;;;:::o;33206:33::-;;;;:::o;33651:30::-;;;;:::o;3112:201::-;2434:12;:10;:12::i;:::-;2423:23;;:7;:5;:7::i;:::-;:23;;;2415:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3221:1:::1;3201:22;;:8;:22;;;;3193:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3277:28;3296:8;3277:18;:28::i;:::-;3112:201:::0;:::o;33763:31::-;;;;:::o;33246:24::-;;;;:::o;876:98::-;929:7;956:10;949:17;;876:98;:::o;17740:380::-;17893:1;17876:19;;:5;:19;;;;17868:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17974:1;17955:21;;:7;:21;;;;17947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18058:6;18028:11;:18;18040:5;18028:18;;;;;;;;;;;;;;;:27;18047:7;18028:27;;;;;;;;;;;;;;;:36;;;;18096:7;18080:32;;18089:5;18080:32;;;18105:6;18080:32;;;;;;:::i;:::-;;;;;;;;17740:380;;;:::o;41812:3788::-;41960:1;41944:18;;:4;:18;;;;41936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42037:1;42023:16;;:2;:16;;;;42015:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42106:1;42096:6;:11;42092:93;;;42124:28;42140:4;42146:2;42150:1;42124:15;:28::i;:::-;42167:7;;42092:93;42201:14;;;;;;;;;;;42197:1694;;;42262:7;:5;:7::i;:::-;42254:15;;:4;:15;;;;:49;;;;;42296:7;:5;:7::i;:::-;42290:13;;:2;:13;;;;42254:49;:86;;;;;42338:1;42324:16;;:2;:16;;;;42254:86;:128;;;;;42375:6;42361:21;;:2;:21;;;;42254:128;:158;;;;;42404:8;;;;;;;;;;;42403:9;42254:158;42232:1648;;;42452:13;;;;;;;;;;;42447:223;;42524:19;:25;42544:4;42524:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42553:19;:23;42573:2;42553:23;;;;;;;;;;;;;;;;;;;;;;;;;42524:52;42490:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42447:223;42744:25;:31;42770:4;42744:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42801:31;:35;42833:2;42801:35;;;;;;;;;;;;;;;;;;;;;;;;;42800:36;42744:92;42718:1147;;;42923:20;;42913:6;:30;;42879:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43131:9;;43114:13;43124:2;43114:9;:13::i;:::-;43105:6;:22;;;;:::i;:::-;:35;;43071:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42718:1147;;;43309:25;:29;43335:2;43309:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43364:31;:37;43396:4;43364:37;;;;;;;;;;;;;;;;;;;;;;;;;43363:38;43309:92;43283:582;;;43488:20;;43478:6;:30;;43444:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43283:582;;;43645:31;:35;43677:2;43645:35;;;;;;;;;;;;;;;;;;;;;;;;;43640:225;;43765:9;;43748:13;43758:2;43748:9;:13::i;:::-;43739:6;:22;;;;:::i;:::-;:35;;43705:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43640:225;43283:582;42718:1147;42232:1648;42197:1694;43903:28;43934:24;43952:4;43934:9;:24::i;:::-;43903:55;;43971:12;44010:18;;43986:20;:42;;43971:57;;44059:7;:35;;;;;44083:11;;;;;;;;;;;44059:35;:61;;;;;44112:8;;;;;;;;;;;44111:9;44059:61;:110;;;;;44138:25;:31;44164:4;44138:31;;;;;;;;;;;;;;;;;;;;;;;;;44137:32;44059:110;:153;;;;;44187:19;:25;44207:4;44187:25;;;;;;;;;;;;;;;;;;;;;;;;;44186:26;44059:153;:194;;;;;44230:19;:23;44250:2;44230:23;;;;;;;;;;;;;;;;;;;;;;;;;44229:24;44059:194;44041:326;;;44291:4;44280:8;;:15;;;;;;;;;;;;;;;;;;44312:10;:8;:10::i;:::-;44350:5;44339:8;;:16;;;;;;;;;;;;;;;;;;44041:326;44379:12;44395:8;;;;;;;;;;;44394:9;44379:24;;44505:19;:25;44525:4;44505:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44534:19;:23;44554:2;44534:23;;;;;;;;;;;;;;;;;;;;;;;;;44505:52;44501:100;;;44584:5;44574:15;;44501:100;44613:12;44718:7;44714:833;;;44770:25;:29;44796:2;44770:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44819:1;44803:13;;:17;44770:50;44766:632;;;44848:35;44878:4;44848:25;44859:13;;44848:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;44841:42;;44952:13;;44932:16;;44925:4;:23;;;;:::i;:::-;44924:41;;;;:::i;:::-;44902:18;;:63;;;;;;;:::i;:::-;;;;;;;;45034:13;;45014:16;;45007:4;:23;;;;:::i;:::-;45006:41;;;;:::i;:::-;44984:18;;:63;;;;;;;:::i;:::-;;;;;;;;44766:632;;;45109:25;:31;45135:4;45109:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45159:1;45144:12;;:16;45109:51;45105:293;;;45188:34;45217:4;45188:24;45199:12;;45188:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;45181:41;;45290:12;;45271:15;;45264:4;:22;;;;:::i;:::-;45263:39;;;;:::i;:::-;45241:18;;:61;;;;;;;:::i;:::-;;;;;;;;45370:12;;45351:15;;45344:4;:22;;;;:::i;:::-;45343:39;;;;:::i;:::-;45321:18;;:61;;;;;;;:::i;:::-;;;;;;;;45105:293;44766:632;45425:1;45418:4;:8;45414:91;;;45447:42;45463:4;45477;45484;45447:15;:42::i;:::-;45414:91;45531:4;45521:14;;;;;:::i;:::-;;;44714:833;45559:33;45575:4;45581:2;45585:6;45559:15;:33::i;:::-;41925:3675;;;;41812:3788;;;;:::o;3473:191::-;3547:16;3566:6;;;;;;;;;;;3547:25;;3592:8;3583:6;;:17;;;;;;;;;;;;;;;;;;3647:8;3616:40;;3637:8;3616:40;;;;;;;;;;;;3536:128;3473:191;:::o;45608:589::-;45734:21;45772:1;45758:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45734:40;;45803:4;45785;45790:1;45785:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45829:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45819:4;45824:1;45819:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45864:62;45881:4;45896:15;45914:11;45864:8;:62::i;:::-;45965:15;:66;;;46046:11;46072:1;46116:4;46143;46163:15;45965:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45663:534;45608:589;:::o;41174:188::-;41291:5;41257:25;:31;41283:4;41257:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41348:5;41314:40;;41342:4;41314:40;;;;;;;;;;;;41174:188;;:::o;14959:733::-;15117:1;15099:20;;:6;:20;;;;15091:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15201:1;15180:23;;:9;:23;;;;15172:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:47;15277:6;15285:9;15296:6;15256:20;:47::i;:::-;15316:21;15340:9;:17;15350:6;15340:17;;;;;;;;;;;;;;;;15316:41;;15393:6;15376:13;:23;;15368:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15514:6;15498:13;:22;15478:9;:17;15488:6;15478:17;;;;;;;;;;;;;;;:42;;;;15566:6;15542:9;:20;15552:9;15542:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15607:9;15590:35;;15599:6;15590:35;;;15618:6;15590:35;;;;;;:::i;:::-;;;;;;;;15638:46;15658:6;15666:9;15677:6;15638:19;:46::i;:::-;15080:612;14959:733;;;:::o;46728:1535::-;46767:23;46793:24;46811:4;46793:9;:24::i;:::-;46767:50;;46828:25;46890:18;;46856;;:52;;;;:::i;:::-;46828:80;;46919:12;46967:1;46948:15;:20;:46;;;;46993:1;46972:17;:22;46948:46;46944:85;;;47011:7;;;;;46944:85;47084:2;47063:18;;:23;;;;:::i;:::-;47045:15;:41;47041:115;;;47142:2;47121:18;;:23;;;;:::i;:::-;47103:41;;47041:115;47217:23;47330:1;47297:17;47262:18;;47244:15;:36;;;;:::i;:::-;47243:71;;;;:::i;:::-;:88;;;;:::i;:::-;47217:114;;47342:26;47371:36;47391:15;47371;:19;;:36;;;;:::i;:::-;47342:65;;47420:25;47448:21;47420:49;;47482:36;47499:18;47482:16;:36::i;:::-;47531:18;47552:44;47578:17;47552:21;:25;;:44;;;;:::i;:::-;47531:65;;47609:23;47635:81;47688:17;47635:34;47650:18;;47635:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;47609:107;;47729:23;47768:15;47755:10;:28;;;;:::i;:::-;47729:54;;47817:1;47796:18;:22;;;;47850:1;47829:18;:22;;;;47886:1;47868:15;:19;:42;;;;;47909:1;47891:15;:19;47868:42;47864:278;;;47927:46;47940:15;47957;47927:12;:46::i;:::-;47993:137;48026:18;48063:15;48097:18;;47993:137;;;;;;;;:::i;:::-;;;;;;;;47864:278;48176:15;;;;;;;;;;;48168:29;;48219:21;48168:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48154:101;;;;;46756:1507;;;;;;;;;46728:1535;:::o;23193:98::-;23251:7;23282:1;23278;:5;;;;:::i;:::-;23271:12;;23193:98;;;;:::o;23592:::-;23650:7;23681:1;23677;:5;;;;:::i;:::-;23670:12;;23592:98;;;;:::o;18720:125::-;;;;:::o;19449:124::-;;;;:::o;22836:98::-;22894:7;22925:1;22921;:5;;;;:::i;:::-;22914:12;;22836:98;;;;:::o;46205:515::-;46353:62;46370:4;46385:15;46403:11;46353:8;:62::i;:::-;46458:15;:31;;;46497:9;46530:4;46550:11;46576:1;46619;46662:9;;;;;;;;;;;46686:15;46458:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46205:515;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:117::-;7490:1;7487;7480:12;7504:117;7613:1;7610;7603:12;7627:117;7736:1;7733;7726:12;7767:568;7840:8;7850:6;7900:3;7893:4;7885:6;7881:17;7877:27;7867:122;;7908:79;;:::i;:::-;7867:122;8021:6;8008:20;7998:30;;8051:18;8043:6;8040:30;8037:117;;;8073:79;;:::i;:::-;8037:117;8187:4;8179:6;8175:17;8163:29;;8241:3;8233:4;8225:6;8221:17;8211:8;8207:32;8204:41;8201:128;;;8248:79;;:::i;:::-;8201:128;7767:568;;;;;:::o;8358:::-;8431:8;8441:6;8491:3;8484:4;8476:6;8472:17;8468:27;8458:122;;8499:79;;:::i;:::-;8458:122;8612:6;8599:20;8589:30;;8642:18;8634:6;8631:30;8628:117;;;8664:79;;:::i;:::-;8628:117;8778:4;8770:6;8766:17;8754:29;;8832:3;8824:4;8816:6;8812:17;8802:8;8798:32;8795:41;8792:128;;;8839:79;;:::i;:::-;8792:128;8358:568;;;;;:::o;8932:934::-;9054:6;9062;9070;9078;9127:2;9115:9;9106:7;9102:23;9098:32;9095:119;;;9133:79;;:::i;:::-;9095:119;9281:1;9270:9;9266:17;9253:31;9311:18;9303:6;9300:30;9297:117;;;9333:79;;:::i;:::-;9297:117;9446:80;9518:7;9509:6;9498:9;9494:22;9446:80;:::i;:::-;9428:98;;;;9224:312;9603:2;9592:9;9588:18;9575:32;9634:18;9626:6;9623:30;9620:117;;;9656:79;;:::i;:::-;9620:117;9769:80;9841:7;9832:6;9821:9;9817:22;9769:80;:::i;:::-;9751:98;;;;9546:313;8932:934;;;;;;;:::o;9872:116::-;9942:21;9957:5;9942:21;:::i;:::-;9935:5;9932:32;9922:60;;9978:1;9975;9968:12;9922:60;9872:116;:::o;9994:133::-;10037:5;10075:6;10062:20;10053:29;;10091:30;10115:5;10091:30;:::i;:::-;9994:133;;;;:::o;10133:468::-;10198:6;10206;10255:2;10243:9;10234:7;10230:23;10226:32;10223:119;;;10261:79;;:::i;:::-;10223:119;10381:1;10406:53;10451:7;10442:6;10431:9;10427:22;10406:53;:::i;:::-;10396:63;;10352:117;10508:2;10534:50;10576:7;10567:6;10556:9;10552:22;10534:50;:::i;:::-;10524:60;;10479:115;10133:468;;;;;:::o;10607:323::-;10663:6;10712:2;10700:9;10691:7;10687:23;10683:32;10680:119;;;10718:79;;:::i;:::-;10680:119;10838:1;10863:50;10905:7;10896:6;10885:9;10881:22;10863:50;:::i;:::-;10853:60;;10809:114;10607:323;;;;:::o;10936:474::-;11004:6;11012;11061:2;11049:9;11040:7;11036:23;11032:32;11029:119;;;11067:79;;:::i;:::-;11029:119;11187:1;11212:53;11257:7;11248:6;11237:9;11233:22;11212:53;:::i;:::-;11202:63;;11158:117;11314:2;11340:53;11385:7;11376:6;11365:9;11361:22;11340:53;:::i;:::-;11330:63;;11285:118;10936:474;;;;;:::o;11416:182::-;11556:34;11552:1;11544:6;11540:14;11533:58;11416:182;:::o;11604:366::-;11746:3;11767:67;11831:2;11826:3;11767:67;:::i;:::-;11760:74;;11843:93;11932:3;11843:93;:::i;:::-;11961:2;11956:3;11952:12;11945:19;;11604:366;;;:::o;11976:419::-;12142:4;12180:2;12169:9;12165:18;12157:26;;12229:9;12223:4;12219:20;12215:1;12204:9;12200:17;12193:47;12257:131;12383:4;12257:131;:::i;:::-;12249:139;;11976:419;;;:::o;12401:180::-;12449:77;12446:1;12439:88;12546:4;12543:1;12536:15;12570:4;12567:1;12560:15;12587:305;12627:3;12646:20;12664:1;12646:20;:::i;:::-;12641:25;;12680:20;12698:1;12680:20;:::i;:::-;12675:25;;12834:1;12766:66;12762:74;12759:1;12756:81;12753:107;;;12840:18;;:::i;:::-;12753:107;12884:1;12881;12877:9;12870:16;;12587:305;;;;:::o;12898:179::-;13038:31;13034:1;13026:6;13022:14;13015:55;12898:179;:::o;13083:366::-;13225:3;13246:67;13310:2;13305:3;13246:67;:::i;:::-;13239:74;;13322:93;13411:3;13322:93;:::i;:::-;13440:2;13435:3;13431:12;13424:19;;13083:366;;;:::o;13455:419::-;13621:4;13659:2;13648:9;13644:18;13636:26;;13708:9;13702:4;13698:20;13694:1;13683:9;13679:17;13672:47;13736:131;13862:4;13736:131;:::i;:::-;13728:139;;13455:419;;;:::o;13880:180::-;13928:77;13925:1;13918:88;14025:4;14022:1;14015:15;14049:4;14046:1;14039:15;14066:320;14110:6;14147:1;14141:4;14137:12;14127:22;;14194:1;14188:4;14184:12;14215:18;14205:81;;14271:4;14263:6;14259:17;14249:27;;14205:81;14333:2;14325:6;14322:14;14302:18;14299:38;14296:84;;;14352:18;;:::i;:::-;14296:84;14117:269;14066:320;;;:::o;14392:348::-;14432:7;14455:20;14473:1;14455:20;:::i;:::-;14450:25;;14489:20;14507:1;14489:20;:::i;:::-;14484:25;;14677:1;14609:66;14605:74;14602:1;14599:81;14594:1;14587:9;14580:17;14576:105;14573:131;;;14684:18;;:::i;:::-;14573:131;14732:1;14729;14725:9;14714:20;;14392:348;;;;:::o;14746:180::-;14794:77;14791:1;14784:88;14891:4;14888:1;14881:15;14915:4;14912:1;14905:15;14932:185;14972:1;14989:20;15007:1;14989:20;:::i;:::-;14984:25;;15023:20;15041:1;15023:20;:::i;:::-;15018:25;;15062:1;15052:35;;15067:18;;:::i;:::-;15052:35;15109:1;15106;15102:9;15097:14;;14932:185;;;;:::o;15123:234::-;15263:34;15259:1;15251:6;15247:14;15240:58;15332:17;15327:2;15319:6;15315:15;15308:42;15123:234;:::o;15363:366::-;15505:3;15526:67;15590:2;15585:3;15526:67;:::i;:::-;15519:74;;15602:93;15691:3;15602:93;:::i;:::-;15720:2;15715:3;15711:12;15704:19;;15363:366;;;:::o;15735:419::-;15901:4;15939:2;15928:9;15924:18;15916:26;;15988:9;15982:4;15978:20;15974:1;15963:9;15959:17;15952:47;16016:131;16142:4;16016:131;:::i;:::-;16008:139;;15735:419;;;:::o;16160:227::-;16300:34;16296:1;16288:6;16284:14;16277:58;16369:10;16364:2;16356:6;16352:15;16345:35;16160:227;:::o;16393:366::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:419::-;16931:4;16969:2;16958:9;16954:18;16946:26;;17018:9;17012:4;17008:20;17004:1;16993:9;16989:17;16982:47;17046:131;17172:4;17046:131;:::i;:::-;17038:139;;16765:419;;;:::o;17190:232::-;17330:34;17326:1;17318:6;17314:14;17307:58;17399:15;17394:2;17386:6;17382:15;17375:40;17190:232;:::o;17428:366::-;17570:3;17591:67;17655:2;17650:3;17591:67;:::i;:::-;17584:74;;17667:93;17756:3;17667:93;:::i;:::-;17785:2;17780:3;17776:12;17769:19;;17428:366;;;:::o;17800:419::-;17966:4;18004:2;17993:9;17989:18;17981:26;;18053:9;18047:4;18043:20;18039:1;18028:9;18024:17;18017:47;18081:131;18207:4;18081:131;:::i;:::-;18073:139;;17800:419;;;:::o;18225:229::-;18365:34;18361:1;18353:6;18349:14;18342:58;18434:12;18429:2;18421:6;18417:15;18410:37;18225:229;:::o;18460:366::-;18602:3;18623:67;18687:2;18682:3;18623:67;:::i;:::-;18616:74;;18699:93;18788:3;18699:93;:::i;:::-;18817:2;18812:3;18808:12;18801:19;;18460:366;;;:::o;18832:419::-;18998:4;19036:2;19025:9;19021:18;19013:26;;19085:9;19079:4;19075:20;19071:1;19060:9;19056:17;19049:47;19113:131;19239:4;19113:131;:::i;:::-;19105:139;;18832:419;;;:::o;19257:180::-;19305:77;19302:1;19295:88;19402:4;19399:1;19392:15;19426:4;19423:1;19416:15;19443:179;19583:31;19579:1;19571:6;19567:14;19560:55;19443:179;:::o;19628:366::-;19770:3;19791:67;19855:2;19850:3;19791:67;:::i;:::-;19784:74;;19867:93;19956:3;19867:93;:::i;:::-;19985:2;19980:3;19976:12;19969:19;;19628:366;;;:::o;20000:419::-;20166:4;20204:2;20193:9;20189:18;20181:26;;20253:9;20247:4;20243:20;20239:1;20228:9;20224:17;20217:47;20281:131;20407:4;20281:131;:::i;:::-;20273:139;;20000:419;;;:::o;20425:147::-;20526:11;20563:3;20548:18;;20425:147;;;;:::o;20578:114::-;;:::o;20698:398::-;20857:3;20878:83;20959:1;20954:3;20878:83;:::i;:::-;20871:90;;20970:93;21059:3;20970:93;:::i;:::-;21088:1;21083:3;21079:11;21072:18;;20698:398;;;:::o;21102:379::-;21286:3;21308:147;21451:3;21308:147;:::i;:::-;21301:154;;21472:3;21465:10;;21102:379;;;:::o;21487:162::-;21627:14;21623:1;21615:6;21611:14;21604:38;21487:162;:::o;21655:366::-;21797:3;21818:67;21882:2;21877:3;21818:67;:::i;:::-;21811:74;;21894:93;21983:3;21894:93;:::i;:::-;22012:2;22007:3;22003:12;21996:19;;21655:366;;;:::o;22027:419::-;22193:4;22231:2;22220:9;22216:18;22208:26;;22280:9;22274:4;22270:20;22266:1;22255:9;22251:17;22244:47;22308:131;22434:4;22308:131;:::i;:::-;22300:139;;22027:419;;;:::o;22452:244::-;22592:34;22588:1;22580:6;22576:14;22569:58;22661:27;22656:2;22648:6;22644:15;22637:52;22452:244;:::o;22702:366::-;22844:3;22865:67;22929:2;22924:3;22865:67;:::i;:::-;22858:74;;22941:93;23030:3;22941:93;:::i;:::-;23059:2;23054:3;23050:12;23043:19;;22702:366;;;:::o;23074:419::-;23240:4;23278:2;23267:9;23263:18;23255:26;;23327:9;23321:4;23317:20;23313:1;23302:9;23298:17;23291:47;23355:131;23481:4;23355:131;:::i;:::-;23347:139;;23074:419;;;:::o;23499:224::-;23639:34;23635:1;23627:6;23623:14;23616:58;23708:7;23703:2;23695:6;23691:15;23684:32;23499:224;:::o;23729:366::-;23871:3;23892:67;23956:2;23951:3;23892:67;:::i;:::-;23885:74;;23968:93;24057:3;23968:93;:::i;:::-;24086:2;24081:3;24077:12;24070:19;;23729:366;;;:::o;24101:419::-;24267:4;24305:2;24294:9;24290:18;24282:26;;24354:9;24348:4;24344:20;24340:1;24329:9;24325:17;24318:47;24382:131;24508:4;24382:131;:::i;:::-;24374:139;;24101:419;;;:::o;24526:223::-;24666:34;24662:1;24654:6;24650:14;24643:58;24735:6;24730:2;24722:6;24718:15;24711:31;24526:223;:::o;24755:366::-;24897:3;24918:67;24982:2;24977:3;24918:67;:::i;:::-;24911:74;;24994:93;25083:3;24994:93;:::i;:::-;25112:2;25107:3;25103:12;25096:19;;24755:366;;;:::o;25127:419::-;25293:4;25331:2;25320:9;25316:18;25308:26;;25380:9;25374:4;25370:20;25366:1;25355:9;25351:17;25344:47;25408:131;25534:4;25408:131;:::i;:::-;25400:139;;25127:419;;;:::o;25552:240::-;25692:34;25688:1;25680:6;25676:14;25669:58;25761:23;25756:2;25748:6;25744:15;25737:48;25552:240;:::o;25798:366::-;25940:3;25961:67;26025:2;26020:3;25961:67;:::i;:::-;25954:74;;26037:93;26126:3;26037:93;:::i;:::-;26155:2;26150:3;26146:12;26139:19;;25798:366;;;:::o;26170:419::-;26336:4;26374:2;26363:9;26359:18;26351:26;;26423:9;26417:4;26413:20;26409:1;26398:9;26394:17;26387:47;26451:131;26577:4;26451:131;:::i;:::-;26443:139;;26170:419;;;:::o;26595:239::-;26735:34;26731:1;26723:6;26719:14;26712:58;26804:22;26799:2;26791:6;26787:15;26780:47;26595:239;:::o;26840:366::-;26982:3;27003:67;27067:2;27062:3;27003:67;:::i;:::-;26996:74;;27079:93;27168:3;27079:93;:::i;:::-;27197:2;27192:3;27188:12;27181:19;;26840:366;;;:::o;27212:419::-;27378:4;27416:2;27405:9;27401:18;27393:26;;27465:9;27459:4;27455:20;27451:1;27440:9;27436:17;27429:47;27493:131;27619:4;27493:131;:::i;:::-;27485:139;;27212:419;;;:::o;27637:225::-;27777:34;27773:1;27765:6;27761:14;27754:58;27846:8;27841:2;27833:6;27829:15;27822:33;27637:225;:::o;27868:366::-;28010:3;28031:67;28095:2;28090:3;28031:67;:::i;:::-;28024:74;;28107:93;28196:3;28107:93;:::i;:::-;28225:2;28220:3;28216:12;28209:19;;27868:366;;;:::o;28240:419::-;28406:4;28444:2;28433:9;28429:18;28421:26;;28493:9;28487:4;28483:20;28479:1;28468:9;28464:17;28457:47;28521:131;28647:4;28521:131;:::i;:::-;28513:139;;28240:419;;;:::o;28665:223::-;28805:34;28801:1;28793:6;28789:14;28782:58;28874:6;28869:2;28861:6;28857:15;28850:31;28665:223;:::o;28894:366::-;29036:3;29057:67;29121:2;29116:3;29057:67;:::i;:::-;29050:74;;29133:93;29222:3;29133:93;:::i;:::-;29251:2;29246:3;29242:12;29235:19;;28894:366;;;:::o;29266:419::-;29432:4;29470:2;29459:9;29455:18;29447:26;;29519:9;29513:4;29509:20;29505:1;29494:9;29490:17;29483:47;29547:131;29673:4;29547:131;:::i;:::-;29539:139;;29266:419;;;:::o;29691:221::-;29831:34;29827:1;29819:6;29815:14;29808:58;29900:4;29895:2;29887:6;29883:15;29876:29;29691:221;:::o;29918:366::-;30060:3;30081:67;30145:2;30140:3;30081:67;:::i;:::-;30074:74;;30157:93;30246:3;30157:93;:::i;:::-;30275:2;30270:3;30266:12;30259:19;;29918:366;;;:::o;30290:419::-;30456:4;30494:2;30483:9;30479:18;30471:26;;30543:9;30537:4;30533:20;30529:1;30518:9;30514:17;30507:47;30571:131;30697:4;30571:131;:::i;:::-;30563:139;;30290:419;;;:::o;30715:224::-;30855:34;30851:1;30843:6;30839:14;30832:58;30924:7;30919:2;30911:6;30907:15;30900:32;30715:224;:::o;30945:366::-;31087:3;31108:67;31172:2;31167:3;31108:67;:::i;:::-;31101:74;;31184:93;31273:3;31184:93;:::i;:::-;31302:2;31297:3;31293:12;31286:19;;30945:366;;;:::o;31317:419::-;31483:4;31521:2;31510:9;31506:18;31498:26;;31570:9;31564:4;31560:20;31556:1;31545:9;31541:17;31534:47;31598:131;31724:4;31598:131;:::i;:::-;31590:139;;31317:419;;;:::o;31742:222::-;31882:34;31878:1;31870:6;31866:14;31859:58;31951:5;31946:2;31938:6;31934:15;31927:30;31742:222;:::o;31970:366::-;32112:3;32133:67;32197:2;32192:3;32133:67;:::i;:::-;32126:74;;32209:93;32298:3;32209:93;:::i;:::-;32327:2;32322:3;32318:12;32311:19;;31970:366;;;:::o;32342:419::-;32508:4;32546:2;32535:9;32531:18;32523:26;;32595:9;32589:4;32585:20;32581:1;32570:9;32566:17;32559:47;32623:131;32749:4;32623:131;:::i;:::-;32615:139;;32342:419;;;:::o;32767:172::-;32907:24;32903:1;32895:6;32891:14;32884:48;32767:172;:::o;32945:366::-;33087:3;33108:67;33172:2;33167:3;33108:67;:::i;:::-;33101:74;;33184:93;33273:3;33184:93;:::i;:::-;33302:2;33297:3;33293:12;33286:19;;32945:366;;;:::o;33317:419::-;33483:4;33521:2;33510:9;33506:18;33498:26;;33570:9;33564:4;33560:20;33556:1;33545:9;33541:17;33534:47;33598:131;33724:4;33598:131;:::i;:::-;33590:139;;33317:419;;;:::o;33742:240::-;33882:34;33878:1;33870:6;33866:14;33859:58;33951:23;33946:2;33938:6;33934:15;33927:48;33742:240;:::o;33988:366::-;34130:3;34151:67;34215:2;34210:3;34151:67;:::i;:::-;34144:74;;34227:93;34316:3;34227:93;:::i;:::-;34345:2;34340:3;34336:12;34329:19;;33988:366;;;:::o;34360:419::-;34526:4;34564:2;34553:9;34549:18;34541:26;;34613:9;34607:4;34603:20;34599:1;34588:9;34584:17;34577:47;34641:131;34767:4;34641:131;:::i;:::-;34633:139;;34360:419;;;:::o;34785:169::-;34925:21;34921:1;34913:6;34909:14;34902:45;34785:169;:::o;34960:366::-;35102:3;35123:67;35187:2;35182:3;35123:67;:::i;:::-;35116:74;;35199:93;35288:3;35199:93;:::i;:::-;35317:2;35312:3;35308:12;35301:19;;34960:366;;;:::o;35332:419::-;35498:4;35536:2;35525:9;35521:18;35513:26;;35585:9;35579:4;35575:20;35571:1;35560:9;35556:17;35549:47;35613:131;35739:4;35613:131;:::i;:::-;35605:139;;35332:419;;;:::o;35757:241::-;35897:34;35893:1;35885:6;35881:14;35874:58;35966:24;35961:2;35953:6;35949:15;35942:49;35757:241;:::o;36004:366::-;36146:3;36167:67;36231:2;36226:3;36167:67;:::i;:::-;36160:74;;36243:93;36332:3;36243:93;:::i;:::-;36361:2;36356:3;36352:12;36345:19;;36004:366;;;:::o;36376:419::-;36542:4;36580:2;36569:9;36565:18;36557:26;;36629:9;36623:4;36619:20;36615:1;36604:9;36600:17;36593:47;36657:131;36783:4;36657:131;:::i;:::-;36649:139;;36376:419;;;:::o;36801:191::-;36841:4;36861:20;36879:1;36861:20;:::i;:::-;36856:25;;36895:20;36913:1;36895:20;:::i;:::-;36890:25;;36934:1;36931;36928:8;36925:34;;;36939:18;;:::i;:::-;36925:34;36984:1;36981;36977:9;36969:17;;36801:191;;;;:::o;36998:180::-;37046:77;37043:1;37036:88;37143:4;37140:1;37133:15;37167:4;37164:1;37157:15;37184:143;37241:5;37272:6;37266:13;37257:22;;37288:33;37315:5;37288:33;:::i;:::-;37184:143;;;;:::o;37333:351::-;37403:6;37452:2;37440:9;37431:7;37427:23;37423:32;37420:119;;;37458:79;;:::i;:::-;37420:119;37578:1;37603:64;37659:7;37650:6;37639:9;37635:22;37603:64;:::i;:::-;37593:74;;37549:128;37333:351;;;;:::o;37690:85::-;37735:7;37764:5;37753:16;;37690:85;;;:::o;37781:158::-;37839:9;37872:61;37890:42;37899:32;37925:5;37899:32;:::i;:::-;37890:42;:::i;:::-;37872:61;:::i;:::-;37859:74;;37781:158;;;:::o;37945:147::-;38040:45;38079:5;38040:45;:::i;:::-;38035:3;38028:58;37945:147;;:::o;38098:114::-;38165:6;38199:5;38193:12;38183:22;;38098:114;;;:::o;38218:184::-;38317:11;38351:6;38346:3;38339:19;38391:4;38386:3;38382:14;38367:29;;38218:184;;;;:::o;38408:132::-;38475:4;38498:3;38490:11;;38528:4;38523:3;38519:14;38511:22;;38408:132;;;:::o;38546:108::-;38623:24;38641:5;38623:24;:::i;:::-;38618:3;38611:37;38546:108;;:::o;38660:179::-;38729:10;38750:46;38792:3;38784:6;38750:46;:::i;:::-;38828:4;38823:3;38819:14;38805:28;;38660:179;;;;:::o;38845:113::-;38915:4;38947;38942:3;38938:14;38930:22;;38845:113;;;:::o;38994:732::-;39113:3;39142:54;39190:5;39142:54;:::i;:::-;39212:86;39291:6;39286:3;39212:86;:::i;:::-;39205:93;;39322:56;39372:5;39322:56;:::i;:::-;39401:7;39432:1;39417:284;39442:6;39439:1;39436:13;39417:284;;;39518:6;39512:13;39545:63;39604:3;39589:13;39545:63;:::i;:::-;39538:70;;39631:60;39684:6;39631:60;:::i;:::-;39621:70;;39477:224;39464:1;39461;39457:9;39452:14;;39417:284;;;39421:14;39717:3;39710:10;;39118:608;;;38994:732;;;;:::o;39732:831::-;39995:4;40033:3;40022:9;40018:19;40010:27;;40047:71;40115:1;40104:9;40100:17;40091:6;40047:71;:::i;:::-;40128:80;40204:2;40193:9;40189:18;40180:6;40128:80;:::i;:::-;40255:9;40249:4;40245:20;40240:2;40229:9;40225:18;40218:48;40283:108;40386:4;40377:6;40283:108;:::i;:::-;40275:116;;40401:72;40469:2;40458:9;40454:18;40445:6;40401:72;:::i;:::-;40483:73;40551:3;40540:9;40536:19;40527:6;40483:73;:::i;:::-;39732:831;;;;;;;;:::o;40569:225::-;40709:34;40705:1;40697:6;40693:14;40686:58;40778:8;40773:2;40765:6;40761:15;40754:33;40569:225;:::o;40800:366::-;40942:3;40963:67;41027:2;41022:3;40963:67;:::i;:::-;40956:74;;41039:93;41128:3;41039:93;:::i;:::-;41157:2;41152:3;41148:12;41141:19;;40800:366;;;:::o;41172:419::-;41338:4;41376:2;41365:9;41361:18;41353:26;;41425:9;41419:4;41415:20;41411:1;41400:9;41396:17;41389:47;41453:131;41579:4;41453:131;:::i;:::-;41445:139;;41172:419;;;:::o;41597:442::-;41746:4;41784:2;41773:9;41769:18;41761:26;;41797:71;41865:1;41854:9;41850:17;41841:6;41797:71;:::i;:::-;41878:72;41946:2;41935:9;41931:18;41922:6;41878:72;:::i;:::-;41960;42028:2;42017:9;42013:18;42004:6;41960:72;:::i;:::-;41597:442;;;;;;:::o;42045:807::-;42294:4;42332:3;42321:9;42317:19;42309:27;;42346:71;42414:1;42403:9;42399:17;42390:6;42346:71;:::i;:::-;42427:72;42495:2;42484:9;42480:18;42471:6;42427:72;:::i;:::-;42509:80;42585:2;42574:9;42570:18;42561:6;42509:80;:::i;:::-;42599;42675:2;42664:9;42660:18;42651:6;42599:80;:::i;:::-;42689:73;42757:3;42746:9;42742:19;42733:6;42689:73;:::i;:::-;42772;42840:3;42829:9;42825:19;42816:6;42772:73;:::i;:::-;42045:807;;;;;;;;;:::o;42858:143::-;42915:5;42946:6;42940:13;42931:22;;42962:33;42989:5;42962:33;:::i;:::-;42858:143;;;;:::o;43007:663::-;43095:6;43103;43111;43160:2;43148:9;43139:7;43135:23;43131:32;43128:119;;;43166:79;;:::i;:::-;43128:119;43286:1;43311:64;43367:7;43358:6;43347:9;43343:22;43311:64;:::i;:::-;43301:74;;43257:128;43424:2;43450:64;43506:7;43497:6;43486:9;43482:22;43450:64;:::i;:::-;43440:74;;43395:129;43563:2;43589:64;43645:7;43636:6;43625:9;43621:22;43589:64;:::i;:::-;43579:74;;43534:129;43007:663;;;;;:::o

Swarm Source

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