ETH Price: $3,390.14 (-1.52%)
Gas: 2 Gwei

Token

The Guest List (TGL)
 

Overview

Max Total Supply

100,000,000 TGL

Holders

133

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 TGL

Value
$0.00
0xf93eac886505c9c6d407d91ea9bd2e35aedca734
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheGuestList

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
 *
 * THE GUEST LIST (TGL)
 *
 * The Telegram community for this project is at: https://t.me/theguestlistTGL
 *
 * The Guest List (TGL) is a new platform that aims to overhaul the “shitcoin” space by linking top-quality 
 * start-up projects with higher quality investors. 
 *
 * Our custom-built blockchain technology tracks users’ on-chain behaviour and produces a scoring system 
 * that - if high enough - gives said users the option to buy into the private sales of the biggest 
 * new crypto launches available.  
 *
 * The higher your score, the more access you get to the best private sales – the lower your score, 
 * SORRY you’re not getting on “The Guest List.”  
 *
 * Connecting the best new projects to solid “diamond hand” investors.
 * A match made in crypto heaven. 
 *
 * The Twitter account for this project is: @theguestlistTGL
 *
 */ 

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint 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, uint value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint 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 (uint);

    /**
     * @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, uint amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 => uint) private _balances;

    mapping(address => mapping(address => uint)) private _allowances;

    uint 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 (uint) {
        return _totalSupply;
    }

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint amount
    ) internal virtual {
        uint currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint 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,
        uint amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint a, uint b) internal pure returns (bool, uint) {
        unchecked {
            uint c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint a, uint b) internal pure returns (bool, uint) {
        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(uint a, uint b) internal pure returns (bool, uint) {
        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);
            uint 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(uint a, uint b) internal pure returns (bool, uint) {
        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(uint a, uint b) internal pure returns (bool, uint) {
        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(uint a, uint b) internal pure returns (uint) {
        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(uint a, uint b) internal pure returns (uint) {
        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(uint a, uint b) internal pure returns (uint) {
        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(uint a, uint b) internal pure returns (uint) {
        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(uint a, uint b) internal pure returns (uint) {
        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(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        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(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        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(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    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(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint value
    );
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

    function swap(
        uint amount0Out,
        uint 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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    )
        external
        returns (
            uint amountA,
            uint amountB,
            uint liquidity
        );

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

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

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

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

interface ISwapManager {
    function swapToUsdc(uint tokenAmount) external;
    function addLiquidity(uint tokenAmount, uint usdcAmount) external;
}

contract TheGuestList is ERC20, Ownable {
    using SafeMath for uint;

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

    bool private swapping;

    address public marketingWallet;
    address public operationsWallet;
    address public teamWallet;

    ISwapManager public swapManager;
    uint public maxTransactionAmount;
    uint public swapTokensAtAmount;
    uint public maxWallet;

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

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

    uint public buyTotalFees;
    uint public buyMarketingFee;
    uint public buyOperationsFee;
    uint public buyLiquidityFee;
    uint public buyTeamFee;

    uint public sellTotalFees;
    uint public sellMarketingFee;
    uint public sellOperationsFee;
    uint public sellLiquidityFee;
    uint public sellTeamFee;

    uint public tokensForMarketing;
    uint public tokensForOperations;
    uint public tokensForLiquidity;
    uint public tokensForTeam;

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event SwapManagerUpdated(
        address indexed newManager,
        address indexed oldManager
    );

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

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

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

    event SwapAndLiquify(
        uint tokensSwapped,
        uint usdcReceived,
        uint tokensIntoLiquidity
    );

    constructor() ERC20("The Guest List", "TGL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

        uint totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = totalSupply * 2 / 100;
        maxWallet = totalSupply * 3 / 100;
        swapTokensAtAmount = totalSupply * 5 / 1000;

        buyMarketingFee = 2;
        buyOperationsFee = 1;
        buyLiquidityFee = 1;
        buyTeamFee = 1;
        buyTotalFees = buyMarketingFee + buyOperationsFee + buyLiquidityFee + buyTeamFee;

        sellMarketingFee = 2;
        sellOperationsFee = 1;
        sellLiquidityFee = 1;
        sellTeamFee = 1;
        sellTotalFees = sellMarketingFee + sellOperationsFee + sellLiquidityFee + sellTeamFee;

        marketingWallet = address(0xdaE9Df2b8FB2aC249178CeA78ae7788153b1306e);
        operationsWallet = address(0xe964caB6efdB66395c2A81B375229A9403dc214b);
        teamWallet = address(0xa18a1b4D0b94800Ec69d0aD48a3112E3e57956B7);

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

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

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require (
            address(swapManager) != address(0), 
            "Need to set swap manager"
        );
        tradingActive = true;
        swapEnabled = true;
    }

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint 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(uint newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

    function updateSwapManager(address newManager) external onlyOwner {
        emit SwapManagerUpdated(newManager, address(swapManager));
        swapManager = ISwapManager(newManager);
        excludeFromFees(newManager, true);
        excludeFromMaxTransaction(newManager, true);
    }

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

    function updateBuyFees(
        uint _marketingFee,
        uint _operationsFee,
        uint _liquidityFee,
        uint _teamFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyOperationsFee = _operationsFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyMarketingFee + buyOperationsFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint _marketingFee,
        uint _operationsFee,
        uint _liquidityFee,
        uint _teamFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellMarketingFee + sellOperationsFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function updateOperationsWallet(address newOperationsWallet)
        external
        onlyOwner
    {
        emit OperationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }

    function updateTeamWallet(address newTeamWallet) external onlyOwner {
        emit TeamWalletUpdated(newTeamWallet, teamWallet);
        teamWallet = newTeamWallet;
    }

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

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

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

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

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

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

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

        uint 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);
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForOperations += (fees * sellOperationsFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForOperations += (fees * buyOperationsFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapBack() private {
        uint contractBalance = balanceOf(address(this));
        uint totalTokensToSwap = tokensForMarketing +
            tokensForOperations +
            tokensForLiquidity +
            tokensForTeam;

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

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

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

        uint initialUsdcBalance = IERC20(usdc).balanceOf(address(this));

        _approve(address(this), address(swapManager), amountToSwapForUsdc);
        swapManager.swapToUsdc(amountToSwapForUsdc);

        uint usdcBalance = IERC20(usdc).balanceOf(address(this)).sub(initialUsdcBalance);

        uint usdcForMarketing = usdcBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint usdcForOperations = usdcBalance.mul(tokensForOperations).div(totalTokensToSwap);
        uint usdcForTeam = usdcBalance.mul(tokensForTeam).div(totalTokensToSwap);
        uint usdcForLiquidity = usdcBalance - usdcForMarketing - usdcForOperations - usdcForTeam;

        tokensForMarketing = 0;
        tokensForOperations = 0;
        tokensForLiquidity = 0;
        tokensForTeam = 0;

        IERC20(usdc).transfer(marketingWallet, usdcForMarketing);
        IERC20(usdc).transfer(operationsWallet, usdcForOperations);

        if (liquidityTokens > 0 && usdcForLiquidity > 0) {
            _approve(address(this), address(swapManager), liquidityTokens);
            IERC20(usdc).approve(address(swapManager), usdcForLiquidity);

            swapManager.addLiquidity(liquidityTokens, usdcForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForUsdc,
                usdcForLiquidity,
                tokensForLiquidity
            );
        }

        IERC20(usdc).transfer(teamWallet, IERC20(usdc).balanceOf(address(this)));
    }
}

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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"OperationsWalletUpdated","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":"usdcReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newManager","type":"address"},{"indexed":true,"internalType":"address","name":"oldManager","type":"address"}],"name":"SwapManagerUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapManager","outputs":[{"internalType":"contract ISwapManager","name":"","type":"address"}],"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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_operationsFee","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":"address","name":"newManager","type":"address"}],"name":"updateSwapManager","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":"newTeamWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040526001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600e81526020017f546865204775657374204c6973740000000000000000000000000000000000008152506040518060400160405280600381526020017f54474c00000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000d0b565b5080600490816200010d919062000d0b565b5050506200013062000124620005ca60201b60201c565b620005d260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200069860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000204919062000e5c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486040518363ffffffff1660e01b81526004016200025492919062000e9f565b6020604051808303816000875af115801562000274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029a919062000e5c565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620002e38160016200069860201b60201c565b620002f68160016200070360201b60201c565b60006a52b7d2dcc80cd2e40000009050606460028262000317919062000efb565b62000323919062000f75565b600a8190555060646003826200033a919062000efb565b62000346919062000f75565b600c819055506103e86005826200035e919062000efb565b6200036a919062000f75565b600b819055506002601181905550600160128190555060016013819055506001601481905550601454601354601254601154620003a8919062000fad565b620003b4919062000fad565b620003c0919062000fad565b6010819055506002601681905550600160178190555060016018819055506001601981905550601954601854601754601654620003fe919062000fad565b6200040a919062000fad565b62000416919062000fad565b60158190555073dae9df2b8fb2ac249178cea78ae7788153b1306e600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e964cab6efdb66395c2a81b375229a9403dc214b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a18a1b4d0b94800ec69d0ad48a3112e3e57956b7600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053d6200052f620007a460201b60201c565b6001620007ce60201b60201c565b62000550306001620007ce60201b60201c565b6200056561dead6001620007ce60201b60201c565b6200058762000579620007a460201b60201c565b60016200069860201b60201c565b6200059a3060016200069860201b60201c565b620005af61dead60016200069860201b60201c565b620005c133826200088960201b60201c565b50505062001145565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a8620009f660201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007de620009f660201b60201c565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200087d919062001005565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f29062001083565b60405180910390fd5b6200090f6000838362000a8760201b60201c565b806002600082825462000923919062000fad565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009d69190620010b6565b60405180910390a3620009f26000838362000a8c60201b60201c565b5050565b62000a06620005ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a2c620007a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7c9062001123565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b1357607f821691505b60208210810362000b295762000b2862000acb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b54565b62000b9f868362000b54565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bec62000be662000be08462000bb7565b62000bc1565b62000bb7565b9050919050565b6000819050919050565b62000c088362000bcb565b62000c2062000c178262000bf3565b84845462000b61565b825550505050565b600090565b62000c3762000c28565b62000c4481848462000bfd565b505050565b5b8181101562000c6c5762000c6060008262000c2d565b60018101905062000c4a565b5050565b601f82111562000cbb5762000c858162000b2f565b62000c908462000b44565b8101602085101562000ca0578190505b62000cb862000caf8562000b44565b83018262000c49565b50505b505050565b600082821c905092915050565b600062000ce06000198460080262000cc0565b1980831691505092915050565b600062000cfb838362000ccd565b9150826002028217905092915050565b62000d168262000a91565b67ffffffffffffffff81111562000d325762000d3162000a9c565b5b62000d3e825462000afa565b62000d4b82828562000c70565b600060209050601f83116001811462000d83576000841562000d6e578287015190505b62000d7a858262000ced565b86555062000dea565b601f19841662000d938662000b2f565b60005b8281101562000dbd5784890151825560018201915060208501945060208101905062000d96565b8683101562000ddd578489015162000dd9601f89168262000ccd565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e248262000df7565b9050919050565b62000e368162000e17565b811462000e4257600080fd5b50565b60008151905062000e568162000e2b565b92915050565b60006020828403121562000e755762000e7462000df2565b5b600062000e858482850162000e45565b91505092915050565b62000e998162000e17565b82525050565b600060408201905062000eb6600083018562000e8e565b62000ec5602083018462000e8e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f088262000bb7565b915062000f158362000bb7565b925082820262000f258162000bb7565b9150828204841483151762000f3f5762000f3e62000ecc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f828262000bb7565b915062000f8f8362000bb7565b92508262000fa25762000fa162000f46565b5b828204905092915050565b600062000fba8262000bb7565b915062000fc78362000bb7565b925082820190508082111562000fe25762000fe162000ecc565b5b92915050565b60008115159050919050565b62000fff8162000fe8565b82525050565b60006020820190506200101c600083018462000ff4565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200106b601f8362001022565b9150620010788262001033565b602082019050919050565b600060208201905081810360008301526200109e816200105c565b9050919050565b620010b08162000bb7565b82525050565b6000602082019050620010cd6000830184620010a5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200110b60208362001022565b91506200111882620010d3565b602082019050919050565b600060208201905081810360008301526200113e81620010fc565b9050919050565b60805160a051614a436200118060003960008181610f28015281816114a301526121d9015260008181610c5e01526121810152614a436000f3fe608060405234801561001057600080fd5b50600436106103ba5760003560e01c80637cb332bb116101f4578063c876d0b91161011a578063e884f260116100ad578063f8b45b051161007c578063f8b45b0514610b0f578063fb002c9714610b2d578063fd72e22a14610b4b578063fde83a3414610b69576103ba565b8063e884f26014610a99578063f11a24d314610ab7578063f2fde38b14610ad5578063f637434214610af1576103ba565b8063d85ba063116100e9578063d85ba06314610a11578063dd62ed3e14610a2f578063e2f4560514610a5f578063e7ad9fcd14610a7d576103ba565b8063c876d0b914610987578063c8c8ebe4146109a5578063d257b34f146109c3578063d729715f146109f3576103ba565b80639c2e4ac611610192578063b62496f511610161578063b62496f514610901578063bbc0c74214610931578063c02466681461094f578063c18bc1951461096b576103ba565b80639c2e4ac614610867578063a457c2d714610885578063a9059cbb146108b5578063aacebbe3146108e5576103ba565b806392136913116101ce57806392136913146107f3578063924de9b71461081157806395d89b411461082d5780639a7a23d61461084b576103ba565b80637cb332bb146107af5780638a8c523c146107cb5780638da5cb5b146107d5576103ba565b806349bd5a5e116102e45780636ddd171311610277578063751039fc11610246578063751039fc146107395780637571336a1461075757806375f0a874146107735780637bce5a0414610791576103ba565b80636ddd1713146106c3578063709d039d146106e157806370a08231146106ff578063715018a61461072f576103ba565b80634fbee193116102b35780634fbee1931461063957806359927044146106695780635a139dd4146106875780636a486a8e146106a5576103ba565b806349bd5a5e146105c35780634a62bb65146105e15780634c36fad7146105ff5780634f77f6c01461061b576103ba565b8063203e727e1161035c57806330d5d18d1161032b57806330d5d18d1461053b578063313ce5671461055757806339509351146105755780633e413bee146105a5576103ba565b8063203e727e146104b557806323b872dd146104d157806327c8f835146105015780632e6ed7ef1461051f576103ba565b80631694505e116103985780631694505e1461043d57806318160ddd1461045b5780631a8145bb146104795780631f3fed8f14610497576103ba565b806306fdde03146103bf578063095ea7b3146103dd57806310d5de531461040d575b600080fd5b6103c7610b87565b6040516103d491906137cc565b60405180910390f35b6103f760048036038101906103f29190613887565b610c19565b60405161040491906138e2565b60405180910390f35b610427600480360381019061042291906138fd565b610c3c565b60405161043491906138e2565b60405180910390f35b610445610c5c565b6040516104529190613989565b60405180910390f35b610463610c80565b60405161047091906139b3565b60405180910390f35b610481610c8a565b60405161048e91906139b3565b60405180910390f35b61049f610c90565b6040516104ac91906139b3565b60405180910390f35b6104cf60048036038101906104ca91906139ce565b610c96565b005b6104eb60048036038101906104e691906139fb565b610d31565b6040516104f891906138e2565b60405180910390f35b610509610d60565b6040516105169190613a5d565b60405180910390f35b61053960048036038101906105349190613a78565b610d66565b005b610555600480360381019061055091906138fd565b610e06565b005b61055f610ece565b60405161056c9190613afb565b60405180910390f35b61058f600480360381019061058a9190613887565b610ed7565b60405161059c91906138e2565b60405180910390f35b6105ad610f0e565b6040516105ba9190613a5d565b60405180910390f35b6105cb610f26565b6040516105d89190613a5d565b60405180910390f35b6105e9610f4a565b6040516105f691906138e2565b60405180910390f35b610619600480360381019061061491906138fd565b610f5d565b005b61062361103b565b60405161063091906139b3565b60405180910390f35b610653600480360381019061064e91906138fd565b611041565b60405161066091906138e2565b60405180910390f35b610671611097565b60405161067e9190613a5d565b60405180910390f35b61068f6110bd565b60405161069c91906139b3565b60405180910390f35b6106ad6110c3565b6040516106ba91906139b3565b60405180910390f35b6106cb6110c9565b6040516106d891906138e2565b60405180910390f35b6106e96110dc565b6040516106f69190613b37565b60405180910390f35b610719600480360381019061071491906138fd565b611102565b60405161072691906139b3565b60405180910390f35b61073761114a565b005b61074161115e565b60405161074e91906138e2565b60405180910390f35b610771600480360381019061076c9190613b7e565b61118a565b005b61077b6111ed565b6040516107889190613a5d565b60405180910390f35b610799611213565b6040516107a691906139b3565b60405180910390f35b6107c960048036038101906107c491906138fd565b611219565b005b6107d36112e1565b005b6107dd6113b2565b6040516107ea9190613a5d565b60405180910390f35b6107fb6113dc565b60405161080891906139b3565b60405180910390f35b61082b60048036038101906108269190613bbe565b6113e2565b005b610835611407565b60405161084291906137cc565b60405180910390f35b61086560048036038101906108609190613b7e565b611499565b005b61086f61153d565b60405161087c91906139b3565b60405180910390f35b61089f600480360381019061089a9190613887565b611543565b6040516108ac91906138e2565b60405180910390f35b6108cf60048036038101906108ca9190613887565b6115ba565b6040516108dc91906138e2565b60405180910390f35b6108ff60048036038101906108fa91906138fd565b6115dd565b005b61091b600480360381019061091691906138fd565b6116a5565b60405161092891906138e2565b60405180910390f35b6109396116c4565b60405161094691906138e2565b60405180910390f35b61096960048036038101906109649190613b7e565b6116d7565b005b610985600480360381019061098091906139ce565b611788565b005b61098f611823565b60405161099c91906138e2565b60405180910390f35b6109ad611836565b6040516109ba91906139b3565b60405180910390f35b6109dd60048036038101906109d891906139ce565b61183c565b6040516109ea91906138e2565b60405180910390f35b6109fb61191d565b604051610a0891906139b3565b60405180910390f35b610a19611923565b604051610a2691906139b3565b60405180910390f35b610a496004803603810190610a449190613beb565b611929565b604051610a5691906139b3565b60405180910390f35b610a676119b0565b604051610a7491906139b3565b60405180910390f35b610a976004803603810190610a929190613a78565b6119b6565b005b610aa1611a56565b604051610aae91906138e2565b60405180910390f35b610abf611a82565b604051610acc91906139b3565b60405180910390f35b610aef6004803603810190610aea91906138fd565b611a88565b005b610af9611b0b565b604051610b0691906139b3565b60405180910390f35b610b17611b11565b604051610b2491906139b3565b60405180910390f35b610b35611b17565b604051610b4291906139b3565b60405180910390f35b610b53611b1d565b604051610b609190613a5d565b60405180910390f35b610b71611b43565b604051610b7e91906139b3565b60405180910390f35b606060038054610b9690613c5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc290613c5a565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b5050505050905090565b600080610c24611b49565b9050610c31818585611b51565b600191505092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601c5481565b601a5481565b610c9e611d1a565b670de0b6b3a76400006103e86001610cb4610c80565b610cbe9190613cba565b610cc89190613d2b565b610cd29190613d2b565b811015610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90613dce565b60405180910390fd5b670de0b6b3a764000081610d289190613cba565b600a8190555050565b600080610d3c611b49565b9050610d49858285611d98565b610d54858585611e24565b60019150509392505050565b61dead81565b610d6e611d1a565b83601181905550826012819055508160138190555080601481905550601454601354601254601154610da09190613dee565b610daa9190613dee565b610db49190613dee565b601081905550600a6010541115610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613e6e565b60405180910390fd5b50505050565b610e0e611d1a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b600080610ee2611b49565b9050610f03818585610ef48589611929565b610efe9190613dee565b611b51565b600191505092915050565b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b610f65611d1a565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061102d8160016116d7565b61103881600161118a565b50565b60175481565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b60155481565b600d60029054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611152611d1a565b61115c6000612b21565b565b6000611168611d1a565b6000600d60006101000a81548160ff0219169083151502179055506001905090565b611192611d1a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b611221611d1a565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309560405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112e9611d1a565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190613eda565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b6113ea611d1a565b80600d60026101000a81548160ff02191690831515021790555050565b60606004805461141690613c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461144290613c5a565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b5050505050905090565b6114a1611d1a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613f6c565b60405180910390fd5b6115398282612be7565b5050565b60145481565b60008061154e611b49565b9050600061155c8286611929565b9050838110156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613ffe565b60405180910390fd5b6115ae8286868403611b51565b60019250505092915050565b6000806115c5611b49565b90506115d2818585611e24565b600191505092915050565b6115e5611d1a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6116df611d1a565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161177c91906138e2565b60405180910390a25050565b611790611d1a565b670de0b6b3a76400006103e860056117a6610c80565b6117b09190613cba565b6117ba9190613d2b565b6117c49190613d2b565b811015611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90614090565b60405180910390fd5b670de0b6b3a76400008161181a9190613cba565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b6000611846611d1a565b620186a06001611854610c80565b61185e9190613cba565b6118689190613d2b565b8210156118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190614122565b60405180910390fd5b6103e860056118b7610c80565b6118c19190613cba565b6118cb9190613d2b565b82111561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906141b4565b60405180910390fd5b81600b8190555060019050919050565b60195481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6119be611d1a565b836016819055508260178190555081601881905550806019819055506019546018546017546016546119f09190613dee565b6119fa9190613dee565b611a049190613dee565b601581905550600a6015541115611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790613e6e565b60405180910390fd5b50505050565b6000611a60611d1a565b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b611a90611d1a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614246565b60405180910390fd5b611b0881612b21565b50565b60185481565b600c5481565b601b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb7906142d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c269061436a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d0d91906139b3565b60405180910390a3505050565b611d22611b49565b73ffffffffffffffffffffffffffffffffffffffff16611d406113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906143d6565b60405180910390fd5b565b6000611da48484611929565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e1e5781811015611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614442565b60405180910390fd5b611e1d8484848403611b51565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a906144d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614566565b60405180910390fd5b60008103611f1b57611f1683836000612c88565b612b1c565b600d60009054906101000a900460ff16156125de57611f386113b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611fa65750611f766113b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fdf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612019575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120325750600560149054906101000a900460ff16155b156125dd57600d60019054906101000a900460ff1661212c57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120ec5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906145d2565b60405180910390fd5b5b600f60009054906101000a900460ff16156122f4576121496113b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156121d057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561222857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122f35743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a59061468a565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123975750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561243e57600a548111156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d89061471c565b60405180910390fd5b600c546123ed83611102565b826123f89190613dee565b1115612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090614788565b60405180910390fd5b6125dc565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124e15750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561253057600a5481111561252b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125229061481a565b60405180910390fd5b6125db565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125da57600c5461258d83611102565b826125989190613dee565b11156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090614788565b60405180910390fd5b5b5b5b5b5b60006125e930611102565b90506000600b54821015905080801561260e5750600d60029054906101000a900460ff165b80156126275750600560149054906101000a900460ff16155b801561267d5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126d35750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127295750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561276d576001600560146101000a81548160ff021916908315150217905550612751612efe565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128235750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561282d57600090505b60008115612b0c57602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561289057506000601554115b15612990576128bd60646128af601554886136f090919063ffffffff16565b61370690919063ffffffff16565b9050601554601654826128d09190613cba565b6128da9190613d2b565b601a60008282546128eb9190613dee565b92505081905550601554601754826129039190613cba565b61290d9190613d2b565b601b600082825461291e9190613dee565b92505081905550601554601854826129369190613cba565b6129409190613d2b565b601c60008282546129519190613dee565b92505081905550601554601954826129699190613cba565b6129739190613d2b565b601d60008282546129849190613dee565b92505081905550612ae8565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129eb57506000601054115b15612ae757612a186064612a0a601054886136f090919063ffffffff16565b61370690919063ffffffff16565b905060105460115482612a2b9190613cba565b612a359190613d2b565b601a6000828254612a469190613dee565b9250508190555060105460125482612a5e9190613cba565b612a689190613d2b565b601b6000828254612a799190613dee565b9250508190555060105460135482612a919190613cba565b612a9b9190613d2b565b601c6000828254612aac9190613dee565b9250508190555060105460145482612ac49190613cba565b612ace9190613d2b565b601d6000828254612adf9190613dee565b925050819055505b5b6000811115612afd57612afc873083612c88565b5b8085612b09919061483a565b94505b612b17878787612c88565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cee906144d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d90614566565b60405180910390fd5b612d7183838361371c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee906148e0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ee591906139b3565b60405180910390a3612ef8848484613721565b50505050565b6000612f0930611102565b90506000601d54601c54601b54601a54612f239190613dee565b612f2d9190613dee565b612f379190613dee565b90506000821480612f485750600081145b15612f545750506136ee565b6014600b54612f639190613cba565b821115612f7c576014600b54612f799190613cba565b91505b6000600282601c5485612f8f9190613cba565b612f999190613d2b565b612fa39190613d2b565b90506000612fba828561372690919063ffffffff16565b9050600073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161300b9190613a5d565b602060405180830381865afa158015613028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304c9190614915565b905061307b30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b51565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635a081b67836040518263ffffffff1660e01b81526004016130d691906139b3565b600060405180830381600087803b1580156130f057600080fd5b505af1158015613104573d6000803e3d6000fd5b5050505060006131aa8273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161315b9190613a5d565b602060405180830381865afa158015613178573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319c9190614915565b61372690919063ffffffff16565b905060006131d5866131c7601a54856136f090919063ffffffff16565b61370690919063ffffffff16565b90506000613200876131f2601b54866136f090919063ffffffff16565b61370690919063ffffffff16565b9050600061322b8861321d601d54876136f090919063ffffffff16565b61370690919063ffffffff16565b905060008183858761323d919061483a565b613247919061483a565b613251919061483a565b90506000601a819055506000601b819055506000601c819055506000601d8190555073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518363ffffffff1660e01b81526004016132e4929190614942565b6020604051808303816000875af1158015613303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133279190614980565b5073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401613399929190614942565b6020604051808303816000875af11580156133b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133dc9190614980565b506000881180156133ed5750600081115b156135a15761341f30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a611b51565b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613490929190614942565b6020604051808303816000875af11580156134af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134d39190614980565b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639cd441da89836040518363ffffffff1660e01b81526004016135319291906149ad565b600060405180830381600087803b15801561354b57600080fd5b505af115801561355f573d6000803e3d6000fd5b505050507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c54604051613598939291906149d6565b60405180910390a15b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016136419190613a5d565b602060405180830381865afa15801561365e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136829190614915565b6040518363ffffffff1660e01b815260040161369f929190614942565b6020604051808303816000875af11580156136be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e29190614980565b50505050505050505050505b565b600081836136fe9190613cba565b905092915050565b600081836137149190613d2b565b905092915050565b505050565b505050565b60008183613734919061483a565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561377657808201518184015260208101905061375b565b60008484015250505050565b6000601f19601f8301169050919050565b600061379e8261373c565b6137a88185613747565b93506137b8818560208601613758565b6137c181613782565b840191505092915050565b600060208201905081810360008301526137e68184613793565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061381e826137f3565b9050919050565b61382e81613813565b811461383957600080fd5b50565b60008135905061384b81613825565b92915050565b6000819050919050565b61386481613851565b811461386f57600080fd5b50565b6000813590506138818161385b565b92915050565b6000806040838503121561389e5761389d6137ee565b5b60006138ac8582860161383c565b92505060206138bd85828601613872565b9150509250929050565b60008115159050919050565b6138dc816138c7565b82525050565b60006020820190506138f760008301846138d3565b92915050565b600060208284031215613913576139126137ee565b5b60006139218482850161383c565b91505092915050565b6000819050919050565b600061394f61394a613945846137f3565b61392a565b6137f3565b9050919050565b600061396182613934565b9050919050565b600061397382613956565b9050919050565b61398381613968565b82525050565b600060208201905061399e600083018461397a565b92915050565b6139ad81613851565b82525050565b60006020820190506139c860008301846139a4565b92915050565b6000602082840312156139e4576139e36137ee565b5b60006139f284828501613872565b91505092915050565b600080600060608486031215613a1457613a136137ee565b5b6000613a228682870161383c565b9350506020613a338682870161383c565b9250506040613a4486828701613872565b9150509250925092565b613a5781613813565b82525050565b6000602082019050613a726000830184613a4e565b92915050565b60008060008060808587031215613a9257613a916137ee565b5b6000613aa087828801613872565b9450506020613ab187828801613872565b9350506040613ac287828801613872565b9250506060613ad387828801613872565b91505092959194509250565b600060ff82169050919050565b613af581613adf565b82525050565b6000602082019050613b106000830184613aec565b92915050565b6000613b2182613956565b9050919050565b613b3181613b16565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b816138c7565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b946137ee565b5b6000613ba38582860161383c565b9250506020613bb485828601613b69565b9150509250929050565b600060208284031215613bd457613bd36137ee565b5b6000613be284828501613b69565b91505092915050565b60008060408385031215613c0257613c016137ee565b5b6000613c108582860161383c565b9250506020613c218582860161383c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c7257607f821691505b602082108103613c8557613c84613c2b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cc582613851565b9150613cd083613851565b9250828202613cde81613851565b91508282048414831517613cf557613cf4613c8b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3682613851565b9150613d4183613851565b925082613d5157613d50613cfc565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613db8602f83613747565b9150613dc382613d5c565b604082019050919050565b60006020820190508181036000830152613de781613dab565b9050919050565b6000613df982613851565b9150613e0483613851565b9250828201905080821115613e1c57613e1b613c8b565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613e58601d83613747565b9150613e6382613e22565b602082019050919050565b60006020820190508181036000830152613e8781613e4b565b9050919050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b6000613ec4601883613747565b9150613ecf82613e8e565b602082019050919050565b60006020820190508181036000830152613ef381613eb7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613f56603983613747565b9150613f6182613efa565b604082019050919050565b60006020820190508181036000830152613f8581613f49565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613fe8602583613747565b9150613ff382613f8c565b604082019050919050565b6000602082019050818103600083015261401781613fdb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061407a602483613747565b91506140858261401e565b604082019050919050565b600060208201905081810360008301526140a98161406d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061410c603583613747565b9150614117826140b0565b604082019050919050565b6000602082019050818103600083015261413b816140ff565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061419e603483613747565b91506141a982614142565b604082019050919050565b600060208201905081810360008301526141cd81614191565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614230602683613747565b915061423b826141d4565b604082019050919050565b6000602082019050818103600083015261425f81614223565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142c2602483613747565b91506142cd82614266565b604082019050919050565b600060208201905081810360008301526142f1816142b5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614354602283613747565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143c0602083613747565b91506143cb8261438a565b602082019050919050565b600060208201905081810360008301526143ef816143b3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061442c601d83613747565b9150614437826143f6565b602082019050919050565b6000602082019050818103600083015261445b8161441f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144be602583613747565b91506144c982614462565b604082019050919050565b600060208201905081810360008301526144ed816144b1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614550602383613747565b915061455b826144f4565b604082019050919050565b6000602082019050818103600083015261457f81614543565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006145bc601683613747565b91506145c782614586565b602082019050919050565b600060208201905081810360008301526145eb816145af565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614674604983613747565b915061467f826145f2565b606082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614706603583613747565b9150614711826146aa565b604082019050919050565b60006020820190508181036000830152614735816146f9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614772601383613747565b915061477d8261473c565b602082019050919050565b600060208201905081810360008301526147a181614765565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614804603683613747565b915061480f826147a8565b604082019050919050565b60006020820190508181036000830152614833816147f7565b9050919050565b600061484582613851565b915061485083613851565b925082820390508181111561486857614867613c8b565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148ca602683613747565b91506148d58261486e565b604082019050919050565b600060208201905081810360008301526148f9816148bd565b9050919050565b60008151905061490f8161385b565b92915050565b60006020828403121561492b5761492a6137ee565b5b600061493984828501614900565b91505092915050565b60006040820190506149576000830185613a4e565b61496460208301846139a4565b9392505050565b60008151905061497a81613b52565b92915050565b600060208284031215614996576149956137ee565b5b60006149a48482850161496b565b91505092915050565b60006040820190506149c260008301856139a4565b6149cf60208301846139a4565b9392505050565b60006060820190506149eb60008301866139a4565b6149f860208301856139a4565b614a0560408301846139a4565b94935050505056fea26469706673582212209009b71340409b1cc6eddab405fb8c9d6a790f39c6a4edb26a35d03cf302437d64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103ba5760003560e01c80637cb332bb116101f4578063c876d0b91161011a578063e884f260116100ad578063f8b45b051161007c578063f8b45b0514610b0f578063fb002c9714610b2d578063fd72e22a14610b4b578063fde83a3414610b69576103ba565b8063e884f26014610a99578063f11a24d314610ab7578063f2fde38b14610ad5578063f637434214610af1576103ba565b8063d85ba063116100e9578063d85ba06314610a11578063dd62ed3e14610a2f578063e2f4560514610a5f578063e7ad9fcd14610a7d576103ba565b8063c876d0b914610987578063c8c8ebe4146109a5578063d257b34f146109c3578063d729715f146109f3576103ba565b80639c2e4ac611610192578063b62496f511610161578063b62496f514610901578063bbc0c74214610931578063c02466681461094f578063c18bc1951461096b576103ba565b80639c2e4ac614610867578063a457c2d714610885578063a9059cbb146108b5578063aacebbe3146108e5576103ba565b806392136913116101ce57806392136913146107f3578063924de9b71461081157806395d89b411461082d5780639a7a23d61461084b576103ba565b80637cb332bb146107af5780638a8c523c146107cb5780638da5cb5b146107d5576103ba565b806349bd5a5e116102e45780636ddd171311610277578063751039fc11610246578063751039fc146107395780637571336a1461075757806375f0a874146107735780637bce5a0414610791576103ba565b80636ddd1713146106c3578063709d039d146106e157806370a08231146106ff578063715018a61461072f576103ba565b80634fbee193116102b35780634fbee1931461063957806359927044146106695780635a139dd4146106875780636a486a8e146106a5576103ba565b806349bd5a5e146105c35780634a62bb65146105e15780634c36fad7146105ff5780634f77f6c01461061b576103ba565b8063203e727e1161035c57806330d5d18d1161032b57806330d5d18d1461053b578063313ce5671461055757806339509351146105755780633e413bee146105a5576103ba565b8063203e727e146104b557806323b872dd146104d157806327c8f835146105015780632e6ed7ef1461051f576103ba565b80631694505e116103985780631694505e1461043d57806318160ddd1461045b5780631a8145bb146104795780631f3fed8f14610497576103ba565b806306fdde03146103bf578063095ea7b3146103dd57806310d5de531461040d575b600080fd5b6103c7610b87565b6040516103d491906137cc565b60405180910390f35b6103f760048036038101906103f29190613887565b610c19565b60405161040491906138e2565b60405180910390f35b610427600480360381019061042291906138fd565b610c3c565b60405161043491906138e2565b60405180910390f35b610445610c5c565b6040516104529190613989565b60405180910390f35b610463610c80565b60405161047091906139b3565b60405180910390f35b610481610c8a565b60405161048e91906139b3565b60405180910390f35b61049f610c90565b6040516104ac91906139b3565b60405180910390f35b6104cf60048036038101906104ca91906139ce565b610c96565b005b6104eb60048036038101906104e691906139fb565b610d31565b6040516104f891906138e2565b60405180910390f35b610509610d60565b6040516105169190613a5d565b60405180910390f35b61053960048036038101906105349190613a78565b610d66565b005b610555600480360381019061055091906138fd565b610e06565b005b61055f610ece565b60405161056c9190613afb565b60405180910390f35b61058f600480360381019061058a9190613887565b610ed7565b60405161059c91906138e2565b60405180910390f35b6105ad610f0e565b6040516105ba9190613a5d565b60405180910390f35b6105cb610f26565b6040516105d89190613a5d565b60405180910390f35b6105e9610f4a565b6040516105f691906138e2565b60405180910390f35b610619600480360381019061061491906138fd565b610f5d565b005b61062361103b565b60405161063091906139b3565b60405180910390f35b610653600480360381019061064e91906138fd565b611041565b60405161066091906138e2565b60405180910390f35b610671611097565b60405161067e9190613a5d565b60405180910390f35b61068f6110bd565b60405161069c91906139b3565b60405180910390f35b6106ad6110c3565b6040516106ba91906139b3565b60405180910390f35b6106cb6110c9565b6040516106d891906138e2565b60405180910390f35b6106e96110dc565b6040516106f69190613b37565b60405180910390f35b610719600480360381019061071491906138fd565b611102565b60405161072691906139b3565b60405180910390f35b61073761114a565b005b61074161115e565b60405161074e91906138e2565b60405180910390f35b610771600480360381019061076c9190613b7e565b61118a565b005b61077b6111ed565b6040516107889190613a5d565b60405180910390f35b610799611213565b6040516107a691906139b3565b60405180910390f35b6107c960048036038101906107c491906138fd565b611219565b005b6107d36112e1565b005b6107dd6113b2565b6040516107ea9190613a5d565b60405180910390f35b6107fb6113dc565b60405161080891906139b3565b60405180910390f35b61082b60048036038101906108269190613bbe565b6113e2565b005b610835611407565b60405161084291906137cc565b60405180910390f35b61086560048036038101906108609190613b7e565b611499565b005b61086f61153d565b60405161087c91906139b3565b60405180910390f35b61089f600480360381019061089a9190613887565b611543565b6040516108ac91906138e2565b60405180910390f35b6108cf60048036038101906108ca9190613887565b6115ba565b6040516108dc91906138e2565b60405180910390f35b6108ff60048036038101906108fa91906138fd565b6115dd565b005b61091b600480360381019061091691906138fd565b6116a5565b60405161092891906138e2565b60405180910390f35b6109396116c4565b60405161094691906138e2565b60405180910390f35b61096960048036038101906109649190613b7e565b6116d7565b005b610985600480360381019061098091906139ce565b611788565b005b61098f611823565b60405161099c91906138e2565b60405180910390f35b6109ad611836565b6040516109ba91906139b3565b60405180910390f35b6109dd60048036038101906109d891906139ce565b61183c565b6040516109ea91906138e2565b60405180910390f35b6109fb61191d565b604051610a0891906139b3565b60405180910390f35b610a19611923565b604051610a2691906139b3565b60405180910390f35b610a496004803603810190610a449190613beb565b611929565b604051610a5691906139b3565b60405180910390f35b610a676119b0565b604051610a7491906139b3565b60405180910390f35b610a976004803603810190610a929190613a78565b6119b6565b005b610aa1611a56565b604051610aae91906138e2565b60405180910390f35b610abf611a82565b604051610acc91906139b3565b60405180910390f35b610aef6004803603810190610aea91906138fd565b611a88565b005b610af9611b0b565b604051610b0691906139b3565b60405180910390f35b610b17611b11565b604051610b2491906139b3565b60405180910390f35b610b35611b17565b604051610b4291906139b3565b60405180910390f35b610b53611b1d565b604051610b609190613a5d565b60405180910390f35b610b71611b43565b604051610b7e91906139b3565b60405180910390f35b606060038054610b9690613c5a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc290613c5a565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b5050505050905090565b600080610c24611b49565b9050610c31818585611b51565b600191505092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601c5481565b601a5481565b610c9e611d1a565b670de0b6b3a76400006103e86001610cb4610c80565b610cbe9190613cba565b610cc89190613d2b565b610cd29190613d2b565b811015610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90613dce565b60405180910390fd5b670de0b6b3a764000081610d289190613cba565b600a8190555050565b600080610d3c611b49565b9050610d49858285611d98565b610d54858585611e24565b60019150509392505050565b61dead81565b610d6e611d1a565b83601181905550826012819055508160138190555080601481905550601454601354601254601154610da09190613dee565b610daa9190613dee565b610db49190613dee565b601081905550600a6010541115610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613e6e565b60405180910390fd5b50505050565b610e0e611d1a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b600080610ee2611b49565b9050610f03818585610ef48589611929565b610efe9190613dee565b611b51565b600191505092915050565b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b7f000000000000000000000000ee7c4a59c5dc0c7f4252cd47248489ac7dab26ee81565b600d60009054906101000a900460ff1681565b610f65611d1a565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061102d8160016116d7565b61103881600161118a565b50565b60175481565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b60155481565b600d60029054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611152611d1a565b61115c6000612b21565b565b6000611168611d1a565b6000600d60006101000a81548160ff0219169083151502179055506001905090565b611192611d1a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b611221611d1a565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309560405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112e9611d1a565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190613eda565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b6113ea611d1a565b80600d60026101000a81548160ff02191690831515021790555050565b60606004805461141690613c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461144290613c5a565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b5050505050905090565b6114a1611d1a565b7f000000000000000000000000ee7c4a59c5dc0c7f4252cd47248489ac7dab26ee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613f6c565b60405180910390fd5b6115398282612be7565b5050565b60145481565b60008061154e611b49565b9050600061155c8286611929565b9050838110156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613ffe565b60405180910390fd5b6115ae8286868403611b51565b60019250505092915050565b6000806115c5611b49565b90506115d2818585611e24565b600191505092915050565b6115e5611d1a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b6116df611d1a565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161177c91906138e2565b60405180910390a25050565b611790611d1a565b670de0b6b3a76400006103e860056117a6610c80565b6117b09190613cba565b6117ba9190613d2b565b6117c49190613d2b565b811015611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90614090565b60405180910390fd5b670de0b6b3a76400008161181a9190613cba565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b6000611846611d1a565b620186a06001611854610c80565b61185e9190613cba565b6118689190613d2b565b8210156118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190614122565b60405180910390fd5b6103e860056118b7610c80565b6118c19190613cba565b6118cb9190613d2b565b82111561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906141b4565b60405180910390fd5b81600b8190555060019050919050565b60195481565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6119be611d1a565b836016819055508260178190555081601881905550806019819055506019546018546017546016546119f09190613dee565b6119fa9190613dee565b611a049190613dee565b601581905550600a6015541115611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790613e6e565b60405180910390fd5b50505050565b6000611a60611d1a565b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b611a90611d1a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690614246565b60405180910390fd5b611b0881612b21565b50565b60185481565b600c5481565b601b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb7906142d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c269061436a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d0d91906139b3565b60405180910390a3505050565b611d22611b49565b73ffffffffffffffffffffffffffffffffffffffff16611d406113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906143d6565b60405180910390fd5b565b6000611da48484611929565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e1e5781811015611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614442565b60405180910390fd5b611e1d8484848403611b51565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a906144d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614566565b60405180910390fd5b60008103611f1b57611f1683836000612c88565b612b1c565b600d60009054906101000a900460ff16156125de57611f386113b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611fa65750611f766113b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fdf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612019575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120325750600560149054906101000a900460ff16155b156125dd57600d60019054906101000a900460ff1661212c57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120ec5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906145d2565b60405180910390fd5b5b600f60009054906101000a900460ff16156122f4576121496113b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156121d057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561222857507f000000000000000000000000ee7c4a59c5dc0c7f4252cd47248489ac7dab26ee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122f35743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a59061468a565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123975750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561243e57600a548111156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d89061471c565b60405180910390fd5b600c546123ed83611102565b826123f89190613dee565b1115612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090614788565b60405180910390fd5b6125dc565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124e15750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561253057600a5481111561252b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125229061481a565b60405180910390fd5b6125db565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125da57600c5461258d83611102565b826125989190613dee565b11156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090614788565b60405180910390fd5b5b5b5b5b5b60006125e930611102565b90506000600b54821015905080801561260e5750600d60029054906101000a900460ff165b80156126275750600560149054906101000a900460ff16155b801561267d5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126d35750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127295750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561276d576001600560146101000a81548160ff021916908315150217905550612751612efe565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128235750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561282d57600090505b60008115612b0c57602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561289057506000601554115b15612990576128bd60646128af601554886136f090919063ffffffff16565b61370690919063ffffffff16565b9050601554601654826128d09190613cba565b6128da9190613d2b565b601a60008282546128eb9190613dee565b92505081905550601554601754826129039190613cba565b61290d9190613d2b565b601b600082825461291e9190613dee565b92505081905550601554601854826129369190613cba565b6129409190613d2b565b601c60008282546129519190613dee565b92505081905550601554601954826129699190613cba565b6129739190613d2b565b601d60008282546129849190613dee565b92505081905550612ae8565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129eb57506000601054115b15612ae757612a186064612a0a601054886136f090919063ffffffff16565b61370690919063ffffffff16565b905060105460115482612a2b9190613cba565b612a359190613d2b565b601a6000828254612a469190613dee565b9250508190555060105460125482612a5e9190613cba565b612a689190613d2b565b601b6000828254612a799190613dee565b9250508190555060105460135482612a919190613cba565b612a9b9190613d2b565b601c6000828254612aac9190613dee565b9250508190555060105460145482612ac49190613cba565b612ace9190613d2b565b601d6000828254612adf9190613dee565b925050819055505b5b6000811115612afd57612afc873083612c88565b5b8085612b09919061483a565b94505b612b17878787612c88565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cee906144d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d90614566565b60405180910390fd5b612d7183838361371c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee906148e0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ee591906139b3565b60405180910390a3612ef8848484613721565b50505050565b6000612f0930611102565b90506000601d54601c54601b54601a54612f239190613dee565b612f2d9190613dee565b612f379190613dee565b90506000821480612f485750600081145b15612f545750506136ee565b6014600b54612f639190613cba565b821115612f7c576014600b54612f799190613cba565b91505b6000600282601c5485612f8f9190613cba565b612f999190613d2b565b612fa39190613d2b565b90506000612fba828561372690919063ffffffff16565b9050600073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161300b9190613a5d565b602060405180830381865afa158015613028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304c9190614915565b905061307b30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b51565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635a081b67836040518263ffffffff1660e01b81526004016130d691906139b3565b600060405180830381600087803b1580156130f057600080fd5b505af1158015613104573d6000803e3d6000fd5b5050505060006131aa8273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161315b9190613a5d565b602060405180830381865afa158015613178573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319c9190614915565b61372690919063ffffffff16565b905060006131d5866131c7601a54856136f090919063ffffffff16565b61370690919063ffffffff16565b90506000613200876131f2601b54866136f090919063ffffffff16565b61370690919063ffffffff16565b9050600061322b8861321d601d54876136f090919063ffffffff16565b61370690919063ffffffff16565b905060008183858761323d919061483a565b613247919061483a565b613251919061483a565b90506000601a819055506000601b819055506000601c819055506000601d8190555073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518363ffffffff1660e01b81526004016132e4929190614942565b6020604051808303816000875af1158015613303573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133279190614980565b5073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401613399929190614942565b6020604051808303816000875af11580156133b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133dc9190614980565b506000881180156133ed5750600081115b156135a15761341f30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a611b51565b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613490929190614942565b6020604051808303816000875af11580156134af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134d39190614980565b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639cd441da89836040518363ffffffff1660e01b81526004016135319291906149ad565b600060405180830381600087803b15801561354b57600080fd5b505af115801561355f573d6000803e3d6000fd5b505050507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c54604051613598939291906149d6565b60405180910390a15b73a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016136419190613a5d565b602060405180830381865afa15801561365e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136829190614915565b6040518363ffffffff1660e01b815260040161369f929190614942565b6020604051808303816000875af11580156136be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e29190614980565b50505050505050505050505b565b600081836136fe9190613cba565b905092915050565b600081836137149190613d2b565b905092915050565b505050565b505050565b60008183613734919061483a565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561377657808201518184015260208101905061375b565b60008484015250505050565b6000601f19601f8301169050919050565b600061379e8261373c565b6137a88185613747565b93506137b8818560208601613758565b6137c181613782565b840191505092915050565b600060208201905081810360008301526137e68184613793565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061381e826137f3565b9050919050565b61382e81613813565b811461383957600080fd5b50565b60008135905061384b81613825565b92915050565b6000819050919050565b61386481613851565b811461386f57600080fd5b50565b6000813590506138818161385b565b92915050565b6000806040838503121561389e5761389d6137ee565b5b60006138ac8582860161383c565b92505060206138bd85828601613872565b9150509250929050565b60008115159050919050565b6138dc816138c7565b82525050565b60006020820190506138f760008301846138d3565b92915050565b600060208284031215613913576139126137ee565b5b60006139218482850161383c565b91505092915050565b6000819050919050565b600061394f61394a613945846137f3565b61392a565b6137f3565b9050919050565b600061396182613934565b9050919050565b600061397382613956565b9050919050565b61398381613968565b82525050565b600060208201905061399e600083018461397a565b92915050565b6139ad81613851565b82525050565b60006020820190506139c860008301846139a4565b92915050565b6000602082840312156139e4576139e36137ee565b5b60006139f284828501613872565b91505092915050565b600080600060608486031215613a1457613a136137ee565b5b6000613a228682870161383c565b9350506020613a338682870161383c565b9250506040613a4486828701613872565b9150509250925092565b613a5781613813565b82525050565b6000602082019050613a726000830184613a4e565b92915050565b60008060008060808587031215613a9257613a916137ee565b5b6000613aa087828801613872565b9450506020613ab187828801613872565b9350506040613ac287828801613872565b9250506060613ad387828801613872565b91505092959194509250565b600060ff82169050919050565b613af581613adf565b82525050565b6000602082019050613b106000830184613aec565b92915050565b6000613b2182613956565b9050919050565b613b3181613b16565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b816138c7565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b946137ee565b5b6000613ba38582860161383c565b9250506020613bb485828601613b69565b9150509250929050565b600060208284031215613bd457613bd36137ee565b5b6000613be284828501613b69565b91505092915050565b60008060408385031215613c0257613c016137ee565b5b6000613c108582860161383c565b9250506020613c218582860161383c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c7257607f821691505b602082108103613c8557613c84613c2b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cc582613851565b9150613cd083613851565b9250828202613cde81613851565b91508282048414831517613cf557613cf4613c8b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3682613851565b9150613d4183613851565b925082613d5157613d50613cfc565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613db8602f83613747565b9150613dc382613d5c565b604082019050919050565b60006020820190508181036000830152613de781613dab565b9050919050565b6000613df982613851565b9150613e0483613851565b9250828201905080821115613e1c57613e1b613c8b565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613e58601d83613747565b9150613e6382613e22565b602082019050919050565b60006020820190508181036000830152613e8781613e4b565b9050919050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b6000613ec4601883613747565b9150613ecf82613e8e565b602082019050919050565b60006020820190508181036000830152613ef381613eb7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613f56603983613747565b9150613f6182613efa565b604082019050919050565b60006020820190508181036000830152613f8581613f49565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613fe8602583613747565b9150613ff382613f8c565b604082019050919050565b6000602082019050818103600083015261401781613fdb565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061407a602483613747565b91506140858261401e565b604082019050919050565b600060208201905081810360008301526140a98161406d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061410c603583613747565b9150614117826140b0565b604082019050919050565b6000602082019050818103600083015261413b816140ff565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061419e603483613747565b91506141a982614142565b604082019050919050565b600060208201905081810360008301526141cd81614191565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614230602683613747565b915061423b826141d4565b604082019050919050565b6000602082019050818103600083015261425f81614223565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142c2602483613747565b91506142cd82614266565b604082019050919050565b600060208201905081810360008301526142f1816142b5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614354602283613747565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143c0602083613747565b91506143cb8261438a565b602082019050919050565b600060208201905081810360008301526143ef816143b3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061442c601d83613747565b9150614437826143f6565b602082019050919050565b6000602082019050818103600083015261445b8161441f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144be602583613747565b91506144c982614462565b604082019050919050565b600060208201905081810360008301526144ed816144b1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614550602383613747565b915061455b826144f4565b604082019050919050565b6000602082019050818103600083015261457f81614543565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006145bc601683613747565b91506145c782614586565b602082019050919050565b600060208201905081810360008301526145eb816145af565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614674604983613747565b915061467f826145f2565b606082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614706603583613747565b9150614711826146aa565b604082019050919050565b60006020820190508181036000830152614735816146f9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614772601383613747565b915061477d8261473c565b602082019050919050565b600060208201905081810360008301526147a181614765565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614804603683613747565b915061480f826147a8565b604082019050919050565b60006020820190508181036000830152614833816147f7565b9050919050565b600061484582613851565b915061485083613851565b925082820390508181111561486857614867613c8b565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148ca602683613747565b91506148d58261486e565b604082019050919050565b600060208201905081810360008301526148f9816148bd565b9050919050565b60008151905061490f8161385b565b92915050565b60006020828403121561492b5761492a6137ee565b5b600061493984828501614900565b91505092915050565b60006040820190506149576000830185613a4e565b61496460208301846139a4565b9392505050565b60008151905061497a81613b52565b92915050565b600060208284031215614996576149956137ee565b5b60006149a48482850161496b565b91505092915050565b60006040820190506149c260008301856139a4565b6149cf60208301846139a4565b9392505050565b60006060820190506149eb60008301866139a4565b6149f860208301856139a4565b614a0560408301846139a4565b94935050505056fea26469706673582212209009b71340409b1cc6eddab405fb8c9d6a790f39c6a4edb26a35d03cf302437d64736f6c63430008110033

Deployed Bytecode Sourcemap

33021:16717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9820:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12156:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34573:63;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33100:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10940:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34390:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38924:272;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12931:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33203:53;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40133:491;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42079:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10782:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13632:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33263:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33158:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33637:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39640:289;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34212:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42506:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33459:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34045:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34145:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33717:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33493;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11108:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3568:103;;;:::i;:::-;;38035:121;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39465:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33384:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34011:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42325:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37750:233;;;:::i;:::-;;2920:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34177:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40025:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41332:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34114:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14370:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11438:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41840:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34794:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33677:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41142:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39204:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33932:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33531:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38422:494;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34283:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33980:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11691:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33570:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40632:502;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38217:135;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34080:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3826:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34248:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33607:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34352:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33421;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34427:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9820:100;9874:13;9907:5;9900:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9820:100;:::o;12156:198::-;12236:4;12253:13;12269:12;:10;:12::i;:::-;12253:28;;12292:32;12301:5;12308:7;12317:6;12292:8;:32::i;:::-;12342:4;12335:11;;;12156:198;;;;:::o;34573:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33100:51::-;;;:::o;10940:105::-;11001:4;11025:12;;11018:19;;10940:105;:::o;34390:30::-;;;;:::o;34315:::-;;;;:::o;38924:272::-;2806:13;:11;:13::i;:::-;39058:4:::1;39050;39045:1;39029:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39028:26;;;;:::i;:::-;39027:35;;;;:::i;:::-;39017:6;:45;;38995:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39181:6;39171;:17;;;;:::i;:::-;39148:20;:40;;;;38924:272:::0;:::o;12931:292::-;13059:4;13076:15;13094:12;:10;:12::i;:::-;13076:30;;13117:38;13133:4;13139:7;13148:6;13117:15;:38::i;:::-;13166:27;13176:4;13182:2;13186:6;13166:9;:27::i;:::-;13211:4;13204:11;;;12931:292;;;;;:::o;33203:53::-;33249:6;33203:53;:::o;40133:491::-;2806:13;:11;:13::i;:::-;40323::::1;40305:15;:31;;;;40366:14;40347:16;:33;;;;40409:13;40391:15;:31;;;;40446:8;40433:10;:21;;;;40535:10;;40517:15;;40498:16;;40480:15;;:34;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40465:12;:80;;;;40580:2;40564:12;;:18;;40556:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40133:491:::0;;;;:::o;42079:238::-;2806:13;:11;:13::i;:::-;42243:16:::1;;;;;;;;;;;42198:62;;42222:19;42198:62;;;;;;;;;;;;42290:19;42271:16;;:38;;;;;;;;;;;;;;;;;;42079:238:::0;:::o;10782:93::-;10840:5;10865:2;10858:9;;10782:93;:::o;13632:235::-;13717:4;13734:13;13750:12;:10;:12::i;:::-;13734:28;;13773:64;13782:5;13789:7;13826:10;13798:25;13808:5;13815:7;13798:9;:25::i;:::-;:38;;;;:::i;:::-;13773:8;:64::i;:::-;13855:4;13848:11;;;13632:235;;;;:::o;33263:82::-;33302:42;33263:82;:::o;33158:38::-;;;:::o;33637:33::-;;;;;;;;;;;;;:::o;39640:289::-;2806:13;:11;:13::i;:::-;39761:11:::1;;;;;;;;;;;39722:52;;39741:10;39722:52;;;;;;;;;;;;39812:10;39785:11;;:38;;;;;;;;;;;;;;;;;;39834:33;39850:10;39862:4;39834:15;:33::i;:::-;39878:43;39904:10;39916:4;39878:25;:43::i;:::-;39640:289:::0;:::o;34212:29::-;;;;:::o;42506:126::-;42572:4;42596:19;:28;42616:7;42596:28;;;;;;;;;;;;;;;;;;;;;;;;;42589:35;;42506:126;;;:::o;33459:25::-;;;;;;;;;;;;;:::o;34045:28::-;;;;:::o;34145:25::-;;;;:::o;33717:31::-;;;;;;;;;;;;;:::o;33493:::-;;;;;;;;;;;;;:::o;11108:124::-;11182:4;11206:9;:18;11216:7;11206:18;;;;;;;;;;;;;;;;11199:25;;11108:124;;;:::o;3568:103::-;2806:13;:11;:13::i;:::-;3633:30:::1;3660:1;3633:18;:30::i;:::-;3568:103::o:0;38035:121::-;38087:4;2806:13;:11;:13::i;:::-;38121:5:::1;38104:14;;:22;;;;;;;;;;;;;;;;;;38144:4;38137:11;;38035:121:::0;:::o;39465:167::-;2806:13;:11;:13::i;:::-;39620:4:::1;39578:31;:39;39610:6;39578:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39465:167:::0;;:::o;33384:30::-;;;;;;;;;;;;;:::o;34011:27::-;;;;:::o;42325:173::-;2806:13;:11;:13::i;:::-;42442:10:::1;;;;;;;;;;;42409:44;;42427:13;42409:44;;;;;;;;;;;;42477:13;42464:10;;:26;;;;;;;;;;;;;;;;;;42325:173:::0;:::o;37750:233::-;2806:13;:11;:13::i;:::-;37860:1:::1;37828:34;;37836:11;;;;;;;;;;;37828:34;;::::0;37805:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37942:4;37926:13;;:20;;;;;;;;;;;;;;;;;;37971:4;37957:11;;:18;;;;;;;;;;;;;;;;;;37750:233::o:0;2920:87::-;2966:7;2993:6;;;;;;;;;;;2986:13;;2920:87;:::o;34177:28::-;;;;:::o;40025:100::-;2806:13;:11;:13::i;:::-;40110:7:::1;40096:11;;:21;;;;;;;;;;;;;;;;;;40025:100:::0;:::o;10039:104::-;10095:13;10128:7;10121:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:104;:::o;41332:304::-;2806:13;:11;:13::i;:::-;41476::::1;41468:21;;:4;:21;;::::0;41446:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41587:41;41616:4;41622:5;41587:28;:41::i;:::-;41332:304:::0;;:::o;34114:22::-;;;;:::o;14370:430::-;14460:4;14477:13;14493:12;:10;:12::i;:::-;14477:28;;14516:21;14540:25;14550:5;14557:7;14540:9;:25::i;:::-;14516:49;;14604:15;14584:16;:35;;14576:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14697:60;14706:5;14713:7;14741:15;14722:16;:34;14697:8;:60::i;:::-;14788:4;14781:11;;;;14370:430;;;;:::o;11438:190::-;11514:4;11531:13;11547:12;:10;:12::i;:::-;11531:28;;11570;11580:5;11587:2;11591:6;11570:9;:28::i;:::-;11616:4;11609:11;;;11438:190;;;;:::o;41840:231::-;2806:13;:11;:13::i;:::-;42000:15:::1;;;;;;;;;;;41957:59;;41980:18;41957:59;;;;;;;;;;;;42045:18;42027:15;;:36;;;;;;;;;;;;;;;;;;41840:231:::0;:::o;34794:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33677:33::-;;;;;;;;;;;;;:::o;41142:182::-;2806:13;:11;:13::i;:::-;41258:8:::1;41227:19;:28;41247:7;41227:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41298:7;41282:34;;;41307:8;41282:34;;;;;;:::i;:::-;;;;;;;;41142:182:::0;;:::o;39204:253::-;2806:13;:11;:13::i;:::-;39341:4:::1;39333;39328:1;39312:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39311:26;;;;:::i;:::-;39310:35;;;;:::i;:::-;39300:6;:45;;39278:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39442:6;39432;:17;;;;:::i;:::-;39420:9;:29;;;;39204:253:::0;:::o;33932:39::-;;;;;;;;;;;;;:::o;33531:32::-;;;;:::o;38422:494::-;38527:4;2806:13;:11;:13::i;:::-;38606:6:::1;38601:1;38585:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38584:28;;;;:::i;:::-;38571:9;:41;;38549:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38761:4;38756:1;38740:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38739:26;;;;:::i;:::-;38726:9;:39;;38704:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38877:9;38856:18;:30;;;;38904:4;38897:11;;38422:494:::0;;;:::o;34283:23::-;;;;:::o;33980:24::-;;;;:::o;11691:148::-;11780:4;11804:11;:18;11816:5;11804:18;;;;;;;;;;;;;;;:27;11823:7;11804:27;;;;;;;;;;;;;;;;11797:34;;11691:148;;;;:::o;33570:30::-;;;;:::o;40632:502::-;2806:13;:11;:13::i;:::-;40824::::1;40805:16;:32;;;;40868:14;40848:17;:34;;;;40912:13;40893:16;:32;;;;40950:8;40936:11;:22;;;;41043:11;;41024:16;;41004:17;;40985:16;;:36;;;;:::i;:::-;:55;;;;:::i;:::-;:69;;;;:::i;:::-;40969:13;:85;;;;41090:2;41073:13;;:19;;41065:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40632:502:::0;;;;:::o;38217:135::-;38277:4;2806:13;:11;:13::i;:::-;38317:5:::1;38294:20;;:28;;;;;;;;;;;;;;;;;;38340:4;38333:11;;38217:135:::0;:::o;34080:27::-;;;;:::o;3826:201::-;2806:13;:11;:13::i;:::-;3935:1:::1;3915:22;;:8;:22;;::::0;3907:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3991:28;4010:8;3991:18;:28::i;:::-;3826:201:::0;:::o;34248:28::-;;;;:::o;33607:21::-;;;;:::o;34352:31::-;;;;:::o;33421:::-;;;;;;;;;;;;;:::o;34427:25::-;;;;:::o;1557:98::-;1610:7;1637:10;1630:17;;1557:98;:::o;18376:377::-;18526:1;18509:19;;:5;:19;;;18501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18607:1;18588:21;;:7;:21;;;18580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18691:6;18661:11;:18;18673:5;18661:18;;;;;;;;;;;;;;;:27;18680:7;18661:27;;;;;;;;;;;;;;;:36;;;;18729:7;18713:32;;18722:5;18713:32;;;18738:6;18713:32;;;;;;:::i;:::-;;;;;;;;18376:377;;;:::o;3085:132::-;3160:12;:10;:12::i;:::-;3149:23;;:7;:5;:7::i;:::-;:23;;;3141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3085:132::o;19044:444::-;19176:21;19200:25;19210:5;19217:7;19200:9;:25::i;:::-;19176:49;;19260:14;19240:16;:34;19236:245;;19319:6;19299:16;:26;;19291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19403:51;19412:5;19419:7;19447:6;19428:16;:25;19403:8;:51::i;:::-;19236:245;19165:323;19044:444;;;:::o;42640:4896::-;42785:1;42769:18;;:4;:18;;;42761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42862:1;42848:16;;:2;:16;;;42840:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42931:1;42921:6;:11;42917:93;;42949:28;42965:4;42971:2;42975:1;42949:15;:28::i;:::-;42992:7;;42917:93;43026:14;;;;;;;;;;;43022:2487;;;43087:7;:5;:7::i;:::-;43079:15;;:4;:15;;;;:49;;;;;43121:7;:5;:7::i;:::-;43115:13;;:2;:13;;;;43079:49;:86;;;;;43163:1;43149:16;;:2;:16;;;;43079:86;:128;;;;;43200:6;43186:21;;:2;:21;;;;43079:128;:158;;;;;43229:8;;;;;;;;;;;43228:9;43079:158;43057:2441;;;43277:13;;;;;;;;;;;43272:223;;43349:19;:25;43369:4;43349:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43378:19;:23;43398:2;43378:23;;;;;;;;;;;;;;;;;;;;;;;;;43349:52;43315:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43272:223;43651:20;;;;;;;;;;;43647:641;;;43732:7;:5;:7::i;:::-;43726:13;;:2;:13;;;;:72;;;;;43782:15;43768:30;;:2;:30;;;;43726:72;:129;;;;;43841:13;43827:28;;:2;:28;;;;43726:129;43696:573;;;44019:12;43944:28;:39;43973:9;43944:39;;;;;;;;;;;;;;;;:87;43906:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;44233:12;44191:28;:39;44220:9;44191:39;;;;;;;;;;;;;;;:54;;;;43696:573;43647:641;44362:25;:31;44388:4;44362:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44419:31;:35;44451:2;44419:35;;;;;;;;;;;;;;;;;;;;;;;;;44418:36;44362:92;44336:1147;;;44541:20;;44531:6;:30;;44497:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44749:9;;44732:13;44742:2;44732:9;:13::i;:::-;44723:6;:22;;;;:::i;:::-;:35;;44689:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44336:1147;;;44927:25;:29;44953:2;44927:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44982:31;:37;45014:4;44982:37;;;;;;;;;;;;;;;;;;;;;;;;;44981:38;44927:92;44901:582;;;45106:20;;45096:6;:30;;45062:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44901:582;;;45263:31;:35;45295:2;45263:35;;;;;;;;;;;;;;;;;;;;;;;;;45258:225;;45383:9;;45366:13;45376:2;45366:9;:13::i;:::-;45357:6;:22;;;;:::i;:::-;:35;;45323:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45258:225;44901:582;44336:1147;43057:2441;43022:2487;45521:25;45549:24;45567:4;45549:9;:24::i;:::-;45521:52;;45586:12;45625:18;;45601:20;:42;;45586:57;;45674:7;:35;;;;;45698:11;;;;;;;;;;;45674:35;:61;;;;;45727:8;;;;;;;;;;;45726:9;45674:61;:110;;;;;45753:25;:31;45779:4;45753:31;;;;;;;;;;;;;;;;;;;;;;;;;45752:32;45674:110;:153;;;;;45802:19;:25;45822:4;45802:25;;;;;;;;;;;;;;;;;;;;;;;;;45801:26;45674:153;:194;;;;;45845:19;:23;45865:2;45845:23;;;;;;;;;;;;;;;;;;;;;;;;;45844:24;45674:194;45656:326;;;45906:4;45895:8;;:15;;;;;;;;;;;;;;;;;;45927:10;:8;:10::i;:::-;45965:5;45954:8;;:16;;;;;;;;;;;;;;;;;;45656:326;45994:12;46010:8;;;;;;;;;;;46009:9;45994:24;;46120:19;:25;46140:4;46120:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46149:19;:23;46169:2;46149:23;;;;;;;;;;;;;;;;;;;;;;;;;46120:52;46116:100;;;46199:5;46189:15;;46116:100;46228:9;46330:7;46326:1157;;;46382:25;:29;46408:2;46382:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46431:1;46415:13;;:17;46382:50;46378:956;;;46460:34;46490:3;46460:25;46471:13;;46460:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46453:41;;46563:13;;46543:16;;46536:4;:23;;;;:::i;:::-;46535:41;;;;:::i;:::-;46513:18;;:63;;;;;;;:::i;:::-;;;;;;;;46647:13;;46626:17;;46619:4;:24;;;;:::i;:::-;46618:42;;;;:::i;:::-;46595:19;;:65;;;;;;;:::i;:::-;;;;;;;;46729:13;;46709:16;;46702:4;:23;;;;:::i;:::-;46701:41;;;;:::i;:::-;46679:18;;:63;;;;;;;:::i;:::-;;;;;;;;46801:13;;46786:11;;46779:4;:18;;;;:::i;:::-;46778:36;;;;:::i;:::-;46761:13;;:53;;;;;;;:::i;:::-;;;;;;;;46378:956;;;46894:25;:31;46920:4;46894:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46944:1;46929:12;;:16;46894:51;46890:444;;;46973:33;47002:3;46973:24;46984:12;;46973:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46966:40;;47074:12;;47055:15;;47048:4;:22;;;;:::i;:::-;47047:39;;;;:::i;:::-;47025:18;;:61;;;;;;;:::i;:::-;;;;;;;;47156:12;;47136:16;;47129:4;:23;;;;:::i;:::-;47128:40;;;;:::i;:::-;47105:19;;:63;;;;;;;:::i;:::-;;;;;;;;47236:12;;47217:15;;47210:4;:22;;;;:::i;:::-;47209:39;;;;:::i;:::-;47187:18;;:61;;;;;;;:::i;:::-;;;;;;;;47306:12;;47292:10;;47285:4;:17;;;;:::i;:::-;47284:34;;;;:::i;:::-;47267:13;;:51;;;;;;;:::i;:::-;;;;;;;;46890:444;46378:956;47361:1;47354:4;:8;47350:91;;;47383:42;47399:4;47413;47420;47383:15;:42::i;:::-;47350:91;47467:4;47457:14;;;;;:::i;:::-;;;46326:1157;47495:33;47511:4;47517:2;47521:6;47495:15;:33::i;:::-;42750:4786;;;;42640:4896;;;;:::o;4187:191::-;4261:16;4280:6;;;;;;;;;;;4261:25;;4306:8;4297:6;;:17;;;;;;;;;;;;;;;;;;4361:8;4330:40;;4351:8;4330:40;;;;;;;;;;;;4250:128;4187:191;:::o;41644:188::-;41761:5;41727:25;:31;41753:4;41727:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41818:5;41784:40;;41812:4;41784:40;;;;;;;;;;;;41644:188;;:::o;15270:834::-;15414:1;15398:18;;:4;:18;;;15390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15491:1;15477:16;;:2;:16;;;15469:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15546:38;15567:4;15573:2;15577:6;15546:20;:38::i;:::-;15597:16;15616:9;:15;15626:4;15616:15;;;;;;;;;;;;;;;;15597:34;;15665:6;15650:11;:21;;15642:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15782:6;15768:11;:20;15750:9;:15;15760:4;15750:15;;;;;;;;;;;;;;;:38;;;;15985:6;15968:9;:13;15978:2;15968:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16035:2;16020:26;;16029:4;16020:26;;;16039:6;16020:26;;;;;;:::i;:::-;;;;;;;;16059:37;16079:4;16085:2;16089:6;16059:19;:37::i;:::-;15379:725;15270:834;;;:::o;47544:2191::-;47583:20;47606:24;47624:4;47606:9;:24::i;:::-;47583:47;;47641:22;47769:13;;47735:18;;47700:19;;47666:18;;:53;;;;:::i;:::-;:87;;;;:::i;:::-;:116;;;;:::i;:::-;47641:141;;47818:1;47799:15;:20;:46;;;;47844:1;47823:17;:22;47799:46;47795:85;;;47862:7;;;;47795:85;47935:2;47914:18;;:23;;;;:::i;:::-;47896:15;:41;47892:115;;;47993:2;47972:18;;:23;;;;:::i;:::-;47954:41;;47892:115;48068:20;48165:1;48145:17;48110:18;;48092:15;:36;;;;:::i;:::-;48091:71;;;;:::i;:::-;:75;;;;:::i;:::-;48068:98;;48177:24;48204:36;48224:15;48204;:19;;:36;;;;:::i;:::-;48177:63;;48253:23;33302:42;48279:22;;;48310:4;48279:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48253:63;;48329:66;48346:4;48361:11;;;;;;;;;;;48375:19;48329:8;:66::i;:::-;48406:11;;;;;;;;;;;:22;;;48429:19;48406:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48462:16;48481:61;48523:18;33302:42;48481:22;;;48512:4;48481:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;:61;;;;:::i;:::-;48462:80;;48555:21;48579:58;48619:17;48579:35;48595:18;;48579:11;:15;;:35;;;;:::i;:::-;:39;;:58;;;;:::i;:::-;48555:82;;48648:22;48673:59;48714:17;48673:36;48689:19;;48673:11;:15;;:36;;;;:::i;:::-;:40;;:59;;;;:::i;:::-;48648:84;;48743:16;48762:53;48797:17;48762:30;48778:13;;48762:11;:15;;:30;;;;:::i;:::-;:34;;:53;;;;:::i;:::-;48743:72;;48826:21;48903:11;48883:17;48864:16;48850:11;:30;;;;:::i;:::-;:50;;;;:::i;:::-;:64;;;;:::i;:::-;48826:88;;48948:1;48927:18;:22;;;;48982:1;48960:19;:23;;;;49015:1;48994:18;:22;;;;49043:1;49027:13;:17;;;;33302:42;49057:21;;;49079:15;;;;;;;;;;;49096:16;49057:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33302:42;49124:21;;;49146:16;;;;;;;;;;;49164:17;49124:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49217:1;49199:15;:19;:43;;;;;49241:1;49222:16;:20;49199:43;49195:448;;;49259:62;49276:4;49291:11;;;;;;;;;;;49305:15;49259:8;:62::i;:::-;33302:42;49336:20;;;49365:11;;;;;;;;;;;49379:16;49336:60;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49413:11;;;;;;;;;;;:24;;;49438:15;49455:16;49413:59;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49492:139;49525:19;49563:16;49598:18;;49492:139;;;;;;;;:::i;:::-;;;;;;;;49195:448;33302:42;49655:21;;;49677:10;;;;;;;;;;;33302:42;49689:22;;;49720:4;49689:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49655:72;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47572:2163;;;;;;;;;;47544:2191;:::o;24398:89::-;24450:4;24478:1;24474;:5;;;;:::i;:::-;24467:12;;24398:89;;;;:::o;24788:::-;24840:4;24868:1;24864;:5;;;;:::i;:::-;24857:12;;24788:89;;;;:::o;20088:122::-;;;;:::o;20814:121::-;;;;:::o;24050:89::-;24102:4;24130:1;24126;:5;;;;:::i;:::-;24119:12;;24050:89;;;;:::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:765::-;6509:6;6517;6525;6533;6582:3;6570:9;6561:7;6557:23;6553:33;6550:120;;;6589:79;;:::i;:::-;6550:120;6709:1;6734:53;6779:7;6770:6;6759:9;6755:22;6734:53;:::i;:::-;6724:63;;6680:117;6836:2;6862:53;6907:7;6898:6;6887:9;6883:22;6862:53;:::i;:::-;6852:63;;6807:118;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;7092:2;7118:53;7163:7;7154:6;7143:9;7139:22;7118:53;:::i;:::-;7108:63;;7063:118;6423:765;;;;;;;:::o;7194:86::-;7229:7;7269:4;7262:5;7258:16;7247:27;;7194:86;;;:::o;7286:112::-;7369:22;7385:5;7369:22;:::i;:::-;7364:3;7357:35;7286:112;;:::o;7404:214::-;7493:4;7531:2;7520:9;7516:18;7508:26;;7544:67;7608:1;7597:9;7593:17;7584:6;7544:67;:::i;:::-;7404:214;;;;:::o;7624:147::-;7695:9;7728:37;7759:5;7728:37;:::i;:::-;7715:50;;7624:147;;;:::o;7777:173::-;7885:58;7937:5;7885:58;:::i;:::-;7880:3;7873:71;7777:173;;:::o;7956:264::-;8070:4;8108:2;8097:9;8093:18;8085:26;;8121:92;8210:1;8199:9;8195:17;8186:6;8121:92;:::i;:::-;7956:264;;;;:::o;8226:116::-;8296:21;8311:5;8296:21;:::i;:::-;8289:5;8286:32;8276:60;;8332:1;8329;8322:12;8276:60;8226:116;:::o;8348:133::-;8391:5;8429:6;8416:20;8407:29;;8445:30;8469:5;8445:30;:::i;:::-;8348:133;;;;:::o;8487:468::-;8552:6;8560;8609:2;8597:9;8588:7;8584:23;8580:32;8577:119;;;8615:79;;:::i;:::-;8577:119;8735:1;8760:53;8805:7;8796:6;8785:9;8781:22;8760:53;:::i;:::-;8750:63;;8706:117;8862:2;8888:50;8930:7;8921:6;8910:9;8906:22;8888:50;:::i;:::-;8878:60;;8833:115;8487:468;;;;;:::o;8961:323::-;9017:6;9066:2;9054:9;9045:7;9041:23;9037:32;9034:119;;;9072:79;;:::i;:::-;9034:119;9192:1;9217:50;9259:7;9250:6;9239:9;9235:22;9217:50;:::i;:::-;9207:60;;9163:114;8961:323;;;;:::o;9290:474::-;9358:6;9366;9415:2;9403:9;9394:7;9390:23;9386:32;9383:119;;;9421:79;;:::i;:::-;9383:119;9541:1;9566:53;9611:7;9602:6;9591:9;9587:22;9566:53;:::i;:::-;9556:63;;9512:117;9668:2;9694:53;9739:7;9730:6;9719:9;9715:22;9694:53;:::i;:::-;9684:63;;9639:118;9290:474;;;;;:::o;9770:180::-;9818:77;9815:1;9808:88;9915:4;9912:1;9905:15;9939:4;9936:1;9929:15;9956:320;10000:6;10037:1;10031:4;10027:12;10017:22;;10084:1;10078:4;10074:12;10105:18;10095:81;;10161:4;10153:6;10149:17;10139:27;;10095:81;10223:2;10215:6;10212:14;10192:18;10189:38;10186:84;;10242:18;;:::i;:::-;10186:84;10007:269;9956:320;;;:::o;10282:180::-;10330:77;10327:1;10320:88;10427:4;10424:1;10417:15;10451:4;10448:1;10441:15;10468:410;10508:7;10531:20;10549:1;10531:20;:::i;:::-;10526:25;;10565:20;10583:1;10565:20;:::i;:::-;10560:25;;10620:1;10617;10613:9;10642:30;10660:11;10642:30;:::i;:::-;10631:41;;10821:1;10812:7;10808:15;10805:1;10802:22;10782:1;10775:9;10755:83;10732:139;;10851:18;;:::i;:::-;10732:139;10516:362;10468:410;;;;:::o;10884:180::-;10932:77;10929:1;10922:88;11029:4;11026:1;11019:15;11053:4;11050:1;11043:15;11070:185;11110:1;11127:20;11145:1;11127:20;:::i;:::-;11122:25;;11161:20;11179:1;11161:20;:::i;:::-;11156:25;;11200:1;11190:35;;11205:18;;:::i;:::-;11190:35;11247:1;11244;11240:9;11235:14;;11070:185;;;;:::o;11261:234::-;11401:34;11397:1;11389:6;11385:14;11378:58;11470:17;11465:2;11457:6;11453:15;11446:42;11261:234;:::o;11501:366::-;11643:3;11664:67;11728:2;11723:3;11664:67;:::i;:::-;11657:74;;11740:93;11829:3;11740:93;:::i;:::-;11858:2;11853:3;11849:12;11842:19;;11501:366;;;:::o;11873:419::-;12039:4;12077:2;12066:9;12062:18;12054:26;;12126:9;12120:4;12116:20;12112:1;12101:9;12097:17;12090:47;12154:131;12280:4;12154:131;:::i;:::-;12146:139;;11873:419;;;:::o;12298:191::-;12338:3;12357:20;12375:1;12357:20;:::i;:::-;12352:25;;12391:20;12409:1;12391:20;:::i;:::-;12386:25;;12434:1;12431;12427:9;12420:16;;12455:3;12452:1;12449:10;12446:36;;;12462:18;;:::i;:::-;12446:36;12298:191;;;;:::o;12495:179::-;12635:31;12631:1;12623:6;12619:14;12612:55;12495:179;:::o;12680:366::-;12822:3;12843:67;12907:2;12902:3;12843:67;:::i;:::-;12836:74;;12919:93;13008:3;12919:93;:::i;:::-;13037:2;13032:3;13028:12;13021:19;;12680:366;;;:::o;13052:419::-;13218:4;13256:2;13245:9;13241:18;13233:26;;13305:9;13299:4;13295:20;13291:1;13280:9;13276:17;13269:47;13333:131;13459:4;13333:131;:::i;:::-;13325:139;;13052:419;;;:::o;13477:174::-;13617:26;13613:1;13605:6;13601:14;13594:50;13477:174;:::o;13657:366::-;13799:3;13820:67;13884:2;13879:3;13820:67;:::i;:::-;13813:74;;13896:93;13985:3;13896:93;:::i;:::-;14014:2;14009:3;14005:12;13998:19;;13657:366;;;:::o;14029:419::-;14195:4;14233:2;14222:9;14218:18;14210:26;;14282:9;14276:4;14272:20;14268:1;14257:9;14253:17;14246:47;14310:131;14436:4;14310:131;:::i;:::-;14302:139;;14029:419;;;:::o;14454:244::-;14594:34;14590:1;14582:6;14578:14;14571:58;14663:27;14658:2;14650:6;14646:15;14639:52;14454:244;:::o;14704:366::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:419::-;15242:4;15280:2;15269:9;15265:18;15257:26;;15329:9;15323:4;15319:20;15315:1;15304:9;15300:17;15293:47;15357:131;15483:4;15357:131;:::i;:::-;15349:139;;15076:419;;;:::o;15501:224::-;15641:34;15637:1;15629:6;15625:14;15618:58;15710:7;15705:2;15697:6;15693:15;15686:32;15501:224;:::o;15731:366::-;15873:3;15894:67;15958:2;15953:3;15894:67;:::i;:::-;15887:74;;15970:93;16059:3;15970:93;:::i;:::-;16088:2;16083:3;16079:12;16072:19;;15731:366;;;:::o;16103:419::-;16269:4;16307:2;16296:9;16292:18;16284:26;;16356:9;16350:4;16346:20;16342:1;16331:9;16327:17;16320:47;16384:131;16510:4;16384:131;:::i;:::-;16376:139;;16103:419;;;:::o;16528:223::-;16668:34;16664:1;16656:6;16652:14;16645:58;16737:6;16732:2;16724:6;16720:15;16713:31;16528:223;:::o;16757:366::-;16899:3;16920:67;16984:2;16979:3;16920:67;:::i;:::-;16913:74;;16996:93;17085:3;16996:93;:::i;:::-;17114:2;17109:3;17105:12;17098:19;;16757:366;;;:::o;17129:419::-;17295:4;17333:2;17322:9;17318:18;17310:26;;17382:9;17376:4;17372:20;17368:1;17357:9;17353:17;17346:47;17410:131;17536:4;17410:131;:::i;:::-;17402:139;;17129:419;;;:::o;17554:240::-;17694:34;17690:1;17682:6;17678:14;17671:58;17763:23;17758:2;17750:6;17746:15;17739:48;17554:240;:::o;17800:366::-;17942:3;17963:67;18027:2;18022:3;17963:67;:::i;:::-;17956:74;;18039:93;18128:3;18039:93;:::i;:::-;18157:2;18152:3;18148:12;18141:19;;17800:366;;;:::o;18172:419::-;18338:4;18376:2;18365:9;18361:18;18353:26;;18425:9;18419:4;18415:20;18411:1;18400:9;18396:17;18389:47;18453:131;18579:4;18453:131;:::i;:::-;18445:139;;18172:419;;;:::o;18597:239::-;18737:34;18733:1;18725:6;18721:14;18714:58;18806:22;18801:2;18793:6;18789:15;18782:47;18597:239;:::o;18842:366::-;18984:3;19005:67;19069:2;19064:3;19005:67;:::i;:::-;18998:74;;19081:93;19170:3;19081:93;:::i;:::-;19199:2;19194:3;19190:12;19183:19;;18842:366;;;:::o;19214:419::-;19380:4;19418:2;19407:9;19403:18;19395:26;;19467:9;19461:4;19457:20;19453:1;19442:9;19438:17;19431:47;19495:131;19621:4;19495:131;:::i;:::-;19487:139;;19214:419;;;:::o;19639:225::-;19779:34;19775:1;19767:6;19763:14;19756:58;19848:8;19843:2;19835:6;19831:15;19824:33;19639:225;:::o;19870:366::-;20012:3;20033:67;20097:2;20092:3;20033:67;:::i;:::-;20026:74;;20109:93;20198:3;20109:93;:::i;:::-;20227:2;20222:3;20218:12;20211:19;;19870:366;;;:::o;20242:419::-;20408:4;20446:2;20435:9;20431:18;20423:26;;20495:9;20489:4;20485:20;20481:1;20470:9;20466:17;20459:47;20523:131;20649:4;20523:131;:::i;:::-;20515:139;;20242:419;;;:::o;20667:223::-;20807:34;20803:1;20795:6;20791:14;20784:58;20876:6;20871:2;20863:6;20859:15;20852:31;20667:223;:::o;20896:366::-;21038:3;21059:67;21123:2;21118:3;21059:67;:::i;:::-;21052:74;;21135:93;21224:3;21135:93;:::i;:::-;21253:2;21248:3;21244:12;21237:19;;20896:366;;;:::o;21268:419::-;21434:4;21472:2;21461:9;21457:18;21449:26;;21521:9;21515:4;21511:20;21507:1;21496:9;21492:17;21485:47;21549:131;21675:4;21549:131;:::i;:::-;21541:139;;21268:419;;;:::o;21693:221::-;21833:34;21829:1;21821:6;21817:14;21810:58;21902:4;21897:2;21889:6;21885:15;21878:29;21693:221;:::o;21920:366::-;22062:3;22083:67;22147:2;22142:3;22083:67;:::i;:::-;22076:74;;22159:93;22248:3;22159:93;:::i;:::-;22277:2;22272:3;22268:12;22261:19;;21920:366;;;:::o;22292:419::-;22458:4;22496:2;22485:9;22481:18;22473:26;;22545:9;22539:4;22535:20;22531:1;22520:9;22516:17;22509:47;22573:131;22699:4;22573:131;:::i;:::-;22565:139;;22292:419;;;:::o;22717:182::-;22857:34;22853:1;22845:6;22841:14;22834:58;22717:182;:::o;22905:366::-;23047:3;23068:67;23132:2;23127:3;23068:67;:::i;:::-;23061:74;;23144:93;23233:3;23144:93;:::i;:::-;23262:2;23257:3;23253:12;23246:19;;22905:366;;;:::o;23277:419::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:179::-;23842:31;23838:1;23830:6;23826:14;23819:55;23702:179;:::o;23887:366::-;24029:3;24050:67;24114:2;24109:3;24050:67;:::i;:::-;24043:74;;24126:93;24215:3;24126:93;:::i;:::-;24244:2;24239:3;24235:12;24228:19;;23887:366;;;:::o;24259:419::-;24425:4;24463:2;24452:9;24448:18;24440:26;;24512:9;24506:4;24502:20;24498:1;24487:9;24483:17;24476:47;24540:131;24666:4;24540:131;:::i;:::-;24532:139;;24259:419;;;:::o;24684:224::-;24824:34;24820:1;24812:6;24808:14;24801:58;24893:7;24888:2;24880:6;24876:15;24869:32;24684:224;:::o;24914:366::-;25056:3;25077:67;25141:2;25136:3;25077:67;:::i;:::-;25070:74;;25153:93;25242:3;25153:93;:::i;:::-;25271:2;25266:3;25262:12;25255:19;;24914:366;;;:::o;25286:419::-;25452:4;25490:2;25479:9;25475:18;25467:26;;25539:9;25533:4;25529:20;25525:1;25514:9;25510:17;25503:47;25567:131;25693:4;25567:131;:::i;:::-;25559:139;;25286:419;;;:::o;25711:222::-;25851:34;25847:1;25839:6;25835:14;25828:58;25920:5;25915:2;25907:6;25903:15;25896:30;25711:222;:::o;25939:366::-;26081:3;26102:67;26166:2;26161:3;26102:67;:::i;:::-;26095:74;;26178:93;26267:3;26178:93;:::i;:::-;26296:2;26291:3;26287:12;26280:19;;25939:366;;;:::o;26311:419::-;26477:4;26515:2;26504:9;26500:18;26492:26;;26564:9;26558:4;26554:20;26550:1;26539:9;26535:17;26528:47;26592:131;26718:4;26592:131;:::i;:::-;26584:139;;26311:419;;;:::o;26736:172::-;26876:24;26872:1;26864:6;26860:14;26853:48;26736:172;:::o;26914:366::-;27056:3;27077:67;27141:2;27136:3;27077:67;:::i;:::-;27070:74;;27153:93;27242:3;27153:93;:::i;:::-;27271:2;27266:3;27262:12;27255:19;;26914:366;;;:::o;27286:419::-;27452:4;27490:2;27479:9;27475:18;27467:26;;27539:9;27533:4;27529:20;27525:1;27514:9;27510:17;27503:47;27567:131;27693:4;27567:131;:::i;:::-;27559:139;;27286:419;;;:::o;27711:297::-;27851:34;27847:1;27839:6;27835:14;27828:58;27920:34;27915:2;27907:6;27903:15;27896:59;27989:11;27984:2;27976:6;27972:15;27965:36;27711:297;:::o;28014:366::-;28156:3;28177:67;28241:2;28236:3;28177:67;:::i;:::-;28170:74;;28253:93;28342:3;28253:93;:::i;:::-;28371:2;28366:3;28362:12;28355:19;;28014:366;;;:::o;28386:419::-;28552:4;28590:2;28579:9;28575:18;28567:26;;28639:9;28633:4;28629:20;28625:1;28614:9;28610:17;28603:47;28667:131;28793:4;28667:131;:::i;:::-;28659:139;;28386:419;;;:::o;28811:240::-;28951:34;28947:1;28939:6;28935:14;28928:58;29020:23;29015:2;29007:6;29003:15;28996:48;28811:240;:::o;29057:366::-;29199:3;29220:67;29284:2;29279:3;29220:67;:::i;:::-;29213:74;;29296:93;29385:3;29296:93;:::i;:::-;29414:2;29409:3;29405:12;29398:19;;29057:366;;;:::o;29429:419::-;29595:4;29633:2;29622:9;29618:18;29610:26;;29682:9;29676:4;29672:20;29668:1;29657:9;29653:17;29646:47;29710:131;29836:4;29710:131;:::i;:::-;29702:139;;29429:419;;;:::o;29854:169::-;29994:21;29990:1;29982:6;29978:14;29971:45;29854:169;:::o;30029:366::-;30171:3;30192:67;30256:2;30251:3;30192:67;:::i;:::-;30185:74;;30268:93;30357:3;30268:93;:::i;:::-;30386:2;30381:3;30377:12;30370:19;;30029:366;;;:::o;30401:419::-;30567:4;30605:2;30594:9;30590:18;30582:26;;30654:9;30648:4;30644:20;30640:1;30629:9;30625:17;30618:47;30682:131;30808:4;30682:131;:::i;:::-;30674:139;;30401:419;;;:::o;30826:241::-;30966:34;30962:1;30954:6;30950:14;30943:58;31035:24;31030:2;31022:6;31018:15;31011:49;30826:241;:::o;31073:366::-;31215:3;31236:67;31300:2;31295:3;31236:67;:::i;:::-;31229:74;;31312:93;31401:3;31312:93;:::i;:::-;31430:2;31425:3;31421:12;31414:19;;31073:366;;;:::o;31445:419::-;31611:4;31649:2;31638:9;31634:18;31626:26;;31698:9;31692:4;31688:20;31684:1;31673:9;31669:17;31662:47;31726:131;31852:4;31726:131;:::i;:::-;31718:139;;31445:419;;;:::o;31870:194::-;31910:4;31930:20;31948:1;31930:20;:::i;:::-;31925:25;;31964:20;31982:1;31964:20;:::i;:::-;31959:25;;32008:1;32005;32001:9;31993:17;;32032:1;32026:4;32023:11;32020:37;;;32037:18;;:::i;:::-;32020:37;31870:194;;;;:::o;32070:225::-;32210:34;32206:1;32198:6;32194:14;32187:58;32279:8;32274:2;32266:6;32262:15;32255:33;32070:225;:::o;32301:366::-;32443:3;32464:67;32528:2;32523:3;32464:67;:::i;:::-;32457:74;;32540:93;32629:3;32540:93;:::i;:::-;32658:2;32653:3;32649:12;32642:19;;32301:366;;;:::o;32673:419::-;32839:4;32877:2;32866:9;32862:18;32854:26;;32926:9;32920:4;32916:20;32912:1;32901:9;32897:17;32890:47;32954:131;33080:4;32954:131;:::i;:::-;32946:139;;32673:419;;;:::o;33098:143::-;33155:5;33186:6;33180:13;33171:22;;33202:33;33229:5;33202:33;:::i;:::-;33098:143;;;;:::o;33247:351::-;33317:6;33366:2;33354:9;33345:7;33341:23;33337:32;33334:119;;;33372:79;;:::i;:::-;33334:119;33492:1;33517:64;33573:7;33564:6;33553:9;33549:22;33517:64;:::i;:::-;33507:74;;33463:128;33247:351;;;;:::o;33604:332::-;33725:4;33763:2;33752:9;33748:18;33740:26;;33776:71;33844:1;33833:9;33829:17;33820:6;33776:71;:::i;:::-;33857:72;33925:2;33914:9;33910:18;33901:6;33857:72;:::i;:::-;33604:332;;;;;:::o;33942:137::-;33996:5;34027:6;34021:13;34012:22;;34043:30;34067:5;34043:30;:::i;:::-;33942:137;;;;:::o;34085:345::-;34152:6;34201:2;34189:9;34180:7;34176:23;34172:32;34169:119;;;34207:79;;:::i;:::-;34169:119;34327:1;34352:61;34405:7;34396:6;34385:9;34381:22;34352:61;:::i;:::-;34342:71;;34298:125;34085:345;;;;:::o;34436:332::-;34557:4;34595:2;34584:9;34580:18;34572:26;;34608:71;34676:1;34665:9;34661:17;34652:6;34608:71;:::i;:::-;34689:72;34757:2;34746:9;34742:18;34733:6;34689:72;:::i;:::-;34436:332;;;;;:::o;34774:442::-;34923:4;34961:2;34950:9;34946:18;34938:26;;34974:71;35042:1;35031:9;35027:17;35018:6;34974:71;:::i;:::-;35055:72;35123:2;35112:9;35108:18;35099:6;35055:72;:::i;:::-;35137;35205:2;35194:9;35190:18;35181:6;35137:72;:::i;:::-;34774:442;;;;;;:::o

Swarm Source

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