ETH Price: $2,382.37 (-1.13%)

Token

A quiet place ($SIMPLE)
 

Overview

Max Total Supply

100,000,000 $SIMPLE

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
354,164.885546791299691159 $SIMPLE

Value
$0.00
0xa0717d83645a10D73CE3DFE4f48B052BA19C2322
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:
Simple

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract Simple 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 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
    bool public transferDelayEnabled = true;

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

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

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("A quiet place", "$SIMPLE") {
        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 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 4;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 4;

        uint256 totalSupply = 100000000 * 1e18;

        maxTransactionAmount = 2000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

        devWallet = address(0x71c32173b8f15F1BAd93412E125a877571F2BF1A); // set as dev wallet

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

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

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

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / 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 + tokensForDev;
        bool success;

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f4120717569657420706c616365000000000000000000000000000000000000008152506040518060400160405280600781526020017f2453494d504c450000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000a59565b5080600490805190602001906200011b92919062000a59565b5050506200013e620001326200051960201b60201c565b6200052160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620005e760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000b73565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000b73565b6040518363ffffffff1660e01b8152600401620002bd92919062000bb6565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000b73565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620005e760201b60201c565b6200036060a0516001620006d160201b60201c565b600080600490506000806004905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006007819055506a01a784379d99db42000000600981905550612710600a82620003b4919062000c1c565b620003c0919062000cac565b60088190555084600e8190555083600f81905550600f54600e54620003e6919062000ce4565b600d8190555082601181905550816012819055506012546011546200040c919062000ce4565b6010819055507371c32173b8f15f1bad93412e125a877571f2bf1a600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004896200047b6200077260201b60201c565b60016200079c60201b60201c565b6200049c3060016200079c60201b60201c565b620004b161dead60016200079c60201b60201c565b620004d3620004c56200077260201b60201c565b6001620005e760201b60201c565b620004e6306001620005e760201b60201c565b620004fb61dead6001620005e760201b60201c565b6200050d3382620008d660201b60201c565b50505050505062000f03565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005f76200051960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200061d6200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066d9062000da2565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007ac6200051960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007d26200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200082b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008229062000da2565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008ca919062000de1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009409062000e4e565b60405180910390fd5b6200095d6000838362000a4f60201b60201c565b806002600082825462000971919062000ce4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009c8919062000ce4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a2f919062000e81565b60405180910390a362000a4b6000838362000a5460201b60201c565b5050565b505050565b505050565b82805462000a679062000ecd565b90600052602060002090601f01602090048101928262000a8b576000855562000ad7565b82601f1062000aa657805160ff191683800117855562000ad7565b8280016001018555821562000ad7579182015b8281111562000ad657825182559160200191906001019062000ab9565b5b50905062000ae6919062000aea565b5090565b5b8082111562000b0557600081600090555060010162000aeb565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b3b8262000b0e565b9050919050565b62000b4d8162000b2e565b811462000b5957600080fd5b50565b60008151905062000b6d8162000b42565b92915050565b60006020828403121562000b8c5762000b8b62000b09565b5b600062000b9c8482850162000b5c565b91505092915050565b62000bb08162000b2e565b82525050565b600060408201905062000bcd600083018562000ba5565b62000bdc602083018462000ba5565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c298262000be3565b915062000c368362000be3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c725762000c7162000bed565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cb98262000be3565b915062000cc68362000be3565b92508262000cd95762000cd862000c7d565b5b828204905092915050565b600062000cf18262000be3565b915062000cfe8362000be3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d365762000d3562000bed565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d8a60208362000d41565b915062000d978262000d52565b602082019050919050565b6000602082019050818103600083015262000dbd8162000d7b565b9050919050565b60008115159050919050565b62000ddb8162000dc4565b82525050565b600060208201905062000df8600083018462000dd0565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e36601f8362000d41565b915062000e438262000dfe565b602082019050919050565b6000602082019050818103600083015262000e698162000e27565b9050919050565b62000e7b8162000be3565b82525050565b600060208201905062000e98600083018462000e70565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ee657607f821691505b6020821081141562000efd5762000efc62000e9e565b5b50919050565b60805160a0516147a262000f6160003960008181610e9f01528181611437015261218a015260008181610ba901528181612132015281816130e6015281816131c7015281816131ee0152818161328a01526132b101526147a26000f3fe6080604052600436106102815760003560e01c8063924de9b71161014f578063c18bc195116100c1578063e2f456051161007a578063e2f45605146109d7578063e884f26014610a02578063f11a24d314610a2d578063f2fde38b14610a58578063f637434214610a81578063f8b45b0514610aac57610288565b8063c18bc195146108b3578063c876d0b9146108dc578063c8c8ebe414610907578063d257b34f14610932578063d85ba0631461096f578063dd62ed3e1461099a57610288565b8063a0d82dc511610113578063a0d82dc51461077d578063a457c2d7146107a8578063a9059cbb146107e5578063b62496f514610822578063bbc0c7421461085f578063c02466681461088a57610288565b8063924de9b7146106aa57806395d89b41146106d35780639a7a23d6146106fe5780639c3b4fdc146107275780639fccce321461075257610288565b806349bd5a5e116101f3578063715018a6116101ac578063715018a6146105d2578063751039fc146105e95780637571336a146106145780638a8c523c1461063d5780638da5cb5b146106545780638ea5220f1461067f57610288565b806349bd5a5e146104ac5780634a62bb65146104d75780634fbee193146105025780636a486a8e1461053f5780636ddd17131461056a57806370a082311461059557610288565b80631a8145bb116102455780631a8145bb14610388578063203e727e146103b357806323b872dd146103dc57806327c8f83514610419578063313ce56714610444578063395093511461046f57610288565b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102f55780631694505e1461033257806318160ddd1461035d57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610ad7565b6040516102af9190613419565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906134d4565b610b69565b6040516102ec919061352f565b60405180910390f35b34801561030157600080fd5b5061031c6004803603810190610317919061354a565b610b87565b604051610329919061352f565b60405180910390f35b34801561033e57600080fd5b50610347610ba7565b60405161035491906135d6565b60405180910390f35b34801561036957600080fd5b50610372610bcb565b60405161037f9190613600565b60405180910390f35b34801561039457600080fd5b5061039d610bd5565b6040516103aa9190613600565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061361b565b610bdb565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613648565b610cea565b604051610410919061352f565b60405180910390f35b34801561042557600080fd5b5061042e610de2565b60405161043b91906136aa565b60405180910390f35b34801561045057600080fd5b50610459610de8565b60405161046691906136e1565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906134d4565b610df1565b6040516104a3919061352f565b60405180910390f35b3480156104b857600080fd5b506104c1610e9d565b6040516104ce91906136aa565b60405180910390f35b3480156104e357600080fd5b506104ec610ec1565b6040516104f9919061352f565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061354a565b610ed4565b604051610536919061352f565b60405180910390f35b34801561054b57600080fd5b50610554610f2a565b6040516105619190613600565b60405180910390f35b34801561057657600080fd5b5061057f610f30565b60405161058c919061352f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061354a565b610f43565b6040516105c99190613600565b60405180910390f35b3480156105de57600080fd5b506105e7610f8b565b005b3480156105f557600080fd5b506105fe611013565b60405161060b919061352f565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613728565b6110b3565b005b34801561064957600080fd5b5061065261118a565b005b34801561066057600080fd5b5061066961123e565b60405161067691906136aa565b60405180910390f35b34801561068b57600080fd5b50610694611268565b6040516106a191906136aa565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613768565b61128e565b005b3480156106df57600080fd5b506106e8611327565b6040516106f59190613419565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190613728565b6113b9565b005b34801561073357600080fd5b5061073c6114d2565b6040516107499190613600565b60405180910390f35b34801561075e57600080fd5b506107676114d8565b6040516107749190613600565b60405180910390f35b34801561078957600080fd5b506107926114de565b60405161079f9190613600565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906134d4565b6114e4565b6040516107dc919061352f565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906134d4565b6115cf565b604051610819919061352f565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061354a565b6115ed565b604051610856919061352f565b60405180910390f35b34801561086b57600080fd5b5061087461160d565b604051610881919061352f565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190613728565b611620565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061361b565b611745565b005b3480156108e857600080fd5b506108f1611854565b6040516108fe919061352f565b60405180910390f35b34801561091357600080fd5b5061091c611867565b6040516109299190613600565b60405180910390f35b34801561093e57600080fd5b506109596004803603810190610954919061361b565b61186d565b604051610966919061352f565b60405180910390f35b34801561097b57600080fd5b506109846119c2565b6040516109919190613600565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc9190613795565b6119c8565b6040516109ce9190613600565b60405180910390f35b3480156109e357600080fd5b506109ec611a4f565b6040516109f99190613600565b60405180910390f35b348015610a0e57600080fd5b50610a17611a55565b604051610a24919061352f565b60405180910390f35b348015610a3957600080fd5b50610a42611af5565b604051610a4f9190613600565b60405180910390f35b348015610a6457600080fd5b50610a7f6004803603810190610a7a919061354a565b611afb565b005b348015610a8d57600080fd5b50610a96611bf3565b604051610aa39190613600565b60405180910390f35b348015610ab857600080fd5b50610ac1611bf9565b604051610ace9190613600565b60405180910390f35b606060038054610ae690613804565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290613804565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7d610b76611bff565b8484611c07565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60135481565b610be3611bff565b73ffffffffffffffffffffffffffffffffffffffff16610c0161123e565b73ffffffffffffffffffffffffffffffffffffffff1614610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90613882565b60405180910390fd5b670de0b6b3a76400006103e86001610c6d610bcb565b610c7791906138d1565b610c81919061395a565b610c8b919061395a565b811015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc4906139fd565b60405180910390fd5b670de0b6b3a764000081610ce191906138d1565b60078190555050565b6000610cf7848484611dd2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d42611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613a8f565b60405180910390fd5b610dd685610dce611bff565b858403611c07565b60019150509392505050565b61dead81565b60006012905090565b6000610e93610dfe611bff565b848460016000610e0c611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8e9190613aaf565b611c07565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f93611bff565b73ffffffffffffffffffffffffffffffffffffffff16610fb161123e565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613882565b60405180910390fd5b6110116000612a06565b565b600061101d611bff565b73ffffffffffffffffffffffffffffffffffffffff1661103b61123e565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613882565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6110bb611bff565b73ffffffffffffffffffffffffffffffffffffffff166110d961123e565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613882565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611192611bff565b73ffffffffffffffffffffffffffffffffffffffff166111b061123e565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613882565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611296611bff565b73ffffffffffffffffffffffffffffffffffffffff166112b461123e565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613882565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461133690613804565b80601f016020809104026020016040519081016040528092919081815260200182805461136290613804565b80156113af5780601f10611384576101008083540402835291602001916113af565b820191906000526020600020905b81548152906001019060200180831161139257829003601f168201915b5050505050905090565b6113c1611bff565b73ffffffffffffffffffffffffffffffffffffffff166113df61123e565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613882565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613b77565b60405180910390fd5b6114ce8282612acc565b5050565b600f5481565b60145481565b60125481565b600080600160006114f3611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613c09565b60405180910390fd5b6115c46115bb611bff565b85858403611c07565b600191505092915050565b60006115e36115dc611bff565b8484611dd2565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611628611bff565b73ffffffffffffffffffffffffffffffffffffffff1661164661123e565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613882565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611739919061352f565b60405180910390a25050565b61174d611bff565b73ffffffffffffffffffffffffffffffffffffffff1661176b61123e565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613882565b60405180910390fd5b670de0b6b3a76400006103e860056117d7610bcb565b6117e191906138d1565b6117eb919061395a565b6117f5919061395a565b811015611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613c9b565b60405180910390fd5b670de0b6b3a76400008161184b91906138d1565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b6000611877611bff565b73ffffffffffffffffffffffffffffffffffffffff1661189561123e565b73ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613882565b60405180910390fd5b620186a060016118f9610bcb565b61190391906138d1565b61190d919061395a565b82101561194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613d2d565b60405180910390fd5b6103e8600561195c610bcb565b61196691906138d1565b611970919061395a565b8211156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613dbf565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6000611a5f611bff565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61123e565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613882565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b611b03611bff565b73ffffffffffffffffffffffffffffffffffffffff16611b2161123e565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90613882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613e51565b60405180910390fd5b611bf081612a06565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90613f75565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dc59190613600565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990614007565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990614099565b60405180910390fd5b6000811415611ecc57611ec783836000612b6d565b612a01565b600a60009054906101000a900460ff161561258f57611ee961123e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611f575750611f2761123e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f905750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fca575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fe35750600560149054906101000a900460ff16155b1561258e57600a60019054906101000a900460ff166120dd57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061209d5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390614105565b60405180910390fd5b5b600c60009054906101000a900460ff16156122a5576120fa61123e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561218157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122a45743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061225f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612256906141bd565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123485750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123ef57600754811115612392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123899061424f565b60405180910390fd5b60095461239e83610f43565b826123a99190613aaf565b11156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e1906142bb565b60405180910390fd5b61258d565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124925750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124e1576007548111156124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d39061434d565b60405180910390fd5b61258c565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661258b5760095461253e83610f43565b826125499190613aaf565b111561258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906142bb565b60405180910390fd5b5b5b5b5b5b600061259a30610f43565b9050600060085482101590508080156125bf5750600a60029054906101000a900460ff165b80156125d85750600560149054906101000a900460ff16155b801561262e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126845750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126da5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561271e576001600560146101000a81548160ff021916908315150217905550612702612dee565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d45750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127de57600090505b600081156129f157601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561284157506000601054115b156128db5761286e606461286060105488612ffb90919063ffffffff16565b61301190919063ffffffff16565b90506010546011548261288191906138d1565b61288b919061395a565b6013600082825461289c9190613aaf565b92505081905550601054601254826128b491906138d1565b6128be919061395a565b601460008282546128cf9190613aaf565b925050819055506129cd565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561293657506000600d54115b156129cc576129636064612955600d5488612ffb90919063ffffffff16565b61301190919063ffffffff16565b9050600d54600e548261297691906138d1565b612980919061395a565b601360008282546129919190613aaf565b92505081905550600d54600f54826129a991906138d1565b6129b3919061395a565b601460008282546129c49190613aaf565b925050819055505b5b60008111156129e2576129e1873083612b6d565b5b80856129ee919061436d565b94505b6129fc878787612b6d565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd490614007565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4490614099565b60405180910390fd5b612c58838383613027565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590614413565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d719190613aaf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612dd59190613600565b60405180910390a3612de884848461302c565b50505050565b6000612df930610f43565b90506000601454601354612e0d9190613aaf565b9050600080831480612e1f5750600082145b15612e2c57505050612ff9565b6014600854612e3b91906138d1565b831115612e54576014600854612e5191906138d1565b92505b600060028360135486612e6791906138d1565b612e71919061395a565b612e7b919061395a565b90506000612e92828661303190919063ffffffff16565b90506000479050612ea282613047565b6000612eb7824761303190919063ffffffff16565b90506000612ee287612ed460145485612ffb90919063ffffffff16565b61301190919063ffffffff16565b905060008183612ef2919061436d565b905060006013819055506000601481905550600086118015612f145750600081115b15612f6157612f238682613284565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601354604051612f5893929190614433565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612fa79061449b565b60006040518083038185875af1925050503d8060008114612fe4576040519150601f19603f3d011682016040523d82523d6000602084013e612fe9565b606091505b5050809750505050505050505050505b565b6000818361300991906138d1565b905092915050565b6000818361301f919061395a565b905092915050565b505050565b505050565b6000818361303f919061436d565b905092915050565b6000600267ffffffffffffffff811115613064576130636144b0565b5b6040519080825280602002602001820160405280156130925781602001602082028036833780820191505090505b50905030816000815181106130aa576130a96144df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561314f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131739190614523565b81600181518110613187576131866144df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131ec307f000000000000000000000000000000000000000000000000000000000000000084611c07565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161324e959493929190614649565b600060405180830381600087803b15801561326857600080fd5b505af115801561327c573d6000803e3d6000fd5b505050505050565b6132af307f000000000000000000000000000000000000000000000000000000000000000084611c07565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613336969594939291906146a3565b60606040518083038185885af1158015613354573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906133799190614719565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133ba57808201518184015260208101905061339f565b838111156133c9576000848401525b50505050565b6000601f19601f8301169050919050565b60006133eb82613380565b6133f5818561338b565b935061340581856020860161339c565b61340e816133cf565b840191505092915050565b6000602082019050818103600083015261343381846133e0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061346b82613440565b9050919050565b61347b81613460565b811461348657600080fd5b50565b60008135905061349881613472565b92915050565b6000819050919050565b6134b18161349e565b81146134bc57600080fd5b50565b6000813590506134ce816134a8565b92915050565b600080604083850312156134eb576134ea61343b565b5b60006134f985828601613489565b925050602061350a858286016134bf565b9150509250929050565b60008115159050919050565b61352981613514565b82525050565b60006020820190506135446000830184613520565b92915050565b6000602082840312156135605761355f61343b565b5b600061356e84828501613489565b91505092915050565b6000819050919050565b600061359c61359761359284613440565b613577565b613440565b9050919050565b60006135ae82613581565b9050919050565b60006135c0826135a3565b9050919050565b6135d0816135b5565b82525050565b60006020820190506135eb60008301846135c7565b92915050565b6135fa8161349e565b82525050565b600060208201905061361560008301846135f1565b92915050565b6000602082840312156136315761363061343b565b5b600061363f848285016134bf565b91505092915050565b6000806000606084860312156136615761366061343b565b5b600061366f86828701613489565b935050602061368086828701613489565b9250506040613691868287016134bf565b9150509250925092565b6136a481613460565b82525050565b60006020820190506136bf600083018461369b565b92915050565b600060ff82169050919050565b6136db816136c5565b82525050565b60006020820190506136f660008301846136d2565b92915050565b61370581613514565b811461371057600080fd5b50565b600081359050613722816136fc565b92915050565b6000806040838503121561373f5761373e61343b565b5b600061374d85828601613489565b925050602061375e85828601613713565b9150509250929050565b60006020828403121561377e5761377d61343b565b5b600061378c84828501613713565b91505092915050565b600080604083850312156137ac576137ab61343b565b5b60006137ba85828601613489565b92505060206137cb85828601613489565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381c57607f821691505b602082108114156138305761382f6137d5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386c60208361338b565b915061387782613836565b602082019050919050565b6000602082019050818103600083015261389b8161385f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138dc8261349e565b91506138e78361349e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139205761391f6138a2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139658261349e565b91506139708361349e565b9250826139805761397f61392b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006139e7602f8361338b565b91506139f28261398b565b604082019050919050565b60006020820190508181036000830152613a16816139da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a7960288361338b565b9150613a8482613a1d565b604082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b6000613aba8261349e565b9150613ac58361349e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613afa57613af96138a2565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b6160398361338b565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613bf360258361338b565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613c8560248361338b565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613d1760358361338b565b9150613d2282613cbb565b604082019050919050565b60006020820190508181036000830152613d4681613d0a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613da960348361338b565b9150613db482613d4d565b604082019050919050565b60006020820190508181036000830152613dd881613d9c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e3b60268361338b565b9150613e4682613ddf565b604082019050919050565b60006020820190508181036000830152613e6a81613e2e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ecd60248361338b565b9150613ed882613e71565b604082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5f60228361338b565b9150613f6a82613f03565b604082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ff160258361338b565b9150613ffc82613f95565b604082019050919050565b6000602082019050818103600083015261402081613fe4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061408360238361338b565b915061408e82614027565b604082019050919050565b600060208201905081810360008301526140b281614076565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006140ef60168361338b565b91506140fa826140b9565b602082019050919050565b6000602082019050818103600083015261411e816140e2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006141a760498361338b565b91506141b282614125565b606082019050919050565b600060208201905081810360008301526141d68161419a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061423960358361338b565b9150614244826141dd565b604082019050919050565b600060208201905081810360008301526142688161422c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006142a560138361338b565b91506142b08261426f565b602082019050919050565b600060208201905081810360008301526142d481614298565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061433760368361338b565b9150614342826142db565b604082019050919050565b600060208201905081810360008301526143668161432a565b9050919050565b60006143788261349e565b91506143838361349e565b925082821015614396576143956138a2565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006143fd60268361338b565b9150614408826143a1565b604082019050919050565b6000602082019050818103600083015261442c816143f0565b9050919050565b600060608201905061444860008301866135f1565b61445560208301856135f1565b61446260408301846135f1565b949350505050565b600081905092915050565b50565b600061448560008361446a565b915061449082614475565b600082019050919050565b60006144a682614478565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061451d81613472565b92915050565b6000602082840312156145395761453861343b565b5b60006145478482850161450e565b91505092915050565b6000819050919050565b600061457561457061456b84614550565b613577565b61349e565b9050919050565b6145858161455a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145c081613460565b82525050565b60006145d283836145b7565b60208301905092915050565b6000602082019050919050565b60006145f68261458b565b6146008185614596565b935061460b836145a7565b8060005b8381101561463c57815161462388826145c6565b975061462e836145de565b92505060018101905061460f565b5085935050505092915050565b600060a08201905061465e60008301886135f1565b61466b602083018761457c565b818103604083015261467d81866145eb565b905061468c606083018561369b565b61469960808301846135f1565b9695505050505050565b600060c0820190506146b8600083018961369b565b6146c560208301886135f1565b6146d2604083018761457c565b6146df606083018661457c565b6146ec608083018561369b565b6146f960a08301846135f1565b979650505050505050565b600081519050614713816134a8565b92915050565b6000806000606084860312156147325761473161343b565b5b600061474086828701614704565b935050602061475186828701614704565b925050604061476286828701614704565b915050925092509256fea2646970667358221220c76b23b0a32a42ceaabd15ad5ede839a7fa03af0e930d30544408fdd442308f864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063924de9b71161014f578063c18bc195116100c1578063e2f456051161007a578063e2f45605146109d7578063e884f26014610a02578063f11a24d314610a2d578063f2fde38b14610a58578063f637434214610a81578063f8b45b0514610aac57610288565b8063c18bc195146108b3578063c876d0b9146108dc578063c8c8ebe414610907578063d257b34f14610932578063d85ba0631461096f578063dd62ed3e1461099a57610288565b8063a0d82dc511610113578063a0d82dc51461077d578063a457c2d7146107a8578063a9059cbb146107e5578063b62496f514610822578063bbc0c7421461085f578063c02466681461088a57610288565b8063924de9b7146106aa57806395d89b41146106d35780639a7a23d6146106fe5780639c3b4fdc146107275780639fccce321461075257610288565b806349bd5a5e116101f3578063715018a6116101ac578063715018a6146105d2578063751039fc146105e95780637571336a146106145780638a8c523c1461063d5780638da5cb5b146106545780638ea5220f1461067f57610288565b806349bd5a5e146104ac5780634a62bb65146104d75780634fbee193146105025780636a486a8e1461053f5780636ddd17131461056a57806370a082311461059557610288565b80631a8145bb116102455780631a8145bb14610388578063203e727e146103b357806323b872dd146103dc57806327c8f83514610419578063313ce56714610444578063395093511461046f57610288565b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102f55780631694505e1461033257806318160ddd1461035d57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610ad7565b6040516102af9190613419565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906134d4565b610b69565b6040516102ec919061352f565b60405180910390f35b34801561030157600080fd5b5061031c6004803603810190610317919061354a565b610b87565b604051610329919061352f565b60405180910390f35b34801561033e57600080fd5b50610347610ba7565b60405161035491906135d6565b60405180910390f35b34801561036957600080fd5b50610372610bcb565b60405161037f9190613600565b60405180910390f35b34801561039457600080fd5b5061039d610bd5565b6040516103aa9190613600565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061361b565b610bdb565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613648565b610cea565b604051610410919061352f565b60405180910390f35b34801561042557600080fd5b5061042e610de2565b60405161043b91906136aa565b60405180910390f35b34801561045057600080fd5b50610459610de8565b60405161046691906136e1565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906134d4565b610df1565b6040516104a3919061352f565b60405180910390f35b3480156104b857600080fd5b506104c1610e9d565b6040516104ce91906136aa565b60405180910390f35b3480156104e357600080fd5b506104ec610ec1565b6040516104f9919061352f565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061354a565b610ed4565b604051610536919061352f565b60405180910390f35b34801561054b57600080fd5b50610554610f2a565b6040516105619190613600565b60405180910390f35b34801561057657600080fd5b5061057f610f30565b60405161058c919061352f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061354a565b610f43565b6040516105c99190613600565b60405180910390f35b3480156105de57600080fd5b506105e7610f8b565b005b3480156105f557600080fd5b506105fe611013565b60405161060b919061352f565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613728565b6110b3565b005b34801561064957600080fd5b5061065261118a565b005b34801561066057600080fd5b5061066961123e565b60405161067691906136aa565b60405180910390f35b34801561068b57600080fd5b50610694611268565b6040516106a191906136aa565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613768565b61128e565b005b3480156106df57600080fd5b506106e8611327565b6040516106f59190613419565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190613728565b6113b9565b005b34801561073357600080fd5b5061073c6114d2565b6040516107499190613600565b60405180910390f35b34801561075e57600080fd5b506107676114d8565b6040516107749190613600565b60405180910390f35b34801561078957600080fd5b506107926114de565b60405161079f9190613600565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906134d4565b6114e4565b6040516107dc919061352f565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906134d4565b6115cf565b604051610819919061352f565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061354a565b6115ed565b604051610856919061352f565b60405180910390f35b34801561086b57600080fd5b5061087461160d565b604051610881919061352f565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190613728565b611620565b005b3480156108bf57600080fd5b506108da60048036038101906108d5919061361b565b611745565b005b3480156108e857600080fd5b506108f1611854565b6040516108fe919061352f565b60405180910390f35b34801561091357600080fd5b5061091c611867565b6040516109299190613600565b60405180910390f35b34801561093e57600080fd5b506109596004803603810190610954919061361b565b61186d565b604051610966919061352f565b60405180910390f35b34801561097b57600080fd5b506109846119c2565b6040516109919190613600565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc9190613795565b6119c8565b6040516109ce9190613600565b60405180910390f35b3480156109e357600080fd5b506109ec611a4f565b6040516109f99190613600565b60405180910390f35b348015610a0e57600080fd5b50610a17611a55565b604051610a24919061352f565b60405180910390f35b348015610a3957600080fd5b50610a42611af5565b604051610a4f9190613600565b60405180910390f35b348015610a6457600080fd5b50610a7f6004803603810190610a7a919061354a565b611afb565b005b348015610a8d57600080fd5b50610a96611bf3565b604051610aa39190613600565b60405180910390f35b348015610ab857600080fd5b50610ac1611bf9565b604051610ace9190613600565b60405180910390f35b606060038054610ae690613804565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290613804565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7d610b76611bff565b8484611c07565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60135481565b610be3611bff565b73ffffffffffffffffffffffffffffffffffffffff16610c0161123e565b73ffffffffffffffffffffffffffffffffffffffff1614610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90613882565b60405180910390fd5b670de0b6b3a76400006103e86001610c6d610bcb565b610c7791906138d1565b610c81919061395a565b610c8b919061395a565b811015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc4906139fd565b60405180910390fd5b670de0b6b3a764000081610ce191906138d1565b60078190555050565b6000610cf7848484611dd2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d42611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613a8f565b60405180910390fd5b610dd685610dce611bff565b858403611c07565b60019150509392505050565b61dead81565b60006012905090565b6000610e93610dfe611bff565b848460016000610e0c611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8e9190613aaf565b611c07565b6001905092915050565b7f000000000000000000000000a1dbef80d182e41d2e1c09439db8e43d50a6fe4d81565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f93611bff565b73ffffffffffffffffffffffffffffffffffffffff16610fb161123e565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613882565b60405180910390fd5b6110116000612a06565b565b600061101d611bff565b73ffffffffffffffffffffffffffffffffffffffff1661103b61123e565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613882565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6110bb611bff565b73ffffffffffffffffffffffffffffffffffffffff166110d961123e565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613882565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611192611bff565b73ffffffffffffffffffffffffffffffffffffffff166111b061123e565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613882565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611296611bff565b73ffffffffffffffffffffffffffffffffffffffff166112b461123e565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613882565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461133690613804565b80601f016020809104026020016040519081016040528092919081815260200182805461136290613804565b80156113af5780601f10611384576101008083540402835291602001916113af565b820191906000526020600020905b81548152906001019060200180831161139257829003601f168201915b5050505050905090565b6113c1611bff565b73ffffffffffffffffffffffffffffffffffffffff166113df61123e565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613882565b60405180910390fd5b7f000000000000000000000000a1dbef80d182e41d2e1c09439db8e43d50a6fe4d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613b77565b60405180910390fd5b6114ce8282612acc565b5050565b600f5481565b60145481565b60125481565b600080600160006114f3611bff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613c09565b60405180910390fd5b6115c46115bb611bff565b85858403611c07565b600191505092915050565b60006115e36115dc611bff565b8484611dd2565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611628611bff565b73ffffffffffffffffffffffffffffffffffffffff1661164661123e565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613882565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611739919061352f565b60405180910390a25050565b61174d611bff565b73ffffffffffffffffffffffffffffffffffffffff1661176b61123e565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613882565b60405180910390fd5b670de0b6b3a76400006103e860056117d7610bcb565b6117e191906138d1565b6117eb919061395a565b6117f5919061395a565b811015611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613c9b565b60405180910390fd5b670de0b6b3a76400008161184b91906138d1565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b6000611877611bff565b73ffffffffffffffffffffffffffffffffffffffff1661189561123e565b73ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613882565b60405180910390fd5b620186a060016118f9610bcb565b61190391906138d1565b61190d919061395a565b82101561194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613d2d565b60405180910390fd5b6103e8600561195c610bcb565b61196691906138d1565b611970919061395a565b8211156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613dbf565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6000611a5f611bff565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61123e565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90613882565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b611b03611bff565b73ffffffffffffffffffffffffffffffffffffffff16611b2161123e565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90613882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613e51565b60405180910390fd5b611bf081612a06565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90613f75565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dc59190613600565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3990614007565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990614099565b60405180910390fd5b6000811415611ecc57611ec783836000612b6d565b612a01565b600a60009054906101000a900460ff161561258f57611ee961123e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611f575750611f2761123e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f905750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fca575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fe35750600560149054906101000a900460ff16155b1561258e57600a60019054906101000a900460ff166120dd57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061209d5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390614105565b60405180910390fd5b5b600c60009054906101000a900460ff16156122a5576120fa61123e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561218157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121d957507f000000000000000000000000a1dbef80d182e41d2e1c09439db8e43d50a6fe4d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122a45743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061225f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612256906141bd565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123485750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123ef57600754811115612392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123899061424f565b60405180910390fd5b60095461239e83610f43565b826123a99190613aaf565b11156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e1906142bb565b60405180910390fd5b61258d565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124925750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124e1576007548111156124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d39061434d565b60405180910390fd5b61258c565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661258b5760095461253e83610f43565b826125499190613aaf565b111561258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906142bb565b60405180910390fd5b5b5b5b5b5b600061259a30610f43565b9050600060085482101590508080156125bf5750600a60029054906101000a900460ff165b80156125d85750600560149054906101000a900460ff16155b801561262e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126845750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126da5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561271e576001600560146101000a81548160ff021916908315150217905550612702612dee565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d45750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127de57600090505b600081156129f157601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561284157506000601054115b156128db5761286e606461286060105488612ffb90919063ffffffff16565b61301190919063ffffffff16565b90506010546011548261288191906138d1565b61288b919061395a565b6013600082825461289c9190613aaf565b92505081905550601054601254826128b491906138d1565b6128be919061395a565b601460008282546128cf9190613aaf565b925050819055506129cd565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561293657506000600d54115b156129cc576129636064612955600d5488612ffb90919063ffffffff16565b61301190919063ffffffff16565b9050600d54600e548261297691906138d1565b612980919061395a565b601360008282546129919190613aaf565b92505081905550600d54600f54826129a991906138d1565b6129b3919061395a565b601460008282546129c49190613aaf565b925050819055505b5b60008111156129e2576129e1873083612b6d565b5b80856129ee919061436d565b94505b6129fc878787612b6d565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd490614007565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4490614099565b60405180910390fd5b612c58838383613027565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590614413565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d719190613aaf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612dd59190613600565b60405180910390a3612de884848461302c565b50505050565b6000612df930610f43565b90506000601454601354612e0d9190613aaf565b9050600080831480612e1f5750600082145b15612e2c57505050612ff9565b6014600854612e3b91906138d1565b831115612e54576014600854612e5191906138d1565b92505b600060028360135486612e6791906138d1565b612e71919061395a565b612e7b919061395a565b90506000612e92828661303190919063ffffffff16565b90506000479050612ea282613047565b6000612eb7824761303190919063ffffffff16565b90506000612ee287612ed460145485612ffb90919063ffffffff16565b61301190919063ffffffff16565b905060008183612ef2919061436d565b905060006013819055506000601481905550600086118015612f145750600081115b15612f6157612f238682613284565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601354604051612f5893929190614433565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612fa79061449b565b60006040518083038185875af1925050503d8060008114612fe4576040519150601f19603f3d011682016040523d82523d6000602084013e612fe9565b606091505b5050809750505050505050505050505b565b6000818361300991906138d1565b905092915050565b6000818361301f919061395a565b905092915050565b505050565b505050565b6000818361303f919061436d565b905092915050565b6000600267ffffffffffffffff811115613064576130636144b0565b5b6040519080825280602002602001820160405280156130925781602001602082028036833780820191505090505b50905030816000815181106130aa576130a96144df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561314f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131739190614523565b81600181518110613187576131866144df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c07565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161324e959493929190614649565b600060405180830381600087803b15801561326857600080fd5b505af115801561327c573d6000803e3d6000fd5b505050505050565b6132af307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c07565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613336969594939291906146a3565b60606040518083038185885af1158015613354573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906133799190614719565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133ba57808201518184015260208101905061339f565b838111156133c9576000848401525b50505050565b6000601f19601f8301169050919050565b60006133eb82613380565b6133f5818561338b565b935061340581856020860161339c565b61340e816133cf565b840191505092915050565b6000602082019050818103600083015261343381846133e0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061346b82613440565b9050919050565b61347b81613460565b811461348657600080fd5b50565b60008135905061349881613472565b92915050565b6000819050919050565b6134b18161349e565b81146134bc57600080fd5b50565b6000813590506134ce816134a8565b92915050565b600080604083850312156134eb576134ea61343b565b5b60006134f985828601613489565b925050602061350a858286016134bf565b9150509250929050565b60008115159050919050565b61352981613514565b82525050565b60006020820190506135446000830184613520565b92915050565b6000602082840312156135605761355f61343b565b5b600061356e84828501613489565b91505092915050565b6000819050919050565b600061359c61359761359284613440565b613577565b613440565b9050919050565b60006135ae82613581565b9050919050565b60006135c0826135a3565b9050919050565b6135d0816135b5565b82525050565b60006020820190506135eb60008301846135c7565b92915050565b6135fa8161349e565b82525050565b600060208201905061361560008301846135f1565b92915050565b6000602082840312156136315761363061343b565b5b600061363f848285016134bf565b91505092915050565b6000806000606084860312156136615761366061343b565b5b600061366f86828701613489565b935050602061368086828701613489565b9250506040613691868287016134bf565b9150509250925092565b6136a481613460565b82525050565b60006020820190506136bf600083018461369b565b92915050565b600060ff82169050919050565b6136db816136c5565b82525050565b60006020820190506136f660008301846136d2565b92915050565b61370581613514565b811461371057600080fd5b50565b600081359050613722816136fc565b92915050565b6000806040838503121561373f5761373e61343b565b5b600061374d85828601613489565b925050602061375e85828601613713565b9150509250929050565b60006020828403121561377e5761377d61343b565b5b600061378c84828501613713565b91505092915050565b600080604083850312156137ac576137ab61343b565b5b60006137ba85828601613489565b92505060206137cb85828601613489565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381c57607f821691505b602082108114156138305761382f6137d5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386c60208361338b565b915061387782613836565b602082019050919050565b6000602082019050818103600083015261389b8161385f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138dc8261349e565b91506138e78361349e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139205761391f6138a2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139658261349e565b91506139708361349e565b9250826139805761397f61392b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006139e7602f8361338b565b91506139f28261398b565b604082019050919050565b60006020820190508181036000830152613a16816139da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a7960288361338b565b9150613a8482613a1d565b604082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b6000613aba8261349e565b9150613ac58361349e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613afa57613af96138a2565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b6160398361338b565b9150613b6c82613b05565b604082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613bf360258361338b565b9150613bfe82613b97565b604082019050919050565b60006020820190508181036000830152613c2281613be6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613c8560248361338b565b9150613c9082613c29565b604082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613d1760358361338b565b9150613d2282613cbb565b604082019050919050565b60006020820190508181036000830152613d4681613d0a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613da960348361338b565b9150613db482613d4d565b604082019050919050565b60006020820190508181036000830152613dd881613d9c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e3b60268361338b565b9150613e4682613ddf565b604082019050919050565b60006020820190508181036000830152613e6a81613e2e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ecd60248361338b565b9150613ed882613e71565b604082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5f60228361338b565b9150613f6a82613f03565b604082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ff160258361338b565b9150613ffc82613f95565b604082019050919050565b6000602082019050818103600083015261402081613fe4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061408360238361338b565b915061408e82614027565b604082019050919050565b600060208201905081810360008301526140b281614076565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006140ef60168361338b565b91506140fa826140b9565b602082019050919050565b6000602082019050818103600083015261411e816140e2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006141a760498361338b565b91506141b282614125565b606082019050919050565b600060208201905081810360008301526141d68161419a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061423960358361338b565b9150614244826141dd565b604082019050919050565b600060208201905081810360008301526142688161422c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006142a560138361338b565b91506142b08261426f565b602082019050919050565b600060208201905081810360008301526142d481614298565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061433760368361338b565b9150614342826142db565b604082019050919050565b600060208201905081810360008301526143668161432a565b9050919050565b60006143788261349e565b91506143838361349e565b925082821015614396576143956138a2565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006143fd60268361338b565b9150614408826143a1565b604082019050919050565b6000602082019050818103600083015261442c816143f0565b9050919050565b600060608201905061444860008301866135f1565b61445560208301856135f1565b61446260408301846135f1565b949350505050565b600081905092915050565b50565b600061448560008361446a565b915061449082614475565b600082019050919050565b60006144a682614478565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061451d81613472565b92915050565b6000602082840312156145395761453861343b565b5b60006145478482850161450e565b91505092915050565b6000819050919050565b600061457561457061456b84614550565b613577565b61349e565b9050919050565b6145858161455a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145c081613460565b82525050565b60006145d283836145b7565b60208301905092915050565b6000602082019050919050565b60006145f68261458b565b6146008185614596565b935061460b836145a7565b8060005b8381101561463c57815161462388826145c6565b975061462e836145de565b92505060018101905061460f565b5085935050505092915050565b600060a08201905061465e60008301886135f1565b61466b602083018761457c565b818103604083015261467d81866145eb565b905061468c606083018561369b565b61469960808301846135f1565b9695505050505050565b600060c0820190506146b8600083018961369b565b6146c560208301886135f1565b6146d2604083018761457c565b6146df606083018661457c565b6146ec608083018561369b565b6146f960a08301846135f1565b979650505050505050565b600081519050614713816134a8565b92915050565b6000806000606084860312156147325761473161343b565b5b600061474086828701614704565b935050602061475186828701614704565b925050604061476286828701614704565b915050925092509256fea2646970667358221220c76b23b0a32a42ceaabd15ad5ede839a7fa03af0e930d30544408fdd442308f864736f6c634300080a0033

Deployed Bytecode Sourcemap

32627:13871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33816:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32703:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33600:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37630:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32761:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33046:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39247:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33496:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33126:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;36738:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38178:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36574:112;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32898:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38441:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38739:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33463:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33640:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33569:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34037:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33086:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38549:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37913:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33344:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32931:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37125:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33392:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32973:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36920:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33426:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33531:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33013:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:100;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;33816:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32703:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;33600:33::-;;;;:::o;37630:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37767:4:::1;37759;37754:1;37738:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37737:26;;;;:::i;:::-;37736:35;;;;:::i;:::-;37726:6;:45;;37704:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37890:6;37880;:17;;;;:::i;:::-;37857:20;:40;;;;37630:275:::0;:::o;12373:492::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:57;12774:6;12782:12;:10;:12::i;:::-;12815:6;12796:16;:25;12765:8;:57::i;:::-;12853:4;12846:11;;;12373:492;;;;;:::o;32806:53::-;32852:6;32806:53;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13274:215::-;13362:4;13379:80;13388:12;:10;:12::i;:::-;13402:7;13448:10;13411:11;:25;13423:12;:10;:12::i;:::-;13411:25;;;;;;;;;;;;;;;:34;13437:7;13411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13379:8;:80::i;:::-;13477:4;13470:11;;13274:215;;;;:::o;32761:38::-;;;:::o;33046:33::-;;;;;;;;;;;;;:::o;39247:126::-;39313:4;39337:19;:28;39357:7;39337:28;;;;;;;;;;;;;;;;;;;;;;;;;39330:35;;39247:126;;;:::o;33496:28::-;;;;:::o;33126:31::-;;;;;;;;;;;;;:::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;36738:121::-;36790:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36824:5:::1;36807:14;;:22;;;;;;;;;;;;;;;;;;36847:4;36840:11;;36738:121:::0;:::o;38178:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38333:4:::1;38291:31;:39;38323:6;38291:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38178:167:::0;;:::o;36574:112::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36645:4:::1;36629:13;;:20;;;;;;;;;;;;;;;;;;36674:4;36660:11;;:18;;;;;;;;;;;;;;;;;;36574:112::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;32898:24::-;;;;;;;;;;;;;:::o;38441:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38526:7:::1;38512:11;;:21;;;;;;;;;;;;;;;;;;38441:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;38739:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38883:13:::1;38875:21;;:4;:21;;;;38853:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;38994:41;39023:4;39029:5;38994:28;:41::i;:::-;38739:304:::0;;:::o;33463:24::-;;;;:::o;33640:27::-;;;;:::o;33569:25::-;;;;:::o;13992:413::-;14085:4;14102:24;14129:11;:25;14141:12;:10;:12::i;:::-;14129:25;;;;;;;;;;;;;;;:34;14155:7;14129:34;;;;;;;;;;;;;;;;14102:61;;14202:15;14182:16;:35;;14174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14295:67;14304:12;:10;:12::i;:::-;14318:7;14346:15;14327:16;:34;14295:8;:67::i;:::-;14393:4;14386:11;;;13992:413;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;34037:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33086:33::-;;;;;;;;;;;;;:::o;38549:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38665:8:::1;38634:19;:28;38654:7;38634:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38705:7;38689:34;;;38714:8;38689:34;;;;;;:::i;:::-;;;;;;;;38549:182:::0;;:::o;37913:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38053:4:::1;38045;38040:1;38024:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38023:26;;;;:::i;:::-;38022:35;;;;:::i;:::-;38012:6;:45;;37990:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38154:6;38144;:17;;;;:::i;:::-;38132:9;:29;;;;37913:256:::0;:::o;33344:39::-;;;;;;;;;;;;;:::o;32931:35::-;;;;:::o;37125:497::-;37233:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37312:6:::1;37307:1;37291:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37290:28;;;;:::i;:::-;37277:9;:41;;37255:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37467:4;37462:1;37446:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37445:26;;;;:::i;:::-;37432:9;:39;;37410:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37583:9;37562:18;:30;;;;37610:4;37603:11;;37125:497:::0;;;:::o;33392:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;32973:33::-;;;;:::o;36920:135::-;36980:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37020:5:::1;36997:20;;:28;;;;;;;;;;;;;;;;;;37043:4;37036:11;;36920:135:::0;:::o;33426:30::-;;;;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;;;3129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;33531:31::-;;;;:::o;33013:24::-;;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17676:380::-;17829:1;17812:19;;:5;:19;;;;17804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:1;17891:21;;:7;:21;;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:6;17964:11;:18;17976:5;17964:18;;;;;;;;;;;;;;;:27;17983:7;17964:27;;;;;;;;;;;;;;;:36;;;;18032:7;18016:32;;18025:5;18016:32;;;18041:6;18016:32;;;;;;:::i;:::-;;;;;;;;17676:380;;;:::o;39381:4571::-;39529:1;39513:18;;:4;:18;;;;39505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39606:1;39592:16;;:2;:16;;;;39584:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39675:1;39665:6;:11;39661:93;;;39693:28;39709:4;39715:2;39719:1;39693:15;:28::i;:::-;39736:7;;39661:93;39770:14;;;;;;;;;;;39766:2487;;;39831:7;:5;:7::i;:::-;39823:15;;:4;:15;;;;:49;;;;;39865:7;:5;:7::i;:::-;39859:13;;:2;:13;;;;39823:49;:86;;;;;39907:1;39893:16;;:2;:16;;;;39823:86;:128;;;;;39944:6;39930:21;;:2;:21;;;;39823:128;:158;;;;;39973:8;;;;;;;;;;;39972:9;39823:158;39801:2441;;;40021:13;;;;;;;;;;;40016:223;;40093:19;:25;40113:4;40093:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40122:19;:23;40142:2;40122:23;;;;;;;;;;;;;;;;;;;;;;;;;40093:52;40059:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40016:223;40395:20;;;;;;;;;;;40391:641;;;40476:7;:5;:7::i;:::-;40470:13;;:2;:13;;;;:72;;;;;40526:15;40512:30;;:2;:30;;;;40470:72;:129;;;;;40585:13;40571:28;;:2;:28;;;;40470:129;40440:573;;;40763:12;40688:28;:39;40717:9;40688:39;;;;;;;;;;;;;;;;:87;40650:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;40977:12;40935:28;:39;40964:9;40935:39;;;;;;;;;;;;;;;:54;;;;40440:573;40391:641;41106:25;:31;41132:4;41106:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41163:31;:35;41195:2;41163:35;;;;;;;;;;;;;;;;;;;;;;;;;41162:36;41106:92;41080:1147;;;41285:20;;41275:6;:30;;41241:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41493:9;;41476:13;41486:2;41476:9;:13::i;:::-;41467:6;:22;;;;:::i;:::-;:35;;41433:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41080:1147;;;41671:25;:29;41697:2;41671:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41726:31;:37;41758:4;41726:37;;;;;;;;;;;;;;;;;;;;;;;;;41725:38;41671:92;41645:582;;;41850:20;;41840:6;:30;;41806:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41645:582;;;42007:31;:35;42039:2;42007:35;;;;;;;;;;;;;;;;;;;;;;;;;42002:225;;42127:9;;42110:13;42120:2;42110:9;:13::i;:::-;42101:6;:22;;;;:::i;:::-;:35;;42067:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42002:225;41645:582;41080:1147;39801:2441;39766:2487;42265:28;42296:24;42314:4;42296:9;:24::i;:::-;42265:55;;42333:12;42372:18;;42348:20;:42;;42333:57;;42421:7;:35;;;;;42445:11;;;;;;;;;;;42421:35;:61;;;;;42474:8;;;;;;;;;;;42473:9;42421:61;:110;;;;;42500:25;:31;42526:4;42500:31;;;;;;;;;;;;;;;;;;;;;;;;;42499:32;42421:110;:153;;;;;42549:19;:25;42569:4;42549:25;;;;;;;;;;;;;;;;;;;;;;;;;42548:26;42421:153;:194;;;;;42592:19;:23;42612:2;42592:23;;;;;;;;;;;;;;;;;;;;;;;;;42591:24;42421:194;42403:326;;;42653:4;42642:8;;:15;;;;;;;;;;;;;;;;;;42674:10;:8;:10::i;:::-;42712:5;42701:8;;:16;;;;;;;;;;;;;;;;;;42403:326;42741:12;42757:8;;;;;;;;;;;42756:9;42741:24;;42867:19;:25;42887:4;42867:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42896:19;:23;42916:2;42896:23;;;;;;;;;;;;;;;;;;;;;;;;;42867:52;42863:100;;;42946:5;42936:15;;42863:100;42975:12;43080:7;43076:823;;;43132:25;:29;43158:2;43132:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43181:1;43165:13;;:17;43132:50;43128:622;;;43210:34;43240:3;43210:25;43221:13;;43210:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43203:41;;43313:13;;43293:16;;43286:4;:23;;;;:::i;:::-;43285:41;;;;:::i;:::-;43263:18;;:63;;;;;;;:::i;:::-;;;;;;;;43383:13;;43369:10;;43362:4;:17;;;;:::i;:::-;43361:35;;;;:::i;:::-;43345:12;;:51;;;;;;;:::i;:::-;;;;;;;;43128:622;;;43474:25;:31;43500:4;43474:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43524:1;43509:12;;:16;43474:51;43470:280;;;43553:33;43582:3;43553:24;43564:12;;43553:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43546:40;;43654:12;;43635:15;;43628:4;:22;;;;:::i;:::-;43627:39;;;;:::i;:::-;43605:18;;:61;;;;;;;:::i;:::-;;;;;;;;43722:12;;43709:9;;43702:4;:16;;;;:::i;:::-;43701:33;;;;:::i;:::-;43685:12;;:49;;;;;;;:::i;:::-;;;;;;;;43470:280;43128:622;43777:1;43770:4;:8;43766:91;;;43799:42;43815:4;43829;43836;43799:15;:42::i;:::-;43766:91;43883:4;43873:14;;;;;:::i;:::-;;;43076:823;43911:33;43927:4;43933:2;43937:6;43911:15;:33::i;:::-;39494:4458;;;;39381:4571;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;39051:188::-;39168:5;39134:25;:31;39160:4;39134:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39225:5;39191:40;;39219:4;39191:40;;;;;;;;;;;;39051:188;;:::o;14895:733::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:47;15213:6;15221:9;15232:6;15192:20;:47::i;:::-;15252:21;15276:9;:17;15286:6;15276:17;;;;;;;;;;;;;;;;15252:41;;15329:6;15312:13;:23;;15304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15434:13;:22;15414:9;:17;15424:6;15414:17;;;;;;;;;;;;;;;:42;;;;15502:6;15478:9;:20;15488:9;15478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15543:9;15526:35;;15535:6;15526:35;;;15554:6;15526:35;;;;;;:::i;:::-;;;;;;;;15574:46;15594:6;15602:9;15613:6;15574:19;:46::i;:::-;15016:612;14895:733;;;:::o;45080:1413::-;45119:23;45145:24;45163:4;45145:9;:24::i;:::-;45119:50;;45180:25;45229:12;;45208:18;;:33;;;;:::i;:::-;45180:61;;45252:12;45300:1;45281:15;:20;:46;;;;45326:1;45305:17;:22;45281:46;45277:85;;;45344:7;;;;;45277:85;45417:2;45396:18;;:23;;;;:::i;:::-;45378:15;:41;45374:115;;;45475:2;45454:18;;:23;;;;:::i;:::-;45436:41;;45374:115;45550:23;45637:1;45617:17;45595:18;;45577:15;:36;;;;:::i;:::-;45576:58;;;;:::i;:::-;:62;;;;:::i;:::-;45550:88;;45649:26;45678:36;45698:15;45678;:19;;:36;;;;:::i;:::-;45649:65;;45727:25;45755:21;45727:49;;45789:36;45806:18;45789:16;:36::i;:::-;45838:18;45859:44;45885:17;45859:21;:25;;:44;;;;:::i;:::-;45838:65;;45917:17;45937:51;45970:17;45937:28;45952:12;;45937:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45917:71;;46001:23;46040:9;46027:10;:22;;;;:::i;:::-;46001:48;;46083:1;46062:18;:22;;;;46110:1;46095:12;:16;;;;46146:1;46128:15;:19;:42;;;;;46169:1;46151:15;:19;46128:42;46124:278;;;46187:46;46200:15;46217;46187:12;:46::i;:::-;46253:137;46286:18;46323:15;46357:18;;46253:137;;;;;;;;:::i;:::-;;;;;;;;46124:278;46436:9;;;;;;;;;;;46428:23;;46459:21;46428:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46414:71;;;;;45108:1385;;;;;;;;;45080:1413;:::o;23129:98::-;23187:7;23218:1;23214;:5;;;;:::i;:::-;23207:12;;23129:98;;;;:::o;23528:::-;23586:7;23617:1;23613;:5;;;;:::i;:::-;23606:12;;23528:98;;;;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;22772:98::-;22830:7;22861:1;22857;:5;;;;:::i;:::-;22850:12;;22772:98;;;;:::o;43960:589::-;44086:21;44124:1;44110:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44086:40;;44155:4;44137;44142:1;44137:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44181:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44171:4;44176:1;44171:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44216:62;44233:4;44248:15;44266:11;44216:8;:62::i;:::-;44317:15;:66;;;44398:11;44424:1;44468:4;44495;44515:15;44317:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44015:534;43960:589;:::o;44557:515::-;44705:62;44722:4;44737:15;44755:11;44705:8;:62::i;:::-;44810:15;:31;;;44849:9;44882:4;44902:11;44928:1;44971;45014:9;;;;;;;;;;;45038:15;44810:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44557:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:227::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:10;12100:2;12092:6;12088:15;12081:35;11896:227;:::o;12129:366::-;12271:3;12292:67;12356:2;12351:3;12292:67;:::i;:::-;12285:74;;12368:93;12457:3;12368:93;:::i;:::-;12486:2;12481:3;12477:12;12470:19;;12129:366;;;:::o;12501:419::-;12667:4;12705:2;12694:9;12690:18;12682:26;;12754:9;12748:4;12744:20;12740:1;12729:9;12725:17;12718:47;12782:131;12908:4;12782:131;:::i;:::-;12774:139;;12501:419;;;:::o;12926:305::-;12966:3;12985:20;13003:1;12985:20;:::i;:::-;12980:25;;13019:20;13037:1;13019:20;:::i;:::-;13014:25;;13173:1;13105:66;13101:74;13098:1;13095:81;13092:107;;;13179:18;;:::i;:::-;13092:107;13223:1;13220;13216:9;13209:16;;12926:305;;;;:::o;13237:244::-;13377:34;13373:1;13365:6;13361:14;13354:58;13446:27;13441:2;13433:6;13429:15;13422:52;13237:244;:::o;13487:366::-;13629:3;13650:67;13714:2;13709:3;13650:67;:::i;:::-;13643:74;;13726:93;13815:3;13726:93;:::i;:::-;13844:2;13839:3;13835:12;13828:19;;13487:366;;;:::o;13859:419::-;14025:4;14063:2;14052:9;14048:18;14040:26;;14112:9;14106:4;14102:20;14098:1;14087:9;14083:17;14076:47;14140:131;14266:4;14140:131;:::i;:::-;14132:139;;13859:419;;;:::o;14284:224::-;14424:34;14420:1;14412:6;14408:14;14401:58;14493:7;14488:2;14480:6;14476:15;14469:32;14284:224;:::o;14514:366::-;14656:3;14677:67;14741:2;14736:3;14677:67;:::i;:::-;14670:74;;14753:93;14842:3;14753:93;:::i;:::-;14871:2;14866:3;14862:12;14855:19;;14514:366;;;:::o;14886:419::-;15052:4;15090:2;15079:9;15075:18;15067:26;;15139:9;15133:4;15129:20;15125:1;15114:9;15110:17;15103:47;15167:131;15293:4;15167:131;:::i;:::-;15159:139;;14886:419;;;:::o;15311:223::-;15451:34;15447:1;15439:6;15435:14;15428:58;15520:6;15515:2;15507:6;15503:15;15496:31;15311:223;:::o;15540:366::-;15682:3;15703:67;15767:2;15762:3;15703:67;:::i;:::-;15696:74;;15779:93;15868:3;15779:93;:::i;:::-;15897:2;15892:3;15888:12;15881:19;;15540:366;;;:::o;15912:419::-;16078:4;16116:2;16105:9;16101:18;16093:26;;16165:9;16159:4;16155:20;16151:1;16140:9;16136:17;16129:47;16193:131;16319:4;16193:131;:::i;:::-;16185:139;;15912:419;;;:::o;16337:240::-;16477:34;16473:1;16465:6;16461:14;16454:58;16546:23;16541:2;16533:6;16529:15;16522:48;16337:240;:::o;16583:366::-;16725:3;16746:67;16810:2;16805:3;16746:67;:::i;:::-;16739:74;;16822:93;16911:3;16822:93;:::i;:::-;16940:2;16935:3;16931:12;16924:19;;16583:366;;;:::o;16955:419::-;17121:4;17159:2;17148:9;17144:18;17136:26;;17208:9;17202:4;17198:20;17194:1;17183:9;17179:17;17172:47;17236:131;17362:4;17236:131;:::i;:::-;17228:139;;16955:419;;;:::o;17380:239::-;17520:34;17516:1;17508:6;17504:14;17497:58;17589:22;17584:2;17576:6;17572:15;17565:47;17380:239;:::o;17625:366::-;17767:3;17788:67;17852:2;17847:3;17788:67;:::i;:::-;17781:74;;17864:93;17953:3;17864:93;:::i;:::-;17982:2;17977:3;17973:12;17966:19;;17625:366;;;:::o;17997:419::-;18163:4;18201:2;18190:9;18186:18;18178:26;;18250:9;18244:4;18240:20;18236:1;18225:9;18221:17;18214:47;18278:131;18404:4;18278:131;:::i;:::-;18270:139;;17997:419;;;:::o;18422:225::-;18562:34;18558:1;18550:6;18546:14;18539:58;18631:8;18626:2;18618:6;18614:15;18607:33;18422:225;:::o;18653:366::-;18795:3;18816:67;18880:2;18875:3;18816:67;:::i;:::-;18809:74;;18892:93;18981:3;18892:93;:::i;:::-;19010:2;19005:3;19001:12;18994:19;;18653:366;;;:::o;19025:419::-;19191:4;19229:2;19218:9;19214:18;19206:26;;19278:9;19272:4;19268:20;19264:1;19253:9;19249:17;19242:47;19306:131;19432:4;19306:131;:::i;:::-;19298:139;;19025:419;;;:::o;19450:223::-;19590:34;19586:1;19578:6;19574:14;19567:58;19659:6;19654:2;19646:6;19642:15;19635:31;19450:223;:::o;19679:366::-;19821:3;19842:67;19906:2;19901:3;19842:67;:::i;:::-;19835:74;;19918:93;20007:3;19918:93;:::i;:::-;20036:2;20031:3;20027:12;20020:19;;19679:366;;;:::o;20051:419::-;20217:4;20255:2;20244:9;20240:18;20232:26;;20304:9;20298:4;20294:20;20290:1;20279:9;20275:17;20268:47;20332:131;20458:4;20332:131;:::i;:::-;20324:139;;20051:419;;;:::o;20476:221::-;20616:34;20612:1;20604:6;20600:14;20593:58;20685:4;20680:2;20672:6;20668:15;20661:29;20476:221;:::o;20703:366::-;20845:3;20866:67;20930:2;20925:3;20866:67;:::i;:::-;20859:74;;20942:93;21031:3;20942:93;:::i;:::-;21060:2;21055:3;21051:12;21044:19;;20703:366;;;:::o;21075:419::-;21241:4;21279:2;21268:9;21264:18;21256:26;;21328:9;21322:4;21318:20;21314:1;21303:9;21299:17;21292:47;21356:131;21482:4;21356:131;:::i;:::-;21348:139;;21075:419;;;:::o;21500:224::-;21640:34;21636:1;21628:6;21624:14;21617:58;21709:7;21704:2;21696:6;21692:15;21685:32;21500:224;:::o;21730:366::-;21872:3;21893:67;21957:2;21952:3;21893:67;:::i;:::-;21886:74;;21969:93;22058:3;21969:93;:::i;:::-;22087:2;22082:3;22078:12;22071:19;;21730:366;;;:::o;22102:419::-;22268:4;22306:2;22295:9;22291:18;22283:26;;22355:9;22349:4;22345:20;22341:1;22330:9;22326:17;22319:47;22383:131;22509:4;22383:131;:::i;:::-;22375:139;;22102:419;;;:::o;22527:222::-;22667:34;22663:1;22655:6;22651:14;22644:58;22736:5;22731:2;22723:6;22719:15;22712:30;22527:222;:::o;22755:366::-;22897:3;22918:67;22982:2;22977:3;22918:67;:::i;:::-;22911:74;;22994:93;23083:3;22994:93;:::i;:::-;23112:2;23107:3;23103:12;23096:19;;22755:366;;;:::o;23127:419::-;23293:4;23331:2;23320:9;23316:18;23308:26;;23380:9;23374:4;23370:20;23366:1;23355:9;23351:17;23344:47;23408:131;23534:4;23408:131;:::i;:::-;23400:139;;23127:419;;;:::o;23552:172::-;23692:24;23688:1;23680:6;23676:14;23669:48;23552:172;:::o;23730:366::-;23872:3;23893:67;23957:2;23952:3;23893:67;:::i;:::-;23886:74;;23969:93;24058:3;23969:93;:::i;:::-;24087:2;24082:3;24078:12;24071:19;;23730:366;;;:::o;24102:419::-;24268:4;24306:2;24295:9;24291:18;24283:26;;24355:9;24349:4;24345:20;24341:1;24330:9;24326:17;24319:47;24383:131;24509:4;24383:131;:::i;:::-;24375:139;;24102:419;;;:::o;24527:297::-;24667:34;24663:1;24655:6;24651:14;24644:58;24736:34;24731:2;24723:6;24719:15;24712:59;24805:11;24800:2;24792:6;24788:15;24781:36;24527:297;:::o;24830:366::-;24972:3;24993:67;25057:2;25052:3;24993:67;:::i;:::-;24986:74;;25069:93;25158:3;25069:93;:::i;:::-;25187:2;25182:3;25178:12;25171:19;;24830:366;;;:::o;25202:419::-;25368:4;25406:2;25395:9;25391:18;25383:26;;25455:9;25449:4;25445:20;25441:1;25430:9;25426:17;25419:47;25483:131;25609:4;25483:131;:::i;:::-;25475:139;;25202:419;;;:::o;25627:240::-;25767:34;25763:1;25755:6;25751:14;25744:58;25836:23;25831:2;25823:6;25819:15;25812:48;25627:240;:::o;25873:366::-;26015:3;26036:67;26100:2;26095:3;26036:67;:::i;:::-;26029:74;;26112:93;26201:3;26112:93;:::i;:::-;26230:2;26225:3;26221:12;26214:19;;25873:366;;;:::o;26245:419::-;26411:4;26449:2;26438:9;26434:18;26426:26;;26498:9;26492:4;26488:20;26484:1;26473:9;26469:17;26462:47;26526:131;26652:4;26526:131;:::i;:::-;26518:139;;26245:419;;;:::o;26670:169::-;26810:21;26806:1;26798:6;26794:14;26787:45;26670:169;:::o;26845:366::-;26987:3;27008:67;27072:2;27067:3;27008:67;:::i;:::-;27001:74;;27084:93;27173:3;27084:93;:::i;:::-;27202:2;27197:3;27193:12;27186:19;;26845:366;;;:::o;27217:419::-;27383:4;27421:2;27410:9;27406:18;27398:26;;27470:9;27464:4;27460:20;27456:1;27445:9;27441:17;27434:47;27498:131;27624:4;27498:131;:::i;:::-;27490:139;;27217:419;;;:::o;27642:241::-;27782:34;27778:1;27770:6;27766:14;27759:58;27851:24;27846:2;27838:6;27834:15;27827:49;27642:241;:::o;27889:366::-;28031:3;28052:67;28116:2;28111:3;28052:67;:::i;:::-;28045:74;;28128:93;28217:3;28128:93;:::i;:::-;28246:2;28241:3;28237:12;28230:19;;27889:366;;;:::o;28261:419::-;28427:4;28465:2;28454:9;28450:18;28442:26;;28514:9;28508:4;28504:20;28500:1;28489:9;28485:17;28478:47;28542:131;28668:4;28542:131;:::i;:::-;28534:139;;28261:419;;;:::o;28686:191::-;28726:4;28746:20;28764:1;28746:20;:::i;:::-;28741:25;;28780:20;28798:1;28780:20;:::i;:::-;28775:25;;28819:1;28816;28813:8;28810:34;;;28824:18;;:::i;:::-;28810:34;28869:1;28866;28862:9;28854:17;;28686:191;;;;:::o;28883:225::-;29023:34;29019:1;29011:6;29007:14;29000:58;29092:8;29087:2;29079:6;29075:15;29068:33;28883:225;:::o;29114:366::-;29256:3;29277:67;29341:2;29336:3;29277:67;:::i;:::-;29270:74;;29353:93;29442:3;29353:93;:::i;:::-;29471:2;29466:3;29462:12;29455:19;;29114:366;;;:::o;29486:419::-;29652:4;29690:2;29679:9;29675:18;29667:26;;29739:9;29733:4;29729:20;29725:1;29714:9;29710:17;29703:47;29767:131;29893:4;29767:131;:::i;:::-;29759:139;;29486:419;;;:::o;29911:442::-;30060:4;30098:2;30087:9;30083:18;30075:26;;30111:71;30179:1;30168:9;30164:17;30155:6;30111:71;:::i;:::-;30192:72;30260:2;30249:9;30245:18;30236:6;30192:72;:::i;:::-;30274;30342:2;30331:9;30327:18;30318:6;30274:72;:::i;:::-;29911:442;;;;;;:::o;30359:147::-;30460:11;30497:3;30482:18;;30359:147;;;;:::o;30512:114::-;;:::o;30632:398::-;30791:3;30812:83;30893:1;30888:3;30812:83;:::i;:::-;30805:90;;30904:93;30993:3;30904:93;:::i;:::-;31022:1;31017:3;31013:11;31006:18;;30632:398;;;:::o;31036:379::-;31220:3;31242:147;31385:3;31242:147;:::i;:::-;31235:154;;31406:3;31399:10;;31036:379;;;:::o;31421:180::-;31469:77;31466:1;31459:88;31566:4;31563:1;31556:15;31590:4;31587:1;31580:15;31607:180;31655:77;31652:1;31645:88;31752:4;31749:1;31742:15;31776:4;31773:1;31766:15;31793:143;31850:5;31881:6;31875:13;31866:22;;31897:33;31924:5;31897:33;:::i;:::-;31793:143;;;;:::o;31942:351::-;32012:6;32061:2;32049:9;32040:7;32036:23;32032:32;32029:119;;;32067:79;;:::i;:::-;32029:119;32187:1;32212:64;32268:7;32259:6;32248:9;32244:22;32212:64;:::i;:::-;32202:74;;32158:128;31942:351;;;;:::o;32299:85::-;32344:7;32373:5;32362:16;;32299:85;;;:::o;32390:158::-;32448:9;32481:61;32499:42;32508:32;32534:5;32508:32;:::i;:::-;32499:42;:::i;:::-;32481:61;:::i;:::-;32468:74;;32390:158;;;:::o;32554:147::-;32649:45;32688:5;32649:45;:::i;:::-;32644:3;32637:58;32554:147;;:::o;32707:114::-;32774:6;32808:5;32802:12;32792:22;;32707:114;;;:::o;32827:184::-;32926:11;32960:6;32955:3;32948:19;33000:4;32995:3;32991:14;32976:29;;32827:184;;;;:::o;33017:132::-;33084:4;33107:3;33099:11;;33137:4;33132:3;33128:14;33120:22;;33017:132;;;:::o;33155:108::-;33232:24;33250:5;33232:24;:::i;:::-;33227:3;33220:37;33155:108;;:::o;33269:179::-;33338:10;33359:46;33401:3;33393:6;33359:46;:::i;:::-;33437:4;33432:3;33428:14;33414:28;;33269:179;;;;:::o;33454:113::-;33524:4;33556;33551:3;33547:14;33539:22;;33454:113;;;:::o;33603:732::-;33722:3;33751:54;33799:5;33751:54;:::i;:::-;33821:86;33900:6;33895:3;33821:86;:::i;:::-;33814:93;;33931:56;33981:5;33931:56;:::i;:::-;34010:7;34041:1;34026:284;34051:6;34048:1;34045:13;34026:284;;;34127:6;34121:13;34154:63;34213:3;34198:13;34154:63;:::i;:::-;34147:70;;34240:60;34293:6;34240:60;:::i;:::-;34230:70;;34086:224;34073:1;34070;34066:9;34061:14;;34026:284;;;34030:14;34326:3;34319:10;;33727:608;;;33603:732;;;;:::o;34341:831::-;34604:4;34642:3;34631:9;34627:19;34619:27;;34656:71;34724:1;34713:9;34709:17;34700:6;34656:71;:::i;:::-;34737:80;34813:2;34802:9;34798:18;34789:6;34737:80;:::i;:::-;34864:9;34858:4;34854:20;34849:2;34838:9;34834:18;34827:48;34892:108;34995:4;34986:6;34892:108;:::i;:::-;34884:116;;35010:72;35078:2;35067:9;35063:18;35054:6;35010:72;:::i;:::-;35092:73;35160:3;35149:9;35145:19;35136:6;35092:73;:::i;:::-;34341:831;;;;;;;;:::o;35178:807::-;35427:4;35465:3;35454:9;35450:19;35442:27;;35479:71;35547:1;35536:9;35532:17;35523:6;35479:71;:::i;:::-;35560:72;35628:2;35617:9;35613:18;35604:6;35560:72;:::i;:::-;35642:80;35718:2;35707:9;35703:18;35694:6;35642:80;:::i;:::-;35732;35808:2;35797:9;35793:18;35784:6;35732:80;:::i;:::-;35822:73;35890:3;35879:9;35875:19;35866:6;35822:73;:::i;:::-;35905;35973:3;35962:9;35958:19;35949:6;35905:73;:::i;:::-;35178:807;;;;;;;;;:::o;35991:143::-;36048:5;36079:6;36073:13;36064:22;;36095:33;36122:5;36095:33;:::i;:::-;35991:143;;;;:::o;36140:663::-;36228:6;36236;36244;36293:2;36281:9;36272:7;36268:23;36264:32;36261:119;;;36299:79;;:::i;:::-;36261:119;36419:1;36444:64;36500:7;36491:6;36480:9;36476:22;36444:64;:::i;:::-;36434:74;;36390:128;36557:2;36583:64;36639:7;36630:6;36619:9;36615:22;36583:64;:::i;:::-;36573:74;;36528:129;36696:2;36722:64;36778:7;36769:6;36758:9;36754:22;36722:64;:::i;:::-;36712:74;;36667:129;36140:663;;;;;:::o

Swarm Source

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