ETH Price: $3,101.61 (+1.30%)
Gas: 5 Gwei

Token

Cuckadoodledoo (CUCK)
 

Overview

Max Total Supply

42,000,000 CUCK

Holders

250 (0.00%)

Market

Price

$0.00 @ 0.000001 ETH

Onchain Market Cap

$113,619.24

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
twiddlesisacuck.eth
Balance
497,036.911575458648274951 CUCK

Value
$1,344.59 ( ~0.433513793802011 Eth) [1.1834%]
0x4eaec4ded456537df609d6badb8654e17262b713
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collective of strong-minded individuals who decided to come together & stop the bad actors in this space who SCAM us out of our hard earned Ethereum on a daily basis.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cuckadoodledoo

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-19
*/

// SPDX-License-Identifier: MIT


/*

If you like to watch jeets get fucked, come cuck em'

https://t.me/cuckadoodledooeth

*/


pragma solidity ^0.8.18;
pragma experimental ABIEncoderV2;

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

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

    bool private swapping;

    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyBurnFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellBurnFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForBurn;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

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

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("Cuckadoodledoo", "CUCK") {
        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 _buyBurnFee = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 1;

        uint256 _sellBurnFee = 1;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 1;

        uint256 totalSupply = 42_000_000 * 1e18;

        maxTransactionAmount = 420_000 * 1e18; // 1%
        maxWallet = 420_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyBurnFee = _buyBurnFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyBurnFee + buyLiquidityFee + buyTeamFee;

        sellBurnFee = _sellBurnFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellTeamFee;
        teamWallet = owner(); // set as team wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);

        preMigrationTransferrable[owner()] = 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;
        preMigrationPhase = false;
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _burnFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyBurnFee = _burnFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyBurnFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _burnFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellBurnFee = _burnFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    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 updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
            }

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

            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
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForTeam;
        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 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForTeam;

        tokensForLiquidity = 0;
        tokensForTeam = 0;

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

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

    function withdrawStuckStealth() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","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":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","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":"sellTeamFee","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":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","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":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckStealth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff0219169083151502179055506001601a60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600e81526020017f4375636b61646f6f646c65646f6f0000000000000000000000000000000000008152506040518060400160405280600481526020017f4355434b00000000000000000000000000000000000000000000000000000000815250816003908162000116919062000d81565b50806004908162000128919062000d81565b5050506200014b6200013f620005c860201b60201c565b620005d060201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001778160016200069660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d919062000ed2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000ed2565b6040518363ffffffff1660e01b8152600401620002ca92919062000f15565b6020604051808303816000875af1158015620002ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000310919062000ed2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035860a05160016200069660201b60201c565b6200036d60a05160016200078060201b60201c565b60006001905060006001905060006001905060006001905060006001905060006001905060006a22bdd88fed9efc6a00000090506958f03ee118a13e8000006007819055506958f03ee118a13e800000600981905550612710600582620003d5919062000f71565b620003e1919062000feb565b60088190555086600d8190555085600e8190555084600f81905550600f54600e54600d5462000411919062001023565b6200041d919062001023565b600c819055508360118190555082601281905550816013819055506013546012546011546200044d919062001023565b62000459919062001023565b6010819055506200046f6200082160201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004d1620004c36200082160201b60201c565b60016200084b60201b60201c565b620004e43060016200084b60201b60201c565b620004f8600060016200084b60201b60201c565b6200051a6200050c6200082160201b60201c565b60016200069660201b60201c565b6200052d3060016200069660201b60201c565b62000541600060016200069660201b60201c565b6001601b6000620005576200082160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005ba33826200098560201b60201c565b5050505050505050620011bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a6620005c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cc6200082160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000725576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071c90620010bf565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085b620005c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008816200082160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d190620010bf565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009799190620010fe565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ee906200116b565b60405180910390fd5b62000a0b6000838362000afd60201b60201c565b806002600082825462000a1f919062001023565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a76919062001023565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000add91906200119e565b60405180910390a362000af96000838362000b0260201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8957607f821691505b60208210810362000b9f5762000b9e62000b41565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bca565b62000c15868362000bca565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c6262000c5c62000c568462000c2d565b62000c37565b62000c2d565b9050919050565b6000819050919050565b62000c7e8362000c41565b62000c9662000c8d8262000c69565b84845462000bd7565b825550505050565b600090565b62000cad62000c9e565b62000cba81848462000c73565b505050565b5b8181101562000ce25762000cd660008262000ca3565b60018101905062000cc0565b5050565b601f82111562000d315762000cfb8162000ba5565b62000d068462000bba565b8101602085101562000d16578190505b62000d2e62000d258562000bba565b83018262000cbf565b50505b505050565b600082821c905092915050565b600062000d566000198460080262000d36565b1980831691505092915050565b600062000d71838362000d43565b9150826002028217905092915050565b62000d8c8262000b07565b67ffffffffffffffff81111562000da85762000da762000b12565b5b62000db4825462000b70565b62000dc182828562000ce6565b600060209050601f83116001811462000df9576000841562000de4578287015190505b62000df0858262000d63565b86555062000e60565b601f19841662000e098662000ba5565b60005b8281101562000e335784890151825560018201915060208501945060208101905062000e0c565b8683101562000e53578489015162000e4f601f89168262000d43565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e9a8262000e6d565b9050919050565b62000eac8162000e8d565b811462000eb857600080fd5b50565b60008151905062000ecc8162000ea1565b92915050565b60006020828403121562000eeb5762000eea62000e68565b5b600062000efb8482850162000ebb565b91505092915050565b62000f0f8162000e8d565b82525050565b600060408201905062000f2c600083018562000f04565b62000f3b602083018462000f04565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f7e8262000c2d565b915062000f8b8362000c2d565b925082820262000f9b8162000c2d565b9150828204841483151762000fb55762000fb462000f42565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff88262000c2d565b9150620010058362000c2d565b92508262001018576200101762000fbc565b5b828204905092915050565b6000620010308262000c2d565b91506200103d8362000c2d565b925082820190508082111562001058576200105762000f42565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010a76020836200105e565b9150620010b4826200106f565b602082019050919050565b60006020820190508181036000830152620010da8162001098565b9050919050565b60008115159050919050565b620010f881620010e1565b82525050565b6000602082019050620011156000830184620010ed565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001153601f836200105e565b915062001160826200111b565b602082019050919050565b60006020820190508181036000830152620011868162001144565b9050919050565b620011988162000c2d565b82525050565b6000602082019050620011b560008301846200118d565b92915050565b60805160a051615df1620012196000396000818161129401528181611ecb015281816129740152612c8b015260008181610f860152818161438f015281816144700152818161449701528181614533015261455a0152615df16000f3fe6080604052600436106103b15760003560e01c80638a8c523c116101e7578063c18bc1951161010d578063e71dc3f5116100a0578063f8b45b051161006f578063f8b45b0514610de5578063f9f92be414610e10578063fde83a3414610e39578063fe575a8714610e64576103b8565b8063e71dc3f514610d3b578063f11a24d314610d66578063f2fde38b14610d91578063f637434214610dba576103b8565b8063d85ba063116100dc578063d85ba06314610c7f578063dd62ed3e14610caa578063e19b282314610ce7578063e2f4560514610d10576103b8565b8063c18bc19514610bc3578063c8c8ebe414610bec578063d257b34f14610c17578063d729715f14610c54576103b8565b8063a9059cbb11610185578063bbc0c74211610154578063bbc0c74214610b1d578063bc205ad314610b48578063c024666814610b71578063c17b5b8c14610b9a576103b8565b8063a9059cbb14610a4f578063aa0e438814610a8c578063adb873bd14610ab5578063b62496f514610ae0576103b8565b806395d89b41116101c157806395d89b41146109935780639a7a23d6146109be5780639c2e4ac6146109e7578063a457c2d714610a12576103b8565b80638a8c523c146109285780638da5cb5b1461093f578063924de9b71461096a576103b8565b80634a62bb65116102d7578063715018a61161026a5780637ca8448a116102395780637ca8448a146108965780637cb332bb146108bf5780638095d564146108e857806381c4be4014610911576103b8565b8063715018a614610802578063751039fc146108195780637571336a1461084457806375e3661e1461086d576103b8565b80635f189361116102a65780635f189361146107585780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b80634a62bb65146106885780634e29e523146106b35780634fbee193146106f0578063599270441461072d576103b8565b80631d7778561161034f578063313ce5671161031e578063313ce567146105ca57806339509351146105f55780633dc599ff1461063257806349bd5a5e1461065d576103b8565b80631d7778561461050e578063203e727e1461053957806323b872dd1461056257806327c8f8351461059f576103b8565b806310d5de531161038b57806310d5de53146104505780631694505e1461048d57806318160ddd146104b85780631a8145bb146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e85780630e922ca714610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ea1565b6040516103df919061469e565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614759565b610f33565b60405161041c91906147b4565b60405180910390f35b34801561043157600080fd5b5061043a610f51565b60405161044791906147b4565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906147cf565b610f64565b60405161048491906147b4565b60405180910390f35b34801561049957600080fd5b506104a2610f84565b6040516104af919061485b565b60405180910390f35b3480156104c457600080fd5b506104cd610fa8565b6040516104da9190614885565b60405180910390f35b3480156104ef57600080fd5b506104f8610fb2565b6040516105059190614885565b60405180910390f35b34801561051a57600080fd5b50610523610fb8565b6040516105309190614885565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b91906148a0565b610fbe565b005b34801561056e57600080fd5b50610589600480360381019061058491906148cd565b6110cd565b60405161059691906147b4565b60405180910390f35b3480156105ab57600080fd5b506105b46111c5565b6040516105c1919061492f565b60405180910390f35b3480156105d657600080fd5b506105df6111ca565b6040516105ec9190614966565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190614759565b6111d3565b60405161062991906147b4565b60405180910390f35b34801561063e57600080fd5b5061064761127f565b60405161065491906147b4565b60405180910390f35b34801561066957600080fd5b50610672611292565b60405161067f919061492f565b60405180910390f35b34801561069457600080fd5b5061069d6112b6565b6040516106aa91906147b4565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906147cf565b6112c9565b6040516106e791906147b4565b60405180910390f35b3480156106fc57600080fd5b50610717600480360381019061071291906147cf565b6112e9565b60405161072491906147b4565b60405180910390f35b34801561073957600080fd5b5061074261133f565b60405161074f919061492f565b60405180910390f35b34801561076457600080fd5b5061076d611365565b005b34801561077b57600080fd5b506107846113fe565b6040516107919190614885565b60405180910390f35b3480156107a657600080fd5b506107af611404565b6040516107bc91906147b4565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906147cf565b611417565b6040516107f99190614885565b60405180910390f35b34801561080e57600080fd5b5061081761145f565b005b34801561082557600080fd5b5061082e6114e7565b60405161083b91906147b4565b60405180910390f35b34801561085057600080fd5b5061086b600480360381019061086691906149ad565b611587565b005b34801561087957600080fd5b50610894600480360381019061088f91906147cf565b61165e565b005b3480156108a257600080fd5b506108bd60048036038101906108b891906147cf565b611735565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906147cf565b61182b565b005b3480156108f457600080fd5b5061090f600480360381019061090a91906149ed565b611967565b005b34801561091d57600080fd5b50610926611a66565b005b34801561093457600080fd5b5061093d611c29565b005b34801561094b57600080fd5b50610954611cf8565b604051610961919061492f565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190614a40565b611d22565b005b34801561099f57600080fd5b506109a8611dbb565b6040516109b5919061469e565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906149ad565b611e4d565b005b3480156109f357600080fd5b506109fc611f65565b604051610a099190614885565b60405180910390f35b348015610a1e57600080fd5b50610a396004803603810190610a349190614759565b611f6b565b604051610a4691906147b4565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190614759565b612056565b604051610a8391906147b4565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906149ad565b612074565b005b348015610ac157600080fd5b50610aca61215f565b604051610ad79190614885565b60405180910390f35b348015610aec57600080fd5b50610b076004803603810190610b0291906147cf565b612165565b604051610b1491906147b4565b60405180910390f35b348015610b2957600080fd5b50610b32612185565b604051610b3f91906147b4565b60405180910390f35b348015610b5457600080fd5b50610b6f6004803603810190610b6a9190614a6d565b612198565b005b348015610b7d57600080fd5b50610b986004803603810190610b9391906149ad565b612385565b005b348015610ba657600080fd5b50610bc16004803603810190610bbc91906149ed565b6124aa565b005b348015610bcf57600080fd5b50610bea6004803603810190610be591906148a0565b6125a9565b005b348015610bf857600080fd5b50610c016126b8565b604051610c0e9190614885565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906148a0565b6126be565b604051610c4b91906147b4565b60405180910390f35b348015610c6057600080fd5b50610c69612813565b604051610c769190614885565b60405180910390f35b348015610c8b57600080fd5b50610c94612819565b604051610ca19190614885565b60405180910390f35b348015610cb657600080fd5b50610cd16004803603810190610ccc9190614a6d565b61281f565b604051610cde9190614885565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d0991906147cf565b6128a6565b005b348015610d1c57600080fd5b50610d25612aa8565b604051610d329190614885565b60405180910390f35b348015610d4757600080fd5b50610d50612aae565b604051610d5d9190614885565b60405180910390f35b348015610d7257600080fd5b50610d7b612ab4565b604051610d889190614885565b60405180910390f35b348015610d9d57600080fd5b50610db86004803603810190610db391906147cf565b612aba565b005b348015610dc657600080fd5b50610dcf612bb1565b604051610ddc9190614885565b60405180910390f35b348015610df157600080fd5b50610dfa612bb7565b604051610e079190614885565b60405180910390f35b348015610e1c57600080fd5b50610e376004803603810190610e3291906147cf565b612bbd565b005b348015610e4557600080fd5b50610e4e612dbf565b604051610e5b9190614885565b60405180910390f35b348015610e7057600080fd5b50610e8b6004803603810190610e8691906147cf565b612dc5565b604051610e9891906147b4565b60405180910390f35b606060038054610eb090614adc565b80601f0160208091040260200160405190810160405280929190818152602001828054610edc90614adc565b8015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b5050505050905090565b6000610f47610f40612e1b565b8484612e23565b6001905092915050565b601a60009054906101000a900460ff1681565b60186020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60155481565b60145481565b610fc6612e1b565b73ffffffffffffffffffffffffffffffffffffffff16610fe4611cf8565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190614b59565b60405180910390fd5b670de0b6b3a76400006103e86005611050610fa8565b61105a9190614ba8565b6110649190614c19565b61106e9190614c19565b8110156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790614cbc565b60405180910390fd5b670de0b6b3a7640000816110c49190614ba8565b60078190555050565b60006110da848484612fec565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611125612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90614d4e565b60405180910390fd5b6111b9856111b1612e1b565b858403612e23565b60019150509392505050565b600081565b60006012905090565b60006112756111e0612e1b565b8484600160006111ee612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112709190614d6e565b612e23565b6001905092915050565b600a60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b601b6020528060005260406000206000915054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136d612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661138b611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890614b59565b60405180910390fd5b6001600a60036101000a81548160ff021916908315150217905550565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611467612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611485611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290614b59565b60405180910390fd5b6114e56000613c98565b565b60006114f1612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661150f611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614b59565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61158f612e1b565b73ffffffffffffffffffffffffffffffffffffffff166115ad611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90614b59565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611666612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611684611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614b59565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61173d612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661175b611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614b59565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16476040516117d790614dd3565b60006040518083038185875af1925050503d8060008114611814576040519150601f19603f3d011682016040523d82523d6000602084013e611819565b606091505b505090508061182757600080fd5b5050565b611833612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611851611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614b59565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61196f612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661198d611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614b59565b60405180910390fd5b82600d8190555081600e8190555080600f81905550600f54600e54600d54611a0b9190614d6e565b611a159190614d6e565b600c819055506005600c541115611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614e34565b60405180910390fd5b505050565b611a6e612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611a8c611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614b59565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b1d919061492f565b602060405180830381865afa158015611b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5e9190614e69565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611b9b929190614e96565b6020604051808303816000875af1158015611bba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bde9190614ed4565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611c25573d6000803e3d6000fd5b5050565b611c31612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611c4f611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90614b59565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506000601a60006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d2a612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611d48611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590614b59565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611dca90614adc565b80601f0160208091040260200160405190810160405280929190818152602001828054611df690614adc565b8015611e435780601f10611e1857610100808354040283529160200191611e43565b820191906000526020600020905b815481529060010190602001808311611e2657829003601f168201915b5050505050905090565b611e55612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611e73611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614b59565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614f73565b60405180910390fd5b611f618282613d5e565b5050565b600f5481565b60008060016000611f7a612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90615005565b60405180910390fd5b61204b612042612e1b565b85858403612e23565b600191505092915050565b600061206a612063612e1b565b8484612fec565b6001905092915050565b61207c612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661209a611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614b59565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121518282612385565b61215b8282611587565b5050565b60115481565b60196020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6121a0612e1b565b73ffffffffffffffffffffffffffffffffffffffff166121be611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614b59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90615071565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122be919061492f565b602060405180830381865afa1580156122db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ff9190614e69565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161233c929190614e96565b6020604051808303816000875af115801561235b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237f9190614ed4565b50505050565b61238d612e1b565b73ffffffffffffffffffffffffffffffffffffffff166123ab611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f890614b59565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161249e91906147b4565b60405180910390a25050565b6124b2612e1b565b73ffffffffffffffffffffffffffffffffffffffff166124d0611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614b59565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461254e9190614d6e565b6125589190614d6e565b601081905550600560105411156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b906150dd565b60405180910390fd5b505050565b6125b1612e1b565b73ffffffffffffffffffffffffffffffffffffffff166125cf611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90614b59565b60405180910390fd5b670de0b6b3a76400006103e8600a61263b610fa8565b6126459190614ba8565b61264f9190614c19565b6126599190614c19565b81101561269b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126929061516f565b60405180910390fd5b670de0b6b3a7640000816126af9190614ba8565b60098190555050565b60075481565b60006126c8612e1b565b73ffffffffffffffffffffffffffffffffffffffff166126e6611cf8565b73ffffffffffffffffffffffffffffffffffffffff161461273c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273390614b59565b60405180910390fd5b620186a0600161274a610fa8565b6127549190614ba8565b61275e9190614c19565b8210156127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279790615201565b60405180910390fd5b6103e860056127ad610fa8565b6127b79190614ba8565b6127c19190614c19565b821115612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90615293565b60405180910390fd5b8160088190555060019050919050565b60135481565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6128ae612e1b565b73ffffffffffffffffffffffffffffffffffffffff166128cc611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291990614b59565b60405180910390fd5b600a60039054906101000a900460ff1615612972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296990615325565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612a0e5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a44906153b7565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60085481565b600d5481565b600e5481565b612ac2612e1b565b73ffffffffffffffffffffffffffffffffffffffff16612ae0611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90614b59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90615449565b60405180910390fd5b612bae81613c98565b50565b60125481565b60095481565b612bc5612e1b565b73ffffffffffffffffffffffffffffffffffffffff16612be3611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3090614b59565b60405180910390fd5b600a60039054906101000a900460ff1615612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090615325565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612d255750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b906153b7565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60165481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e89906154db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef89061556d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612fdf9190614885565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361305b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613052906155ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c190615691565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314e906156fd565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131db90615769565b60405180910390fd5b601a60009054906101000a900460ff161561328657601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c906157fb565b60405180910390fd5b5b6000810361329f5761329a83836000613dff565b613c93565b600a60009054906101000a900460ff1615613799576132bc611cf8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561332a57506132fa611cf8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133635750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561339c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133b55750600560149054906101000a900460ff16155b1561379857600a60019054906101000a900460ff166134af57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061346f5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6134ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a590615867565b60405180910390fd5b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135525750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135f95760075481111561359c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613593906158f9565b60405180910390fd5b6009546135a883611417565b826135b39190614d6e565b11156135f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135eb90615965565b60405180910390fd5b613797565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561369c5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136eb576007548111156136e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136dd906159f7565b60405180910390fd5b613796565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166137955760095461374883611417565b826137539190614d6e565b1115613794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378b90615965565b60405180910390fd5b5b5b5b5b5b60006137a430611417565b9050600060085482101590508080156137c95750600a60029054906101000a900460ff165b80156137e25750600560149054906101000a900460ff16155b80156138385750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561388e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138e45750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613928576001600560146101000a81548160ff02191690831515021790555061390c61407e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139de5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139e857600090505b60008115613c8357601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a4b57506000601054115b15613b1857613a786064613a6a601054886142a490919063ffffffff16565b6142ba90919063ffffffff16565b905060105460125482613a8b9190614ba8565b613a959190614c19565b60156000828254613aa69190614d6e565b9250508190555060105460135482613abe9190614ba8565b613ac89190614c19565b60166000828254613ad99190614d6e565b9250508190555060105460115482613af19190614ba8565b613afb9190614c19565b60146000828254613b0c9190614d6e565b92505081905550613c3d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613b7357506000600c54115b15613c3c57613ba06064613b92600c54886142a490919063ffffffff16565b6142ba90919063ffffffff16565b9050600c54600e5482613bb39190614ba8565b613bbd9190614c19565b60156000828254613bce9190614d6e565b92505081905550600c54600f5482613be69190614ba8565b613bf09190614c19565b60166000828254613c019190614d6e565b92505081905550600c54600d5482613c199190614ba8565b613c239190614c19565b60146000828254613c349190614d6e565b925050819055505b5b6000811115613c5257613c51873083613dff565b5b60006014541115613c7457613c6b876000601454613dff565b60006014819055505b8085613c809190615a17565b94505b613c8e878787613dff565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e65906155ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed490615691565b60405180910390fd5b613ee88383836142d0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6590615abd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140019190614d6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516140659190614885565b60405180910390a36140788484846142d5565b50505050565b600061408930611417565b9050600060165460155461409d9190614d6e565b90506000808314806140af5750600082145b156140bc575050506142a2565b60146008546140cb9190614ba8565b8311156140e45760146008546140e19190614ba8565b92505b6000600283601554866140f79190614ba8565b6141019190614c19565b61410b9190614c19565b9050600061412282866142da90919063ffffffff16565b90506000479050614132826142f0565b600061414782476142da90919063ffffffff16565b9050600061418b600260155461415d9190614c19565b886141689190615a17565b61417d601654856142a490919063ffffffff16565b6142ba90919063ffffffff16565b90506000818361419b9190615a17565b9050600060158190555060006016819055506000861180156141bd5750600081115b1561420a576141cc868261452d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260155460405161420193929190615add565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161425090614dd3565b60006040518083038185875af1925050503d806000811461428d576040519150601f19603f3d011682016040523d82523d6000602084013e614292565b606091505b5050809750505050505050505050505b565b600081836142b29190614ba8565b905092915050565b600081836142c89190614c19565b905092915050565b505050565b505050565b600081836142e89190615a17565b905092915050565b6000600267ffffffffffffffff81111561430d5761430c615b14565b5b60405190808252806020026020018201604052801561433b5781602001602082028036833780820191505090505b509050308160008151811061435357614352615b43565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061441c9190615b87565b816001815181106144305761442f615b43565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614495307f000000000000000000000000000000000000000000000000000000000000000084612e23565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144f7959493929190615cad565b600060405180830381600087803b15801561451157600080fd5b505af1158015614525573d6000803e3d6000fd5b505050505050565b614558307f000000000000000000000000000000000000000000000000000000000000000084612e23565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806145a2611cf8565b426040518863ffffffff1660e01b81526004016145c496959493929190615d07565b60606040518083038185885af11580156145e2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146079190615d68565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561464857808201518184015260208101905061462d565b60008484015250505050565b6000601f19601f8301169050919050565b60006146708261460e565b61467a8185614619565b935061468a81856020860161462a565b61469381614654565b840191505092915050565b600060208201905081810360008301526146b88184614665565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146f0826146c5565b9050919050565b614700816146e5565b811461470b57600080fd5b50565b60008135905061471d816146f7565b92915050565b6000819050919050565b61473681614723565b811461474157600080fd5b50565b6000813590506147538161472d565b92915050565b600080604083850312156147705761476f6146c0565b5b600061477e8582860161470e565b925050602061478f85828601614744565b9150509250929050565b60008115159050919050565b6147ae81614799565b82525050565b60006020820190506147c960008301846147a5565b92915050565b6000602082840312156147e5576147e46146c0565b5b60006147f38482850161470e565b91505092915050565b6000819050919050565b600061482161481c614817846146c5565b6147fc565b6146c5565b9050919050565b600061483382614806565b9050919050565b600061484582614828565b9050919050565b6148558161483a565b82525050565b6000602082019050614870600083018461484c565b92915050565b61487f81614723565b82525050565b600060208201905061489a6000830184614876565b92915050565b6000602082840312156148b6576148b56146c0565b5b60006148c484828501614744565b91505092915050565b6000806000606084860312156148e6576148e56146c0565b5b60006148f48682870161470e565b93505060206149058682870161470e565b925050604061491686828701614744565b9150509250925092565b614929816146e5565b82525050565b60006020820190506149446000830184614920565b92915050565b600060ff82169050919050565b6149608161494a565b82525050565b600060208201905061497b6000830184614957565b92915050565b61498a81614799565b811461499557600080fd5b50565b6000813590506149a781614981565b92915050565b600080604083850312156149c4576149c36146c0565b5b60006149d28582860161470e565b92505060206149e385828601614998565b9150509250929050565b600080600060608486031215614a0657614a056146c0565b5b6000614a1486828701614744565b9350506020614a2586828701614744565b9250506040614a3686828701614744565b9150509250925092565b600060208284031215614a5657614a556146c0565b5b6000614a6484828501614998565b91505092915050565b60008060408385031215614a8457614a836146c0565b5b6000614a928582860161470e565b9250506020614aa38582860161470e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614af457607f821691505b602082108103614b0757614b06614aad565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b43602083614619565b9150614b4e82614b0d565b602082019050919050565b60006020820190508181036000830152614b7281614b36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bb382614723565b9150614bbe83614723565b9250828202614bcc81614723565b91508282048414831517614be357614be2614b79565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c2482614723565b9150614c2f83614723565b925082614c3f57614c3e614bea565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614ca6602f83614619565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614d38602883614619565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b6000614d7982614723565b9150614d8483614723565b9250828201905080821115614d9c57614d9b614b79565b5b92915050565b600081905092915050565b50565b6000614dbd600083614da2565b9150614dc882614dad565b600082019050919050565b6000614dde82614db0565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b6000614e1e601683614619565b9150614e2982614de8565b602082019050919050565b60006020820190508181036000830152614e4d81614e11565b9050919050565b600081519050614e638161472d565b92915050565b600060208284031215614e7f57614e7e6146c0565b5b6000614e8d84828501614e54565b91505092915050565b6000604082019050614eab6000830185614920565b614eb86020830184614876565b9392505050565b600081519050614ece81614981565b92915050565b600060208284031215614eea57614ee96146c0565b5b6000614ef884828501614ebf565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f5d603983614619565b9150614f6882614f01565b604082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614fef602583614619565b9150614ffa82614f93565b604082019050919050565b6000602082019050818103600083015261501e81614fe2565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061505b601a83614619565b915061506682615025565b602082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b60006150c7601783614619565b91506150d282615091565b602082019050919050565b600060208201905081810360008301526150f6816150ba565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b6000615159602483614619565b9150615164826150fd565b604082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151eb603583614619565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061527d603483614619565b915061528882615221565b604082019050919050565b600060208201905081810360008301526152ac81615270565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061530f602183614619565b915061531a826152b3565b604082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b60006153a1602e83614619565b91506153ac82615345565b604082019050919050565b600060208201905081810360008301526153d081615394565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615433602683614619565b915061543e826153d7565b604082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154c5602483614619565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615557602283614619565b9150615562826154fb565b604082019050919050565b600060208201905081810360008301526155868161554a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155e9602583614619565b91506155f48261558d565b604082019050919050565b60006020820190508181036000830152615618816155dc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061567b602383614619565b91506156868261561f565b604082019050919050565b600060208201905081810360008301526156aa8161566e565b9050919050565b7f53656e64657220626c61636b6c69737465640000000000000000000000000000600082015250565b60006156e7601283614619565b91506156f2826156b1565b602082019050919050565b60006020820190508181036000830152615716816156da565b9050919050565b7f526563656976657220626c61636b6c6973746564000000000000000000000000600082015250565b6000615753601483614619565b915061575e8261571d565b602082019050919050565b6000602082019050818103600083015261578281615746565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b60006157e5602983614619565b91506157f082615789565b604082019050919050565b60006020820190508181036000830152615814816157d8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615851601683614619565b915061585c8261581b565b602082019050919050565b6000602082019050818103600083015261588081615844565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006158e3603583614619565b91506158ee82615887565b604082019050919050565b60006020820190508181036000830152615912816158d6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061594f601383614619565b915061595a82615919565b602082019050919050565b6000602082019050818103600083015261597e81615942565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006159e1603683614619565b91506159ec82615985565b604082019050919050565b60006020820190508181036000830152615a10816159d4565b9050919050565b6000615a2282614723565b9150615a2d83614723565b9250828203905081811115615a4557615a44614b79565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615aa7602683614619565b9150615ab282615a4b565b604082019050919050565b60006020820190508181036000830152615ad681615a9a565b9050919050565b6000606082019050615af26000830186614876565b615aff6020830185614876565b615b0c6040830184614876565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b81816146f7565b92915050565b600060208284031215615b9d57615b9c6146c0565b5b6000615bab84828501615b72565b91505092915050565b6000819050919050565b6000615bd9615bd4615bcf84615bb4565b6147fc565b614723565b9050919050565b615be981615bbe565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c24816146e5565b82525050565b6000615c368383615c1b565b60208301905092915050565b6000602082019050919050565b6000615c5a82615bef565b615c648185615bfa565b9350615c6f83615c0b565b8060005b83811015615ca0578151615c878882615c2a565b9750615c9283615c42565b925050600181019050615c73565b5085935050505092915050565b600060a082019050615cc26000830188614876565b615ccf6020830187615be0565b8181036040830152615ce18186615c4f565b9050615cf06060830185614920565b615cfd6080830184614876565b9695505050505050565b600060c082019050615d1c6000830189614920565b615d296020830188614876565b615d366040830187615be0565b615d436060830186615be0565b615d506080830185614920565b615d5d60a0830184614876565b979650505050505050565b600080600060608486031215615d8157615d806146c0565b5b6000615d8f86828701614e54565b9350506020615da086828701614e54565b9250506040615db186828701614e54565b915050925092509256fea26469706673582212203163060167c3f47d72ea3d5b80d6558eba9b41e933da4426a96af809ac659bf064736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638a8c523c116101e7578063c18bc1951161010d578063e71dc3f5116100a0578063f8b45b051161006f578063f8b45b0514610de5578063f9f92be414610e10578063fde83a3414610e39578063fe575a8714610e64576103b8565b8063e71dc3f514610d3b578063f11a24d314610d66578063f2fde38b14610d91578063f637434214610dba576103b8565b8063d85ba063116100dc578063d85ba06314610c7f578063dd62ed3e14610caa578063e19b282314610ce7578063e2f4560514610d10576103b8565b8063c18bc19514610bc3578063c8c8ebe414610bec578063d257b34f14610c17578063d729715f14610c54576103b8565b8063a9059cbb11610185578063bbc0c74211610154578063bbc0c74214610b1d578063bc205ad314610b48578063c024666814610b71578063c17b5b8c14610b9a576103b8565b8063a9059cbb14610a4f578063aa0e438814610a8c578063adb873bd14610ab5578063b62496f514610ae0576103b8565b806395d89b41116101c157806395d89b41146109935780639a7a23d6146109be5780639c2e4ac6146109e7578063a457c2d714610a12576103b8565b80638a8c523c146109285780638da5cb5b1461093f578063924de9b71461096a576103b8565b80634a62bb65116102d7578063715018a61161026a5780637ca8448a116102395780637ca8448a146108965780637cb332bb146108bf5780638095d564146108e857806381c4be4014610911576103b8565b8063715018a614610802578063751039fc146108195780637571336a1461084457806375e3661e1461086d576103b8565b80635f189361116102a65780635f189361146107585780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b80634a62bb65146106885780634e29e523146106b35780634fbee193146106f0578063599270441461072d576103b8565b80631d7778561161034f578063313ce5671161031e578063313ce567146105ca57806339509351146105f55780633dc599ff1461063257806349bd5a5e1461065d576103b8565b80631d7778561461050e578063203e727e1461053957806323b872dd1461056257806327c8f8351461059f576103b8565b806310d5de531161038b57806310d5de53146104505780631694505e1461048d57806318160ddd146104b85780631a8145bb146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e85780630e922ca714610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ea1565b6040516103df919061469e565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614759565b610f33565b60405161041c91906147b4565b60405180910390f35b34801561043157600080fd5b5061043a610f51565b60405161044791906147b4565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906147cf565b610f64565b60405161048491906147b4565b60405180910390f35b34801561049957600080fd5b506104a2610f84565b6040516104af919061485b565b60405180910390f35b3480156104c457600080fd5b506104cd610fa8565b6040516104da9190614885565b60405180910390f35b3480156104ef57600080fd5b506104f8610fb2565b6040516105059190614885565b60405180910390f35b34801561051a57600080fd5b50610523610fb8565b6040516105309190614885565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b91906148a0565b610fbe565b005b34801561056e57600080fd5b50610589600480360381019061058491906148cd565b6110cd565b60405161059691906147b4565b60405180910390f35b3480156105ab57600080fd5b506105b46111c5565b6040516105c1919061492f565b60405180910390f35b3480156105d657600080fd5b506105df6111ca565b6040516105ec9190614966565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190614759565b6111d3565b60405161062991906147b4565b60405180910390f35b34801561063e57600080fd5b5061064761127f565b60405161065491906147b4565b60405180910390f35b34801561066957600080fd5b50610672611292565b60405161067f919061492f565b60405180910390f35b34801561069457600080fd5b5061069d6112b6565b6040516106aa91906147b4565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906147cf565b6112c9565b6040516106e791906147b4565b60405180910390f35b3480156106fc57600080fd5b50610717600480360381019061071291906147cf565b6112e9565b60405161072491906147b4565b60405180910390f35b34801561073957600080fd5b5061074261133f565b60405161074f919061492f565b60405180910390f35b34801561076457600080fd5b5061076d611365565b005b34801561077b57600080fd5b506107846113fe565b6040516107919190614885565b60405180910390f35b3480156107a657600080fd5b506107af611404565b6040516107bc91906147b4565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e791906147cf565b611417565b6040516107f99190614885565b60405180910390f35b34801561080e57600080fd5b5061081761145f565b005b34801561082557600080fd5b5061082e6114e7565b60405161083b91906147b4565b60405180910390f35b34801561085057600080fd5b5061086b600480360381019061086691906149ad565b611587565b005b34801561087957600080fd5b50610894600480360381019061088f91906147cf565b61165e565b005b3480156108a257600080fd5b506108bd60048036038101906108b891906147cf565b611735565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906147cf565b61182b565b005b3480156108f457600080fd5b5061090f600480360381019061090a91906149ed565b611967565b005b34801561091d57600080fd5b50610926611a66565b005b34801561093457600080fd5b5061093d611c29565b005b34801561094b57600080fd5b50610954611cf8565b604051610961919061492f565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190614a40565b611d22565b005b34801561099f57600080fd5b506109a8611dbb565b6040516109b5919061469e565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906149ad565b611e4d565b005b3480156109f357600080fd5b506109fc611f65565b604051610a099190614885565b60405180910390f35b348015610a1e57600080fd5b50610a396004803603810190610a349190614759565b611f6b565b604051610a4691906147b4565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190614759565b612056565b604051610a8391906147b4565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906149ad565b612074565b005b348015610ac157600080fd5b50610aca61215f565b604051610ad79190614885565b60405180910390f35b348015610aec57600080fd5b50610b076004803603810190610b0291906147cf565b612165565b604051610b1491906147b4565b60405180910390f35b348015610b2957600080fd5b50610b32612185565b604051610b3f91906147b4565b60405180910390f35b348015610b5457600080fd5b50610b6f6004803603810190610b6a9190614a6d565b612198565b005b348015610b7d57600080fd5b50610b986004803603810190610b9391906149ad565b612385565b005b348015610ba657600080fd5b50610bc16004803603810190610bbc91906149ed565b6124aa565b005b348015610bcf57600080fd5b50610bea6004803603810190610be591906148a0565b6125a9565b005b348015610bf857600080fd5b50610c016126b8565b604051610c0e9190614885565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906148a0565b6126be565b604051610c4b91906147b4565b60405180910390f35b348015610c6057600080fd5b50610c69612813565b604051610c769190614885565b60405180910390f35b348015610c8b57600080fd5b50610c94612819565b604051610ca19190614885565b60405180910390f35b348015610cb657600080fd5b50610cd16004803603810190610ccc9190614a6d565b61281f565b604051610cde9190614885565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d0991906147cf565b6128a6565b005b348015610d1c57600080fd5b50610d25612aa8565b604051610d329190614885565b60405180910390f35b348015610d4757600080fd5b50610d50612aae565b604051610d5d9190614885565b60405180910390f35b348015610d7257600080fd5b50610d7b612ab4565b604051610d889190614885565b60405180910390f35b348015610d9d57600080fd5b50610db86004803603810190610db391906147cf565b612aba565b005b348015610dc657600080fd5b50610dcf612bb1565b604051610ddc9190614885565b60405180910390f35b348015610df157600080fd5b50610dfa612bb7565b604051610e079190614885565b60405180910390f35b348015610e1c57600080fd5b50610e376004803603810190610e3291906147cf565b612bbd565b005b348015610e4557600080fd5b50610e4e612dbf565b604051610e5b9190614885565b60405180910390f35b348015610e7057600080fd5b50610e8b6004803603810190610e8691906147cf565b612dc5565b604051610e9891906147b4565b60405180910390f35b606060038054610eb090614adc565b80601f0160208091040260200160405190810160405280929190818152602001828054610edc90614adc565b8015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b5050505050905090565b6000610f47610f40612e1b565b8484612e23565b6001905092915050565b601a60009054906101000a900460ff1681565b60186020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60155481565b60145481565b610fc6612e1b565b73ffffffffffffffffffffffffffffffffffffffff16610fe4611cf8565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190614b59565b60405180910390fd5b670de0b6b3a76400006103e86005611050610fa8565b61105a9190614ba8565b6110649190614c19565b61106e9190614c19565b8110156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790614cbc565b60405180910390fd5b670de0b6b3a7640000816110c49190614ba8565b60078190555050565b60006110da848484612fec565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611125612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90614d4e565b60405180910390fd5b6111b9856111b1612e1b565b858403612e23565b60019150509392505050565b600081565b60006012905090565b60006112756111e0612e1b565b8484600160006111ee612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112709190614d6e565b612e23565b6001905092915050565b600a60039054906101000a900460ff1681565b7f000000000000000000000000869a1009b4c6e973a9cd881f2eaf5b0af8f5eb2881565b600a60009054906101000a900460ff1681565b601b6020528060005260406000206000915054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136d612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661138b611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890614b59565b60405180910390fd5b6001600a60036101000a81548160ff021916908315150217905550565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611467612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611485611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290614b59565b60405180910390fd5b6114e56000613c98565b565b60006114f1612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661150f611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614b59565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61158f612e1b565b73ffffffffffffffffffffffffffffffffffffffff166115ad611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90614b59565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611666612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611684611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614b59565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61173d612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661175b611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614b59565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16476040516117d790614dd3565b60006040518083038185875af1925050503d8060008114611814576040519150601f19603f3d011682016040523d82523d6000602084013e611819565b606091505b505090508061182757600080fd5b5050565b611833612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611851611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614b59565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61196f612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661198d611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614b59565b60405180910390fd5b82600d8190555081600e8190555080600f81905550600f54600e54600d54611a0b9190614d6e565b611a159190614d6e565b600c819055506005600c541115611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614e34565b60405180910390fd5b505050565b611a6e612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611a8c611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614b59565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b1d919061492f565b602060405180830381865afa158015611b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5e9190614e69565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611b9b929190614e96565b6020604051808303816000875af1158015611bba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bde9190614ed4565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611c25573d6000803e3d6000fd5b5050565b611c31612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611c4f611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90614b59565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506000601a60006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d2a612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611d48611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590614b59565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611dca90614adc565b80601f0160208091040260200160405190810160405280929190818152602001828054611df690614adc565b8015611e435780601f10611e1857610100808354040283529160200191611e43565b820191906000526020600020905b815481529060010190602001808311611e2657829003601f168201915b5050505050905090565b611e55612e1b565b73ffffffffffffffffffffffffffffffffffffffff16611e73611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614b59565b60405180910390fd5b7f000000000000000000000000869a1009b4c6e973a9cd881f2eaf5b0af8f5eb2873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614f73565b60405180910390fd5b611f618282613d5e565b5050565b600f5481565b60008060016000611f7a612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90615005565b60405180910390fd5b61204b612042612e1b565b85858403612e23565b600191505092915050565b600061206a612063612e1b565b8484612fec565b6001905092915050565b61207c612e1b565b73ffffffffffffffffffffffffffffffffffffffff1661209a611cf8565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614b59565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121518282612385565b61215b8282611587565b5050565b60115481565b60196020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6121a0612e1b565b73ffffffffffffffffffffffffffffffffffffffff166121be611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614b59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90615071565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122be919061492f565b602060405180830381865afa1580156122db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ff9190614e69565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161233c929190614e96565b6020604051808303816000875af115801561235b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237f9190614ed4565b50505050565b61238d612e1b565b73ffffffffffffffffffffffffffffffffffffffff166123ab611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f890614b59565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161249e91906147b4565b60405180910390a25050565b6124b2612e1b565b73ffffffffffffffffffffffffffffffffffffffff166124d0611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251d90614b59565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461254e9190614d6e565b6125589190614d6e565b601081905550600560105411156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b906150dd565b60405180910390fd5b505050565b6125b1612e1b565b73ffffffffffffffffffffffffffffffffffffffff166125cf611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90614b59565b60405180910390fd5b670de0b6b3a76400006103e8600a61263b610fa8565b6126459190614ba8565b61264f9190614c19565b6126599190614c19565b81101561269b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126929061516f565b60405180910390fd5b670de0b6b3a7640000816126af9190614ba8565b60098190555050565b60075481565b60006126c8612e1b565b73ffffffffffffffffffffffffffffffffffffffff166126e6611cf8565b73ffffffffffffffffffffffffffffffffffffffff161461273c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273390614b59565b60405180910390fd5b620186a0600161274a610fa8565b6127549190614ba8565b61275e9190614c19565b8210156127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279790615201565b60405180910390fd5b6103e860056127ad610fa8565b6127b79190614ba8565b6127c19190614c19565b821115612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90615293565b60405180910390fd5b8160088190555060019050919050565b60135481565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6128ae612e1b565b73ffffffffffffffffffffffffffffffffffffffff166128cc611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291990614b59565b60405180910390fd5b600a60039054906101000a900460ff1615612972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296990615325565b60405180910390fd5b7f000000000000000000000000869a1009b4c6e973a9cd881f2eaf5b0af8f5eb2873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612a0e5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a44906153b7565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60085481565b600d5481565b600e5481565b612ac2612e1b565b73ffffffffffffffffffffffffffffffffffffffff16612ae0611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90614b59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90615449565b60405180910390fd5b612bae81613c98565b50565b60125481565b60095481565b612bc5612e1b565b73ffffffffffffffffffffffffffffffffffffffff16612be3611cf8565b73ffffffffffffffffffffffffffffffffffffffff1614612c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3090614b59565b60405180910390fd5b600a60039054906101000a900460ff1615612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090615325565b60405180910390fd5b7f000000000000000000000000869a1009b4c6e973a9cd881f2eaf5b0af8f5eb2873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612d255750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b906153b7565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60165481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e89906154db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef89061556d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612fdf9190614885565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361305b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613052906155ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c190615691565b60405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314e906156fd565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131db90615769565b60405180910390fd5b601a60009054906101000a900460ff161561328657601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16613285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327c906157fb565b60405180910390fd5b5b6000810361329f5761329a83836000613dff565b613c93565b600a60009054906101000a900460ff1615613799576132bc611cf8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561332a57506132fa611cf8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133635750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561339c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133b55750600560149054906101000a900460ff16155b1561379857600a60019054906101000a900460ff166134af57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061346f5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6134ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a590615867565b60405180910390fd5b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135525750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135f95760075481111561359c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613593906158f9565b60405180910390fd5b6009546135a883611417565b826135b39190614d6e565b11156135f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135eb90615965565b60405180910390fd5b613797565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561369c5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136eb576007548111156136e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136dd906159f7565b60405180910390fd5b613796565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166137955760095461374883611417565b826137539190614d6e565b1115613794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378b90615965565b60405180910390fd5b5b5b5b5b5b60006137a430611417565b9050600060085482101590508080156137c95750600a60029054906101000a900460ff165b80156137e25750600560149054906101000a900460ff16155b80156138385750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561388e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138e45750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613928576001600560146101000a81548160ff02191690831515021790555061390c61407e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139de5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139e857600090505b60008115613c8357601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a4b57506000601054115b15613b1857613a786064613a6a601054886142a490919063ffffffff16565b6142ba90919063ffffffff16565b905060105460125482613a8b9190614ba8565b613a959190614c19565b60156000828254613aa69190614d6e565b9250508190555060105460135482613abe9190614ba8565b613ac89190614c19565b60166000828254613ad99190614d6e565b9250508190555060105460115482613af19190614ba8565b613afb9190614c19565b60146000828254613b0c9190614d6e565b92505081905550613c3d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613b7357506000600c54115b15613c3c57613ba06064613b92600c54886142a490919063ffffffff16565b6142ba90919063ffffffff16565b9050600c54600e5482613bb39190614ba8565b613bbd9190614c19565b60156000828254613bce9190614d6e565b92505081905550600c54600f5482613be69190614ba8565b613bf09190614c19565b60166000828254613c019190614d6e565b92505081905550600c54600d5482613c199190614ba8565b613c239190614c19565b60146000828254613c349190614d6e565b925050819055505b5b6000811115613c5257613c51873083613dff565b5b60006014541115613c7457613c6b876000601454613dff565b60006014819055505b8085613c809190615a17565b94505b613c8e878787613dff565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e65906155ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed490615691565b60405180910390fd5b613ee88383836142d0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6590615abd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546140019190614d6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516140659190614885565b60405180910390a36140788484846142d5565b50505050565b600061408930611417565b9050600060165460155461409d9190614d6e565b90506000808314806140af5750600082145b156140bc575050506142a2565b60146008546140cb9190614ba8565b8311156140e45760146008546140e19190614ba8565b92505b6000600283601554866140f79190614ba8565b6141019190614c19565b61410b9190614c19565b9050600061412282866142da90919063ffffffff16565b90506000479050614132826142f0565b600061414782476142da90919063ffffffff16565b9050600061418b600260155461415d9190614c19565b886141689190615a17565b61417d601654856142a490919063ffffffff16565b6142ba90919063ffffffff16565b90506000818361419b9190615a17565b9050600060158190555060006016819055506000861180156141bd5750600081115b1561420a576141cc868261452d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260155460405161420193929190615add565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161425090614dd3565b60006040518083038185875af1925050503d806000811461428d576040519150601f19603f3d011682016040523d82523d6000602084013e614292565b606091505b5050809750505050505050505050505b565b600081836142b29190614ba8565b905092915050565b600081836142c89190614c19565b905092915050565b505050565b505050565b600081836142e89190615a17565b905092915050565b6000600267ffffffffffffffff81111561430d5761430c615b14565b5b60405190808252806020026020018201604052801561433b5781602001602082028036833780820191505090505b509050308160008151811061435357614352615b43565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061441c9190615b87565b816001815181106144305761442f615b43565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614495307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612e23565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144f7959493929190615cad565b600060405180830381600087803b15801561451157600080fd5b505af1158015614525573d6000803e3d6000fd5b505050505050565b614558307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612e23565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806145a2611cf8565b426040518863ffffffff1660e01b81526004016145c496959493929190615d07565b60606040518083038185885af11580156145e2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146079190615d68565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561464857808201518184015260208101905061462d565b60008484015250505050565b6000601f19601f8301169050919050565b60006146708261460e565b61467a8185614619565b935061468a81856020860161462a565b61469381614654565b840191505092915050565b600060208201905081810360008301526146b88184614665565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146f0826146c5565b9050919050565b614700816146e5565b811461470b57600080fd5b50565b60008135905061471d816146f7565b92915050565b6000819050919050565b61473681614723565b811461474157600080fd5b50565b6000813590506147538161472d565b92915050565b600080604083850312156147705761476f6146c0565b5b600061477e8582860161470e565b925050602061478f85828601614744565b9150509250929050565b60008115159050919050565b6147ae81614799565b82525050565b60006020820190506147c960008301846147a5565b92915050565b6000602082840312156147e5576147e46146c0565b5b60006147f38482850161470e565b91505092915050565b6000819050919050565b600061482161481c614817846146c5565b6147fc565b6146c5565b9050919050565b600061483382614806565b9050919050565b600061484582614828565b9050919050565b6148558161483a565b82525050565b6000602082019050614870600083018461484c565b92915050565b61487f81614723565b82525050565b600060208201905061489a6000830184614876565b92915050565b6000602082840312156148b6576148b56146c0565b5b60006148c484828501614744565b91505092915050565b6000806000606084860312156148e6576148e56146c0565b5b60006148f48682870161470e565b93505060206149058682870161470e565b925050604061491686828701614744565b9150509250925092565b614929816146e5565b82525050565b60006020820190506149446000830184614920565b92915050565b600060ff82169050919050565b6149608161494a565b82525050565b600060208201905061497b6000830184614957565b92915050565b61498a81614799565b811461499557600080fd5b50565b6000813590506149a781614981565b92915050565b600080604083850312156149c4576149c36146c0565b5b60006149d28582860161470e565b92505060206149e385828601614998565b9150509250929050565b600080600060608486031215614a0657614a056146c0565b5b6000614a1486828701614744565b9350506020614a2586828701614744565b9250506040614a3686828701614744565b9150509250925092565b600060208284031215614a5657614a556146c0565b5b6000614a6484828501614998565b91505092915050565b60008060408385031215614a8457614a836146c0565b5b6000614a928582860161470e565b9250506020614aa38582860161470e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614af457607f821691505b602082108103614b0757614b06614aad565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b43602083614619565b9150614b4e82614b0d565b602082019050919050565b60006020820190508181036000830152614b7281614b36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bb382614723565b9150614bbe83614723565b9250828202614bcc81614723565b91508282048414831517614be357614be2614b79565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c2482614723565b9150614c2f83614723565b925082614c3f57614c3e614bea565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614ca6602f83614619565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614d38602883614619565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b6000614d7982614723565b9150614d8483614723565b9250828201905080821115614d9c57614d9b614b79565b5b92915050565b600081905092915050565b50565b6000614dbd600083614da2565b9150614dc882614dad565b600082019050919050565b6000614dde82614db0565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b6000614e1e601683614619565b9150614e2982614de8565b602082019050919050565b60006020820190508181036000830152614e4d81614e11565b9050919050565b600081519050614e638161472d565b92915050565b600060208284031215614e7f57614e7e6146c0565b5b6000614e8d84828501614e54565b91505092915050565b6000604082019050614eab6000830185614920565b614eb86020830184614876565b9392505050565b600081519050614ece81614981565b92915050565b600060208284031215614eea57614ee96146c0565b5b6000614ef884828501614ebf565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f5d603983614619565b9150614f6882614f01565b604082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614fef602583614619565b9150614ffa82614f93565b604082019050919050565b6000602082019050818103600083015261501e81614fe2565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061505b601a83614619565b915061506682615025565b602082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b60006150c7601783614619565b91506150d282615091565b602082019050919050565b600060208201905081810360008301526150f6816150ba565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b6000615159602483614619565b9150615164826150fd565b604082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151eb603583614619565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061527d603483614619565b915061528882615221565b604082019050919050565b600060208201905081810360008301526152ac81615270565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061530f602183614619565b915061531a826152b3565b604082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b60006153a1602e83614619565b91506153ac82615345565b604082019050919050565b600060208201905081810360008301526153d081615394565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615433602683614619565b915061543e826153d7565b604082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154c5602483614619565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615557602283614619565b9150615562826154fb565b604082019050919050565b600060208201905081810360008301526155868161554a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155e9602583614619565b91506155f48261558d565b604082019050919050565b60006020820190508181036000830152615618816155dc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061567b602383614619565b91506156868261561f565b604082019050919050565b600060208201905081810360008301526156aa8161566e565b9050919050565b7f53656e64657220626c61636b6c69737465640000000000000000000000000000600082015250565b60006156e7601283614619565b91506156f2826156b1565b602082019050919050565b60006020820190508181036000830152615716816156da565b9050919050565b7f526563656976657220626c61636b6c6973746564000000000000000000000000600082015250565b6000615753601483614619565b915061575e8261571d565b602082019050919050565b6000602082019050818103600083015261578281615746565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b60006157e5602983614619565b91506157f082615789565b604082019050919050565b60006020820190508181036000830152615814816157d8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615851601683614619565b915061585c8261581b565b602082019050919050565b6000602082019050818103600083015261588081615844565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006158e3603583614619565b91506158ee82615887565b604082019050919050565b60006020820190508181036000830152615912816158d6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061594f601383614619565b915061595a82615919565b602082019050919050565b6000602082019050818103600083015261597e81615942565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006159e1603683614619565b91506159ec82615985565b604082019050919050565b60006020820190508181036000830152615a10816159d4565b9050919050565b6000615a2282614723565b9150615a2d83614723565b9250828203905081811115615a4557615a44614b79565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615aa7602683614619565b9150615ab282615a4b565b604082019050919050565b60006020820190508181036000830152615ad681615a9a565b9050919050565b6000606082019050615af26000830186614876565b615aff6020830185614876565b615b0c6040830184614876565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b81816146f7565b92915050565b600060208284031215615b9d57615b9c6146c0565b5b6000615bab84828501615b72565b91505092915050565b6000819050919050565b6000615bd9615bd4615bcf84615bb4565b6147fc565b614723565b9050919050565b615be981615bbe565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c24816146e5565b82525050565b6000615c368383615c1b565b60208301905092915050565b6000602082019050919050565b6000615c5a82615bef565b615c648185615bfa565b9350615c6f83615c0b565b8060005b83811015615ca0578151615c878882615c2a565b9750615c9283615c42565b925050600181019050615c73565b5085935050505092915050565b600060a082019050615cc26000830188614876565b615ccf6020830187615be0565b8181036040830152615ce18186615c4f565b9050615cf06060830185614920565b615cfd6080830184614876565b9695505050505050565b600060c082019050615d1c6000830189614920565b615d296020830188614876565b615d366040830187615be0565b615d436060830186615be0565b615d506080830185614920565b615d5d60a0830184614876565b979650505050505050565b600080600060608486031215615d8157615d806146c0565b5b6000615d8f86828701614e54565b9350506020615da086828701614e54565b9250506040615db186828701614e54565b915050925092509256fea26469706673582212203163060167c3f47d72ea3d5b80d6558eba9b41e933da4426a96af809ac659bf064736f6c63430008120033

