ETH Price: $2,292.33 (+0.19%)

Token

GPEPE (GPEPE)
 

Overview

Max Total Supply

1,000,000,000 GPEPE

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.368948766979229698 GPEPE

Value
$0.00
0x3fc807ce8d49cfffa2a23eb4e56fd55f0a60899a
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:
GPEPE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Twitter: https://twitter.com/godofpepe_eth
// Telegram: https://t.me/godofpepetoken
// Website: godofpepe.me

// File: contracts/IUniswapV2Router01.sol


pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
// File: contracts/IUniswapV2Router02.sol


pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    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;
}
// File: contracts/IUniswapV2Factory.sol


pragma solidity >=0.5.0;

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;
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @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, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `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, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 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 (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, 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, uint256 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 `uint256`.
     *
     * 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, uint256 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, uint256 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, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 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, uint256 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);

        uint256 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, uint256 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, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // 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, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev 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, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).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, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: contracts/God_pepe.sol


pragma solidity ^0.8.0;








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

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;

    // addresses
    address public devWallet;
    address private marketingWallet;

    // limits
    uint256 private maxBuyAmount;
    uint256 private maxSellAmount;
    uint256 private maxWalletAmount;

    uint256 private thresholdSwapAmount;

    // status flags
    bool private isTrading = false;
    bool public swapEnabled = false;
    bool public isSwapping;

    struct Fees {
        uint8 buyTotalFees;
        uint8 buyMarketingFee;
        uint8 buyDevFee;
        uint8 buyLiquidityFee;

        uint8 sellTotalFees;
        uint8 sellMarketingFee;
        uint8 sellDevFee;
        uint8 sellLiquidityFee;
    }

    Fees public _fees = Fees({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyDevFee: 0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellMarketingFee: 0,
        sellDevFee: 0,
        sellLiquidityFee: 0
    });

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 private taxTill;
    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxWalletAmount;

    // 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 marketPair;
    mapping(address => bool) public _isBlacklisted;

    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived);

    constructor() ERC20("GPEPE", "GPEPE") {
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;

        _isExcludedMaxWalletAmount[owner()] = true;
        _isExcludedMaxWalletAmount[address(this)] = true;
        _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;

        marketPair[address(uniswapV2Pair)] = true;

        approve(address(router), type(uint256).max);
        uint256 totalSupply = 1e9 * 1e18;

        maxBuyAmount = totalSupply * 3 / 100; // 3% maxTransactionAmountTxn
        maxSellAmount = totalSupply * 3 / 100; // 3% maxTransactionAmountTxn
        maxWalletAmount = totalSupply * 3 / 100; // 3% maxWallet
        thresholdSwapAmount = totalSupply * 1 / 1000; // 0.01% swap wallet

        _fees.buyMarketingFee = 2;
        _fees.buyLiquidityFee = 0;
        _fees.buyDevFee = 1;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee;

        _fees.sellMarketingFee = 15;
        _fees.sellLiquidityFee = 0;
        _fees.sellDevFee = 5;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee;

        marketingWallet = address(0xCdc5cBbF3Ae7c3Aa3fD290a11D9e9cb499065e1A);
        devWallet = address(0xf4EC4aC1bE45685950dd32c5CEf8b3aEE5cE5296);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function goTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
        taxTill = block.number + 4;
    }

    function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns (bool) {
        thresholdSwapAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner {
        require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "maxBuyAmount must be higher than 1%");
        require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "maxSellAmount must be higher than 1%");
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }

    function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%");
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

    function toggleSwapEnabled(bool enabled) external onlyOwner() {
        swapEnabled = enabled;
    }

    function blacklistAddress(address account, bool value) external onlyOwner {
        _isBlacklisted[account] = value;
    }

    function updateFees(
        uint8 _marketingFeeBuy,
        uint8 _liquidityFeeBuy,
        uint8 _devFeeBuy,
        uint8 _marketingFeeSell,
        uint8 _liquidityFeeSell,
        uint8 _devFeeSell
    ) external onlyOwner {
        _fees.buyMarketingFee = _marketingFeeBuy;
        _fees.buyLiquidityFee = _liquidityFeeBuy;
        _fees.buyDevFee = _devFeeBuy;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee;

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellDevFee = _devFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee;
        require(_fees.buyTotalFees <= 30, "Must keep fees at 30% or less");
        require(_fees.sellTotalFees <= 30, "Must keep fees at 30% or less");
    }

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

    function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
        _isExcludedMaxWalletAmount[account] = excluded;
    }

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

    function setMarketPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "Must keep uniswapV2Pair");
        marketPair[pair] = value;
    }

    function setWallets(address _marketingWallet, address _devWallet) external onlyOwner {
        marketingWallet = _marketingWallet;
        devWallet = _devWallet;
    }

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (
            sender != owner() &&
            recipient != owner() &&
            !isSwapping
        ) {
            if (!isTrading) {
                require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active.");
            }
            if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) {
                require(amount <= maxBuyAmount, "buy transfer over max amount");
            } else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) {
                require(amount <= maxSellAmount, "Sell transfer over max amount");
            }

            if (!_isExcludedMaxWalletAmount[recipient]) {
                require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded");
            }
            require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "Blacklisted address");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= thresholdSwapAmount;

        if (
            canSwap &&
            swapEnabled &&
            !isSwapping &&
            marketPair[recipient] &&
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }

        bool takeFee = !isSwapping;

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

        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            uint256 fees = 0;
            if (block.number < taxTill) {
                if (marketPair[recipient]) {
                    fees = amount.mul(99).div(100);
                    tokensForMarketing += (fees * 94) / 99;
                    tokensForDev += (fees * 5) / 99; 
                } else {
                    fees = amount.mul(99).div(100);
                    tokensForMarketing += (fees * 94) / 99;
                    tokensForDev += (fees * 5) / 99;
                }
            } else if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees;
                tokensForDev += fees * _fees.sellDevFee / _fees.sellTotalFees;
            }
            // on buy
            else if (marketPair[sender] && _fees.buyTotalFees > 0) {
                fees = amount.mul(_fees.buyTotalFees).div(100);
                tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees;
                tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees;
                tokensForDev += fees * _fees.buyDevFee / _fees.buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(sender, recipient, amount);
    }

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

        _approve(address(this), address(router), tAmount);

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

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

        // add the liquidity
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tAmount,
            0,
            0,
            address(this),
            block.timestamp
        );
    }

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

        if (contractTokenBalance == 0 || toSwap == 0) {
            return;
        }

        if (contractTokenBalance > thresholdSwapAmount * 20) {
            contractTokenBalance = thresholdSwapAmount * 20;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap);
        uint256 ethForDev = newBalance.mul(tokensForDev).div(toSwap);
        uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDev);

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint8","name":"buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"buyMarketingFee","type":"uint8"},{"internalType":"uint8","name":"buyDevFee","type":"uint8"},{"internalType":"uint8","name":"buyLiquidityFee","type":"uint8"},{"internalType":"uint8","name":"sellTotalFees","type":"uint8"},{"internalType":"uint8","name":"sellMarketingFee","type":"uint8"},{"internalType":"uint8","name":"sellDevFee","type":"uint8"},{"internalType":"uint8","name":"sellLiquidityFee","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goTrading","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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"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":[{"internalType":"uint8","name":"_marketingFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_devFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_marketingFeeSell","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeSell","type":"uint8"},{"internalType":"uint8","name":"_devFeeSell","type":"uint8"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040525f600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055506040518061010001604052805f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff16815250600d5f820151815f015f6101000a81548160ff021916908360ff1602179055506020820151815f0160016101000a81548160ff021916908360ff1602179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151815f0160036101000a81548160ff021916908360ff1602179055506080820151815f0160046101000a81548160ff021916908360ff16021790555060a0820151815f0160056101000a81548160ff021916908360ff16021790555060c0820151815f0160066101000a81548160ff021916908360ff16021790555060e0820151815f0160076101000a81548160ff021916908360ff160217905550505034801562000197575f80fd5b506040518060400160405280600581526020017f47504550450000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4750455045000000000000000000000000000000000000000000000000000000815250816003908162000215919062001188565b50806004908162000227919062001188565b5050506200024a6200023e62000ac660201b60201c565b62000acd60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003049190620012d1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003929190620012d1565b6040518363ffffffff1660e01b8152600401620003b192919062001312565b6020604051808303815f875af1158015620003ce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003f49190620012d1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160135f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f620004ea62000b9060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f620005a362000b9060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f6200065c62000b9060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620007e26080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000bb860201b60201c565b505f6b033b2e3c9fd0803ce8000000905060646003826200080491906200136a565b620008109190620013e1565b60088190555060646003826200082791906200136a565b620008339190620013e1565b60098190555060646003826200084a91906200136a565b620008569190620013e1565b600a819055506103e86001826200086e91906200136a565b6200087a9190620013e1565b600b819055506002600d5f0160016101000a81548160ff021916908360ff1602179055505f600d5f0160036101000a81548160ff021916908360ff1602179055506001600d5f0160026101000a81548160ff021916908360ff160217905550600d5f0160029054906101000a900460ff16600d5f0160039054906101000a900460ff16600d5f0160019054906101000a900460ff166200091b919062001424565b62000927919062001424565b600d5f015f6101000a81548160ff021916908360ff160217905550600f600d5f0160056101000a81548160ff021916908360ff1602179055505f600d5f0160076101000a81548160ff021916908360ff1602179055506005600d5f0160066101000a81548160ff021916908360ff160217905550600d5f0160069054906101000a900460ff16600d5f0160079054906101000a900460ff16600d5f0160059054906101000a900460ff16620009dd919062001424565b620009e9919062001424565b600d5f0160046101000a81548160ff021916908360ff16021790555073cdc5cbbf3ae7c3aa3fd290a11d9e9cb499065e1a60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f4ec4ac1be45685950dd32c5cef8b3aee5ce529660065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000abf338262000bea60201b60201c565b506200166b565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f8062000bca62000ac660201b60201c565b905062000bdf81858562000d4f60201b60201c565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c5290620014bd565b60405180910390fd5b62000c6e5f838362000f1a60201b60201c565b8060025f82825462000c819190620014dd565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d30919062001528565b60405180910390a362000d4b5f838362000f1f60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000dc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000db790620015b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000e31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e28906200164b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000f0d919062001528565b60405180910390a3505050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000fa057607f821691505b60208210810362000fb65762000fb562000f5b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200101a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000fdd565b62001026868362000fdd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620010706200106a62001064846200103e565b62001047565b6200103e565b9050919050565b5f819050919050565b6200108b8362001050565b620010a36200109a8262001077565b84845462000fe9565b825550505050565b5f90565b620010b9620010ab565b620010c681848462001080565b505050565b5b81811015620010ed57620010e15f82620010af565b600181019050620010cc565b5050565b601f8211156200113c57620011068162000fbc565b620011118462000fce565b8101602085101562001121578190505b62001139620011308562000fce565b830182620010cb565b50505b505050565b5f82821c905092915050565b5f6200115e5f198460080262001141565b1980831691505092915050565b5f6200117883836200114d565b9150826002028217905092915050565b620011938262000f24565b67ffffffffffffffff811115620011af57620011ae62000f2e565b5b620011bb825462000f88565b620011c8828285620010f1565b5f60209050601f831160018114620011fe575f8415620011e9578287015190505b620011f585826200116b565b86555062001264565b601f1984166200120e8662000fbc565b5f5b82811015620012375784890151825560018201915060208501945060208101905062001210565b8683101562001257578489015162001253601f8916826200114d565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200129b8262001270565b9050919050565b620012ad816200128f565b8114620012b8575f80fd5b50565b5f81519050620012cb81620012a2565b92915050565b5f60208284031215620012e957620012e86200126c565b5b5f620012f884828501620012bb565b91505092915050565b6200130c816200128f565b82525050565b5f604082019050620013275f83018562001301565b62001336602083018462001301565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62001376826200103e565b915062001383836200103e565b925082820262001393816200103e565b91508282048414831517620013ad57620013ac6200133d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620013ed826200103e565b9150620013fa836200103e565b9250826200140d576200140c620013b4565b5b828204905092915050565b5f60ff82169050919050565b5f620014308262001418565b91506200143d8362001418565b9250828201905060ff8111156200145957620014586200133d565b5b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620014a5601f836200145f565b9150620014b2826200146f565b602082019050919050565b5f6020820190508181035f830152620014d68162001497565b9050919050565b5f620014e9826200103e565b9150620014f6836200103e565b92508282019050808211156200151157620015106200133d565b5b92915050565b62001522816200103e565b82525050565b5f6020820190506200153d5f83018462001517565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200159f6024836200145f565b9150620015ac8262001543565b604082019050919050565b5f6020820190508181035f830152620015d08162001591565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f620016336022836200145f565b91506200164082620015d7565b604082019050919050565b5f6020820190508181035f830152620016648162001625565b9050919050565b60805160a051614330620016b75f395f8181610efa01526112b801525f81816116e601528181612d0301528181612de201528181612e0901528181612e9f0152612ec601526143305ff3fe60806040526004361061023e575f3560e01c80637571336a1161012d578063c0246668116100aa578063dd62ed3e1161006e578063dd62ed3e1461089a578063e16830a8146108d6578063f2fde38b146108fe578063f5b3c3bf14610926578063f887ea401461096257610245565b8063c0246668146107c9578063c16dd4a4146107f1578063c18bc19514610819578063d212a69a14610841578063d3f6a1571461087257610245565b80639fccce32116100f15780639fccce32146106e7578063a457c2d714610711578063a79786191461074d578063a9059cbb14610763578063b88631151461079f57610245565b80637571336a146106055780638da5cb5b1461062d5780638ea5220f1461065757806395d89b411461068157806396880b17146106ab57610245565b8063313ce567116101bb5780634fbee1931161017f5780634fbee19314610511578063555467a11461054d5780636ddd17131461058957806370a08231146105b3578063715018a6146105ef57610245565b8063313ce567146104315780633265e8461461045b5780633950935114610483578063455a4396146104bf57806349bd5a5e146104e757610245565b80631a8145bb116102025780631a8145bb1461033d5780631c6e8a75146103675780631cdd3be31461038f5780631f3fed8f146103cb57806323b872dd146103f557610245565b806306fdde0314610249578063095ea7b31461027357806310d5de53146102af57806311a582c3146102eb57806318160ddd1461031357610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061025d61098c565b60405161026a9190612ffa565b60405180910390f35b34801561027e575f80fd5b50610299600480360381019061029491906130ab565b610a1c565b6040516102a69190613103565b60405180910390f35b3480156102ba575f80fd5b506102d560048036038101906102d0919061311c565b610a3e565b6040516102e29190613103565b60405180910390f35b3480156102f6575f80fd5b50610311600480360381019061030c9190613147565b610a5b565b005b34801561031e575f80fd5b50610327610b9d565b6040516103349190613194565b60405180910390f35b348015610348575f80fd5b50610351610ba6565b60405161035e9190613194565b60405180910390f35b348015610372575f80fd5b5061038d600480360381019061038891906131d7565b610bac565b005b34801561039a575f80fd5b506103b560048036038101906103b0919061311c565b610bd1565b6040516103c29190613103565b60405180910390f35b3480156103d6575f80fd5b506103df610bee565b6040516103ec9190613194565b60405180910390f35b348015610400575f80fd5b5061041b60048036038101906104169190613202565b610bf4565b6040516104289190613103565b60405180910390f35b34801561043c575f80fd5b50610445610c22565b604051610452919061326d565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c91906132b0565b610c2a565b005b34801561048e575f80fd5b506104a960048036038101906104a491906130ab565b610e62565b6040516104b69190613103565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e09190613339565b610e98565b005b3480156104f2575f80fd5b506104fb610ef8565b6040516105089190613386565b60405180910390f35b34801561051c575f80fd5b506105376004803603810190610532919061311c565b610f1c565b6040516105449190613103565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e919061339f565b610f6e565b6040516105809190613103565b60405180910390f35b348015610594575f80fd5b5061059d610f87565b6040516105aa9190613103565b60405180910390f35b3480156105be575f80fd5b506105d960048036038101906105d4919061311c565b610f9a565b6040516105e69190613194565b60405180910390f35b3480156105fa575f80fd5b50610603610fdf565b005b348015610610575f80fd5b5061062b60048036038101906106269190613339565b610ff2565b005b348015610638575f80fd5b50610641611052565b60405161064e9190613386565b60405180910390f35b348015610662575f80fd5b5061066b61107a565b6040516106789190613386565b60405180910390f35b34801561068c575f80fd5b5061069561109f565b6040516106a29190612ffa565b60405180910390f35b3480156106b6575f80fd5b506106d160048036038101906106cc919061311c565b61112f565b6040516106de9190613103565b60405180910390f35b3480156106f2575f80fd5b506106fb61114c565b6040516107089190613194565b60405180910390f35b34801561071c575f80fd5b50610737600480360381019061073291906130ab565b611152565b6040516107449190613103565b60405180910390f35b348015610758575f80fd5b506107616111c7565b005b34801561076e575f80fd5b50610789600480360381019061078491906130ab565b611219565b6040516107969190613103565b60405180910390f35b3480156107aa575f80fd5b506107b361123b565b6040516107c09190613103565b60405180910390f35b3480156107d4575f80fd5b506107ef60048036038101906107ea9190613339565b61124e565b005b3480156107fc575f80fd5b5061081760048036038101906108129190613339565b6112ae565b005b348015610824575f80fd5b5061083f600480360381019061083a919061339f565b61139c565b005b34801561084c575f80fd5b50610855611442565b6040516108699897969594939291906133ca565b60405180910390f35b34801561087d575f80fd5b5061089860048036038101906108939190613446565b6114d7565b005b3480156108a5575f80fd5b506108c060048036038101906108bb9190613446565b611563565b6040516108cd9190613194565b60405180910390f35b3480156108e1575f80fd5b506108fc60048036038101906108f79190613339565b6115e5565b005b348015610909575f80fd5b50610924600480360381019061091f919061311c565b611645565b005b348015610931575f80fd5b5061094c6004803603810190610947919061311c565b6116c7565b6040516109599190613103565b60405180910390f35b34801561096d575f80fd5b506109766116e4565b60405161098391906134df565b60405180910390f35b60606003805461099b90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790613525565b8015610a125780601f106109e957610100808354040283529160200191610a12565b820191905f5260205f20905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b5f80610a26611708565b9050610a3381858561170f565b600191505092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b610a636118d2565b6064610a6d610b9d565b610a7791906135af565b6103e883610a83610b9d565b610a8d91906135df565b610a9791906135af565b1015610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613690565b60405180910390fd5b6064610ae2610b9d565b610aec91906135af565b6103e882610af8610b9d565b610b0291906135df565b610b0c91906135af565b1015610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b449061371e565b60405180910390fd5b6103e882610b59610b9d565b610b6391906135df565b610b6d91906135af565b6008819055506103e881610b7f610b9d565b610b8991906135df565b610b9391906135af565b6009819055505050565b5f600254905090565b600f5481565b610bb46118d2565b80600c60016101000a81548160ff02191690831515021790555050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b5f80610bfe611708565b9050610c0b858285611950565b610c168585856119db565b60019150509392505050565b5f6012905090565b610c326118d2565b85600d5f0160016101000a81548160ff021916908360ff16021790555084600d5f0160036101000a81548160ff021916908360ff16021790555083600d5f0160026101000a81548160ff021916908360ff160217905550600d5f0160029054906101000a900460ff16600d5f0160039054906101000a900460ff16600d5f0160019054906101000a900460ff16610cc9919061373c565b610cd3919061373c565b600d5f015f6101000a81548160ff021916908360ff16021790555082600d5f0160056101000a81548160ff021916908360ff16021790555081600d5f0160076101000a81548160ff021916908360ff16021790555080600d5f0160066101000a81548160ff021916908360ff160217905550600d5f0160069054906101000a900460ff16600d5f0160079054906101000a900460ff16600d5f0160059054906101000a900460ff16610d85919061373c565b610d8f919061373c565b600d5f0160046101000a81548160ff021916908360ff160217905550601e600d5f015f9054906101000a900460ff1660ff161115610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906137ba565b60405180910390fd5b601e600d5f0160049054906101000a900460ff1660ff161115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906137ba565b60405180910390fd5b505050505050565b5f80610e6c611708565b9050610e8d818585610e7e8589611563565b610e8891906137d8565b61170f565b600191505092915050565b610ea06118d2565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f610f776118d2565b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe76118d2565b610ff05f612618565b565b610ffa6118d2565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110ae90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546110da90613525565b80156111255780601f106110fc57610100808354040283529160200191611125565b820191905f5260205f20905b81548152906001019060200180831161110857829003601f168201915b5050505050905090565b6014602052805f5260405f205f915054906101000a900460ff1681565b60105481565b5f8061115c611708565b90505f6111698286611563565b9050838110156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061387b565b60405180910390fd5b6111bb828686840361170f565b60019250505092915050565b6111cf6118d2565b6001600c5f6101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060044361121191906137d8565b601181905550565b5f80611223611708565b90506112308185856119db565b600191505092915050565b600c60029054906101000a900460ff1681565b6112566118d2565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6112b66118d2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b906138e3565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6113a46118d2565b60646113ae610b9d565b6113b891906135af565b6103e8826113c4610b9d565b6113ce91906135df565b6113d891906135af565b1015611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613971565b60405180910390fd5b6103e881611425610b9d565b61142f91906135df565b61143991906135af565b600a8190555050565b600d805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff1690805f0160029054906101000a900460ff1690805f0160039054906101000a900460ff1690805f0160049054906101000a900460ff1690805f0160059054906101000a900460ff1690805f0160069054906101000a900460ff1690805f0160079054906101000a900460ff16905088565b6114df6118d2565b8160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115ed6118d2565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61164d6118d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906139ff565b60405180910390fd5b6116c481612618565b50565b6015602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613a8d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290613b1b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118c59190613194565b60405180910390a3505050565b6118da611708565b73ffffffffffffffffffffffffffffffffffffffff166118f8611052565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613b83565b60405180910390fd5b565b5f61195b8484611563565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119d557818110156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613beb565b60405180910390fd5b6119d4848484840361170f565b5b50505050565b5f81036119f2576119ed83835f6126db565b612613565b6119fa611052565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a685750611a38611052565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a815750600c60029054906101000a900460ff16155b15611ece57600c5f9054906101000a900460ff16611b745760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b34575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613c53565b60405180910390fd5b5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c11575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c6057600854811115611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613cbb565b60405180910390fd5b611d49565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cfd575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d4857600954811115611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90613d23565b60405180910390fd5b5b5b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611df057600a54611da383610f9a565b82611dae91906137d8565b1115611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613d8b565b60405180910390fd5b5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611e8e575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613df3565b60405180910390fd5b5b5f611ed830610f9a565b90505f600b548210159050808015611efc5750600c60019054906101000a900460ff165b8015611f155750600c60029054906101000a900460ff16155b8015611f67575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611fba575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561200d575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612050576001600c60026101000a81548160ff021916908315150217905550612035612947565b5f600c60026101000a81548160ff0219169083151502179055505b5f600c60029054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120ff575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612108575f90505b8015612604575f6011544310156122855760155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156121f65761218f6064612181606388612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90506063605e826121a091906135df565b6121aa91906135af565b600e5f8282546121ba91906137d8565b9250508190555060636005826121d091906135df565b6121da91906135af565b60105f8282546121ea91906137d8565b92505081905550612280565b61221d606461220f606388612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90506063605e8261222e91906135df565b61223891906135af565b600e5f82825461224891906137d8565b92505081905550606360058261225e91906135df565b61226891906135af565b60105f82825461227891906137d8565b925050819055505b6125e0565b60155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122ee57505f600d5f0160049054906101000a900460ff1660ff16115b156124365761232d606461231f600d5f0160049054906101000a900460ff1660ff1688612c1d90919063ffffffff16565b612c3290919063ffffffff16565b9050600d5f0160049054906101000a900460ff1660ff16600d5f0160079054906101000a900460ff1660ff168261236491906135df565b61236e91906135af565b600f5f82825461237e91906137d8565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160059054906101000a900460ff1660ff16826123ba91906135df565b6123c491906135af565b600e5f8282546123d491906137d8565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160069054906101000a900460ff1660ff168261241091906135df565b61241a91906135af565b60105f82825461242a91906137d8565b925050819055506125df565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561249e57505f600d5f015f9054906101000a900460ff1660ff16115b156125de576124dc60646124ce600d5f015f9054906101000a900460ff1660ff1688612c1d90919063ffffffff16565b612c3290919063ffffffff16565b9050600d5f015f9054906101000a900460ff1660ff16600d5f0160039054906101000a900460ff1660ff168261251291906135df565b61251c91906135af565b600f5f82825461252c91906137d8565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160019054906101000a900460ff1660ff168261256791906135df565b61257191906135af565b600e5f82825461258191906137d8565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160029054906101000a900460ff1660ff16826125bc91906135df565b6125c691906135af565b60105f8282546125d691906137d8565b925050819055505b5b5b5f8111156125f4576125f38730836126db565b5b80856126009190613e11565b9450505b61260f8686866126db565b5050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274090613eb4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae90613f42565b60405180910390fd5b6127c2838383612c47565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90613fd0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161292e9190613194565b60405180910390a3612941848484612c4c565b50505050565b5f61295130610f9a565b90505f601054600e54600f5461296791906137d8565b61297191906137d8565b90505f8083148061298157505f82145b1561298e57505050612c1b565b6014600b5461299d91906135df565b8311156129b6576014600b546129b391906135df565b92505b5f600283600f54866129c891906135df565b6129d291906135af565b6129dc91906135af565b90505f6129f28286612c5190919063ffffffff16565b90505f479050612a0182612c66565b5f612a158247612c5190919063ffffffff16565b90505f612a3f87612a31600e5485612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90505f612a6988612a5b60105486612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90505f8183612a7891906137d8565b84612a839190613e11565b90505f600f819055505f600e819055505f6010819055505f87118015612aa857505f81115b15612af157612ab78782612e99565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612ae8929190613fee565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612b359190613e11565b604051612b4190614042565b5f6040518083038185875af1925050503d805f8114612b7b576040519150601f19603f3d011682016040523d82523d5f602084013e612b80565b606091505b50508098505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bcb90614042565b5f6040518083038185875af1925050503d805f8114612c05576040519150601f19603f3d011682016040523d82523d5f602084013e612c0a565b606091505b505080985050505050505050505050505b565b5f8183612c2a91906135df565b905092915050565b5f8183612c3f91906135af565b905092915050565b505050565b505050565b5f8183612c5e9190613e11565b905092915050565b5f600267ffffffffffffffff811115612c8257612c81614056565b5b604051908082528060200260200182016040528015612cb05781602001602082028036833780820191505090505b50905030815f81518110612cc757612cc6614083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d8e91906140c4565b81600181518110612da257612da1614083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e07307f00000000000000000000000000000000000000000000000000000000000000008461170f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612e689594939291906141df565b5f604051808303815f87803b158015612e7f575f80fd5b505af1158015612e91573d5f803e3d5ffd5b505050505050565b612ec4307f00000000000000000000000000000000000000000000000000000000000000008461170f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8030426040518863ffffffff1660e01b8152600401612f2896959493929190614237565b60606040518083038185885af1158015612f44573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612f6991906142aa565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612fa7578082015181840152602081019050612f8c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612fcc82612f70565b612fd68185612f7a565b9350612fe6818560208601612f8a565b612fef81612fb2565b840191505092915050565b5f6020820190508181035f8301526130128184612fc2565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130478261301e565b9050919050565b6130578161303d565b8114613061575f80fd5b50565b5f813590506130728161304e565b92915050565b5f819050919050565b61308a81613078565b8114613094575f80fd5b50565b5f813590506130a581613081565b92915050565b5f80604083850312156130c1576130c061301a565b5b5f6130ce85828601613064565b92505060206130df85828601613097565b9150509250929050565b5f8115159050919050565b6130fd816130e9565b82525050565b5f6020820190506131165f8301846130f4565b92915050565b5f602082840312156131315761313061301a565b5b5f61313e84828501613064565b91505092915050565b5f806040838503121561315d5761315c61301a565b5b5f61316a85828601613097565b925050602061317b85828601613097565b9150509250929050565b61318e81613078565b82525050565b5f6020820190506131a75f830184613185565b92915050565b6131b6816130e9565b81146131c0575f80fd5b50565b5f813590506131d1816131ad565b92915050565b5f602082840312156131ec576131eb61301a565b5b5f6131f9848285016131c3565b91505092915050565b5f805f606084860312156132195761321861301a565b5b5f61322686828701613064565b935050602061323786828701613064565b925050604061324886828701613097565b9150509250925092565b5f60ff82169050919050565b61326781613252565b82525050565b5f6020820190506132805f83018461325e565b92915050565b61328f81613252565b8114613299575f80fd5b50565b5f813590506132aa81613286565b92915050565b5f805f805f8060c087890312156132ca576132c961301a565b5b5f6132d789828a0161329c565b96505060206132e889828a0161329c565b95505060406132f989828a0161329c565b945050606061330a89828a0161329c565b935050608061331b89828a0161329c565b92505060a061332c89828a0161329c565b9150509295509295509295565b5f806040838503121561334f5761334e61301a565b5b5f61335c85828601613064565b925050602061336d858286016131c3565b9150509250929050565b6133808161303d565b82525050565b5f6020820190506133995f830184613377565b92915050565b5f602082840312156133b4576133b361301a565b5b5f6133c184828501613097565b91505092915050565b5f610100820190506133de5f83018b61325e565b6133eb602083018a61325e565b6133f8604083018961325e565b613405606083018861325e565b613412608083018761325e565b61341f60a083018661325e565b61342c60c083018561325e565b61343960e083018461325e565b9998505050505050505050565b5f806040838503121561345c5761345b61301a565b5b5f61346985828601613064565b925050602061347a85828601613064565b9150509250929050565b5f819050919050565b5f6134a76134a261349d8461301e565b613484565b61301e565b9050919050565b5f6134b88261348d565b9050919050565b5f6134c9826134ae565b9050919050565b6134d9816134bf565b82525050565b5f6020820190506134f25f8301846134d0565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353c57607f821691505b60208210810361354f5761354e6134f8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135b982613078565b91506135c483613078565b9250826135d4576135d3613555565b5b828204905092915050565b5f6135e982613078565b91506135f483613078565b925082820261360281613078565b9150828204841483151761361957613618613582565b5b5092915050565b7f6d6178427579416d6f756e74206d75737420626520686967686572207468616e5f8201527f2031250000000000000000000000000000000000000000000000000000000000602082015250565b5f61367a602383612f7a565b915061368582613620565b604082019050919050565b5f6020820190508181035f8301526136a78161366e565b9050919050565b7f6d617853656c6c416d6f756e74206d75737420626520686967686572207468615f8201527f6e20312500000000000000000000000000000000000000000000000000000000602082015250565b5f613708602483612f7a565b9150613713826136ae565b604082019050919050565b5f6020820190508181035f830152613735816136fc565b9050919050565b5f61374682613252565b915061375183613252565b9250828201905060ff81111561376a57613769613582565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c6573730000005f82015250565b5f6137a4601d83612f7a565b91506137af82613770565b602082019050919050565b5f6020820190508181035f8301526137d181613798565b9050919050565b5f6137e282613078565b91506137ed83613078565b925082820190508082111561380557613804613582565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613865602583612f7a565b91506138708261380b565b604082019050919050565b5f6020820190508181035f83015261389281613859565b9050919050565b7f4d757374206b65657020756e69737761705632506169720000000000000000005f82015250565b5f6138cd601783612f7a565b91506138d882613899565b602082019050919050565b5f6020820190508181035f8301526138fa816138c1565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b5f61395b602283612f7a565b915061396682613901565b604082019050919050565b5f6020820190508181035f8301526139888161394f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6139e9602683612f7a565b91506139f48261398f565b604082019050919050565b5f6020820190508181035f830152613a16816139dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613a77602483612f7a565b9150613a8282613a1d565b604082019050919050565b5f6020820190508181035f830152613aa481613a6b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b05602283612f7a565b9150613b1082613aab565b604082019050919050565b5f6020820190508181035f830152613b3281613af9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613b6d602083612f7a565b9150613b7882613b39565b602082019050919050565b5f6020820190508181035f830152613b9a81613b61565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613bd5601d83612f7a565b9150613be082613ba1565b602082019050919050565b5f6020820190508181035f830152613c0281613bc9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613c3d601683612f7a565b9150613c4882613c09565b602082019050919050565b5f6020820190508181035f830152613c6a81613c31565b9050919050565b7f627579207472616e73666572206f766572206d617820616d6f756e74000000005f82015250565b5f613ca5601c83612f7a565b9150613cb082613c71565b602082019050919050565b5f6020820190508181035f830152613cd281613c99565b9050919050565b7f53656c6c207472616e73666572206f766572206d617820616d6f756e740000005f82015250565b5f613d0d601d83612f7a565b9150613d1882613cd9565b602082019050919050565b5f6020820190508181035f830152613d3a81613d01565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613d75601383612f7a565b9150613d8082613d41565b602082019050919050565b5f6020820190508181035f830152613da281613d69565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f613ddd601383612f7a565b9150613de882613da9565b602082019050919050565b5f6020820190508181035f830152613e0a81613dd1565b9050919050565b5f613e1b82613078565b9150613e2683613078565b9250828203905081811115613e3e57613e3d613582565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613e9e602583612f7a565b9150613ea982613e44565b604082019050919050565b5f6020820190508181035f830152613ecb81613e92565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613f2c602383612f7a565b9150613f3782613ed2565b604082019050919050565b5f6020820190508181035f830152613f5981613f20565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613fba602683612f7a565b9150613fc582613f60565b604082019050919050565b5f6020820190508181035f830152613fe781613fae565b9050919050565b5f6040820190506140015f830185613185565b61400e6020830184613185565b9392505050565b5f81905092915050565b50565b5f61402d5f83614015565b91506140388261401f565b5f82019050919050565b5f61404c82614022565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506140be8161304e565b92915050565b5f602082840312156140d9576140d861301a565b5b5f6140e6848285016140b0565b91505092915050565b5f819050919050565b5f61411261410d614108846140ef565b613484565b613078565b9050919050565b614122816140f8565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61415a8161303d565b82525050565b5f61416b8383614151565b60208301905092915050565b5f602082019050919050565b5f61418d82614128565b6141978185614132565b93506141a283614142565b805f5b838110156141d25781516141b98882614160565b97506141c483614177565b9250506001810190506141a5565b5085935050505092915050565b5f60a0820190506141f25f830188613185565b6141ff6020830187614119565b81810360408301526142118186614183565b90506142206060830185613377565b61422d6080830184613185565b9695505050505050565b5f60c08201905061424a5f830189613377565b6142576020830188613185565b6142646040830187614119565b6142716060830186614119565b61427e6080830185613377565b61428b60a0830184613185565b979650505050505050565b5f815190506142a481613081565b92915050565b5f805f606084860312156142c1576142c061301a565b5b5f6142ce86828701614296565b93505060206142df86828701614296565b92505060406142f086828701614296565b915050925092509256fea26469706673582212201a3f8069acb1a16cb67c07e38d0f9b78c69d26a50fbec8672b1a1e3ae39f181664736f6c63430008140033

Deployed Bytecode

0x60806040526004361061023e575f3560e01c80637571336a1161012d578063c0246668116100aa578063dd62ed3e1161006e578063dd62ed3e1461089a578063e16830a8146108d6578063f2fde38b146108fe578063f5b3c3bf14610926578063f887ea401461096257610245565b8063c0246668146107c9578063c16dd4a4146107f1578063c18bc19514610819578063d212a69a14610841578063d3f6a1571461087257610245565b80639fccce32116100f15780639fccce32146106e7578063a457c2d714610711578063a79786191461074d578063a9059cbb14610763578063b88631151461079f57610245565b80637571336a146106055780638da5cb5b1461062d5780638ea5220f1461065757806395d89b411461068157806396880b17146106ab57610245565b8063313ce567116101bb5780634fbee1931161017f5780634fbee19314610511578063555467a11461054d5780636ddd17131461058957806370a08231146105b3578063715018a6146105ef57610245565b8063313ce567146104315780633265e8461461045b5780633950935114610483578063455a4396146104bf57806349bd5a5e146104e757610245565b80631a8145bb116102025780631a8145bb1461033d5780631c6e8a75146103675780631cdd3be31461038f5780631f3fed8f146103cb57806323b872dd146103f557610245565b806306fdde0314610249578063095ea7b31461027357806310d5de53146102af57806311a582c3146102eb57806318160ddd1461031357610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061025d61098c565b60405161026a9190612ffa565b60405180910390f35b34801561027e575f80fd5b50610299600480360381019061029491906130ab565b610a1c565b6040516102a69190613103565b60405180910390f35b3480156102ba575f80fd5b506102d560048036038101906102d0919061311c565b610a3e565b6040516102e29190613103565b60405180910390f35b3480156102f6575f80fd5b50610311600480360381019061030c9190613147565b610a5b565b005b34801561031e575f80fd5b50610327610b9d565b6040516103349190613194565b60405180910390f35b348015610348575f80fd5b50610351610ba6565b60405161035e9190613194565b60405180910390f35b348015610372575f80fd5b5061038d600480360381019061038891906131d7565b610bac565b005b34801561039a575f80fd5b506103b560048036038101906103b0919061311c565b610bd1565b6040516103c29190613103565b60405180910390f35b3480156103d6575f80fd5b506103df610bee565b6040516103ec9190613194565b60405180910390f35b348015610400575f80fd5b5061041b60048036038101906104169190613202565b610bf4565b6040516104289190613103565b60405180910390f35b34801561043c575f80fd5b50610445610c22565b604051610452919061326d565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c91906132b0565b610c2a565b005b34801561048e575f80fd5b506104a960048036038101906104a491906130ab565b610e62565b6040516104b69190613103565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e09190613339565b610e98565b005b3480156104f2575f80fd5b506104fb610ef8565b6040516105089190613386565b60405180910390f35b34801561051c575f80fd5b506105376004803603810190610532919061311c565b610f1c565b6040516105449190613103565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e919061339f565b610f6e565b6040516105809190613103565b60405180910390f35b348015610594575f80fd5b5061059d610f87565b6040516105aa9190613103565b60405180910390f35b3480156105be575f80fd5b506105d960048036038101906105d4919061311c565b610f9a565b6040516105e69190613194565b60405180910390f35b3480156105fa575f80fd5b50610603610fdf565b005b348015610610575f80fd5b5061062b60048036038101906106269190613339565b610ff2565b005b348015610638575f80fd5b50610641611052565b60405161064e9190613386565b60405180910390f35b348015610662575f80fd5b5061066b61107a565b6040516106789190613386565b60405180910390f35b34801561068c575f80fd5b5061069561109f565b6040516106a29190612ffa565b60405180910390f35b3480156106b6575f80fd5b506106d160048036038101906106cc919061311c565b61112f565b6040516106de9190613103565b60405180910390f35b3480156106f2575f80fd5b506106fb61114c565b6040516107089190613194565b60405180910390f35b34801561071c575f80fd5b50610737600480360381019061073291906130ab565b611152565b6040516107449190613103565b60405180910390f35b348015610758575f80fd5b506107616111c7565b005b34801561076e575f80fd5b50610789600480360381019061078491906130ab565b611219565b6040516107969190613103565b60405180910390f35b3480156107aa575f80fd5b506107b361123b565b6040516107c09190613103565b60405180910390f35b3480156107d4575f80fd5b506107ef60048036038101906107ea9190613339565b61124e565b005b3480156107fc575f80fd5b5061081760048036038101906108129190613339565b6112ae565b005b348015610824575f80fd5b5061083f600480360381019061083a919061339f565b61139c565b005b34801561084c575f80fd5b50610855611442565b6040516108699897969594939291906133ca565b60405180910390f35b34801561087d575f80fd5b5061089860048036038101906108939190613446565b6114d7565b005b3480156108a5575f80fd5b506108c060048036038101906108bb9190613446565b611563565b6040516108cd9190613194565b60405180910390f35b3480156108e1575f80fd5b506108fc60048036038101906108f79190613339565b6115e5565b005b348015610909575f80fd5b50610924600480360381019061091f919061311c565b611645565b005b348015610931575f80fd5b5061094c6004803603810190610947919061311c565b6116c7565b6040516109599190613103565b60405180910390f35b34801561096d575f80fd5b506109766116e4565b60405161098391906134df565b60405180910390f35b60606003805461099b90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790613525565b8015610a125780601f106109e957610100808354040283529160200191610a12565b820191905f5260205f20905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b5f80610a26611708565b9050610a3381858561170f565b600191505092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b610a636118d2565b6064610a6d610b9d565b610a7791906135af565b6103e883610a83610b9d565b610a8d91906135df565b610a9791906135af565b1015610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613690565b60405180910390fd5b6064610ae2610b9d565b610aec91906135af565b6103e882610af8610b9d565b610b0291906135df565b610b0c91906135af565b1015610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b449061371e565b60405180910390fd5b6103e882610b59610b9d565b610b6391906135df565b610b6d91906135af565b6008819055506103e881610b7f610b9d565b610b8991906135df565b610b9391906135af565b6009819055505050565b5f600254905090565b600f5481565b610bb46118d2565b80600c60016101000a81548160ff02191690831515021790555050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b5f80610bfe611708565b9050610c0b858285611950565b610c168585856119db565b60019150509392505050565b5f6012905090565b610c326118d2565b85600d5f0160016101000a81548160ff021916908360ff16021790555084600d5f0160036101000a81548160ff021916908360ff16021790555083600d5f0160026101000a81548160ff021916908360ff160217905550600d5f0160029054906101000a900460ff16600d5f0160039054906101000a900460ff16600d5f0160019054906101000a900460ff16610cc9919061373c565b610cd3919061373c565b600d5f015f6101000a81548160ff021916908360ff16021790555082600d5f0160056101000a81548160ff021916908360ff16021790555081600d5f0160076101000a81548160ff021916908360ff16021790555080600d5f0160066101000a81548160ff021916908360ff160217905550600d5f0160069054906101000a900460ff16600d5f0160079054906101000a900460ff16600d5f0160059054906101000a900460ff16610d85919061373c565b610d8f919061373c565b600d5f0160046101000a81548160ff021916908360ff160217905550601e600d5f015f9054906101000a900460ff1660ff161115610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906137ba565b60405180910390fd5b601e600d5f0160049054906101000a900460ff1660ff161115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906137ba565b60405180910390fd5b505050505050565b5f80610e6c611708565b9050610e8d818585610e7e8589611563565b610e8891906137d8565b61170f565b600191505092915050565b610ea06118d2565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000d877896a90699ace5dbb5d3bc30e586ef71cd81181565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f610f776118d2565b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe76118d2565b610ff05f612618565b565b610ffa6118d2565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110ae90613525565b80601f01602080910402602001604051908101604052809291908181526020018280546110da90613525565b80156111255780601f106110fc57610100808354040283529160200191611125565b820191905f5260205f20905b81548152906001019060200180831161110857829003601f168201915b5050505050905090565b6014602052805f5260405f205f915054906101000a900460ff1681565b60105481565b5f8061115c611708565b90505f6111698286611563565b9050838110156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061387b565b60405180910390fd5b6111bb828686840361170f565b60019250505092915050565b6111cf6118d2565b6001600c5f6101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060044361121191906137d8565b601181905550565b5f80611223611708565b90506112308185856119db565b600191505092915050565b600c60029054906101000a900460ff1681565b6112566118d2565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6112b66118d2565b7f000000000000000000000000d877896a90699ace5dbb5d3bc30e586ef71cd81173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b906138e3565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6113a46118d2565b60646113ae610b9d565b6113b891906135af565b6103e8826113c4610b9d565b6113ce91906135df565b6113d891906135af565b1015611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613971565b60405180910390fd5b6103e881611425610b9d565b61142f91906135df565b61143991906135af565b600a8190555050565b600d805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff1690805f0160029054906101000a900460ff1690805f0160039054906101000a900460ff1690805f0160049054906101000a900460ff1690805f0160059054906101000a900460ff1690805f0160069054906101000a900460ff1690805f0160079054906101000a900460ff16905088565b6114df6118d2565b8160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115ed6118d2565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61164d6118d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906139ff565b60405180910390fd5b6116c481612618565b50565b6015602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613a8d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290613b1b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118c59190613194565b60405180910390a3505050565b6118da611708565b73ffffffffffffffffffffffffffffffffffffffff166118f8611052565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613b83565b60405180910390fd5b565b5f61195b8484611563565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119d557818110156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613beb565b60405180910390fd5b6119d4848484840361170f565b5b50505050565b5f81036119f2576119ed83835f6126db565b612613565b6119fa611052565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a685750611a38611052565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a815750600c60029054906101000a900460ff16155b15611ece57600c5f9054906101000a900460ff16611b745760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b34575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613c53565b60405180910390fd5b5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c11575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c6057600854811115611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613cbb565b60405180910390fd5b611d49565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cfd575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d4857600954811115611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90613d23565b60405180910390fd5b5b5b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611df057600a54611da383610f9a565b82611dae91906137d8565b1115611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613d8b565b60405180910390fd5b5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611e8e575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613df3565b60405180910390fd5b5b5f611ed830610f9a565b90505f600b548210159050808015611efc5750600c60019054906101000a900460ff165b8015611f155750600c60029054906101000a900460ff16155b8015611f67575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611fba575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561200d575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612050576001600c60026101000a81548160ff021916908315150217905550612035612947565b5f600c60026101000a81548160ff0219169083151502179055505b5f600c60029054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120ff575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612108575f90505b8015612604575f6011544310156122855760155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156121f65761218f6064612181606388612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90506063605e826121a091906135df565b6121aa91906135af565b600e5f8282546121ba91906137d8565b9250508190555060636005826121d091906135df565b6121da91906135af565b60105f8282546121ea91906137d8565b92505081905550612280565b61221d606461220f606388612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90506063605e8261222e91906135df565b61223891906135af565b600e5f82825461224891906137d8565b92505081905550606360058261225e91906135df565b61226891906135af565b60105f82825461227891906137d8565b925050819055505b6125e0565b60155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122ee57505f600d5f0160049054906101000a900460ff1660ff16115b156124365761232d606461231f600d5f0160049054906101000a900460ff1660ff1688612c1d90919063ffffffff16565b612c3290919063ffffffff16565b9050600d5f0160049054906101000a900460ff1660ff16600d5f0160079054906101000a900460ff1660ff168261236491906135df565b61236e91906135af565b600f5f82825461237e91906137d8565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160059054906101000a900460ff1660ff16826123ba91906135df565b6123c491906135af565b600e5f8282546123d491906137d8565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160069054906101000a900460ff1660ff168261241091906135df565b61241a91906135af565b60105f82825461242a91906137d8565b925050819055506125df565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561249e57505f600d5f015f9054906101000a900460ff1660ff16115b156125de576124dc60646124ce600d5f015f9054906101000a900460ff1660ff1688612c1d90919063ffffffff16565b612c3290919063ffffffff16565b9050600d5f015f9054906101000a900460ff1660ff16600d5f0160039054906101000a900460ff1660ff168261251291906135df565b61251c91906135af565b600f5f82825461252c91906137d8565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160019054906101000a900460ff1660ff168261256791906135df565b61257191906135af565b600e5f82825461258191906137d8565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160029054906101000a900460ff1660ff16826125bc91906135df565b6125c691906135af565b60105f8282546125d691906137d8565b925050819055505b5b5b5f8111156125f4576125f38730836126db565b5b80856126009190613e11565b9450505b61260f8686866126db565b5050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274090613eb4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae90613f42565b60405180910390fd5b6127c2838383612c47565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90613fd0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161292e9190613194565b60405180910390a3612941848484612c4c565b50505050565b5f61295130610f9a565b90505f601054600e54600f5461296791906137d8565b61297191906137d8565b90505f8083148061298157505f82145b1561298e57505050612c1b565b6014600b5461299d91906135df565b8311156129b6576014600b546129b391906135df565b92505b5f600283600f54866129c891906135df565b6129d291906135af565b6129dc91906135af565b90505f6129f28286612c5190919063ffffffff16565b90505f479050612a0182612c66565b5f612a158247612c5190919063ffffffff16565b90505f612a3f87612a31600e5485612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90505f612a6988612a5b60105486612c1d90919063ffffffff16565b612c3290919063ffffffff16565b90505f8183612a7891906137d8565b84612a839190613e11565b90505f600f819055505f600e819055505f6010819055505f87118015612aa857505f81115b15612af157612ab78782612e99565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612ae8929190613fee565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612b359190613e11565b604051612b4190614042565b5f6040518083038185875af1925050503d805f8114612b7b576040519150601f19603f3d011682016040523d82523d5f602084013e612b80565b606091505b50508098505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bcb90614042565b5f6040518083038185875af1925050503d805f8114612c05576040519150601f19603f3d011682016040523d82523d5f602084013e612c0a565b606091505b505080985050505050505050505050505b565b5f8183612c2a91906135df565b905092915050565b5f8183612c3f91906135af565b905092915050565b505050565b505050565b5f8183612c5e9190613e11565b905092915050565b5f600267ffffffffffffffff811115612c8257612c81614056565b5b604051908082528060200260200182016040528015612cb05781602001602082028036833780820191505090505b50905030815f81518110612cc757612cc6614083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d8e91906140c4565b81600181518110612da257612da1614083565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e07307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461170f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612e689594939291906141df565b5f604051808303815f87803b158015612e7f575f80fd5b505af1158015612e91573d5f803e3d5ffd5b505050505050565b612ec4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461170f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8030426040518863ffffffff1660e01b8152600401612f2896959493929190614237565b60606040518083038185885af1158015612f44573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612f6991906142aa565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612fa7578082015181840152602081019050612f8c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612fcc82612f70565b612fd68185612f7a565b9350612fe6818560208601612f8a565b612fef81612fb2565b840191505092915050565b5f6020820190508181035f8301526130128184612fc2565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130478261301e565b9050919050565b6130578161303d565b8114613061575f80fd5b50565b5f813590506130728161304e565b92915050565b5f819050919050565b61308a81613078565b8114613094575f80fd5b50565b5f813590506130a581613081565b92915050565b5f80604083850312156130c1576130c061301a565b5b5f6130ce85828601613064565b92505060206130df85828601613097565b9150509250929050565b5f8115159050919050565b6130fd816130e9565b82525050565b5f6020820190506131165f8301846130f4565b92915050565b5f602082840312156131315761313061301a565b5b5f61313e84828501613064565b91505092915050565b5f806040838503121561315d5761315c61301a565b5b5f61316a85828601613097565b925050602061317b85828601613097565b9150509250929050565b61318e81613078565b82525050565b5f6020820190506131a75f830184613185565b92915050565b6131b6816130e9565b81146131c0575f80fd5b50565b5f813590506131d1816131ad565b92915050565b5f602082840312156131ec576131eb61301a565b5b5f6131f9848285016131c3565b91505092915050565b5f805f606084860312156132195761321861301a565b5b5f61322686828701613064565b935050602061323786828701613064565b925050604061324886828701613097565b9150509250925092565b5f60ff82169050919050565b61326781613252565b82525050565b5f6020820190506132805f83018461325e565b92915050565b61328f81613252565b8114613299575f80fd5b50565b5f813590506132aa81613286565b92915050565b5f805f805f8060c087890312156132ca576132c961301a565b5b5f6132d789828a0161329c565b96505060206132e889828a0161329c565b95505060406132f989828a0161329c565b945050606061330a89828a0161329c565b935050608061331b89828a0161329c565b92505060a061332c89828a0161329c565b9150509295509295509295565b5f806040838503121561334f5761334e61301a565b5b5f61335c85828601613064565b925050602061336d858286016131c3565b9150509250929050565b6133808161303d565b82525050565b5f6020820190506133995f830184613377565b92915050565b5f602082840312156133b4576133b361301a565b5b5f6133c184828501613097565b91505092915050565b5f610100820190506133de5f83018b61325e565b6133eb602083018a61325e565b6133f8604083018961325e565b613405606083018861325e565b613412608083018761325e565b61341f60a083018661325e565b61342c60c083018561325e565b61343960e083018461325e565b9998505050505050505050565b5f806040838503121561345c5761345b61301a565b5b5f61346985828601613064565b925050602061347a85828601613064565b9150509250929050565b5f819050919050565b5f6134a76134a261349d8461301e565b613484565b61301e565b9050919050565b5f6134b88261348d565b9050919050565b5f6134c9826134ae565b9050919050565b6134d9816134bf565b82525050565b5f6020820190506134f25f8301846134d0565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353c57607f821691505b60208210810361354f5761354e6134f8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135b982613078565b91506135c483613078565b9250826135d4576135d3613555565b5b828204905092915050565b5f6135e982613078565b91506135f483613078565b925082820261360281613078565b9150828204841483151761361957613618613582565b5b5092915050565b7f6d6178427579416d6f756e74206d75737420626520686967686572207468616e5f8201527f2031250000000000000000000000000000000000000000000000000000000000602082015250565b5f61367a602383612f7a565b915061368582613620565b604082019050919050565b5f6020820190508181035f8301526136a78161366e565b9050919050565b7f6d617853656c6c416d6f756e74206d75737420626520686967686572207468615f8201527f6e20312500000000000000000000000000000000000000000000000000000000602082015250565b5f613708602483612f7a565b9150613713826136ae565b604082019050919050565b5f6020820190508181035f830152613735816136fc565b9050919050565b5f61374682613252565b915061375183613252565b9250828201905060ff81111561376a57613769613582565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c6573730000005f82015250565b5f6137a4601d83612f7a565b91506137af82613770565b602082019050919050565b5f6020820190508181035f8301526137d181613798565b9050919050565b5f6137e282613078565b91506137ed83613078565b925082820190508082111561380557613804613582565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613865602583612f7a565b91506138708261380b565b604082019050919050565b5f6020820190508181035f83015261389281613859565b9050919050565b7f4d757374206b65657020756e69737761705632506169720000000000000000005f82015250565b5f6138cd601783612f7a565b91506138d882613899565b602082019050919050565b5f6020820190508181035f8301526138fa816138c1565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b5f61395b602283612f7a565b915061396682613901565b604082019050919050565b5f6020820190508181035f8301526139888161394f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6139e9602683612f7a565b91506139f48261398f565b604082019050919050565b5f6020820190508181035f830152613a16816139dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613a77602483612f7a565b9150613a8282613a1d565b604082019050919050565b5f6020820190508181035f830152613aa481613a6b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b05602283612f7a565b9150613b1082613aab565b604082019050919050565b5f6020820190508181035f830152613b3281613af9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613b6d602083612f7a565b9150613b7882613b39565b602082019050919050565b5f6020820190508181035f830152613b9a81613b61565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613bd5601d83612f7a565b9150613be082613ba1565b602082019050919050565b5f6020820190508181035f830152613c0281613bc9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613c3d601683612f7a565b9150613c4882613c09565b602082019050919050565b5f6020820190508181035f830152613c6a81613c31565b9050919050565b7f627579207472616e73666572206f766572206d617820616d6f756e74000000005f82015250565b5f613ca5601c83612f7a565b9150613cb082613c71565b602082019050919050565b5f6020820190508181035f830152613cd281613c99565b9050919050565b7f53656c6c207472616e73666572206f766572206d617820616d6f756e740000005f82015250565b5f613d0d601d83612f7a565b9150613d1882613cd9565b602082019050919050565b5f6020820190508181035f830152613d3a81613d01565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613d75601383612f7a565b9150613d8082613d41565b602082019050919050565b5f6020820190508181035f830152613da281613d69565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f613ddd601383612f7a565b9150613de882613da9565b602082019050919050565b5f6020820190508181035f830152613e0a81613dd1565b9050919050565b5f613e1b82613078565b9150613e2683613078565b9250828203905081811115613e3e57613e3d613582565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613e9e602583612f7a565b9150613ea982613e44565b604082019050919050565b5f6020820190508181035f830152613ecb81613e92565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613f2c602383612f7a565b9150613f3782613ed2565b604082019050919050565b5f6020820190508181035f830152613f5981613f20565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613fba602683612f7a565b9150613fc582613f60565b604082019050919050565b5f6020820190508181035f830152613fe781613fae565b9050919050565b5f6040820190506140015f830185613185565b61400e6020830184613185565b9392505050565b5f81905092915050565b50565b5f61402d5f83614015565b91506140388261401f565b5f82019050919050565b5f61404c82614022565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506140be8161304e565b92915050565b5f602082840312156140d9576140d861301a565b5b5f6140e6848285016140b0565b91505092915050565b5f819050919050565b5f61411261410d614108846140ef565b613484565b613078565b9050919050565b614122816140f8565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61415a8161303d565b82525050565b5f61416b8383614151565b60208301905092915050565b5f602082019050919050565b5f61418d82614128565b6141978185614132565b93506141a283614142565b805f5b838110156141d25781516141b98882614160565b97506141c483614177565b9250506001810190506141a5565b5085935050505092915050565b5f60a0820190506141f25f830188613185565b6141ff6020830187614119565b81810360408301526142118186614183565b90506142206060830185613377565b61422d6080830184613185565b9695505050505050565b5f60c08201905061424a5f830189613377565b6142576020830188613185565b6142646040830187614119565b6142716060830186614119565b61427e6080830185613377565b61428b60a0830184613185565b979650505050505050565b5f815190506142a481613081565b92915050565b5f805f606084860312156142c1576142c061301a565b5b5f6142ce86828701614296565b93505060206142df86828701614296565b92505060406142f086828701614296565b915050925092509256fea26469706673582212201a3f8069acb1a16cb67c07e38d0f9b78c69d26a50fbec8672b1a1e3ae39f181664736f6c63430008140033

Deployed Bytecode Sourcemap

33323:12971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24612:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34670:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37330:458;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23381:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34454:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38075:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35005:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34414:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25393:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23223:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38317:882;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26063:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38185:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33447:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40017:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37162:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33811:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23552:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15558:103;;;;;;;;;;;;;:::i;:::-;;39501:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14917:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22471:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34740:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34494:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26804:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37013:141;;;;;;;;;;;;;:::i;:::-;;23885:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33849:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39207:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39653:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37796:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34152:253;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;39838:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24141:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39347:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15816:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34956:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33398;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22252:100;22306:13;22339:5;22332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22252:100;:::o;24612:201::-;24695:4;24712:13;24728:12;:10;:12::i;:::-;24712:28;;24751:32;24760:5;24767:7;24776:6;24751:8;:32::i;:::-;24801:4;24794:11;;;24612:201;;;;:::o;34670:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;37330:458::-;14803:13;:11;:13::i;:::-;37492:3:::1;37476:13;:11;:13::i;:::-;:19;;;;:::i;:::-;37466:4;37453:9;37437:13;:11;:13::i;:::-;:25;;;;:::i;:::-;37436:34;;;;:::i;:::-;37435:61;;37427:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;37613:3;37597:13;:11;:13::i;:::-;:19;;;;:::i;:::-;37587:4;37573:10;37557:13;:11;:13::i;:::-;:26;;;;:::i;:::-;37556:35;;;;:::i;:::-;37555:62;;37547:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;37714:4;37701:9;37685:13;:11;:13::i;:::-;:25;;;;:::i;:::-;37684:34;;;;:::i;:::-;37669:12;:49;;;;37776:4;37762:10;37746:13;:11;:13::i;:::-;:26;;;;:::i;:::-;37745:35;;;;:::i;:::-;37729:13;:51;;;;37330:458:::0;;:::o;23381:108::-;23442:7;23469:12;;23462:19;;23381:108;:::o;34454:33::-;;;;:::o;38075:102::-;14803:13;:11;:13::i;:::-;38162:7:::1;38148:11;;:21;;;;;;;;;;;;;;;;;;38075:102:::0;:::o;35005:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;34414:33::-;;;;:::o;25393:261::-;25490:4;25507:15;25525:12;:10;:12::i;:::-;25507:30;;25548:38;25564:4;25570:7;25579:6;25548:15;:38::i;:::-;25597:27;25607:4;25613:2;25617:6;25597:9;:27::i;:::-;25642:4;25635:11;;;25393:261;;;;;:::o;23223:93::-;23281:5;23306:2;23299:9;;23223:93;:::o;38317:882::-;14803:13;:11;:13::i;:::-;38587:16:::1;38563:5;:21;;;:40;;;;;;;;;;;;;;;;;;38638:16;38614:5;:21;;;:40;;;;;;;;;;;;;;;;;;38683:10;38665:5;:15;;;:28;;;;;;;;;;;;;;;;;;38773:5;:15;;;;;;;;;;;;38749:5;:21;;;;;;;;;;;;38725:5;:21;;;;;;;;;;;;:45;;;;:::i;:::-;:63;;;;:::i;:::-;38704:5;:18;;;:84;;;;;;;;;;;;;;;;;;38826:17;38801:5;:22;;;:42;;;;;;;;;;;;;;;;;;38879:17;38854:5;:22;;;:42;;;;;;;;;;;;;;;;;;38926:11;38907:5;:16;;;:30;;;;;;;;;;;;;;;;;;39020:5;:16;;;;;;;;;;;;38995:5;:22;;;;;;;;;;;;38970:5;:22;;;;;;;;;;;;:47;;;;:::i;:::-;:66;;;;:::i;:::-;38948:5;:19;;;:88;;;;;;;;;;;;;;;;;;39077:2;39055:5;:18;;;;;;;;;;;;:24;;;;39047:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39155:2;39132:5;:19;;;;;;;;;;;;:25;;;;39124:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38317:882:::0;;;;;;:::o;26063:238::-;26151:4;26168:13;26184:12;:10;:12::i;:::-;26168:28;;26207:64;26216:5;26223:7;26260:10;26232:25;26242:5;26249:7;26232:9;:25::i;:::-;:38;;;;:::i;:::-;26207:8;:64::i;:::-;26289:4;26282:11;;;26063:238;;;;:::o;38185:124::-;14803:13;:11;:13::i;:::-;38296:5:::1;38270:14;:23;38285:7;38270:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;38185:124:::0;;:::o;33447:38::-;;;:::o;40017:126::-;40083:4;40107:19;:28;40127:7;40107:28;;;;;;;;;;;;;;;;;;;;;;;;;40100:35;;40017:126;;;:::o;37162:160::-;37244:4;14803:13;:11;:13::i;:::-;37283:9:::1;37261:19;:31;;;;37310:4;37303:11;;37162:160:::0;;;:::o;33811:31::-;;;;;;;;;;;;;:::o;23552:127::-;23626:7;23653:9;:18;23663:7;23653:18;;;;;;;;;;;;;;;;23646:25;;23552:127;;;:::o;15558:103::-;14803:13;:11;:13::i;:::-;15623:30:::1;15650:1;15623:18;:30::i;:::-;15558:103::o:0;39501:144::-;14803:13;:11;:13::i;:::-;39633:4:::1;39591:31;:39;39623:6;39591:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39501:144:::0;;:::o;14917:87::-;14963:7;14990:6;;;;;;;;;;;14983:13;;14917:87;:::o;33512:24::-;;;;;;;;;;;;;:::o;22471:104::-;22527:13;22560:7;22553:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22471:104;:::o;34740:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;34494:27::-;;;;:::o;26804:436::-;26897:4;26914:13;26930:12;:10;:12::i;:::-;26914:28;;26953:24;26980:25;26990:5;26997:7;26980:9;:25::i;:::-;26953:52;;27044:15;27024:16;:35;;27016:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;27137:60;27146:5;27153:7;27181:15;27162:16;:34;27137:8;:60::i;:::-;27228:4;27221:11;;;;26804:436;;;;:::o;37013:141::-;14803:13;:11;:13::i;:::-;37076:4:::1;37064:9;;:16;;;;;;;;;;;;;;;;;;37105:4;37091:11;;:18;;;;;;;;;;;;;;;;;;37145:1;37130:12;:16;;;;:::i;:::-;37120:7;:26;;;;37013:141::o:0;23885:193::-;23964:4;23981:13;23997:12;:10;:12::i;:::-;23981:28;;24020;24030:5;24037:2;24041:6;24020:9;:28::i;:::-;24066:4;24059:11;;;23885:193;;;;:::o;33849:22::-;;;;;;;;;;;;;:::o;39207:132::-;14803:13;:11;:13::i;:::-;39323:8:::1;39292:19;:28;39312:7;39292:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39207:132:::0;;:::o;39653:177::-;14803:13;:11;:13::i;:::-;39746::::1;39738:21;;:4;:21;;::::0;39730:57:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39817:5;39798:10;:16;39809:4;39798:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;39653:177:::0;;:::o;37796:271::-;14803:13;:11;:13::i;:::-;37949:3:::1;37933:13;:11;:13::i;:::-;:19;;;;:::i;:::-;37923:4;37906:13;37890;:11;:13::i;:::-;:29;;;;:::i;:::-;37889:38;;;;:::i;:::-;37888:65;;37880:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;38055:4;38038:13;38022;:11;:13::i;:::-;:29;;;;:::i;:::-;38021:38;;;;:::i;:::-;38003:15;:56;;;;37796:271:::0;:::o;34152:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39838:171::-;14803:13;:11;:13::i;:::-;39952:16:::1;39934:15;;:34;;;;;;;;;;;;;;;;;;39991:10;39979:9;;:22;;;;;;;;;;;;;;;;;;39838:171:::0;;:::o;24141:151::-;24230:7;24257:11;:18;24269:5;24257:18;;;;;;;;;;;;;;;:27;24276:7;24257:27;;;;;;;;;;;;;;;;24250:34;;24141:151;;;;:::o;39347:146::-;14803:13;:11;:13::i;:::-;39477:8:::1;39439:26;:35;39466:7;39439:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39347:146:::0;;:::o;15816:201::-;14803:13;:11;:13::i;:::-;15925:1:::1;15905:22;;:8;:22;;::::0;15897:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15981:28;16000:8;15981:18;:28::i;:::-;15816:201:::0;:::o;34956:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;33398:::-;;;:::o;13468:98::-;13521:7;13548:10;13541:17;;13468:98;:::o;30797:346::-;30916:1;30899:19;;:5;:19;;;30891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30997:1;30978:21;;:7;:21;;;30970:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31081:6;31051:11;:18;31063:5;31051:18;;;;;;;;;;;;;;;:27;31070:7;31051:27;;;;;;;;;;;;;;;:36;;;;31119:7;31103:32;;31112:5;31103:32;;;31128:6;31103:32;;;;;;:::i;:::-;;;;;;;;30797:346;;;:::o;15082:132::-;15157:12;:10;:12::i;:::-;15146:23;;:7;:5;:7::i;:::-;:23;;;15138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15082:132::o;31434:419::-;31535:24;31562:25;31572:5;31579:7;31562:9;:25::i;:::-;31535:52;;31622:17;31602:16;:37;31598:248;;31684:6;31664:16;:26;;31656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31768:51;31777:5;31784:7;31812:6;31793:16;:25;31768:8;:51::i;:::-;31598:248;31524:329;31434:419;;;:::o;40151:3556::-;40298:1;40288:6;:11;40284:102;;40316:37;40332:6;40340:9;40351:1;40316:15;:37::i;:::-;40368:7;;40284:102;40426:7;:5;:7::i;:::-;40416:17;;:6;:17;;;;:54;;;;;40463:7;:5;:7::i;:::-;40450:20;;:9;:20;;;;40416:54;:82;;;;;40488:10;;;;;;;;;;;40487:11;40416:82;40398:920;;;40530:9;;;;;;;;;;;40525:147;;40568:19;:27;40588:6;40568:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;40599:19;:30;40619:9;40599:30;;;;;;;;;;;;;;;;;;;;;;;;;40568:61;40560:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40525:147;40690:10;:18;40701:6;40690:18;;;;;;;;;;;;;;;;;;;;;;;;;:65;;;;;40713:31;:42;40745:9;40713:42;;;;;;;;;;;;;;;;;;;;;;;;;40712:43;40690:65;40686:346;;;40794:12;;40784:6;:22;;40776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40686:346;;;40865:10;:21;40876:9;40865:21;;;;;;;;;;;;;;;;;;;;;;;;;:65;;;;;40891:31;:39;40923:6;40891:39;;;;;;;;;;;;;;;;;;;;;;;;;40890:40;40865:65;40861:171;;;40969:13;;40959:6;:23;;40951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40861:171;40686:346;41053:26;:37;41080:9;41053:37;;;;;;;;;;;;;;;;;;;;;;;;;41048:159;;41152:15;;41128:20;41138:9;41128;:20::i;:::-;41119:6;:29;;;;:::i;:::-;:48;;41111:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41048:159;41230:14;:22;41245:6;41230:22;;;;;;;;;;;;;;;;;;;;;;;;;41229:23;:53;;;;;41257:14;:25;41272:9;41257:25;;;;;;;;;;;;;;;;;;;;;;;;;41256:26;41229:53;41221:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40398:920;41330:28;41361:24;41379:4;41361:9;:24::i;:::-;41330:55;;41398:12;41437:19;;41413:20;:43;;41398:58;;41487:7;:35;;;;;41511:11;;;;;;;;;;;41487:35;:63;;;;;41540:10;;;;;;;;;;;41539:11;41487:63;:101;;;;;41567:10;:21;41578:9;41567:21;;;;;;;;;;;;;;;;;;;;;;;;;41487:101;:146;;;;;41606:19;:27;41626:6;41606:27;;;;;;;;;;;;;;;;;;;;;;;;;41605:28;41487:146;:194;;;;;41651:19;:30;41671:9;41651:30;;;;;;;;;;;;;;;;;;;;;;;;;41650:31;41487:194;41469:326;;;41721:4;41708:10;;:17;;;;;;;;;;;;;;;;;;41740:10;:8;:10::i;:::-;41778:5;41765:10;;:18;;;;;;;;;;;;;;;;;;41469:326;41807:12;41823:10;;;;;;;;;;;41822:11;41807:26;;41935:19;:27;41955:6;41935:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;41966:19;:30;41986:9;41966:30;;;;;;;;;;;;;;;;;;;;;;;;;41935:61;41931:109;;;42023:5;42013:15;;41931:109;42130:7;42126:1519;;;42154:12;42204:7;;42189:12;:22;42185:1309;;;42236:10;:21;42247:9;42236:21;;;;;;;;;;;;;;;;;;;;;;;;;42232:410;;;42289:23;42308:3;42289:14;42300:2;42289:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;42282:30;;42371:2;42365;42358:4;:9;;;;:::i;:::-;42357:16;;;;:::i;:::-;42335:18;;:38;;;;;;;:::i;:::-;;;;;;;;42425:2;42420:1;42413:4;:8;;;;:::i;:::-;42412:15;;;;:::i;:::-;42396:12;;:31;;;;;;;:::i;:::-;;;;;;;;42232:410;;;42484:23;42503:3;42484:14;42495:2;42484:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;42477:30;;42566:2;42560;42553:4;:9;;;;:::i;:::-;42552:16;;;;:::i;:::-;42530:18;;:38;;;;;;;:::i;:::-;;;;;;;;42620:2;42615:1;42608:4;:8;;;;:::i;:::-;42607:15;;;;:::i;:::-;42591:12;;:31;;;;;;;:::i;:::-;;;;;;;;42232:410;42185:1309;;;42667:10;:21;42678:9;42667:21;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;;42714:1;42692:5;:19;;;;;;;;;;;;:23;;;42667:48;42663:831;;;42743:40;42779:3;42743:31;42754:5;:19;;;;;;;;;;;;42743:31;;:6;:10;;:31;;;;:::i;:::-;:35;;:40;;;;:::i;:::-;42736:47;;42856:5;:19;;;;;;;;;;;;42824:51;;42831:5;:22;;;;;;;;;;;;42824:29;;:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;42802:18;;:73;;;;;;;:::i;:::-;;;;;;;;42948:5;:19;;;;;;;;;;;;42916:51;;42923:5;:22;;;;;;;;;;;;42916:29;;:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;42894:18;;:73;;;;;;;:::i;:::-;;;;;;;;43028:5;:19;;;;;;;;;;;;43002:45;;43009:5;:16;;;;;;;;;;;;43002:23;;:4;:23;;;;:::i;:::-;:45;;;;:::i;:::-;42986:12;;:61;;;;;;;:::i;:::-;;;;;;;;42663:831;;;43109:10;:18;43120:6;43109:18;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;;43152:1;43131:5;:18;;;;;;;;;;;;:22;;;43109:44;43105:389;;;43181:39;43216:3;43181:30;43192:5;:18;;;;;;;;;;;;43181:30;;:6;:10;;:30;;;;:::i;:::-;:34;;:39;;;;:::i;:::-;43174:46;;43292:5;:18;;;;;;;;;;;;43261:49;;43268:5;:21;;;;;;;;;;;;43261:28;;:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;43239:18;;:71;;;;;;;:::i;:::-;;;;;;;;43382:5;:18;;;;;;;;;;;;43351:49;;43358:5;:21;;;;;;;;;;;;43351:28;;:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;43329:18;;:71;;;;;;;:::i;:::-;;;;;;;;43460:5;:18;;;;;;;;;;;;43435:43;;43442:5;:15;;;;;;;;;;;;43435:22;;:4;:22;;;;:::i;:::-;:43;;;;:::i;:::-;43419:12;;:59;;;;;;;:::i;:::-;;;;;;;;43105:389;42663:831;42185:1309;43521:1;43514:4;:8;43510:93;;;43543:44;43559:6;43575:4;43582;43543:15;:44::i;:::-;43510:93;43629:4;43619:14;;;;;:::i;:::-;;;42139:1506;42126:1519;43657:42;43673:6;43681:9;43692:6;43657:15;:42::i;:::-;40273:3434;;;40151:3556;;;;:::o;16177:191::-;16251:16;16270:6;;;;;;;;;;;16251:25;;16296:8;16287:6;;:17;;;;;;;;;;;;;;;;;;16351:8;16320:40;;16341:8;16320:40;;;;;;;;;;;;16240:128;16177:191;:::o;27710:806::-;27823:1;27807:18;;:4;:18;;;27799:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:1;27886:16;;:2;:16;;;27878:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27955:38;27976:4;27982:2;27986:6;27955:20;:38::i;:::-;28006:19;28028:9;:15;28038:4;28028:15;;;;;;;;;;;;;;;;28006:37;;28077:6;28062:11;:21;;28054:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28194:6;28180:11;:20;28162:9;:15;28172:4;28162:15;;;;;;;;;;;;;;;:38;;;;28397:6;28380:9;:13;28390:2;28380:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;28447:2;28432:26;;28441:4;28432:26;;;28451:6;28432:26;;;;;;:::i;:::-;;;;;;;;28471:37;28491:4;28497:2;28501:6;28471:19;:37::i;:::-;27788:728;27710:806;;;:::o;44716:1575::-;44755:28;44786:24;44804:4;44786:9;:24::i;:::-;44755:55;;44821:14;44880:12;;44859:18;;44838;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;44821:71;;44903:12;44956:1;44932:20;:25;:40;;;;44971:1;44961:6;:11;44932:40;44928:79;;;44989:7;;;;;44928:79;45068:2;45046:19;;:24;;;;:::i;:::-;45023:20;:47;45019:127;;;45132:2;45110:19;;:24;;;;:::i;:::-;45087:47;;45019:127;45207:23;45286:1;45277:6;45256:18;;45233:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;45207:80;;45298:26;45327:41;45352:15;45327:20;:24;;:41;;;;:::i;:::-;45298:70;;45381:25;45409:21;45381:49;;45443:36;45460:18;45443:16;:36::i;:::-;45492:18;45513:44;45539:17;45513:21;:25;;:44;;;;:::i;:::-;45492:65;;45570:23;45596:46;45635:6;45596:34;45611:18;;45596:10;:14;;:34;;;;:::i;:::-;:38;;:46;;;;:::i;:::-;45570:72;;45653:17;45673:40;45706:6;45673:28;45688:12;;45673:10;:14;;:28;;;;:::i;:::-;:32;;:40;;;;:::i;:::-;45653:60;;45724:23;45782:9;45764:15;:27;;;;:::i;:::-;45750:10;:42;;;;:::i;:::-;45724:68;;45826:1;45805:18;:22;;;;45859:1;45838:18;:22;;;;45886:1;45871:12;:16;;;;45922:1;45904:15;:19;:42;;;;;45945:1;45927:15;:19;45904:42;45900:192;;;45963:46;45976:15;45993;45963:12;:46::i;:::-;46029:51;46044:18;46064:15;46029:51;;;;;;;:::i;:::-;;;;;;;;45900:192;46126:9;;;;;;;;;;;46118:23;;46174:15;46150:21;:39;;;;:::i;:::-;46118:77;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46104:91;;;;;46228:15;;;;;;;;;;;46220:29;;46257:21;46220:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46206:77;;;;;44744:1547;;;;;;;;;;44716:1575;:::o;9464:98::-;9522:7;9553:1;9549;:5;;;;:::i;:::-;9542:12;;9464:98;;;;:::o;9863:::-;9921:7;9952:1;9948;:5;;;;:::i;:::-;9941:12;;9863:98;;;;:::o;32453:91::-;;;;:::o;33148:90::-;;;;:::o;9107:98::-;9165:7;9196:1;9192;:5;;;;:::i;:::-;9185:12;;9107:98;;;;:::o;43715:550::-;43837:21;43875:1;43861:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43837:40;;43906:4;43888;43893:1;43888:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43932:6;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43922:4;43927:1;43922:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43958:49;43975:4;43990:6;43999:7;43958:8;:49::i;:::-;44046:6;:57;;;44118:7;44140:1;44184:4;44211;44231:15;44046:211;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43766:499;43715:550;:::o;44273:435::-;44417:49;44434:4;44449:6;44458:7;44417:8;:49::i;:::-;44509:6;:22;;;44539:9;44572:4;44592:7;44614:1;44630;44654:4;44674:15;44509:191;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44273:435;;:::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:474::-;3849:6;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;3781:474;;;;;:::o;4261:118::-;4348:24;4366:5;4348:24;:::i;:::-;4343:3;4336:37;4261:118;;:::o;4385:222::-;4478:4;4516:2;4505:9;4501:18;4493:26;;4529:71;4597:1;4586:9;4582:17;4573:6;4529:71;:::i;:::-;4385:222;;;;:::o;4613:116::-;4683:21;4698:5;4683:21;:::i;:::-;4676:5;4673:32;4663:60;;4719:1;4716;4709:12;4663:60;4613:116;:::o;4735:133::-;4778:5;4816:6;4803:20;4794:29;;4832:30;4856:5;4832:30;:::i;:::-;4735:133;;;;:::o;4874:323::-;4930:6;4979:2;4967:9;4958:7;4954:23;4950:32;4947:119;;;4985:79;;:::i;:::-;4947:119;5105:1;5130:50;5172:7;5163:6;5152:9;5148:22;5130:50;:::i;:::-;5120:60;;5076:114;4874:323;;;;:::o;5203:619::-;5280:6;5288;5296;5345:2;5333:9;5324:7;5320:23;5316:32;5313:119;;;5351:79;;:::i;:::-;5313:119;5471:1;5496:53;5541:7;5532:6;5521:9;5517:22;5496:53;:::i;:::-;5486:63;;5442:117;5598:2;5624:53;5669:7;5660:6;5649:9;5645:22;5624:53;:::i;:::-;5614:63;;5569:118;5726:2;5752:53;5797:7;5788:6;5777:9;5773:22;5752:53;:::i;:::-;5742:63;;5697:118;5203:619;;;;;:::o;5828:86::-;5863:7;5903:4;5896:5;5892:16;5881:27;;5828:86;;;:::o;5920:112::-;6003:22;6019:5;6003:22;:::i;:::-;5998:3;5991:35;5920:112;;:::o;6038:214::-;6127:4;6165:2;6154:9;6150:18;6142:26;;6178:67;6242:1;6231:9;6227:17;6218:6;6178:67;:::i;:::-;6038:214;;;;:::o;6258:118::-;6329:22;6345:5;6329:22;:::i;:::-;6322:5;6319:33;6309:61;;6366:1;6363;6356:12;6309:61;6258:118;:::o;6382:135::-;6426:5;6464:6;6451:20;6442:29;;6480:31;6505:5;6480:31;:::i;:::-;6382:135;;;;:::o;6523:1033::-;6615:6;6623;6631;6639;6647;6655;6704:3;6692:9;6683:7;6679:23;6675:33;6672:120;;;6711:79;;:::i;:::-;6672:120;6831:1;6856:51;6899:7;6890:6;6879:9;6875:22;6856:51;:::i;:::-;6846:61;;6802:115;6956:2;6982:51;7025:7;7016:6;7005:9;7001:22;6982:51;:::i;:::-;6972:61;;6927:116;7082:2;7108:51;7151:7;7142:6;7131:9;7127:22;7108:51;:::i;:::-;7098:61;;7053:116;7208:2;7234:51;7277:7;7268:6;7257:9;7253:22;7234:51;:::i;:::-;7224:61;;7179:116;7334:3;7361:51;7404:7;7395:6;7384:9;7380:22;7361:51;:::i;:::-;7351:61;;7305:117;7461:3;7488:51;7531:7;7522:6;7511:9;7507:22;7488:51;:::i;:::-;7478:61;;7432:117;6523:1033;;;;;;;;:::o;7562:468::-;7627:6;7635;7684:2;7672:9;7663:7;7659:23;7655:32;7652:119;;;7690:79;;:::i;:::-;7652:119;7810:1;7835:53;7880:7;7871:6;7860:9;7856:22;7835:53;:::i;:::-;7825:63;;7781:117;7937:2;7963:50;8005:7;7996:6;7985:9;7981:22;7963:50;:::i;:::-;7953:60;;7908:115;7562:468;;;;;:::o;8036:118::-;8123:24;8141:5;8123:24;:::i;:::-;8118:3;8111:37;8036:118;;:::o;8160:222::-;8253:4;8291:2;8280:9;8276:18;8268:26;;8304:71;8372:1;8361:9;8357:17;8348:6;8304:71;:::i;:::-;8160:222;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:933::-;8980:4;9018:3;9007:9;9003:19;8995:27;;9032:67;9096:1;9085:9;9081:17;9072:6;9032:67;:::i;:::-;9109:68;9173:2;9162:9;9158:18;9149:6;9109:68;:::i;:::-;9187;9251:2;9240:9;9236:18;9227:6;9187:68;:::i;:::-;9265;9329:2;9318:9;9314:18;9305:6;9265:68;:::i;:::-;9343:69;9407:3;9396:9;9392:19;9383:6;9343:69;:::i;:::-;9422;9486:3;9475:9;9471:19;9462:6;9422:69;:::i;:::-;9501;9565:3;9554:9;9550:19;9541:6;9501:69;:::i;:::-;9580;9644:3;9633:9;9629:19;9620:6;9580:69;:::i;:::-;8723:933;;;;;;;;;;;:::o;9662:474::-;9730:6;9738;9787:2;9775:9;9766:7;9762:23;9758:32;9755:119;;;9793:79;;:::i;:::-;9755:119;9913:1;9938:53;9983:7;9974:6;9963:9;9959:22;9938:53;:::i;:::-;9928:63;;9884:117;10040:2;10066:53;10111:7;10102:6;10091:9;10087:22;10066:53;:::i;:::-;10056:63;;10011:118;9662:474;;;;;:::o;10142:60::-;10170:3;10191:5;10184:12;;10142:60;;;:::o;10208:142::-;10258:9;10291:53;10309:34;10318:24;10336:5;10318:24;:::i;:::-;10309:34;:::i;:::-;10291:53;:::i;:::-;10278:66;;10208:142;;;:::o;10356:126::-;10406:9;10439:37;10470:5;10439:37;:::i;:::-;10426:50;;10356:126;;;:::o;10488:152::-;10564:9;10597:37;10628:5;10597:37;:::i;:::-;10584:50;;10488:152;;;:::o;10646:183::-;10759:63;10816:5;10759:63;:::i;:::-;10754:3;10747:76;10646:183;;:::o;10835:274::-;10954:4;10992:2;10981:9;10977:18;10969:26;;11005:97;11099:1;11088:9;11084:17;11075:6;11005:97;:::i;:::-;10835:274;;;;:::o;11115:180::-;11163:77;11160:1;11153:88;11260:4;11257:1;11250:15;11284:4;11281:1;11274:15;11301:320;11345:6;11382:1;11376:4;11372:12;11362:22;;11429:1;11423:4;11419:12;11450:18;11440:81;;11506:4;11498:6;11494:17;11484:27;;11440:81;11568:2;11560:6;11557:14;11537:18;11534:38;11531:84;;11587:18;;:::i;:::-;11531:84;11352:269;11301:320;;;:::o;11627:180::-;11675:77;11672:1;11665:88;11772:4;11769:1;11762:15;11796:4;11793:1;11786:15;11813:180;11861:77;11858:1;11851:88;11958:4;11955:1;11948:15;11982:4;11979:1;11972:15;11999:185;12039:1;12056:20;12074:1;12056:20;:::i;:::-;12051:25;;12090:20;12108:1;12090:20;:::i;:::-;12085:25;;12129:1;12119:35;;12134:18;;:::i;:::-;12119:35;12176:1;12173;12169:9;12164:14;;11999:185;;;;:::o;12190:410::-;12230:7;12253:20;12271:1;12253:20;:::i;:::-;12248:25;;12287:20;12305:1;12287:20;:::i;:::-;12282:25;;12342:1;12339;12335:9;12364:30;12382:11;12364:30;:::i;:::-;12353:41;;12543:1;12534:7;12530:15;12527:1;12524:22;12504:1;12497:9;12477:83;12454:139;;12573:18;;:::i;:::-;12454:139;12238:362;12190:410;;;;:::o;12606:222::-;12746:34;12742:1;12734:6;12730:14;12723:58;12815:5;12810:2;12802:6;12798:15;12791:30;12606:222;:::o;12834:366::-;12976:3;12997:67;13061:2;13056:3;12997:67;:::i;:::-;12990:74;;13073:93;13162:3;13073:93;:::i;:::-;13191:2;13186:3;13182:12;13175:19;;12834:366;;;:::o;13206:419::-;13372:4;13410:2;13399:9;13395:18;13387:26;;13459:9;13453:4;13449:20;13445:1;13434:9;13430:17;13423:47;13487:131;13613:4;13487:131;:::i;:::-;13479:139;;13206:419;;;:::o;13631:223::-;13771:34;13767:1;13759:6;13755:14;13748:58;13840:6;13835:2;13827:6;13823:15;13816:31;13631:223;:::o;13860:366::-;14002:3;14023:67;14087:2;14082:3;14023:67;:::i;:::-;14016:74;;14099:93;14188:3;14099:93;:::i;:::-;14217:2;14212:3;14208:12;14201:19;;13860:366;;;:::o;14232:419::-;14398:4;14436:2;14425:9;14421:18;14413:26;;14485:9;14479:4;14475:20;14471:1;14460:9;14456:17;14449:47;14513:131;14639:4;14513:131;:::i;:::-;14505:139;;14232:419;;;:::o;14657:188::-;14695:3;14714:18;14730:1;14714:18;:::i;:::-;14709:23;;14746:18;14762:1;14746:18;:::i;:::-;14741:23;;14787:1;14784;14780:9;14773:16;;14810:4;14805:3;14802:13;14799:39;;;14818:18;;:::i;:::-;14799:39;14657:188;;;;:::o;14851:179::-;14991:31;14987:1;14979:6;14975:14;14968:55;14851:179;:::o;15036:366::-;15178:3;15199:67;15263:2;15258:3;15199:67;:::i;:::-;15192:74;;15275:93;15364:3;15275:93;:::i;:::-;15393:2;15388:3;15384:12;15377:19;;15036:366;;;:::o;15408:419::-;15574:4;15612:2;15601:9;15597:18;15589:26;;15661:9;15655:4;15651:20;15647:1;15636:9;15632:17;15625:47;15689:131;15815:4;15689:131;:::i;:::-;15681:139;;15408:419;;;:::o;15833:191::-;15873:3;15892:20;15910:1;15892:20;:::i;:::-;15887:25;;15926:20;15944:1;15926:20;:::i;:::-;15921:25;;15969:1;15966;15962:9;15955:16;;15990:3;15987:1;15984:10;15981:36;;;15997:18;;:::i;:::-;15981:36;15833:191;;;;:::o;16030:224::-;16170:34;16166:1;16158:6;16154:14;16147:58;16239:7;16234:2;16226:6;16222:15;16215:32;16030:224;:::o;16260:366::-;16402:3;16423:67;16487:2;16482:3;16423:67;:::i;:::-;16416:74;;16499:93;16588:3;16499:93;:::i;:::-;16617:2;16612:3;16608:12;16601:19;;16260:366;;;:::o;16632:419::-;16798:4;16836:2;16825:9;16821:18;16813:26;;16885:9;16879:4;16875:20;16871:1;16860:9;16856:17;16849:47;16913:131;17039:4;16913:131;:::i;:::-;16905:139;;16632:419;;;:::o;17057:173::-;17197:25;17193:1;17185:6;17181:14;17174:49;17057:173;:::o;17236:366::-;17378:3;17399:67;17463:2;17458:3;17399:67;:::i;:::-;17392:74;;17475:93;17564:3;17475:93;:::i;:::-;17593:2;17588:3;17584:12;17577:19;;17236:366;;;:::o;17608:419::-;17774:4;17812:2;17801:9;17797:18;17789:26;;17861:9;17855:4;17851:20;17847:1;17836:9;17832:17;17825:47;17889:131;18015:4;17889:131;:::i;:::-;17881:139;;17608:419;;;:::o;18033:221::-;18173:34;18169:1;18161:6;18157:14;18150:58;18242:4;18237:2;18229:6;18225:15;18218:29;18033:221;:::o;18260:366::-;18402:3;18423:67;18487:2;18482:3;18423:67;:::i;:::-;18416:74;;18499:93;18588:3;18499:93;:::i;:::-;18617:2;18612:3;18608:12;18601:19;;18260:366;;;:::o;18632:419::-;18798:4;18836:2;18825:9;18821:18;18813:26;;18885:9;18879:4;18875:20;18871:1;18860:9;18856:17;18849:47;18913:131;19039:4;18913:131;:::i;:::-;18905:139;;18632:419;;;:::o;19057:225::-;19197:34;19193:1;19185:6;19181:14;19174:58;19266:8;19261:2;19253:6;19249:15;19242:33;19057:225;:::o;19288:366::-;19430:3;19451:67;19515:2;19510:3;19451:67;:::i;:::-;19444:74;;19527:93;19616:3;19527:93;:::i;:::-;19645:2;19640:3;19636:12;19629:19;;19288:366;;;:::o;19660:419::-;19826:4;19864:2;19853:9;19849:18;19841:26;;19913:9;19907:4;19903:20;19899:1;19888:9;19884:17;19877:47;19941:131;20067:4;19941:131;:::i;:::-;19933:139;;19660:419;;;:::o;20085:223::-;20225:34;20221:1;20213:6;20209:14;20202:58;20294:6;20289:2;20281:6;20277:15;20270:31;20085:223;:::o;20314:366::-;20456:3;20477:67;20541:2;20536:3;20477:67;:::i;:::-;20470:74;;20553:93;20642:3;20553:93;:::i;:::-;20671:2;20666:3;20662:12;20655:19;;20314:366;;;:::o;20686:419::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:131;21093:4;20967:131;:::i;:::-;20959:139;;20686:419;;;:::o;21111:221::-;21251:34;21247:1;21239:6;21235:14;21228:58;21320:4;21315:2;21307:6;21303:15;21296:29;21111:221;:::o;21338:366::-;21480:3;21501:67;21565:2;21560:3;21501:67;:::i;:::-;21494:74;;21577:93;21666:3;21577:93;:::i;:::-;21695:2;21690:3;21686:12;21679:19;;21338:366;;;:::o;21710:419::-;21876:4;21914:2;21903:9;21899:18;21891:26;;21963:9;21957:4;21953:20;21949:1;21938:9;21934:17;21927:47;21991:131;22117:4;21991:131;:::i;:::-;21983:139;;21710:419;;;:::o;22135:182::-;22275:34;22271:1;22263:6;22259:14;22252:58;22135:182;:::o;22323:366::-;22465:3;22486:67;22550:2;22545:3;22486:67;:::i;:::-;22479:74;;22562:93;22651:3;22562:93;:::i;:::-;22680:2;22675:3;22671:12;22664:19;;22323:366;;;:::o;22695:419::-;22861:4;22899:2;22888:9;22884:18;22876:26;;22948:9;22942:4;22938:20;22934:1;22923:9;22919:17;22912:47;22976:131;23102:4;22976:131;:::i;:::-;22968:139;;22695:419;;;:::o;23120:179::-;23260:31;23256:1;23248:6;23244:14;23237:55;23120:179;:::o;23305:366::-;23447:3;23468:67;23532:2;23527:3;23468:67;:::i;:::-;23461:74;;23544:93;23633:3;23544:93;:::i;:::-;23662:2;23657:3;23653:12;23646:19;;23305:366;;;:::o;23677:419::-;23843:4;23881:2;23870:9;23866:18;23858:26;;23930:9;23924:4;23920:20;23916:1;23905:9;23901:17;23894:47;23958:131;24084:4;23958:131;:::i;:::-;23950:139;;23677:419;;;:::o;24102:172::-;24242:24;24238:1;24230:6;24226:14;24219:48;24102:172;:::o;24280:366::-;24422:3;24443:67;24507:2;24502:3;24443:67;:::i;:::-;24436:74;;24519:93;24608:3;24519:93;:::i;:::-;24637:2;24632:3;24628:12;24621:19;;24280:366;;;:::o;24652:419::-;24818:4;24856:2;24845:9;24841:18;24833:26;;24905:9;24899:4;24895:20;24891:1;24880:9;24876:17;24869:47;24933:131;25059:4;24933:131;:::i;:::-;24925:139;;24652:419;;;:::o;25077:178::-;25217:30;25213:1;25205:6;25201:14;25194:54;25077:178;:::o;25261:366::-;25403:3;25424:67;25488:2;25483:3;25424:67;:::i;:::-;25417:74;;25500:93;25589:3;25500:93;:::i;:::-;25618:2;25613:3;25609:12;25602:19;;25261:366;;;:::o;25633:419::-;25799:4;25837:2;25826:9;25822:18;25814:26;;25886:9;25880:4;25876:20;25872:1;25861:9;25857:17;25850:47;25914:131;26040:4;25914:131;:::i;:::-;25906:139;;25633:419;;;:::o;26058:179::-;26198:31;26194:1;26186:6;26182:14;26175:55;26058:179;:::o;26243:366::-;26385:3;26406:67;26470:2;26465:3;26406:67;:::i;:::-;26399:74;;26482:93;26571:3;26482:93;:::i;:::-;26600:2;26595:3;26591:12;26584:19;;26243:366;;;:::o;26615:419::-;26781:4;26819:2;26808:9;26804:18;26796:26;;26868:9;26862:4;26858:20;26854:1;26843:9;26839:17;26832:47;26896:131;27022:4;26896:131;:::i;:::-;26888:139;;26615:419;;;:::o;27040:169::-;27180:21;27176:1;27168:6;27164:14;27157:45;27040:169;:::o;27215:366::-;27357:3;27378:67;27442:2;27437:3;27378:67;:::i;:::-;27371:74;;27454:93;27543:3;27454:93;:::i;:::-;27572:2;27567:3;27563:12;27556:19;;27215:366;;;:::o;27587:419::-;27753:4;27791:2;27780:9;27776:18;27768:26;;27840:9;27834:4;27830:20;27826:1;27815:9;27811:17;27804:47;27868:131;27994:4;27868:131;:::i;:::-;27860:139;;27587:419;;;:::o;28012:169::-;28152:21;28148:1;28140:6;28136:14;28129:45;28012:169;:::o;28187:366::-;28329:3;28350:67;28414:2;28409:3;28350:67;:::i;:::-;28343:74;;28426:93;28515:3;28426:93;:::i;:::-;28544:2;28539:3;28535:12;28528:19;;28187:366;;;:::o;28559:419::-;28725:4;28763:2;28752:9;28748:18;28740:26;;28812:9;28806:4;28802:20;28798:1;28787:9;28783:17;28776:47;28840:131;28966:4;28840:131;:::i;:::-;28832:139;;28559:419;;;:::o;28984:194::-;29024:4;29044:20;29062:1;29044:20;:::i;:::-;29039:25;;29078:20;29096:1;29078:20;:::i;:::-;29073:25;;29122:1;29119;29115:9;29107:17;;29146:1;29140:4;29137:11;29134:37;;;29151:18;;:::i;:::-;29134:37;28984:194;;;;:::o;29184:224::-;29324:34;29320:1;29312:6;29308:14;29301:58;29393:7;29388:2;29380:6;29376:15;29369:32;29184:224;:::o;29414:366::-;29556:3;29577:67;29641:2;29636:3;29577:67;:::i;:::-;29570:74;;29653:93;29742:3;29653:93;:::i;:::-;29771:2;29766:3;29762:12;29755:19;;29414:366;;;:::o;29786:419::-;29952:4;29990:2;29979:9;29975:18;29967:26;;30039:9;30033:4;30029:20;30025:1;30014:9;30010:17;30003:47;30067:131;30193:4;30067:131;:::i;:::-;30059:139;;29786:419;;;:::o;30211:222::-;30351:34;30347:1;30339:6;30335:14;30328:58;30420:5;30415:2;30407:6;30403:15;30396:30;30211:222;:::o;30439:366::-;30581:3;30602:67;30666:2;30661:3;30602:67;:::i;:::-;30595:74;;30678:93;30767:3;30678:93;:::i;:::-;30796:2;30791:3;30787:12;30780:19;;30439:366;;;:::o;30811:419::-;30977:4;31015:2;31004:9;31000:18;30992:26;;31064:9;31058:4;31054:20;31050:1;31039:9;31035:17;31028:47;31092:131;31218:4;31092:131;:::i;:::-;31084:139;;30811:419;;;:::o;31236:225::-;31376:34;31372:1;31364:6;31360:14;31353:58;31445:8;31440:2;31432:6;31428:15;31421:33;31236:225;:::o;31467:366::-;31609:3;31630:67;31694:2;31689:3;31630:67;:::i;:::-;31623:74;;31706:93;31795:3;31706:93;:::i;:::-;31824:2;31819:3;31815:12;31808:19;;31467:366;;;:::o;31839:419::-;32005:4;32043:2;32032:9;32028:18;32020:26;;32092:9;32086:4;32082:20;32078:1;32067:9;32063:17;32056:47;32120:131;32246:4;32120:131;:::i;:::-;32112:139;;31839:419;;;:::o;32264:332::-;32385:4;32423:2;32412:9;32408:18;32400:26;;32436:71;32504:1;32493:9;32489:17;32480:6;32436:71;:::i;:::-;32517:72;32585:2;32574:9;32570:18;32561:6;32517:72;:::i;:::-;32264:332;;;;;:::o;32602:147::-;32703:11;32740:3;32725:18;;32602:147;;;;:::o;32755:114::-;;:::o;32875:398::-;33034:3;33055:83;33136:1;33131:3;33055:83;:::i;:::-;33048:90;;33147:93;33236:3;33147:93;:::i;:::-;33265:1;33260:3;33256:11;33249:18;;32875:398;;;:::o;33279:379::-;33463:3;33485:147;33628:3;33485:147;:::i;:::-;33478:154;;33649:3;33642:10;;33279:379;;;:::o;33664:180::-;33712:77;33709:1;33702:88;33809:4;33806:1;33799:15;33833:4;33830:1;33823:15;33850:180;33898:77;33895:1;33888:88;33995:4;33992:1;33985:15;34019:4;34016:1;34009:15;34036:143;34093:5;34124:6;34118:13;34109:22;;34140:33;34167:5;34140:33;:::i;:::-;34036:143;;;;:::o;34185:351::-;34255:6;34304:2;34292:9;34283:7;34279:23;34275:32;34272:119;;;34310:79;;:::i;:::-;34272:119;34430:1;34455:64;34511:7;34502:6;34491:9;34487:22;34455:64;:::i;:::-;34445:74;;34401:128;34185:351;;;;:::o;34542:85::-;34587:7;34616:5;34605:16;;34542:85;;;:::o;34633:158::-;34691:9;34724:61;34742:42;34751:32;34777:5;34751:32;:::i;:::-;34742:42;:::i;:::-;34724:61;:::i;:::-;34711:74;;34633:158;;;:::o;34797:147::-;34892:45;34931:5;34892:45;:::i;:::-;34887:3;34880:58;34797:147;;:::o;34950:114::-;35017:6;35051:5;35045:12;35035:22;;34950:114;;;:::o;35070:184::-;35169:11;35203:6;35198:3;35191:19;35243:4;35238:3;35234:14;35219:29;;35070:184;;;;:::o;35260:132::-;35327:4;35350:3;35342:11;;35380:4;35375:3;35371:14;35363:22;;35260:132;;;:::o;35398:108::-;35475:24;35493:5;35475:24;:::i;:::-;35470:3;35463:37;35398:108;;:::o;35512:179::-;35581:10;35602:46;35644:3;35636:6;35602:46;:::i;:::-;35680:4;35675:3;35671:14;35657:28;;35512:179;;;;:::o;35697:113::-;35767:4;35799;35794:3;35790:14;35782:22;;35697:113;;;:::o;35846:732::-;35965:3;35994:54;36042:5;35994:54;:::i;:::-;36064:86;36143:6;36138:3;36064:86;:::i;:::-;36057:93;;36174:56;36224:5;36174:56;:::i;:::-;36253:7;36284:1;36269:284;36294:6;36291:1;36288:13;36269:284;;;36370:6;36364:13;36397:63;36456:3;36441:13;36397:63;:::i;:::-;36390:70;;36483:60;36536:6;36483:60;:::i;:::-;36473:70;;36329:224;36316:1;36313;36309:9;36304:14;;36269:284;;;36273:14;36569:3;36562:10;;35970:608;;;35846:732;;;;:::o;36584:831::-;36847:4;36885:3;36874:9;36870:19;36862:27;;36899:71;36967:1;36956:9;36952:17;36943:6;36899:71;:::i;:::-;36980:80;37056:2;37045:9;37041:18;37032:6;36980:80;:::i;:::-;37107:9;37101:4;37097:20;37092:2;37081:9;37077:18;37070:48;37135:108;37238:4;37229:6;37135:108;:::i;:::-;37127:116;;37253:72;37321:2;37310:9;37306:18;37297:6;37253:72;:::i;:::-;37335:73;37403:3;37392:9;37388:19;37379:6;37335:73;:::i;:::-;36584:831;;;;;;;;:::o;37421:807::-;37670:4;37708:3;37697:9;37693:19;37685:27;;37722:71;37790:1;37779:9;37775:17;37766:6;37722:71;:::i;:::-;37803:72;37871:2;37860:9;37856:18;37847:6;37803:72;:::i;:::-;37885:80;37961:2;37950:9;37946:18;37937:6;37885:80;:::i;:::-;37975;38051:2;38040:9;38036:18;38027:6;37975:80;:::i;:::-;38065:73;38133:3;38122:9;38118:19;38109:6;38065:73;:::i;:::-;38148;38216:3;38205:9;38201:19;38192:6;38148:73;:::i;:::-;37421:807;;;;;;;;;:::o;38234:143::-;38291:5;38322:6;38316:13;38307:22;;38338:33;38365:5;38338:33;:::i;:::-;38234:143;;;;:::o;38383:663::-;38471:6;38479;38487;38536:2;38524:9;38515:7;38511:23;38507:32;38504:119;;;38542:79;;:::i;:::-;38504:119;38662:1;38687:64;38743:7;38734:6;38723:9;38719:22;38687:64;:::i;:::-;38677:74;;38633:128;38800:2;38826:64;38882:7;38873:6;38862:9;38858:22;38826:64;:::i;:::-;38816:74;;38771:129;38939:2;38965:64;39021:7;39012:6;39001:9;38997:22;38965:64;:::i;:::-;38955:74;;38910:129;38383:663;;;;;:::o

Swarm Source

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