Deployed Bytecode Sourcemap

31052:17224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9011:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11178:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32561:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32274:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31136:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10131:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32057:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32022:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36254:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11829:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31239:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9973:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12730:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31597:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31194;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31477:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32604:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38824:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31328:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46798:90;;;;;;;;;;;;;:::i;:::-;;31881:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31557:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10302:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:103;;;;;;;;;;;;;:::i;:::-;;35558:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36802:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47909:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46548:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38655:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37173:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45986:258;;;;;;;;;;;;;:::i;:::-;;35358:148;;;;;;;;;;;;;:::i;:::-;;1877:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37065:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9230:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38147:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31847:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13448:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10642:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48015:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31916:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32495:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31517:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46252:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37957:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37560:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36537:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31362:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35749:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31987:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31744:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10880:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47373:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31404:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31778:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31810:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2786:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31949:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31444:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46896:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32097:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38958:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9011:100;9065:13;9098:5;9091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9011:100;:::o;11178:169::-;11261:4;11278:39;11287:12;:10;:12::i;:::-;11301:7;11310:6;11278:8;:39::i;:::-;11335:4;11328:11;;11178:169;;;;:::o;32561:36::-;;;;;;;;;;;;;:::o;32274:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31136:51::-;;;:::o;10131:108::-;10192:7;10219:12;;10212:19;;10131:108;:::o;32057:33::-;;;;:::o;32022:28::-;;;;:::o;36254:275::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36391:4:::1;36383;36378:1;36362:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36361:26;;;;:::i;:::-;36360:35;;;;:::i;:::-;36350:6;:45;;36328:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36514:6;36504;:17;;;;:::i;:::-;36481:20;:40;;;;36254:275:::0;:::o;11829:492::-;11969:4;11986:36;11996:6;12004:9;12015:6;11986:9;:36::i;:::-;12035:24;12062:11;:19;12074:6;12062:19;;;;;;;;;;;;;;;:33;12082:12;:10;:12::i;:::-;12062:33;;;;;;;;;;;;;;;;12035:60;;12134:6;12114:16;:26;;12106:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12221:57;12230:6;12238:12;:10;:12::i;:::-;12271:6;12252:16;:25;12221:8;:57::i;:::-;12309:4;12302:11;;;11829:492;;;;;:::o;31239:50::-;31285:3;31239:50;:::o;9973:93::-;10031:5;10056:2;10049:9;;9973:93;:::o;12730:215::-;12818:4;12835:80;12844:12;:10;:12::i;:::-;12858:7;12904:10;12867:11;:25;12879:12;:10;:12::i;:::-;12867:25;;;;;;;;;;;;;;;:34;12893:7;12867:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12835:8;:80::i;:::-;12933:4;12926:11;;12730:215;;;;:::o;31597:38::-;;;;;;;;;;;;;:::o;31194:::-;;;:::o;31477:33::-;;;;;;;;;;;;;:::o;32604:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38824:126::-;38890:4;38914:19;:28;38934:7;38914:28;;;;;;;;;;;;;;;;;;;;;;;;;38907:35;;38824:126;;;:::o;31328:25::-;;;;;;;;;;;;;:::o;46798:90::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46876:4:::1;46855:18;;:25;;;;;;;;;;;;;;;;;;46798:90::o:0;31881:28::-;;;;:::o;31557:31::-;;;;;;;;;;;;;:::o;10302:127::-;10376:7;10403:9;:18;10413:7;10403:18;;;;;;;;;;;;;;;;10396:25;;10302:127;;;:::o;2528:103::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2593:30:::1;2620:1;2593:18;:30::i;:::-;2528:103::o:0;35558:121::-;35610:4;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35644:5:::1;35627:14;;:22;;;;;;;;;;;;;;;;;;35667:4;35660:11;;35558:121:::0;:::o;36802:167::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36957:4:::1;36915:31;:39;36947:6;36915:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36802:167:::0;;:::o;47909:98::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47994:5:::1;47973:11;:18;47985:5;47973:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;47909:98:::0;:::o;46548:196::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46621:12:::1;46639:6;:11;;46672:21;46639:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46620:89;;;46728:7;46720:16;;;::::0;::::1;;46609:135;46548:196:::0;:::o;38655:161::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38764:10:::1;;;;;;;;;;;38735:40;;38753:9;38735:40;;;;;;;;;;;;38799:9;38786:10;;:22;;;;;;;;;;;;;;;;;;38655:161:::0;:::o;37173:379::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37332:8:::1;37319:10;:21;;;;37369:13;37351:15;:31;;;;37406:8;37393:10;:21;;;;37471:10;;37453:15;;37440:10;;:28;;;;:::i;:::-;:41;;;;:::i;:::-;37425:12;:56;;;;37516:1;37500:12;;:17;;37492:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;37173:379:::0;;;:::o;45986:258::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46048:15:::1;46081:4;46066:31;;;46106:4;46066:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46048:64;;46138:4;46123:30;;;46154:10;46166:7;46123:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46193:10;46185:28;;:51;46214:21;46185:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46037:207;45986:258::o:0;35358:148::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35429:4:::1;35413:13;;:20;;;;;;;;;;;;;;;;;;35458:4;35444:11;;:18;;;;;;;;;;;;;;;;;;35493:5;35473:17;;:25;;;;;;;;;;;;;;;;;;35358:148::o:0;1877:87::-;1923:7;1950:6;;;;;;;;;;;1943:13;;1877:87;:::o;37065:100::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37150:7:::1;37136:11;;:21;;;;;;;;;;;;;;;;;;37065:100:::0;:::o;9230:104::-;9286:13;9319:7;9312:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9230:104;:::o;38147:304::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38291:13:::1;38283:21;;:4;:21;;::::0;38261:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38402:41;38431:4;38437:5;38402:28;:41::i;:::-;38147:304:::0;;:::o;31847:25::-;;;;:::o;13448:413::-;13541:4;13558:24;13585:11;:25;13597:12;:10;:12::i;:::-;13585:25;;;;;;;;;;;;;;;:34;13611:7;13585:34;;;;;;;;;;;;;;;;13558:61;;13658:15;13638:16;:35;;13630:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13751:67;13760:12;:10;:12::i;:::-;13774:7;13802:15;13783:16;:34;13751:8;:67::i;:::-;13849:4;13842:11;;;13448:413;;;;:::o;10642:175::-;10728:4;10745:42;10755:12;:10;:12::i;:::-;10769:9;10780:6;10745:9;:42::i;:::-;10805:4;10798:11;;10642:175;;;;:::o;48015:258::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48149:12:::1;48114:25;:32;48140:5;48114:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;48172:36;48188:5;48195:12;48172:15;:36::i;:::-;48219:46;48245:5;48252:12;48219:25;:46::i;:::-;48015:258:::0;;:::o;31916:26::-;;;;:::o;32495:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31517:33::-;;;;;;;;;;;;;:::o;46252:288::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46365:1:::1;46347:20;;:6;:20;;::::0;46339:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46409:24;46443:6;46436:24;;;46469:4;46436:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46409:66;;46493:6;46486:23;;;46510:3;46515:16;46486:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46328:212;46252:288:::0;;:::o;37957:182::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38073:8:::1;38042:19;:28;38062:7;38042:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38113:7;38097:34;;;38122:8;38097:34;;;;;;:::i;:::-;;;;;;;;37957:182:::0;;:::o;37560:389::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37721:8:::1;37707:11;:22;;;;37759:13;37740:16;:32;;;;37797:8;37783:11;:22;;;;37865:11;;37846:16;;37832:11;;:30;;;;:::i;:::-;:44;;;;:::i;:::-;37816:13;:60;;;;37912:1;37895:13;;:18;;37887:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;37560:389:::0;;;:::o;36537:257::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36678:4:::1;36670;36664:2;36648:13;:11;:13::i;:::-;:18;;;;:::i;:::-;36647:27;;;;:::i;:::-;36646:36;;;;:::i;:::-;36636:6;:46;;36614:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;36779:6;36769;:17;;;;:::i;:::-;36757:9;:29;;;;36537:257:::0;:::o;31362:35::-;;;;:::o;35749:497::-;35857:4;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35936:6:::1;35931:1;35915:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35914:28;;;;:::i;:::-;35901:9;:41;;35879:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36091:4;36086:1;36070:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36069:26;;;;:::i;:::-;36056:9;:39;;36034:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;36207:9;36186:18;:30;;;;36234:4;36227:11;;35749:497:::0;;;:::o;31987:26::-;;;;:::o;31744:27::-;;;;:::o;10880:151::-;10969:7;10996:11;:18;11008:5;10996:18;;;;;;;;;;;;;;;:27;11015:7;10996:27;;;;;;;;;;;;;;;;10989:34;;10880:151;;;;:::o;47373:403::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47461:18:::1;;;;;;;;;;;47460:19;47452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47571:13;47550:35;;:9;:35;;;;:103;;;;;47610:42;47589:64;;:9;:64;;;;47550:103;47528:200;;;;;;;;;;;;:::i;:::-;;;;;;;;;47764:4;47739:11;:22;47751:9;47739:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47373:403:::0;:::o;31404:33::-;;;;:::o;31778:25::-;;;;:::o;31810:30::-;;;;:::o;2786:201::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2895:1:::1;2875:22;;:8;:22;;::::0;2867:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2951:28;2970:8;2951:18;:28::i;:::-;2786:201:::0;:::o;31949:31::-;;;;:::o;31444:24::-;;;;:::o;46896:374::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46967:18:::1;;;;;;;;;;;46966:19;46958:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47073:13;47056:31;;:5;:31;;;;:95;;;;;47108:42;47091:60;;:5;:60;;;;47056:95;47034:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;47258:4;47237:11;:18;47249:5;47237:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;46896:374:::0;:::o;32097:28::-;;;;:::o;38958:113::-;39019:4;39043:11;:20;39055:7;39043:20;;;;;;;;;;;;;;;;;;;;;;;;;39036:27;;38958:113;;;:::o;744:98::-;797:7;824:10;817:17;;744:98;:::o;17132:380::-;17285:1;17268:19;;:5;:19;;;17260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17366:1;17347:21;;:7;:21;;;17339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17450:6;17420:11;:18;17432:5;17420:18;;;;;;;;;;;;;;;:27;17439:7;17420:27;;;;;;;;;;;;;;;:36;;;;17488:7;17472:32;;17481:5;17472:32;;;17497:6;17472:32;;;;;;:::i;:::-;;;;;;;;17132:380;;;:::o;39079:4289::-;39227:1;39211:18;;:4;:18;;;39203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39304:1;39290:16;;:2;:16;;;39282:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39366:11;:17;39378:4;39366:17;;;;;;;;;;;;;;;;;;;;;;;;;39365:18;39357:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;39425:11;:15;39437:2;39425:15;;;;;;;;;;;;;;;;;;;;;;;;;39424:16;39416:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;39481:17;;;;;;;;;;;39477:135;;;39523:25;:31;39549:4;39523:31;;;;;;;;;;;;;;;;;;;;;;;;;39515:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39477:135;39638:1;39628:6;:11;39624:93;;39656:28;39672:4;39678:2;39682:1;39656:15;:28::i;:::-;39699:7;;39624:93;39733:14;;;;;;;;;;;39729:1690;;;39794:7;:5;:7::i;:::-;39786:15;;:4;:15;;;;:49;;;;;39828:7;:5;:7::i;:::-;39822:13;;:2;:13;;;;39786:49;:86;;;;;39870:1;39856:16;;:2;:16;;;;39786:86;:124;;;;;31285:3;39893:17;;:2;:17;;;;39786:124;:154;;;;;39932:8;;;;;;;;;;;39931:9;39786:154;39764:1644;;;39980:13;;;;;;;;;;;39975:223;;40052:19;:25;40072:4;40052:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40081:19;:23;40101:2;40081:23;;;;;;;;;;;;;;;;;;;;;;;;;40052:52;40018:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39975:223;40272:25;:31;40298:4;40272:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40329:31;:35;40361:2;40329:35;;;;;;;;;;;;;;;;;;;;;;;;;40328:36;40272:92;40246:1147;;;40451:20;;40441:6;:30;;40407:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40659:9;;40642:13;40652:2;40642:9;:13::i;:::-;40633:6;:22;;;;:::i;:::-;:35;;40599:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40246:1147;;;40837:25;:29;40863:2;40837:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40892:31;:37;40924:4;40892:37;;;;;;;;;;;;;;;;;;;;;;;;;40891:38;40837:92;40811:582;;;41016:20;;41006:6;:30;;40972:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40811:582;;;41173:31;:35;41205:2;41173:35;;;;;;;;;;;;;;;;;;;;;;;;;41168:225;;41293:9;;41276:13;41286:2;41276:9;:13::i;:::-;41267:6;:22;;;;:::i;:::-;:35;;41233:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41168:225;40811:582;40246:1147;39764:1644;39729:1690;41431:28;41462:24;41480:4;41462:9;:24::i;:::-;41431:55;;41499:12;41538:18;;41514:20;:42;;41499:57;;41587:7;:35;;;;;41611:11;;;;;;;;;;;41587:35;:61;;;;;41640:8;;;;;;;;;;;41639:9;41587:61;:110;;;;;41666:25;:31;41692:4;41666:31;;;;;;;;;;;;;;;;;;;;;;;;;41665:32;41587:110;:153;;;;;41715:19;:25;41735:4;41715:25;;;;;;;;;;;;;;;;;;;;;;;;;41714:26;41587:153;:194;;;;;41758:19;:23;41778:2;41758:23;;;;;;;;;;;;;;;;;;;;;;;;;41757:24;41587:194;41569:326;;;41819:4;41808:8;;:15;;;;;;;;;;;;;;;;;;41840:10;:8;:10::i;:::-;41878:5;41867:8;;:16;;;;;;;;;;;;;;;;;;41569:326;41907:12;41923:8;;;;;;;;;;;41922:9;41907:24;;42033:19;:25;42053:4;42033:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42062:19;:23;42082:2;42062:23;;;;;;;;;;;;;;;;;;;;;;;;;42033:52;42029:100;;;42112:5;42102:15;;42029:100;42141:12;42246:7;42242:1073;;;42298:25;:29;42324:2;42298:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42347:1;42331:13;;:17;42298:50;42294:752;;;42376:34;42406:3;42376:25;42387:13;;42376:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42369:41;;42479:13;;42459:16;;42452:4;:23;;;;:::i;:::-;42451:41;;;;:::i;:::-;42429:18;;:63;;;;;;;:::i;:::-;;;;;;;;42551:13;;42536:11;;42529:4;:18;;;;:::i;:::-;42528:36;;;;:::i;:::-;42511:13;;:53;;;;;;;:::i;:::-;;;;;;;;42623:13;;42608:11;;42601:4;:18;;;;:::i;:::-;42600:36;;;;:::i;:::-;42583:13;;:53;;;;;;;:::i;:::-;;;;;;;;42294:752;;;42698:25;:31;42724:4;42698:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42748:1;42733:12;;:16;42698:51;42694:352;;;42777:33;42806:3;42777:24;42788:12;;42777:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42770:40;;42878:12;;42859:15;;42852:4;:22;;;;:::i;:::-;42851:39;;;;:::i;:::-;42829:18;;:61;;;;;;;:::i;:::-;;;;;;;;42948:12;;42934:10;;42927:4;:17;;;;:::i;:::-;42926:34;;;;:::i;:::-;42909:13;;:51;;;;;;;:::i;:::-;;;;;;;;43018:12;;43004:10;;42997:4;:17;;;;:::i;:::-;42996:34;;;;:::i;:::-;42979:13;;:51;;;;;;;:::i;:::-;;;;;;;;42694:352;42294:752;43073:1;43066:4;:8;43062:91;;;43095:42;43111:4;43125;43132;43095:15;:42::i;:::-;43062:91;43183:1;43167:13;;:17;43163:110;;;43193:49;43209:4;31285:3;43228:13;;43193:15;:49::i;:::-;43265:1;43249:13;:17;;;;43163:110;43299:4;43289:14;;;;;:::i;:::-;;;42242:1073;43327:33;43343:4;43349:2;43353:6;43327:15;:33::i;:::-;39192:4176;;;;39079:4289;;;;:::o;3147:191::-;3221:16;3240:6;;;;;;;;;;;3221:25;;3266:8;3257:6;;:17;;;;;;;;;;;;;;;;;;3321:8;3290:40;;3311:8;3290:40;;;;;;;;;;;;3210:128;3147:191;:::o;38459:188::-;38576:5;38542:25;:31;38568:4;38542:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38633:5;38599:40;;38627:4;38599:40;;;;;;;;;;;;38459:188;;:::o;14351:733::-;14509:1;14491:20;;:6;:20;;;14483:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14593:1;14572:23;;:9;:23;;;14564:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14648:47;14669:6;14677:9;14688:6;14648:20;:47::i;:::-;14708:21;14732:9;:17;14742:6;14732:17;;;;;;;;;;;;;;;;14708:41;;14785:6;14768:13;:23;;14760:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14906:6;14890:13;:22;14870:9;:17;14880:6;14870:17;;;;;;;;;;;;;;;:42;;;;14958:6;14934:9;:20;14944:9;14934:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14999:9;14982:35;;14991:6;14982:35;;;15010:6;14982:35;;;;;;:::i;:::-;;;;;;;;15030:46;15050:6;15058:9;15069:6;15030:19;:46::i;:::-;14472:612;14351:733;;;:::o;44494:1484::-;44533:23;44559:24;44577:4;44559:9;:24::i;:::-;44533:50;;44594:25;44656:13;;44622:18;;:47;;;;:::i;:::-;44594:75;;44680:12;44728:1;44709:15;:20;:46;;;;44754:1;44733:17;:22;44709:46;44705:85;;;44772:7;;;;;44705:85;44845:2;44824:18;;:23;;;;:::i;:::-;44806:15;:41;44802:115;;;44903:2;44882:18;;:23;;;;:::i;:::-;44864:41;;44802:115;44978:23;45091:1;45058:17;45023:18;;45005:15;:36;;;;:::i;:::-;45004:71;;;;:::i;:::-;:88;;;;:::i;:::-;44978:114;;45103:26;45132:36;45152:15;45132;:19;;:36;;;;:::i;:::-;45103:65;;45181:25;45209:21;45181:49;;45243:36;45260:18;45243:16;:36::i;:::-;45292:18;45313:44;45339:17;45313:21;:25;;:44;;;;:::i;:::-;45292:65;;45370:18;45391:79;45467:1;45446:18;;:22;;;;:::i;:::-;45425:17;:44;;;;:::i;:::-;45391:29;45406:13;;45391:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;45370:100;;45483:23;45522:10;45509;:23;;;;:::i;:::-;45483:49;;45566:1;45545:18;:22;;;;45594:1;45578:13;:17;;;;45630:1;45612:15;:19;:42;;;;;45653:1;45635:15;:19;45612:42;45608:278;;;45671:46;45684:15;45701;45671:12;:46::i;:::-;45737:137;45770:18;45807:15;45841:18;;45737:137;;;;;;;;:::i;:::-;;;;;;;;45608:278;45920:10;;;;;;;;;;;45912:24;;45944:21;45912:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45898:72;;;;;44522:1456;;;;;;;;;44494:1484;:::o;22264:98::-;22322:7;22353:1;22349;:5;;;;:::i;:::-;22342:12;;22264:98;;;;:::o;22663:::-;22721:7;22752:1;22748;:5;;;;:::i;:::-;22741:12;;22663:98;;;;:::o;18112:125::-;;;;:::o;18841:124::-;;;;:::o;21907:98::-;21965:7;21996:1;21992;:5;;;;:::i;:::-;21985:12;;21907:98;;;;:::o;43376:589::-;43502:21;43540:1;43526:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43502:40;;43571:4;43553;43558:1;43553:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43597:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43587:4;43592:1;43587:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43632:62;43649:4;43664:15;43682:11;43632:8;:62::i;:::-;43733:15;:66;;;43814:11;43840:1;43884:4;43911;43931:15;43733:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43431:534;43376:589;:::o;43973:513::-;44121:62;44138:4;44153:15;44171:11;44121:8;:62::i;:::-;44226:15;:31;;;44265:9;44298:4;44318:11;44344:1;44387;44430:7;:5;:7::i;:::-;44452:15;44226:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43973:513;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:147::-;13863:11;13900:3;13885:18;;13762:147;;;;:::o;13915:114::-;;:::o;14035:398::-;14194:3;14215:83;14296:1;14291:3;14215:83;:::i;:::-;14208:90;;14307:93;14396:3;14307:93;:::i;:::-;14425:1;14420:3;14416:11;14409:18;;14035:398;;;:::o;14439:379::-;14623:3;14645:147;14788:3;14645:147;:::i;:::-;14638:154;;14809:3;14802:10;;14439:379;;;:::o;14824:172::-;14964:24;14960:1;14952:6;14948:14;14941:48;14824:172;:::o;15002:366::-;15144:3;15165:67;15229:2;15224:3;15165:67;:::i;:::-;15158:74;;15241:93;15330:3;15241:93;:::i;:::-;15359:2;15354:3;15350:12;15343:19;;15002:366;;;:::o;15374:419::-;15540:4;15578:2;15567:9;15563:18;15555:26;;15627:9;15621:4;15617:20;15613:1;15602:9;15598:17;15591:47;15655:131;15781:4;15655:131;:::i;:::-;15647:139;;15374:419;;;:::o;15799:143::-;15856:5;15887:6;15881:13;15872:22;;15903:33;15930:5;15903:33;:::i;:::-;15799:143;;;;:::o;15948:351::-;16018:6;16067:2;16055:9;16046:7;16042:23;16038:32;16035:119;;;16073:79;;:::i;:::-;16035:119;16193:1;16218:64;16274:7;16265:6;16254:9;16250:22;16218:64;:::i;:::-;16208:74;;16164:128;15948:351;;;;:::o;16305:332::-;16426:4;16464:2;16453:9;16449:18;16441:26;;16477:71;16545:1;16534:9;16530:17;16521:6;16477:71;:::i;:::-;16558:72;16626:2;16615:9;16611:18;16602:6;16558:72;:::i;:::-;16305:332;;;;;:::o;16643:137::-;16697:5;16728:6;16722:13;16713:22;;16744:30;16768:5;16744:30;:::i;:::-;16643:137;;;;:::o;16786:345::-;16853:6;16902:2;16890:9;16881:7;16877:23;16873:32;16870:119;;;16908:79;;:::i;:::-;16870:119;17028:1;17053:61;17106:7;17097:6;17086:9;17082:22;17053:61;:::i;:::-;17043:71;;16999:125;16786:345;;;;:::o;17137:244::-;17277:34;17273:1;17265:6;17261:14;17254:58;17346:27;17341:2;17333:6;17329:15;17322:52;17137:244;:::o;17387:366::-;17529:3;17550:67;17614:2;17609:3;17550:67;:::i;:::-;17543:74;;17626:93;17715:3;17626:93;:::i;:::-;17744:2;17739:3;17735:12;17728:19;;17387:366;;;:::o;17759:419::-;17925:4;17963:2;17952:9;17948:18;17940:26;;18012:9;18006:4;18002:20;17998:1;17987:9;17983:17;17976:47;18040:131;18166:4;18040:131;:::i;:::-;18032:139;;17759:419;;;:::o;18184:224::-;18324:34;18320:1;18312:6;18308:14;18301:58;18393:7;18388:2;18380:6;18376:15;18369:32;18184:224;:::o;18414:366::-;18556:3;18577:67;18641:2;18636:3;18577:67;:::i;:::-;18570:74;;18653:93;18742:3;18653:93;:::i;:::-;18771:2;18766:3;18762:12;18755:19;;18414:366;;;:::o;18786:419::-;18952:4;18990:2;18979:9;18975:18;18967:26;;19039:9;19033:4;19029:20;19025:1;19014:9;19010:17;19003:47;19067:131;19193:4;19067:131;:::i;:::-;19059:139;;18786:419;;;:::o;19211:176::-;19351:28;19347:1;19339:6;19335:14;19328:52;19211:176;:::o;19393:366::-;19535:3;19556:67;19620:2;19615:3;19556:67;:::i;:::-;19549:74;;19632:93;19721:3;19632:93;:::i;:::-;19750:2;19745:3;19741:12;19734:19;;19393:366;;;:::o;19765:419::-;19931:4;19969:2;19958:9;19954:18;19946:26;;20018:9;20012:4;20008:20;20004:1;19993:9;19989:17;19982:47;20046:131;20172:4;20046:131;:::i;:::-;20038:139;;19765:419;;;:::o;20190:173::-;20330:25;20326:1;20318:6;20314:14;20307:49;20190:173;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:223::-;21306:34;21302:1;21294:6;21290:14;21283:58;21375:6;21370:2;21362:6;21358:15;21351:31;21166:223;:::o;21395:366::-;21537:3;21558:67;21622:2;21617:3;21558:67;:::i;:::-;21551:74;;21634:93;21723:3;21634:93;:::i;:::-;21752:2;21747:3;21743:12;21736:19;;21395:366;;;:::o;21767:419::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:240::-;22332:34;22328:1;22320:6;22316:14;22309:58;22401:23;22396:2;22388:6;22384:15;22377:48;22192:240;:::o;22438:366::-;22580:3;22601:67;22665:2;22660:3;22601:67;:::i;:::-;22594:74;;22677:93;22766:3;22677:93;:::i;:::-;22795:2;22790:3;22786:12;22779:19;;22438:366;;;:::o;22810:419::-;22976:4;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22810:419;;;:::o;23235:239::-;23375:34;23371:1;23363:6;23359:14;23352:58;23444:22;23439:2;23431:6;23427:15;23420:47;23235:239;:::o;23480:366::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:419::-;24018:4;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:131;24259:4;24133:131;:::i;:::-;24125:139;;23852:419;;;:::o;24277:220::-;24417:34;24413:1;24405:6;24401:14;24394:58;24486:3;24481:2;24473:6;24469:15;24462:28;24277:220;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:233::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:16;25504:2;25496:6;25492:15;25485:41;25300:233;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:225::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:8;26540:2;26532:6;26528:15;26521:33;26336:225;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:223::-;27504:34;27500:1;27492:6;27488:14;27481:58;27573:6;27568:2;27560:6;27556:15;27549:31;27364:223;:::o;27593:366::-;27735:3;27756:67;27820:2;27815:3;27756:67;:::i;:::-;27749:74;;27832:93;27921:3;27832:93;:::i;:::-;27950:2;27945:3;27941:12;27934:19;;27593:366;;;:::o;27965:419::-;28131:4;28169:2;28158:9;28154:18;28146:26;;28218:9;28212:4;28208:20;28204:1;28193:9;28189:17;28182:47;28246:131;28372:4;28246:131;:::i;:::-;28238:139;;27965:419;;;:::o;28390:221::-;28530:34;28526:1;28518:6;28514:14;28507:58;28599:4;28594:2;28586:6;28582:15;28575:29;28390:221;:::o;28617:366::-;28759:3;28780:67;28844:2;28839:3;28780:67;:::i;:::-;28773:74;;28856:93;28945:3;28856:93;:::i;:::-;28974:2;28969:3;28965:12;28958:19;;28617:366;;;:::o;28989:419::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:224::-;29554:34;29550:1;29542:6;29538:14;29531:58;29623:7;29618:2;29610:6;29606:15;29599:32;29414:224;:::o;29644:366::-;29786:3;29807:67;29871:2;29866:3;29807:67;:::i;:::-;29800:74;;29883:93;29972:3;29883:93;:::i;:::-;30001:2;29996:3;29992:12;29985:19;;29644:366;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30016:419;;;:::o;30441:222::-;30581:34;30577:1;30569:6;30565:14;30558:58;30650:5;30645:2;30637:6;30633:15;30626:30;30441:222;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:168::-;31606:20;31602:1;31594:6;31590:14;31583:44;31466:168;:::o;31640:366::-;31782:3;31803:67;31867:2;31862:3;31803:67;:::i;:::-;31796:74;;31879:93;31968:3;31879:93;:::i;:::-;31997:2;31992:3;31988:12;31981:19;;31640:366;;;:::o;32012:419::-;32178:4;32216:2;32205:9;32201:18;32193:26;;32265:9;32259:4;32255:20;32251:1;32240:9;32236:17;32229:47;32293:131;32419:4;32293:131;:::i;:::-;32285:139;;32012:419;;;:::o;32437:170::-;32577:22;32573:1;32565:6;32561:14;32554:46;32437:170;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:228::-;33550:34;33546:1;33538:6;33534:14;33527:58;33619:11;33614:2;33606:6;33602:15;33595:36;33410:228;:::o;33644:366::-;33786:3;33807:67;33871:2;33866:3;33807:67;:::i;:::-;33800:74;;33883:93;33972:3;33883:93;:::i;:::-;34001:2;33996:3;33992:12;33985:19;;33644:366;;;:::o;34016:419::-;34182:4;34220:2;34209:9;34205:18;34197:26;;34269:9;34263:4;34259:20;34255:1;34244:9;34240:17;34233:47;34297:131;34423:4;34297:131;:::i;:::-;34289:139;;34016:419;;;:::o;34441:172::-;34581:24;34577:1;34569:6;34565:14;34558:48;34441:172;:::o;34619:366::-;34761:3;34782:67;34846:2;34841:3;34782:67;:::i;:::-;34775:74;;34858:93;34947:3;34858:93;:::i;:::-;34976:2;34971:3;34967:12;34960:19;;34619:366;;;:::o;34991:419::-;35157:4;35195:2;35184:9;35180:18;35172:26;;35244:9;35238:4;35234:20;35230:1;35219:9;35215:17;35208:47;35272:131;35398:4;35272:131;:::i;:::-;35264:139;;34991:419;;;:::o;35416:240::-;35556:34;35552:1;35544:6;35540:14;35533:58;35625:23;35620:2;35612:6;35608:15;35601:48;35416:240;:::o;35662:366::-;35804:3;35825:67;35889:2;35884:3;35825:67;:::i;:::-;35818:74;;35901:93;35990:3;35901:93;:::i;:::-;36019:2;36014:3;36010:12;36003:19;;35662:366;;;:::o;36034:419::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:169::-;36599:21;36595:1;36587:6;36583:14;36576:45;36459:169;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:241::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:24;37635:2;37627:6;37623:15;37616:49;37431:241;:::o;37678:366::-;37820:3;37841:67;37905:2;37900:3;37841:67;:::i;:::-;37834:74;;37917:93;38006:3;37917:93;:::i;:::-;38035:2;38030:3;38026:12;38019:19;;37678:366;;;:::o;38050:419::-;38216:4;38254:2;38243:9;38239:18;38231:26;;38303:9;38297:4;38293:20;38289:1;38278:9;38274:17;38267:47;38331:131;38457:4;38331:131;:::i;:::-;38323:139;;38050:419;;;:::o;38475:194::-;38515:4;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38569:20;38587:1;38569:20;:::i;:::-;38564:25;;38613:1;38610;38606:9;38598:17;;38637:1;38631:4;38628:11;38625:37;;;38642:18;;:::i;:::-;38625:37;38475:194;;;;:::o;38675:225::-;38815:34;38811:1;38803:6;38799:14;38792:58;38884:8;38879:2;38871:6;38867:15;38860:33;38675:225;:::o;38906:366::-;39048:3;39069:67;39133:2;39128:3;39069:67;:::i;:::-;39062:74;;39145:93;39234:3;39145:93;:::i;:::-;39263:2;39258:3;39254:12;39247:19;;38906:366;;;:::o;39278:419::-;39444:4;39482:2;39471:9;39467:18;39459:26;;39531:9;39525:4;39521:20;39517:1;39506:9;39502:17;39495:47;39559:131;39685:4;39559:131;:::i;:::-;39551:139;;39278:419;;;:::o;39703:442::-;39852:4;39890:2;39879:9;39875:18;39867:26;;39903:71;39971:1;39960:9;39956:17;39947:6;39903:71;:::i;:::-;39984:72;40052:2;40041:9;40037:18;40028:6;39984:72;:::i;:::-;40066;40134:2;40123:9;40119:18;40110:6;40066:72;:::i;:::-;39703:442;;;;;;:::o;40151:180::-;40199:77;40196:1;40189:88;40296:4;40293:1;40286:15;40320:4;40317:1;40310:15;40337:180;40385:77;40382:1;40375:88;40482:4;40479:1;40472:15;40506:4;40503:1;40496:15;40523:143;40580:5;40611:6;40605:13;40596:22;;40627:33;40654:5;40627:33;:::i;:::-;40523:143;;;;:::o;40672:351::-;40742:6;40791:2;40779:9;40770:7;40766:23;40762:32;40759:119;;;40797:79;;:::i;:::-;40759:119;40917:1;40942:64;40998:7;40989:6;40978:9;40974:22;40942:64;:::i;:::-;40932:74;;40888:128;40672:351;;;;:::o;41029:85::-;41074:7;41103:5;41092:16;;41029:85;;;:::o;41120:158::-;41178:9;41211:61;41229:42;41238:32;41264:5;41238:32;:::i;:::-;41229:42;:::i;:::-;41211:61;:::i;:::-;41198:74;;41120:158;;;:::o;41284:147::-;41379:45;41418:5;41379:45;:::i;:::-;41374:3;41367:58;41284:147;;:::o;41437:114::-;41504:6;41538:5;41532:12;41522:22;;41437:114;;;:::o;41557:184::-;41656:11;41690:6;41685:3;41678:19;41730:4;41725:3;41721:14;41706:29;;41557:184;;;;:::o;41747:132::-;41814:4;41837:3;41829:11;;41867:4;41862:3;41858:14;41850:22;;41747:132;;;:::o;41885:108::-;41962:24;41980:5;41962:24;:::i;:::-;41957:3;41950:37;41885:108;;:::o;41999:179::-;42068:10;42089:46;42131:3;42123:6;42089:46;:::i;:::-;42167:4;42162:3;42158:14;42144:28;;41999:179;;;;:::o;42184:113::-;42254:4;42286;42281:3;42277:14;42269:22;;42184:113;;;:::o;42333:732::-;42452:3;42481:54;42529:5;42481:54;:::i;:::-;42551:86;42630:6;42625:3;42551:86;:::i;:::-;42544:93;;42661:56;42711:5;42661:56;:::i;:::-;42740:7;42771:1;42756:284;42781:6;42778:1;42775:13;42756:284;;;42857:6;42851:13;42884:63;42943:3;42928:13;42884:63;:::i;:::-;42877:70;;42970:60;43023:6;42970:60;:::i;:::-;42960:70;;42816:224;42803:1;42800;42796:9;42791:14;;42756:284;;;42760:14;43056:3;43049:10;;42457:608;;;42333:732;;;;:::o;43071:831::-;43334:4;43372:3;43361:9;43357:19;43349:27;;43386:71;43454:1;43443:9;43439:17;43430:6;43386:71;:::i;:::-;43467:80;43543:2;43532:9;43528:18;43519:6;43467:80;:::i;:::-;43594:9;43588:4;43584:20;43579:2;43568:9;43564:18;43557:48;43622:108;43725:4;43716:6;43622:108;:::i;:::-;43614:116;;43740:72;43808:2;43797:9;43793:18;43784:6;43740:72;:::i;:::-;43822:73;43890:3;43879:9;43875:19;43866:6;43822:73;:::i;:::-;43071:831;;;;;;;;:::o;43908:807::-;44157:4;44195:3;44184:9;44180:19;44172:27;;44209:71;44277:1;44266:9;44262:17;44253:6;44209:71;:::i;:::-;44290:72;44358:2;44347:9;44343:18;44334:6;44290:72;:::i;:::-;44372:80;44448:2;44437:9;44433:18;44424:6;44372:80;:::i;:::-;44462;44538:2;44527:9;44523:18;44514:6;44462:80;:::i;:::-;44552:73;44620:3;44609:9;44605:19;44596:6;44552:73;:::i;:::-;44635;44703:3;44692:9;44688:19;44679:6;44635:73;:::i;:::-;43908:807;;;;;;;;;:::o;44721:663::-;44809:6;44817;44825;44874:2;44862:9;44853:7;44849:23;44845:32;44842:119;;;44880:79;;:::i;:::-;44842:119;45000:1;45025:64;45081:7;45072:6;45061:9;45057:22;45025:64;:::i;:::-;45015:74;;44971:128;45138:2;45164:64;45220:7;45211:6;45200:9;45196:22;45164:64;:::i;:::-;45154:74;;45109:129;45277:2;45303:64;45359:7;45350:6;45339:9;45335:22;45303:64;:::i;:::-;45293:74;;45248:129;44721:663;;;;;:::o

Swarm Source

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