ETH Price: $2,450.72 (+1.09%)
Gas: 1.99 Gwei

Token

Neura (NEURA)
 

Overview

Max Total Supply

100,000,000 NEURA

Holders

68

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
Neura

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-24
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

    /**

    Telegram: https://t.me/NeuraLaunchERC
 
    */

// 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/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: NEURA.sol

//SPDX-License-Identifier: MIT


    /**

    Telegram: https://t.me/NeuraLaunchERC
 
    */



pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract Neura is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 100000000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(5);
    Tax public sellTaxes = Tax(5);
    Tax public transferTaxes = Tax(30);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 50000; 
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;
    bool public launchTax;


    //Wallets
    address public marketingWallet = 0xc96d948Fc0e615da00F6AeDfA59571e79c36c411 ;

    uint256 public maxWalletPercentage = 2;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWChanged(uint256 percentage);

    constructor() ERC20("Neura", "NEURA") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
        launchTax = false;
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }


    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        launchTax=true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }
    function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }
    function NormalizeTaxes() external onlyOwner{
        launchTax=false;
    }


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
    address _from,
    address _to,
    uint256 _amount
) internal returns (uint256) {
    if (whitelisted[_from] || whitelisted[_to]) {
        return _amount;
    }

    uint256 totalTax = transferTaxes.marketingTax;
    // Check if within the first 35 blocks
    if (launchTax) {
        if (block.number > startTradingBlock + 35) {
            buyTaxes.marketingTax = 5;
            sellTaxes.marketingTax = 5;
            launchTax = false;

        } else if (block.number <= startTradingBlock + 2) {
            buyTaxes.marketingTax = 50;
            sellTaxes.marketingTax = 5;
        } else if (block.number <= startTradingBlock + 20) {
            buyTaxes.marketingTax = 45;
            sellTaxes.marketingTax = 5;
        } else if (block.number <= startTradingBlock + 35) {
            buyTaxes.marketingTax = 35;
            sellTaxes.marketingTax = 5;
        }
    }
    if (_to == pairAddress) {
        totalTax = sellTaxes.marketingTax;
    } else if (_from == pairAddress) {
        totalTax = buyTaxes.marketingTax;
    }

    uint256 tax = 0;
    if (totalTax > 0) {
        tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
    }
    return (_amount - tax);
}

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {

     if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }   

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success , "Transfer failed.");
        isSwapping = false;
    }  

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWChanged(_percentage);
}
    receive() external payable {}
}

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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[],"name":"NormalizeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060200160405280600581525060066000820151816000015550506040518060200160405280600581525060076000820151816000015550506040518060200160405280601e815250600860008201518160000155505061c3506a52b7d2dcc80cd2e4000000620000799190620007db565b600b556001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff02191690831515021790555073c96d948fc0e615da00f6aedfa59571e79c36c411600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002600f553480156200014f57600080fd5b506040518060400160405280600581526020017f4e657572610000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e455552410000000000000000000000000000000000000000000000000000008152508160039081620001cd919062000a83565b508060049081620001df919062000a83565b50505062000202620001f66200052e60201b60201c565b6200053660201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000bd4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000328573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034e919062000bd4565b6040518363ffffffff1660e01b81526004016200036d92919062000c17565b6020604051808303816000875af11580156200038d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b3919062000bd4565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200050d336a52b7d2dcc80cd2e4000000620005fc60201b60201c565b6000600e60016101000a81548160ff02191690831515021790555062000d30565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200066e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006659062000ca5565b60405180910390fd5b62000682600083836200076960201b60201c565b806002600082825462000696919062000cc7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000749919062000d13565b60405180910390a362000765600083836200076e60201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007e88262000773565b9150620007f58362000773565b9250826200080857620008076200077d565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200089557607f821691505b602082108103620008ab57620008aa6200084d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008d6565b620009218683620008d6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009646200095e620009588462000773565b62000939565b62000773565b9050919050565b6000819050919050565b620009808362000943565b620009986200098f826200096b565b848454620008e3565b825550505050565b600090565b620009af620009a0565b620009bc81848462000975565b505050565b5b81811015620009e457620009d8600082620009a5565b600181019050620009c2565b5050565b601f82111562000a3357620009fd81620008b1565b62000a0884620008c6565b8101602085101562000a18578190505b62000a3062000a2785620008c6565b830182620009c1565b50505b505050565b600082821c905092915050565b600062000a586000198460080262000a38565b1980831691505092915050565b600062000a73838362000a45565b9150826002028217905092915050565b62000a8e8262000813565b67ffffffffffffffff81111562000aaa5762000aa96200081e565b5b62000ab682546200087c565b62000ac3828285620009e8565b600060209050601f83116001811462000afb576000841562000ae6578287015190505b62000af2858262000a65565b86555062000b62565b601f19841662000b0b86620008b1565b60005b8281101562000b355784890151825560018201915060208501945060208101905062000b0e565b8683101562000b55578489015162000b51601f89168262000a45565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9c8262000b6f565b9050919050565b62000bae8162000b8f565b811462000bba57600080fd5b50565b60008151905062000bce8162000ba3565b92915050565b60006020828403121562000bed5762000bec62000b6a565b5b600062000bfd8482850162000bbd565b91505092915050565b62000c118162000b8f565b82525050565b600060408201905062000c2e600083018562000c06565b62000c3d602083018462000c06565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c8d601f8362000c44565b915062000c9a8262000c55565b602082019050919050565b6000602082019050818103600083015262000cc08162000c7e565b9050919050565b600062000cd48262000773565b915062000ce18362000773565b925082820190508082111562000cfc5762000cfb620007ac565b5b92915050565b62000d0d8162000773565b82525050565b600060208201905062000d2a600083018462000d02565b92915050565b60805160a0516139e662000d956000396000818161111e0152818161168c015281816116e301528181611a6601528181611c4301528181611f480152611fa8015260008181610d320152818161249501528181612576015261259d01526139e66000f3fe6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e14610818578063e2f4560514610855578063ef586f7114610880578063f2fde38b14610897578063f66895a3146108c05761023b565b8063a8b0898214610731578063a9059cbb1461075c578063afa4f3b214610799578063b8863115146107c2578063c876d0b9146107ed5761023b565b80638d456754116100f25780638d4567541461065e5780638da5cb5b1461067557806395d89b41146106a0578063a3ca847d146106cb578063a457c2d7146106f45761023b565b806376be96f31461059d5780637a845ece146105c8578063830351ff146105f1578063864701a51461061c5780638a8c523c146106475761023b565b806339509351116101bc57806370a082311161018057806370a08231146104dc578063715018a614610519578063735de9f714610530578063751039fc1461055b57806375f0a874146105725761023b565b806339509351146103f35780634a74bb02146104305780634ada218b1461045b5780635331803c14610486578063599ca397146104b15761023b565b806318160ddd1161020357806318160ddd146102fa5780631950c21814610325578063224611731461036257806323b872dd1461038b578063313ce567146103c85761023b565b806306fdde03146102405780630940bbc71461026b578063095ea7b3146102945780630c424284146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108eb565b60405161026291906126cd565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061272a565b61097d565b005b3480156102a057600080fd5b506102bb60048036038101906102b691906127b5565b610a03565b6040516102c89190612810565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612857565b610a26565b005b34801561030657600080fd5b5061030f610acf565b60405161031c91906128a6565b60405180910390f35b34801561033157600080fd5b5061034c600480360381019061034791906128c1565b610ad9565b6040516103599190612810565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906128c1565b610b2f565b005b34801561039757600080fd5b506103b260048036038101906103ad91906128ee565b610c2d565b6040516103bf9190612810565b60405180910390f35b3480156103d457600080fd5b506103dd610c5c565b6040516103ea919061295d565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906127b5565b610c65565b6040516104279190612810565b60405180910390f35b34801561043c57600080fd5b50610445610c9c565b6040516104529190612810565b60405180910390f35b34801561046757600080fd5b50610470610caf565b60405161047d9190612810565b60405180910390f35b34801561049257600080fd5b5061049b610cc2565b6040516104a891906128a6565b60405180910390f35b3480156104bd57600080fd5b506104c6610cce565b6040516104d391906128a6565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906128c1565b610cd4565b60405161051091906128a6565b60405180910390f35b34801561052557600080fd5b5061052e610d1c565b005b34801561053c57600080fd5b50610545610d30565b60405161055291906129d7565b60405180910390f35b34801561056757600080fd5b50610570610d54565b005b34801561057e57600080fd5b50610587610d8c565b6040516105949190612a01565b60405180910390f35b3480156105a957600080fd5b506105b2610db2565b6040516105bf91906128a6565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea919061272a565b610db8565b005b3480156105fd57600080fd5b50610606610e88565b6040516106139190612810565b60405180910390f35b34801561062857600080fd5b50610631610e9b565b60405161063e91906128a6565b60405180910390f35b34801561065357600080fd5b5061065c610ea7565b005b34801561066a57600080fd5b50610673610f3e565b005b34801561068157600080fd5b5061068a610f63565b6040516106979190612a01565b60405180910390f35b3480156106ac57600080fd5b506106b5610f8d565b6040516106c291906126cd565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed919061272a565b61101f565b005b34801561070057600080fd5b5061071b600480360381019061071691906127b5565b6110a5565b6040516107289190612810565b60405180910390f35b34801561073d57600080fd5b5061074661111c565b6040516107539190612a01565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e91906127b5565b611140565b6040516107909190612810565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb919061272a565b611163565b005b3480156107ce57600080fd5b506107d7611217565b6040516107e49190612810565b60405180910390f35b3480156107f957600080fd5b5061080261122a565b60405161080f9190612810565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190612a1c565b61123d565b60405161084c91906128a6565b60405180910390f35b34801561086157600080fd5b5061086a6112c4565b60405161087791906128a6565b60405180910390f35b34801561088c57600080fd5b506108956112ca565b005b3480156108a357600080fd5b506108be60048036038101906108b991906128c1565b61130b565b005b3480156108cc57600080fd5b506108d561138e565b6040516108e291906128a6565b60405180910390f35b6060600380546108fa90612a8b565b80601f016020809104026020016040519081016040528092919081815260200182805461092690612a8b565b80156109735780601f1061094857610100808354040283529160200191610973565b820191906000526020600020905b81548152906001019060200180831161095657829003601f168201915b5050505050905090565b61098561139a565b80600760000181905550601e8111156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612b2e565b60405180910390fd5b807f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5560405160405180910390a250565b600080610a0e611418565b9050610a1b818585611420565b600191505092915050565b610a2e61139a565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d60405160405180910390a35050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610b3761139a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90612bc0565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761960405160405180910390a250565b600080610c38611418565b9050610c458582856115e9565b610c50858585611675565b60019150509392505050565b60006012905090565b600080610c70611418565b9050610c91818585610c82858961123d565b610c8c9190612c0f565b611420565b600191505092915050565b600c60009054906101000a900460ff1681565b600c60029054906101000a900460ff1681565b60088060000154905081565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2461139a565b610d2e6000611cd5565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d5c61139a565b6064600f819055506000600e60006101000a81548160ff0219169083151502179055506000600860000181905550565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610dc061139a565b60018111610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612cb5565b60405180910390fd5b6064811115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90612d47565b60405180910390fd5b80600f819055507f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df081604051610e7d91906128a6565b60405180910390a150565b600e60019054906101000a900460ff1681565b60068060000154905081565b610eaf61139a565b600c60029054906101000a900460ff1615610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612db3565b60405180910390fd5b6001600c60026101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff02191690831515021790555043600d81905550565b610f4661139a565b6000600e60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f9c90612a8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc890612a8b565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b61102761139a565b80600660000181905550601e811115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612b2e565b60405180910390fd5b807f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb60405160405180910390a250565b6000806110b0611418565b905060006110be828661123d565b905083811015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612e45565b60405180910390fd5b6111108286868403611420565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061114b611418565b9050611158818585611675565b600191505092915050565b61116b61139a565b60008111801561119f57506103e860056a52b7d2dcc80cd2e40000006111919190612e65565b61119b9190612ed6565b8111155b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590612f9f565b60405180910390fd5b80600b81905550600b547f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b600c60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6112d261139a565b600c60009054906101000a900460ff166112ed5760016112f0565b60005b600c60006101000a81548160ff021916908315150217905550565b61131361139a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990613031565b60405180910390fd5b61138b81611cd5565b50565b60078060000154905081565b6113a2611418565b73ffffffffffffffffffffffffffffffffffffffff166113c0610f63565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d9061309d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061312f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f5906131c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115dc91906128a6565b60405180910390a3505050565b60006115f5848461123d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461166f5781811015611661576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116589061322d565b60405180910390fd5b61166e8484848403611420565b5b50505050565b600e60009054906101000a900460ff16156117fe577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561173257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117fd5743600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af906132bf565b60405180910390fd5b43600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361186d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118649061332b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613397565b60405180910390fd5b6000811161191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613429565b60405180910390fd5b60006064600f546a52b7d2dcc80cd2e400000061193c9190612e65565b6119469190612ed6565b9050600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119ec5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a255750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a5d57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ab557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b11578082611ac585610cd4565b611acf9190612c0f565b1115611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790613495565b60405180910390fd5b5b6000611b1e858585611d9b565b90506000600b54611b2e30610cd4565b10159050600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bd65750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cc257600c60029054906101000a900460ff16611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613501565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16148015611c915750600c60009054906101000a900460ff165b8015611c9a5750805b8015611cb35750600c60019054906101000a900460ff16155b15611cc157611cc061204b565b5b5b611ccd868684612180565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e3e5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e4b57819050612044565b60006008600001549050600e60019054906101000a900460ff1615611f46576023600d54611e799190612c0f565b431115611eb657600560066000018190555060056007600001819055506000600e60016101000a81548160ff021916908315150217905550611f45565b6002600d54611ec59190612c0f565b4311611ee65760326006600001819055506005600760000181905550611f44565b6014600d54611ef59190612c0f565b4311611f1657602d6006600001819055506005600760000181905550611f43565b6023600d54611f259190612c0f565b4311611f4257602360066000018190555060056007600001819055505b5b5b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fa6576007600001549050612003565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036120025760066000015490505b5b600080821115612033576064828561201b9190612e65565b6120259190612ed6565b9050612032863083612180565b5b808461203f9190613521565b925050505b9392505050565b6001600c60016101000a81548160ff021916908315150217905550600061207130610cd4565b905060008103612081575061217e565b61209261208d30610cd4565b6123f6565b6000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516120da90613586565b60006040518083038185875af1925050503d8060008114612117576040519150601f19603f3d011682016040523d82523d6000602084013e61211c565b606091505b5050905080612160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612157906135e7565b60405180910390fd5b6000600c60016101000a81548160ff02191690831515021790555050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690613679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122559061370b565b60405180910390fd5b612269838383612633565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e69061379d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123dd91906128a6565b60405180910390a36123f0848484612638565b50505050565b6000600267ffffffffffffffff811115612413576124126137bd565b5b6040519080825280602002602001820160405280156124415781602001602082028036833780820191505090505b5090503081600081518110612459576124586137ec565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125229190613830565b81600181518110612536576125356137ec565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061259b307f000000000000000000000000000000000000000000000000000000000000000084611420565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016125fd959493929190613956565b600060405180830381600087803b15801561261757600080fd5b505af115801561262b573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561267757808201518184015260208101905061265c565b60008484015250505050565b6000601f19601f8301169050919050565b600061269f8261263d565b6126a98185612648565b93506126b9818560208601612659565b6126c281612683565b840191505092915050565b600060208201905081810360008301526126e78184612694565b905092915050565b600080fd5b6000819050919050565b612707816126f4565b811461271257600080fd5b50565b600081359050612724816126fe565b92915050565b6000602082840312156127405761273f6126ef565b5b600061274e84828501612715565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278282612757565b9050919050565b61279281612777565b811461279d57600080fd5b50565b6000813590506127af81612789565b92915050565b600080604083850312156127cc576127cb6126ef565b5b60006127da858286016127a0565b92505060206127eb85828601612715565b9150509250929050565b60008115159050919050565b61280a816127f5565b82525050565b60006020820190506128256000830184612801565b92915050565b612834816127f5565b811461283f57600080fd5b50565b6000813590506128518161282b565b92915050565b6000806040838503121561286e5761286d6126ef565b5b600061287c858286016127a0565b925050602061288d85828601612842565b9150509250929050565b6128a0816126f4565b82525050565b60006020820190506128bb6000830184612897565b92915050565b6000602082840312156128d7576128d66126ef565b5b60006128e5848285016127a0565b91505092915050565b600080600060608486031215612907576129066126ef565b5b6000612915868287016127a0565b9350506020612926868287016127a0565b925050604061293786828701612715565b9150509250925092565b600060ff82169050919050565b61295781612941565b82525050565b6000602082019050612972600083018461294e565b92915050565b6000819050919050565b600061299d61299861299384612757565b612978565b612757565b9050919050565b60006129af82612982565b9050919050565b60006129c1826129a4565b9050919050565b6129d1816129b6565b82525050565b60006020820190506129ec60008301846129c8565b92915050565b6129fb81612777565b82525050565b6000602082019050612a1660008301846129f2565b92915050565b60008060408385031215612a3357612a326126ef565b5b6000612a41858286016127a0565b9250506020612a52858286016127a0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aa357607f821691505b602082108103612ab657612ab5612a5c565b5b50919050565b7f43616e206e6f742073657420627579206665657320686967686572207468616e60008201527f2033302500000000000000000000000000000000000000000000000000000000602082015250565b6000612b18602483612648565b9150612b2382612abc565b604082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b7f63616e206e6f7420736574206d61726b6574696e6720746f206465616420776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000612baa602483612648565b9150612bb582612b4e565b604082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c1a826126f4565b9150612c25836126f4565b9250828201905080821115612c3d57612c3c612be0565b5b92915050565b7f50657263656e74616765206d7573742062652067726561746572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9f602283612648565b9150612caa82612c43565b604082019050919050565b60006020820190508181036000830152612cce81612c92565b9050919050565b7f50657263656e74616765206d757374206265206c657373207468616e206f722060008201527f657175616c20746f203130300000000000000000000000000000000000000000602082015250565b6000612d31602c83612648565b9150612d3c82612cd5565b604082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000612d9d601a83612648565b9150612da882612d67565b602082019050919050565b60006020820190508181036000830152612dcc81612d90565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e2f602583612648565b9150612e3a82612dd3565b604082019050919050565b60006020820190508181036000830152612e5e81612e22565b9050919050565b6000612e70826126f4565b9150612e7b836126f4565b9250828202612e89816126f4565b91508282048414831517612ea057612e9f612be0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ee1826126f4565b9150612eec836126f4565b925082612efc57612efb612ea7565b5b828204905092915050565b7f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160008201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660208201527f20746f74616c20737570706c7921000000000000000000000000000000000000604082015250565b6000612f89604e83612648565b9150612f9482612f07565b606082019050919050565b60006020820190508181036000830152612fb881612f7c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061301b602683612648565b915061302682612fbf565b604082019050919050565b6000602082019050818103600083015261304a8161300e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613087602083612648565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613119602483612648565b9150613124826130bd565b604082019050919050565b600060208201905081810360008301526131488161310c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131ab602283612648565b91506131b68261314f565b604082019050919050565b600060208201905081810360008301526131da8161319e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613217601d83612648565b9150613222826131e1565b602082019050919050565b600060208201905081810360008301526132468161320a565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b60006132a9602483612648565b91506132b48261324d565b604082019050919050565b600060208201905081810360008301526132d88161329c565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613315601a83612648565b9150613320826132df565b602082019050919050565b6000602082019050818103600083015261334481613308565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613381601883612648565b915061338c8261334b565b602082019050919050565b600060208201905081810360008301526133b081613374565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613413602983612648565b915061341e826133b7565b604082019050919050565b6000602082019050818103600083015261344281613406565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000600082015250565b600061347f601d83612648565b915061348a82613449565b602082019050919050565b600060208201905081810360008301526134ae81613472565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006134eb601283612648565b91506134f6826134b5565b602082019050919050565b6000602082019050818103600083015261351a816134de565b9050919050565b600061352c826126f4565b9150613537836126f4565b925082820390508181111561354f5761354e612be0565b5b92915050565b600081905092915050565b50565b6000613570600083613555565b915061357b82613560565b600082019050919050565b600061359182613563565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135d1601083612648565b91506135dc8261359b565b602082019050919050565b60006020820190508181036000830152613600816135c4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613663602583612648565b915061366e82613607565b604082019050919050565b6000602082019050818103600083015261369281613656565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136f5602383612648565b915061370082613699565b604082019050919050565b60006020820190508181036000830152613724816136e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613787602683612648565b91506137928261372b565b604082019050919050565b600060208201905081810360008301526137b68161377a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061382a81612789565b92915050565b600060208284031215613846576138456126ef565b5b60006138548482850161381b565b91505092915050565b6000819050919050565b600061388261387d6138788461385d565b612978565b6126f4565b9050919050565b61389281613867565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138cd81612777565b82525050565b60006138df83836138c4565b60208301905092915050565b6000602082019050919050565b600061390382613898565b61390d81856138a3565b9350613918836138b4565b8060005b8381101561394957815161393088826138d3565b975061393b836138eb565b92505060018101905061391c565b5085935050505092915050565b600060a08201905061396b6000830188612897565b6139786020830187613889565b818103604083015261398a81866138f8565b905061399960608301856129f2565b6139a66080830184612897565b969550505050505056fea26469706673582212208cd01b1e6da5f5e4183e491216f18988ac158d4b58cecccd68b78f9b5ddfd7e064736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e14610818578063e2f4560514610855578063ef586f7114610880578063f2fde38b14610897578063f66895a3146108c05761023b565b8063a8b0898214610731578063a9059cbb1461075c578063afa4f3b214610799578063b8863115146107c2578063c876d0b9146107ed5761023b565b80638d456754116100f25780638d4567541461065e5780638da5cb5b1461067557806395d89b41146106a0578063a3ca847d146106cb578063a457c2d7146106f45761023b565b806376be96f31461059d5780637a845ece146105c8578063830351ff146105f1578063864701a51461061c5780638a8c523c146106475761023b565b806339509351116101bc57806370a082311161018057806370a08231146104dc578063715018a614610519578063735de9f714610530578063751039fc1461055b57806375f0a874146105725761023b565b806339509351146103f35780634a74bb02146104305780634ada218b1461045b5780635331803c14610486578063599ca397146104b15761023b565b806318160ddd1161020357806318160ddd146102fa5780631950c21814610325578063224611731461036257806323b872dd1461038b578063313ce567146103c85761023b565b806306fdde03146102405780630940bbc71461026b578063095ea7b3146102945780630c424284146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108eb565b60405161026291906126cd565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061272a565b61097d565b005b3480156102a057600080fd5b506102bb60048036038101906102b691906127b5565b610a03565b6040516102c89190612810565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612857565b610a26565b005b34801561030657600080fd5b5061030f610acf565b60405161031c91906128a6565b60405180910390f35b34801561033157600080fd5b5061034c600480360381019061034791906128c1565b610ad9565b6040516103599190612810565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906128c1565b610b2f565b005b34801561039757600080fd5b506103b260048036038101906103ad91906128ee565b610c2d565b6040516103bf9190612810565b60405180910390f35b3480156103d457600080fd5b506103dd610c5c565b6040516103ea919061295d565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906127b5565b610c65565b6040516104279190612810565b60405180910390f35b34801561043c57600080fd5b50610445610c9c565b6040516104529190612810565b60405180910390f35b34801561046757600080fd5b50610470610caf565b60405161047d9190612810565b60405180910390f35b34801561049257600080fd5b5061049b610cc2565b6040516104a891906128a6565b60405180910390f35b3480156104bd57600080fd5b506104c6610cce565b6040516104d391906128a6565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906128c1565b610cd4565b60405161051091906128a6565b60405180910390f35b34801561052557600080fd5b5061052e610d1c565b005b34801561053c57600080fd5b50610545610d30565b60405161055291906129d7565b60405180910390f35b34801561056757600080fd5b50610570610d54565b005b34801561057e57600080fd5b50610587610d8c565b6040516105949190612a01565b60405180910390f35b3480156105a957600080fd5b506105b2610db2565b6040516105bf91906128a6565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea919061272a565b610db8565b005b3480156105fd57600080fd5b50610606610e88565b6040516106139190612810565b60405180910390f35b34801561062857600080fd5b50610631610e9b565b60405161063e91906128a6565b60405180910390f35b34801561065357600080fd5b5061065c610ea7565b005b34801561066a57600080fd5b50610673610f3e565b005b34801561068157600080fd5b5061068a610f63565b6040516106979190612a01565b60405180910390f35b3480156106ac57600080fd5b506106b5610f8d565b6040516106c291906126cd565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed919061272a565b61101f565b005b34801561070057600080fd5b5061071b600480360381019061071691906127b5565b6110a5565b6040516107289190612810565b60405180910390f35b34801561073d57600080fd5b5061074661111c565b6040516107539190612a01565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e91906127b5565b611140565b6040516107909190612810565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb919061272a565b611163565b005b3480156107ce57600080fd5b506107d7611217565b6040516107e49190612810565b60405180910390f35b3480156107f957600080fd5b5061080261122a565b60405161080f9190612810565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190612a1c565b61123d565b60405161084c91906128a6565b60405180910390f35b34801561086157600080fd5b5061086a6112c4565b60405161087791906128a6565b60405180910390f35b34801561088c57600080fd5b506108956112ca565b005b3480156108a357600080fd5b506108be60048036038101906108b991906128c1565b61130b565b005b3480156108cc57600080fd5b506108d561138e565b6040516108e291906128a6565b60405180910390f35b6060600380546108fa90612a8b565b80601f016020809104026020016040519081016040528092919081815260200182805461092690612a8b565b80156109735780601f1061094857610100808354040283529160200191610973565b820191906000526020600020905b81548152906001019060200180831161095657829003601f168201915b5050505050905090565b61098561139a565b80600760000181905550601e8111156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612b2e565b60405180910390fd5b807f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5560405160405180910390a250565b600080610a0e611418565b9050610a1b818585611420565b600191505092915050565b610a2e61139a565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d60405160405180910390a35050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610b3761139a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90612bc0565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761960405160405180910390a250565b600080610c38611418565b9050610c458582856115e9565b610c50858585611675565b60019150509392505050565b60006012905090565b600080610c70611418565b9050610c91818585610c82858961123d565b610c8c9190612c0f565b611420565b600191505092915050565b600c60009054906101000a900460ff1681565b600c60029054906101000a900460ff1681565b60088060000154905081565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2461139a565b610d2e6000611cd5565b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b610d5c61139a565b6064600f819055506000600e60006101000a81548160ff0219169083151502179055506000600860000181905550565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610dc061139a565b60018111610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612cb5565b60405180910390fd5b6064811115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90612d47565b60405180910390fd5b80600f819055507f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df081604051610e7d91906128a6565b60405180910390a150565b600e60019054906101000a900460ff1681565b60068060000154905081565b610eaf61139a565b600c60029054906101000a900460ff1615610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612db3565b60405180910390fd5b6001600c60026101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff02191690831515021790555043600d81905550565b610f4661139a565b6000600e60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f9c90612a8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc890612a8b565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b61102761139a565b80600660000181905550601e811115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612b2e565b60405180910390fd5b807f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb60405160405180910390a250565b6000806110b0611418565b905060006110be828661123d565b905083811015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612e45565b60405180910390fd5b6111108286868403611420565b60019250505092915050565b7f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d481565b60008061114b611418565b9050611158818585611675565b600191505092915050565b61116b61139a565b60008111801561119f57506103e860056a52b7d2dcc80cd2e40000006111919190612e65565b61119b9190612ed6565b8111155b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590612f9f565b60405180910390fd5b80600b81905550600b547f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b600c60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6112d261139a565b600c60009054906101000a900460ff166112ed5760016112f0565b60005b600c60006101000a81548160ff021916908315150217905550565b61131361139a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990613031565b60405180910390fd5b61138b81611cd5565b50565b60078060000154905081565b6113a2611418565b73ffffffffffffffffffffffffffffffffffffffff166113c0610f63565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d9061309d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061312f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f5906131c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115dc91906128a6565b60405180910390a3505050565b60006115f5848461123d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461166f5781811015611661576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116589061322d565b60405180910390fd5b61166e8484848403611420565b5b50505050565b600e60009054906101000a900460ff16156117fe577f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561173257507f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117fd5743600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af906132bf565b60405180910390fd5b43600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361186d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118649061332b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613397565b60405180910390fd5b6000811161191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613429565b60405180910390fd5b60006064600f546a52b7d2dcc80cd2e400000061193c9190612e65565b6119469190612ed6565b9050600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119ec5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a255750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a5d57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ab557507f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b11578082611ac585610cd4565b611acf9190612c0f565b1115611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790613495565b60405180910390fd5b5b6000611b1e858585611d9b565b90506000600b54611b2e30610cd4565b10159050600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bd65750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cc257600c60029054906101000a900460ff16611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613501565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d473ffffffffffffffffffffffffffffffffffffffff16148015611c915750600c60009054906101000a900460ff165b8015611c9a5750805b8015611cb35750600c60019054906101000a900460ff16155b15611cc157611cc061204b565b5b5b611ccd868684612180565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e3e5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e4b57819050612044565b60006008600001549050600e60019054906101000a900460ff1615611f46576023600d54611e799190612c0f565b431115611eb657600560066000018190555060056007600001819055506000600e60016101000a81548160ff021916908315150217905550611f45565b6002600d54611ec59190612c0f565b4311611ee65760326006600001819055506005600760000181905550611f44565b6014600d54611ef59190612c0f565b4311611f1657602d6006600001819055506005600760000181905550611f43565b6023600d54611f259190612c0f565b4311611f4257602360066000018190555060056007600001819055505b5b5b5b5b7f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fa6576007600001549050612003565b7f00000000000000000000000046b114ca62bac9d5ab487968b216e210013558d473ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036120025760066000015490505b5b600080821115612033576064828561201b9190612e65565b6120259190612ed6565b9050612032863083612180565b5b808461203f9190613521565b925050505b9392505050565b6001600c60016101000a81548160ff021916908315150217905550600061207130610cd4565b905060008103612081575061217e565b61209261208d30610cd4565b6123f6565b6000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516120da90613586565b60006040518083038185875af1925050503d8060008114612117576040519150601f19603f3d011682016040523d82523d6000602084013e61211c565b606091505b5050905080612160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612157906135e7565b60405180910390fd5b6000600c60016101000a81548160ff02191690831515021790555050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690613679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122559061370b565b60405180910390fd5b612269838383612633565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e69061379d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123dd91906128a6565b60405180910390a36123f0848484612638565b50505050565b6000600267ffffffffffffffff811115612413576124126137bd565b5b6040519080825280602002602001820160405280156124415781602001602082028036833780820191505090505b5090503081600081518110612459576124586137ec565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125229190613830565b81600181518110612536576125356137ec565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061259b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611420565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016125fd959493929190613956565b600060405180830381600087803b15801561261757600080fd5b505af115801561262b573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561267757808201518184015260208101905061265c565b60008484015250505050565b6000601f19601f8301169050919050565b600061269f8261263d565b6126a98185612648565b93506126b9818560208601612659565b6126c281612683565b840191505092915050565b600060208201905081810360008301526126e78184612694565b905092915050565b600080fd5b6000819050919050565b612707816126f4565b811461271257600080fd5b50565b600081359050612724816126fe565b92915050565b6000602082840312156127405761273f6126ef565b5b600061274e84828501612715565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278282612757565b9050919050565b61279281612777565b811461279d57600080fd5b50565b6000813590506127af81612789565b92915050565b600080604083850312156127cc576127cb6126ef565b5b60006127da858286016127a0565b92505060206127eb85828601612715565b9150509250929050565b60008115159050919050565b61280a816127f5565b82525050565b60006020820190506128256000830184612801565b92915050565b612834816127f5565b811461283f57600080fd5b50565b6000813590506128518161282b565b92915050565b6000806040838503121561286e5761286d6126ef565b5b600061287c858286016127a0565b925050602061288d85828601612842565b9150509250929050565b6128a0816126f4565b82525050565b60006020820190506128bb6000830184612897565b92915050565b6000602082840312156128d7576128d66126ef565b5b60006128e5848285016127a0565b91505092915050565b600080600060608486031215612907576129066126ef565b5b6000612915868287016127a0565b9350506020612926868287016127a0565b925050604061293786828701612715565b9150509250925092565b600060ff82169050919050565b61295781612941565b82525050565b6000602082019050612972600083018461294e565b92915050565b6000819050919050565b600061299d61299861299384612757565b612978565b612757565b9050919050565b60006129af82612982565b9050919050565b60006129c1826129a4565b9050919050565b6129d1816129b6565b82525050565b60006020820190506129ec60008301846129c8565b92915050565b6129fb81612777565b82525050565b6000602082019050612a1660008301846129f2565b92915050565b60008060408385031215612a3357612a326126ef565b5b6000612a41858286016127a0565b9250506020612a52858286016127a0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aa357607f821691505b602082108103612ab657612ab5612a5c565b5b50919050565b7f43616e206e6f742073657420627579206665657320686967686572207468616e60008201527f2033302500000000000000000000000000000000000000000000000000000000602082015250565b6000612b18602483612648565b9150612b2382612abc565b604082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b7f63616e206e6f7420736574206d61726b6574696e6720746f206465616420776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000612baa602483612648565b9150612bb582612b4e565b604082019050919050565b60006020820190508181036000830152612bd981612b9d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c1a826126f4565b9150612c25836126f4565b9250828201905080821115612c3d57612c3c612be0565b5b92915050565b7f50657263656e74616765206d7573742062652067726561746572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9f602283612648565b9150612caa82612c43565b604082019050919050565b60006020820190508181036000830152612cce81612c92565b9050919050565b7f50657263656e74616765206d757374206265206c657373207468616e206f722060008201527f657175616c20746f203130300000000000000000000000000000000000000000602082015250565b6000612d31602c83612648565b9150612d3c82612cd5565b604082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000612d9d601a83612648565b9150612da882612d67565b602082019050919050565b60006020820190508181036000830152612dcc81612d90565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e2f602583612648565b9150612e3a82612dd3565b604082019050919050565b60006020820190508181036000830152612e5e81612e22565b9050919050565b6000612e70826126f4565b9150612e7b836126f4565b9250828202612e89816126f4565b91508282048414831517612ea057612e9f612be0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ee1826126f4565b9150612eec836126f4565b925082612efc57612efb612ea7565b5b828204905092915050565b7f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160008201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660208201527f20746f74616c20737570706c7921000000000000000000000000000000000000604082015250565b6000612f89604e83612648565b9150612f9482612f07565b606082019050919050565b60006020820190508181036000830152612fb881612f7c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061301b602683612648565b915061302682612fbf565b604082019050919050565b6000602082019050818103600083015261304a8161300e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613087602083612648565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613119602483612648565b9150613124826130bd565b604082019050919050565b600060208201905081810360008301526131488161310c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131ab602283612648565b91506131b68261314f565b604082019050919050565b600060208201905081810360008301526131da8161319e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613217601d83612648565b9150613222826131e1565b602082019050919050565b600060208201905081810360008301526132468161320a565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b60006132a9602483612648565b91506132b48261324d565b604082019050919050565b600060208201905081810360008301526132d88161329c565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613315601a83612648565b9150613320826132df565b602082019050919050565b6000602082019050818103600083015261334481613308565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613381601883612648565b915061338c8261334b565b602082019050919050565b600060208201905081810360008301526133b081613374565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613413602983612648565b915061341e826133b7565b604082019050919050565b6000602082019050818103600083015261344281613406565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000600082015250565b600061347f601d83612648565b915061348a82613449565b602082019050919050565b600060208201905081810360008301526134ae81613472565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006134eb601283612648565b91506134f6826134b5565b602082019050919050565b6000602082019050818103600083015261351a816134de565b9050919050565b600061352c826126f4565b9150613537836126f4565b925082820390508181111561354f5761354e612be0565b5b92915050565b600081905092915050565b50565b6000613570600083613555565b915061357b82613560565b600082019050919050565b600061359182613563565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135d1601083612648565b91506135dc8261359b565b602082019050919050565b60006020820190508181036000830152613600816135c4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613663602583612648565b915061366e82613607565b604082019050919050565b6000602082019050818103600083015261369281613656565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136f5602383612648565b915061370082613699565b604082019050919050565b60006020820190508181036000830152613724816136e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613787602683612648565b91506137928261372b565b604082019050919050565b600060208201905081810360008301526137b68161377a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061382a81612789565b92915050565b600060208284031215613846576138456126ef565b5b60006138548482850161381b565b91505092915050565b6000819050919050565b600061388261387d6138788461385d565b612978565b6126f4565b9050919050565b61389281613867565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138cd81612777565b82525050565b60006138df83836138c4565b60208301905092915050565b6000602082019050919050565b600061390382613898565b61390d81856138a3565b9350613918836138b4565b8060005b8381101561394957815161393088826138d3565b975061393b836138eb565b92505060018101905061391c565b5085935050505092915050565b600060a08201905061396b6000830188612897565b6139786020830187613889565b818103604083015261398a81866138f8565b905061399960608301856129f2565b6139a66080830184612897565b969550505050505056fea26469706673582212208cd01b1e6da5f5e4183e491216f18988ac158d4b58cecccd68b78f9b5ddfd7e064736f6c63430008130033

Deployed Bytecode Sourcemap

28301:8250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16318:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31056:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18678:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31824:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17447:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36086:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30273:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19459:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17289:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20129:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28958:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29042:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28654;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29300:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17618:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9773:103;;;;;;;;;;;;;:::i;:::-;;28478:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32025:163;;;;;;;;;;;;;:::i;:::-;;29215:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29083:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36210:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29168:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28583:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30580:217;;;;;;;;;;;;;:::i;:::-;;32194:78;;;;;;;;;;;;;:::i;:::-;;9132:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16537:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30805:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20870:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28525:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17951:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31310:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29005:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29122:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18207:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28894:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31690:126;;;;;;;;;;;;;:::i;:::-;;10031:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28618:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16318:100;16372:13;16405:5;16398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16318:100;:::o;31056:246::-;9018:13;:11;:13::i;:::-;31156::::1;31131:9;:22;;:38;;;;31205:2;31188:13;:19;;31180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31280:13;31264:30;;;;;;;;;;31056:246:::0;:::o;18678:201::-;18761:4;18778:13;18794:12;:10;:12::i;:::-;18778:28;;18817:32;18826:5;18833:7;18842:6;18817:8;:32::i;:::-;18867:4;18860:11;;;18678:201;;;;:::o;31824:195::-;9018:13;:11;:13::i;:::-;31961:7:::1;31938:11;:20;31950:7;31938:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;32003:7;31984:27;;31994:7;31984:27;;;;;;;;;;;;31824:195:::0;;:::o;17447:108::-;17508:7;17535:12;;17528:19;;17447:108;:::o;36086:116::-;36150:4;36174:11;:20;36186:7;36174:20;;;;;;;;;;;;;;;;;;;;;;;;;36167:27;;36086:116;;;:::o;30273:297::-;9018:13;:11;:13::i;:::-;30401:1:::1;30376:27;;:13;:27;;::::0;30354:113:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30496:13;30478:15;;:31;;;;;;;;;;;;;;;;;;30548:13;30525:37;;;;;;;;;;;;30273:297:::0;:::o;19459:261::-;19556:4;19573:15;19591:12;:10;:12::i;:::-;19573:30;;19614:38;19630:4;19636:7;19645:6;19614:15;:38::i;:::-;19663:27;19673:4;19679:2;19683:6;19663:9;:27::i;:::-;19708:4;19701:11;;;19459:261;;;;;:::o;17289:93::-;17347:5;17372:2;17365:9;;17289:93;:::o;20129:238::-;20217:4;20234:13;20250:12;:10;:12::i;:::-;20234:28;;20273:64;20282:5;20289:7;20326:10;20298:25;20308:5;20315:7;20298:9;:25::i;:::-;:38;;;;:::i;:::-;20273:8;:64::i;:::-;20355:4;20348:11;;;20129:238;;;;:::o;28958:40::-;;;;;;;;;;;;;:::o;29042:34::-;;;;;;;;;;;;;:::o;28654:::-;;;;;;;;;:::o;29300:38::-;;;;:::o;17618:127::-;17692:7;17719:9;:18;17729:7;17719:18;;;;;;;;;;;;;;;;17712:25;;17618:127;;;:::o;9773:103::-;9018:13;:11;:13::i;:::-;9838:30:::1;9865:1;9838:18;:30::i;:::-;9773:103::o:0;28478:40::-;;;:::o;32025:163::-;9018:13;:11;:13::i;:::-;32099:3:::1;32078:19;:24;;;;32134:5;32113:20;;:26;;;;;;;;;;;;;;;;;;32179:1;32150:13;:26;;:30;;;;32025:163::o:0;29215:75::-;;;;;;;;;;;;;:::o;29083:32::-;;;;:::o;36210:303::-;9018:13;:11;:13::i;:::-;36311:1:::1;36297:11;:15;36289:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36381:3;36366:11;:18;;36358:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;36462:11;36440:19;:33;;;;36485:24;36497:11;36485:24;;;;;;:::i;:::-;;;;;;;;36210:303:::0;:::o;29168:21::-;;;;;;;;;;;;;:::o;28583:28::-;;;;;;;;;:::o;30580:217::-;9018:13;:11;:13::i;:::-;30644:14:::1;;;;;;;;;;;30643:15;30635:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;30717:4;30700:14;;:21;;;;;;;;;;;;;;;;;;30742:4;30732:9;;:14;;;;;;;;;;;;;;;;;;30777:12;30757:17;:32;;;;30580:217::o:0;32194:78::-;9018:13;:11;:13::i;:::-;32259:5:::1;32249:9;;:15;;;;;;;;;;;;;;;;;;32194:78::o:0;9132:87::-;9178:7;9205:6;;;;;;;;;;;9198:13;;9132:87;:::o;16537:104::-;16593:13;16626:7;16619:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16537:104;:::o;30805:243::-;9018:13;:11;:13::i;:::-;30903::::1;30879:8;:21;;:37;;;;30952:2;30935:13;:19;;30927:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31026:13;31011:29;;;;;;;;;;30805:243:::0;:::o;20870:436::-;20963:4;20980:13;20996:12;:10;:12::i;:::-;20980:28;;21019:24;21046:25;21056:5;21063:7;21046:9;:25::i;:::-;21019:52;;21110:15;21090:16;:35;;21082:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21203:60;21212:5;21219:7;21247:15;21228:16;:34;21203:8;:60::i;:::-;21294:4;21287:11;;;;20870:436;;;;:::o;28525:36::-;;;:::o;17951:193::-;18030:4;18047:13;18063:12;:10;:12::i;:::-;18047:28;;18086;18096:5;18103:2;18107:6;18086:9;:28::i;:::-;18132:4;18125:11;;;17951:193;;;;:::o;31310:372::-;9018:13;:11;:13::i;:::-;31426:1:::1;31413:10;:14;:57;;;;;31466:4;31461:1;28439:16;31446;;;;:::i;:::-;31445:25;;;;:::i;:::-;31431:10;:39;;31413:57;31391:185;;;;;;;;;;;;:::i;:::-;;;;;;;;;31608:10;31587:18;:31;;;;31655:18;;31634:40;;;;;;;;;;31310:372:::0;:::o;29005:30::-;;;;;;;;;;;;;:::o;29122:39::-;;;;;;;;;;;;;:::o;18207:151::-;18296:7;18323:11;:18;18335:5;18323:18;;;;;;;;;;;;;;;:27;18342:7;18323:27;;;;;;;;;;;;;;;;18316:34;;18207:151;;;;:::o;28894:56::-;;;;:::o;31690:126::-;9018:13;:11;:13::i;:::-;31771:21:::1;;;;;;;;;;;31770:38;;31804:4;31770:38;;;31796:5;31770:38;31746:21;;:62;;;;;;;;;;;;;;;;;;31690:126::o:0;10031:201::-;9018:13;:11;:13::i;:::-;10140:1:::1;10120:22;;:8;:22;;::::0;10112:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10196:28;10215:8;10196:18;:28::i;:::-;10031:201:::0;:::o;28618:29::-;;;;;;;;;:::o;9297:132::-;9372:12;:10;:12::i;:::-;9361:23;;:7;:5;:7::i;:::-;:23;;;9353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9297:132::o;7683:98::-;7736:7;7763:10;7756:17;;7683:98;:::o;24863:346::-;24982:1;24965:19;;:5;:19;;;24957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25063:1;25044:21;;:7;:21;;;25036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25147:6;25117:11;:18;25129:5;25117:18;;;;;;;;;;;;;;;:27;25136:7;25117:27;;;;;;;;;;;;;;;:36;;;;25185:7;25169:32;;25178:5;25169:32;;;25194:6;25169:32;;;;;;:::i;:::-;;;;;;;;24863:346;;;:::o;25500:419::-;25601:24;25628:25;25638:5;25645:7;25628:9;:25::i;:::-;25601:52;;25688:17;25668:16;:37;25664:248;;25750:6;25730:16;:26;;25722:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25834:51;25843:5;25850:7;25878:6;25859:16;:25;25834:8;:51::i;:::-;25664:248;25590:329;25500:419;;;:::o;33701:1520::-;33823:20;;;;;;;;;;;33819:307;;;33875:11;33860:27;;:3;:27;;;;:58;;;;;33906:11;33891:27;;:3;:27;;;;33860:58;33856:263;;;33985:12;33943:28;:39;33972:9;33943:39;;;;;;;;;;;;;;;;:54;33935:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34095:12;34053:28;:39;34082:9;34053:39;;;;;;;;;;;;;;;:54;;;;33856:263;33819:307;34162:1;34145:19;;:5;:19;;;34137:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34225:1;34210:17;;:3;:17;;;34202:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;34281:1;34271:7;:11;34263:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34441:23;34504:3;34482:19;;28439:16;34467:34;;;;:::i;:::-;:40;;;;:::i;:::-;34441:66;;34589:11;:18;34601:5;34589:18;;;;;;;;;;;;;;;;;;;;;;;;;34588:19;:40;;;;;34612:11;:16;34624:3;34612:16;;;;;;;;;;;;;;;;;;;;;;;;;34611:17;34588:40;:61;;;;;34647:1;34632:17;;:3;:17;;;;34588:61;:85;;;;;34668:4;34653:20;;:3;:20;;;;34588:85;:107;;;;;34684:11;34677:18;;:3;:18;;;;34588:107;34584:217;;;34744:15;34733:7;34716:14;34726:3;34716:9;:14::i;:::-;:24;;;;:::i;:::-;:43;;34708:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34584:217;34809:18;34830:29;34839:5;34846:3;34851:7;34830:8;:29::i;:::-;34809:50;;34868:12;34911:18;;34883:24;34901:4;34883:9;:24::i;:::-;:46;;34868:61;;34941:11;:18;34953:5;34941:18;;;;;;;;;;;;;;;;;;;;;;;;;34940:19;:40;;;;;34964:11;:16;34976:3;34964:16;;;;;;;;;;;;;;;;;;;;;;;;;34963:17;34940:40;34936:236;;;35001:14;;;;;;;;;;;34993:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;35068:3;35053:18;;:11;:18;;;:43;;;;;35075:21;;;;;;;;;;;35053:43;:54;;;;;35100:7;35053:54;:69;;;;;35112:10;;;;;;;;;;;35111:11;35053:69;35049:116;;;35139:14;:12;:14::i;:::-;35049:116;34936:236;35178:39;35194:5;35201:3;35206:10;35178:15;:39::i;:::-;33809:1412;;;33701:1520;;;:::o;10392:191::-;10466:16;10485:6;;;;;;;;;;;10466:25;;10511:8;10502:6;;:17;;;;;;;;;;;;;;;;;;10566:8;10535:40;;10556:8;10535:40;;;;;;;;;;;;10455:128;10392:191;:::o;32418:1279::-;32517:7;32537:11;:18;32549:5;32537:18;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;;32559:11;:16;32571:3;32559:16;;;;;;;;;;;;;;;;;;;;;;;;;32537:38;32533:77;;;32595:7;32588:14;;;;32533:77;32618:16;32637:13;:26;;;32618:45;;32718:9;;;;;;;;;;;32714:634;;;32779:2;32759:17;;:22;;;;:::i;:::-;32744:12;:37;32740:601;;;32822:1;32798:8;:21;;:25;;;;32863:1;32838:9;:22;;:26;;;;32891:5;32879:9;;:17;;;;;;;;;;;;;;;;;;32740:601;;;32956:1;32936:17;;:21;;;;:::i;:::-;32920:12;:37;32916:425;;32998:2;32974:8;:21;;:26;;;;33040:1;33015:9;:22;;:26;;;;32916:425;;;33099:2;33079:17;;:22;;;;:::i;:::-;33063:12;:38;33059:282;;33142:2;33118:8;:21;;:26;;;;33184:1;33159:9;:22;;:26;;;;33059:282;;;33243:2;33223:17;;:22;;;;:::i;:::-;33207:12;:38;33203:138;;33286:2;33262:8;:21;;:26;;;;33328:1;33303:9;:22;;:26;;;;33203:138;33059:282;32916:425;32740:601;32714:634;33365:11;33358:18;;:3;:18;;;33354:159;;33400:9;:22;;;33389:33;;33354:159;;;33449:11;33440:20;;:5;:20;;;33436:77;;33484:8;:21;;;33473:32;;33436:77;33354:159;33521:11;33558:1;33547:8;:12;33543:122;;;33601:3;33589:8;33579:7;:18;;;;:::i;:::-;33578:26;;;;:::i;:::-;33572:32;;33615:42;33631:5;33646:4;33653:3;33615:15;:42::i;:::-;33543:122;33689:3;33679:7;:13;;;;:::i;:::-;33671:22;;;;32418:1279;;;;;;:::o;35229:394::-;35286:4;35273:10;;:17;;;;;;;;;;;;;;;;;;35301;35321:24;35339:4;35321:9;:24::i;:::-;35301:44;;35374:1;35361:9;:14;35357:53;;35392:7;;;35357:53;35420:35;35430:24;35448:4;35430:9;:24::i;:::-;35420:9;:35::i;:::-;35466:12;35484:15;;;;;;;;;;;:20;;35512:21;35484:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35465:73;;;35557:7;35549:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;35610:5;35597:10;;:18;;;;;;;;;;;;;;;;;;35262:361;;35229:394;:::o;21776:806::-;21889:1;21873:18;;:4;:18;;;21865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21966:1;21952:16;;:2;:16;;;21944:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22021:38;22042:4;22048:2;22052:6;22021:20;:38::i;:::-;22072:19;22094:9;:15;22104:4;22094:15;;;;;;;;;;;;;;;;22072:37;;22143:6;22128:11;:21;;22120:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22260:6;22246:11;:20;22228:9;:15;22238:4;22228:15;;;;;;;;;;;;;;;:38;;;;22463:6;22446:9;:13;22456:2;22446:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22513:2;22498:26;;22507:4;22498:26;;;22517:6;22498:26;;;;;;:::i;:::-;;;;;;;;22537:37;22557:4;22563:2;22567:6;22537:19;:37::i;:::-;21854:728;21776:806;;;:::o;35633:447::-;35689:21;35727:1;35713:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35689:40;;35758:4;35740;35745:1;35740:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35784:13;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35774:4;35779:1;35774:7;;;;;;;;:::i;:::-;;;;;;;:30;;;;;;;;;;;35815:56;35832:4;35847:13;35863:7;35815:8;:56::i;:::-;35882:13;:64;;;35961:7;35983:1;35999:4;36026;36046:15;35882:190;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35678:402;35633:447;:::o;26519:91::-;;;;:::o;27214:90::-;;;;:::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:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:116::-;3851:21;3866:5;3851:21;:::i;:::-;3844:5;3841:32;3831:60;;3887:1;3884;3877:12;3831:60;3781:116;:::o;3903:133::-;3946:5;3984:6;3971:20;3962:29;;4000:30;4024:5;4000:30;:::i;:::-;3903:133;;;;:::o;4042:468::-;4107:6;4115;4164:2;4152:9;4143:7;4139:23;4135:32;4132:119;;;4170:79;;:::i;:::-;4132:119;4290:1;4315:53;4360:7;4351:6;4340:9;4336:22;4315:53;:::i;:::-;4305:63;;4261:117;4417:2;4443:50;4485:7;4476:6;4465:9;4461:22;4443:50;:::i;:::-;4433:60;;4388:115;4042:468;;;;;:::o;4516:118::-;4603:24;4621:5;4603:24;:::i;:::-;4598:3;4591:37;4516:118;;:::o;4640:222::-;4733:4;4771:2;4760:9;4756:18;4748:26;;4784:71;4852:1;4841:9;4837:17;4828:6;4784:71;:::i;:::-;4640:222;;;;:::o;4868:329::-;4927:6;4976:2;4964:9;4955:7;4951:23;4947:32;4944:119;;;4982:79;;:::i;:::-;4944:119;5102:1;5127:53;5172:7;5163:6;5152:9;5148:22;5127:53;:::i;:::-;5117:63;;5073:117;4868:329;;;;:::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:60::-;6286:3;6307:5;6300:12;;6258:60;;;:::o;6324:142::-;6374:9;6407:53;6425:34;6434:24;6452:5;6434:24;:::i;:::-;6425:34;:::i;:::-;6407:53;:::i;:::-;6394:66;;6324:142;;;:::o;6472:126::-;6522:9;6555:37;6586:5;6555:37;:::i;:::-;6542:50;;6472:126;;;:::o;6604:144::-;6672:9;6705:37;6736:5;6705:37;:::i;:::-;6692:50;;6604:144;;;:::o;6754:167::-;6859:55;6908:5;6859:55;:::i;:::-;6854:3;6847:68;6754:167;;:::o;6927:258::-;7038:4;7076:2;7065:9;7061:18;7053:26;;7089:89;7175:1;7164:9;7160:17;7151:6;7089:89;:::i;:::-;6927:258;;;;:::o;7191:118::-;7278:24;7296:5;7278:24;:::i;:::-;7273:3;7266:37;7191:118;;:::o;7315:222::-;7408:4;7446:2;7435:9;7431:18;7423:26;;7459:71;7527:1;7516:9;7512:17;7503:6;7459:71;:::i;:::-;7315:222;;;;:::o;7543:474::-;7611:6;7619;7668:2;7656:9;7647:7;7643:23;7639:32;7636:119;;;7674:79;;:::i;:::-;7636:119;7794:1;7819:53;7864:7;7855:6;7844:9;7840:22;7819:53;:::i;:::-;7809:63;;7765:117;7921:2;7947:53;7992:7;7983:6;7972:9;7968:22;7947:53;:::i;:::-;7937:63;;7892:118;7543:474;;;;;:::o;8023:180::-;8071:77;8068:1;8061:88;8168:4;8165:1;8158:15;8192:4;8189:1;8182:15;8209:320;8253:6;8290:1;8284:4;8280:12;8270:22;;8337:1;8331:4;8327:12;8358:18;8348:81;;8414:4;8406:6;8402:17;8392:27;;8348:81;8476:2;8468:6;8465:14;8445:18;8442:38;8439:84;;8495:18;;:::i;:::-;8439:84;8260:269;8209:320;;;:::o;8535:223::-;8675:34;8671:1;8663:6;8659:14;8652:58;8744:6;8739:2;8731:6;8727:15;8720:31;8535:223;:::o;8764:366::-;8906:3;8927:67;8991:2;8986:3;8927:67;:::i;:::-;8920:74;;9003:93;9092:3;9003:93;:::i;:::-;9121:2;9116:3;9112:12;9105:19;;8764:366;;;:::o;9136:419::-;9302:4;9340:2;9329:9;9325:18;9317:26;;9389:9;9383:4;9379:20;9375:1;9364:9;9360:17;9353:47;9417:131;9543:4;9417:131;:::i;:::-;9409:139;;9136:419;;;:::o;9561:223::-;9701:34;9697:1;9689:6;9685:14;9678:58;9770:6;9765:2;9757:6;9753:15;9746:31;9561:223;:::o;9790:366::-;9932:3;9953:67;10017:2;10012:3;9953:67;:::i;:::-;9946:74;;10029:93;10118:3;10029:93;:::i;:::-;10147:2;10142:3;10138:12;10131:19;;9790:366;;;:::o;10162:419::-;10328:4;10366:2;10355:9;10351:18;10343:26;;10415:9;10409:4;10405:20;10401:1;10390:9;10386:17;10379:47;10443:131;10569:4;10443:131;:::i;:::-;10435:139;;10162:419;;;:::o;10587:180::-;10635:77;10632:1;10625:88;10732:4;10729:1;10722:15;10756:4;10753:1;10746:15;10773:191;10813:3;10832:20;10850:1;10832:20;:::i;:::-;10827:25;;10866:20;10884:1;10866:20;:::i;:::-;10861:25;;10909:1;10906;10902:9;10895:16;;10930:3;10927:1;10924:10;10921:36;;;10937:18;;:::i;:::-;10921:36;10773:191;;;;:::o;10970:221::-;11110:34;11106:1;11098:6;11094:14;11087:58;11179:4;11174:2;11166:6;11162:15;11155:29;10970:221;:::o;11197:366::-;11339:3;11360:67;11424:2;11419:3;11360:67;:::i;:::-;11353:74;;11436:93;11525:3;11436:93;:::i;:::-;11554:2;11549:3;11545:12;11538:19;;11197:366;;;:::o;11569:419::-;11735:4;11773:2;11762:9;11758:18;11750:26;;11822:9;11816:4;11812:20;11808:1;11797:9;11793:17;11786:47;11850:131;11976:4;11850:131;:::i;:::-;11842:139;;11569:419;;;:::o;11994:231::-;12134:34;12130:1;12122:6;12118:14;12111:58;12203:14;12198:2;12190:6;12186:15;12179:39;11994:231;:::o;12231:366::-;12373:3;12394:67;12458:2;12453:3;12394:67;:::i;:::-;12387:74;;12470:93;12559:3;12470:93;:::i;:::-;12588:2;12583:3;12579:12;12572:19;;12231:366;;;:::o;12603:419::-;12769:4;12807:2;12796:9;12792:18;12784:26;;12856:9;12850:4;12846:20;12842:1;12831:9;12827:17;12820:47;12884:131;13010:4;12884:131;:::i;:::-;12876:139;;12603:419;;;:::o;13028:176::-;13168:28;13164:1;13156:6;13152:14;13145:52;13028:176;:::o;13210:366::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:419::-;13748:4;13786:2;13775:9;13771:18;13763:26;;13835:9;13829:4;13825:20;13821:1;13810:9;13806:17;13799:47;13863:131;13989:4;13863:131;:::i;:::-;13855:139;;13582:419;;;:::o;14007:224::-;14147:34;14143:1;14135:6;14131:14;14124:58;14216:7;14211:2;14203:6;14199:15;14192:32;14007:224;:::o;14237:366::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:419::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:410::-;15074:7;15097:20;15115:1;15097:20;:::i;:::-;15092:25;;15131:20;15149:1;15131:20;:::i;:::-;15126:25;;15186:1;15183;15179:9;15208:30;15226:11;15208:30;:::i;:::-;15197:41;;15387:1;15378:7;15374:15;15371:1;15368:22;15348:1;15341:9;15321:83;15298:139;;15417:18;;:::i;:::-;15298:139;15082:362;15034:410;;;;:::o;15450:180::-;15498:77;15495:1;15488:88;15595:4;15592:1;15585:15;15619:4;15616:1;15609:15;15636:185;15676:1;15693:20;15711:1;15693:20;:::i;:::-;15688:25;;15727:20;15745:1;15727:20;:::i;:::-;15722:25;;15766:1;15756:35;;15771:18;;:::i;:::-;15756:35;15813:1;15810;15806:9;15801:14;;15636:185;;;;:::o;15827:302::-;15967:34;15963:1;15955:6;15951:14;15944:58;16036:34;16031:2;16023:6;16019:15;16012:59;16105:16;16100:2;16092:6;16088:15;16081:41;15827:302;:::o;16135:366::-;16277:3;16298:67;16362:2;16357:3;16298:67;:::i;:::-;16291:74;;16374:93;16463:3;16374:93;:::i;:::-;16492:2;16487:3;16483:12;16476:19;;16135:366;;;:::o;16507:419::-;16673:4;16711:2;16700:9;16696:18;16688:26;;16760:9;16754:4;16750:20;16746:1;16735:9;16731:17;16724:47;16788:131;16914:4;16788:131;:::i;:::-;16780:139;;16507:419;;;:::o;16932:225::-;17072:34;17068:1;17060:6;17056:14;17049:58;17141:8;17136:2;17128:6;17124:15;17117:33;16932:225;:::o;17163:366::-;17305:3;17326:67;17390:2;17385:3;17326:67;:::i;:::-;17319:74;;17402:93;17491:3;17402:93;:::i;:::-;17520:2;17515:3;17511:12;17504:19;;17163:366;;;:::o;17535:419::-;17701:4;17739:2;17728:9;17724:18;17716:26;;17788:9;17782:4;17778:20;17774:1;17763:9;17759:17;17752:47;17816:131;17942:4;17816:131;:::i;:::-;17808:139;;17535:419;;;:::o;17960:182::-;18100:34;18096:1;18088:6;18084:14;18077:58;17960:182;:::o;18148:366::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:419::-;18686:4;18724:2;18713:9;18709:18;18701:26;;18773:9;18767:4;18763:20;18759:1;18748:9;18744:17;18737:47;18801:131;18927:4;18801:131;:::i;:::-;18793:139;;18520:419;;;:::o;18945:223::-;19085:34;19081:1;19073:6;19069:14;19062:58;19154:6;19149:2;19141:6;19137:15;19130:31;18945:223;:::o;19174:366::-;19316:3;19337:67;19401:2;19396:3;19337:67;:::i;:::-;19330:74;;19413:93;19502:3;19413:93;:::i;:::-;19531:2;19526:3;19522:12;19515:19;;19174:366;;;:::o;19546:419::-;19712:4;19750:2;19739:9;19735:18;19727:26;;19799:9;19793:4;19789:20;19785:1;19774:9;19770:17;19763:47;19827:131;19953:4;19827:131;:::i;:::-;19819:139;;19546:419;;;:::o;19971:221::-;20111:34;20107:1;20099:6;20095:14;20088:58;20180:4;20175:2;20167:6;20163:15;20156:29;19971:221;:::o;20198:366::-;20340:3;20361:67;20425:2;20420:3;20361:67;:::i;:::-;20354:74;;20437:93;20526:3;20437:93;:::i;:::-;20555:2;20550:3;20546:12;20539:19;;20198:366;;;:::o;20570:419::-;20736:4;20774:2;20763:9;20759:18;20751:26;;20823:9;20817:4;20813:20;20809:1;20798:9;20794:17;20787:47;20851:131;20977:4;20851:131;:::i;:::-;20843:139;;20570:419;;;:::o;20995:179::-;21135:31;21131:1;21123:6;21119:14;21112:55;20995:179;:::o;21180:366::-;21322:3;21343:67;21407:2;21402:3;21343:67;:::i;:::-;21336:74;;21419:93;21508:3;21419:93;:::i;:::-;21537:2;21532:3;21528:12;21521:19;;21180:366;;;:::o;21552:419::-;21718:4;21756:2;21745:9;21741:18;21733:26;;21805:9;21799:4;21795:20;21791:1;21780:9;21776:17;21769:47;21833:131;21959:4;21833:131;:::i;:::-;21825:139;;21552:419;;;:::o;21977:223::-;22117:34;22113:1;22105:6;22101:14;22094:58;22186:6;22181:2;22173:6;22169:15;22162:31;21977:223;:::o;22206:366::-;22348:3;22369:67;22433:2;22428:3;22369:67;:::i;:::-;22362:74;;22445:93;22534:3;22445:93;:::i;:::-;22563:2;22558:3;22554:12;22547:19;;22206:366;;;:::o;22578:419::-;22744:4;22782:2;22771:9;22767:18;22759:26;;22831:9;22825:4;22821:20;22817:1;22806:9;22802:17;22795:47;22859:131;22985:4;22859:131;:::i;:::-;22851:139;;22578:419;;;:::o;23003:176::-;23143:28;23139:1;23131:6;23127:14;23120:52;23003:176;:::o;23185:366::-;23327:3;23348:67;23412:2;23407:3;23348:67;:::i;:::-;23341:74;;23424:93;23513:3;23424:93;:::i;:::-;23542:2;23537:3;23533:12;23526:19;;23185:366;;;:::o;23557:419::-;23723:4;23761:2;23750:9;23746:18;23738:26;;23810:9;23804:4;23800:20;23796:1;23785:9;23781:17;23774:47;23838:131;23964:4;23838:131;:::i;:::-;23830:139;;23557:419;;;:::o;23982:174::-;24122:26;24118:1;24110:6;24106:14;24099:50;23982:174;:::o;24162:366::-;24304:3;24325:67;24389:2;24384:3;24325:67;:::i;:::-;24318:74;;24401:93;24490:3;24401:93;:::i;:::-;24519:2;24514:3;24510:12;24503:19;;24162:366;;;:::o;24534:419::-;24700:4;24738:2;24727:9;24723:18;24715:26;;24787:9;24781:4;24777:20;24773:1;24762:9;24758:17;24751:47;24815:131;24941:4;24815:131;:::i;:::-;24807:139;;24534:419;;;:::o;24959:228::-;25099:34;25095:1;25087:6;25083:14;25076:58;25168:11;25163:2;25155:6;25151:15;25144:36;24959:228;:::o;25193:366::-;25335:3;25356:67;25420:2;25415:3;25356:67;:::i;:::-;25349:74;;25432:93;25521:3;25432:93;:::i;:::-;25550:2;25545:3;25541:12;25534:19;;25193:366;;;:::o;25565:419::-;25731:4;25769:2;25758:9;25754:18;25746:26;;25818:9;25812:4;25808:20;25804:1;25793:9;25789:17;25782:47;25846:131;25972:4;25846:131;:::i;:::-;25838:139;;25565:419;;;:::o;25990:179::-;26130:31;26126:1;26118:6;26114:14;26107:55;25990:179;:::o;26175:366::-;26317:3;26338:67;26402:2;26397:3;26338:67;:::i;:::-;26331:74;;26414:93;26503:3;26414:93;:::i;:::-;26532:2;26527:3;26523:12;26516:19;;26175:366;;;:::o;26547:419::-;26713:4;26751:2;26740:9;26736:18;26728:26;;26800:9;26794:4;26790:20;26786:1;26775:9;26771:17;26764:47;26828:131;26954:4;26828:131;:::i;:::-;26820:139;;26547:419;;;:::o;26972:168::-;27112:20;27108:1;27100:6;27096:14;27089:44;26972:168;:::o;27146:366::-;27288:3;27309:67;27373:2;27368:3;27309:67;:::i;:::-;27302:74;;27385:93;27474:3;27385:93;:::i;:::-;27503:2;27498:3;27494:12;27487:19;;27146:366;;;:::o;27518:419::-;27684:4;27722:2;27711:9;27707:18;27699:26;;27771:9;27765:4;27761:20;27757:1;27746:9;27742:17;27735:47;27799:131;27925:4;27799:131;:::i;:::-;27791:139;;27518:419;;;:::o;27943:194::-;27983:4;28003:20;28021:1;28003:20;:::i;:::-;27998:25;;28037:20;28055:1;28037:20;:::i;:::-;28032:25;;28081:1;28078;28074:9;28066:17;;28105:1;28099:4;28096:11;28093:37;;;28110:18;;:::i;:::-;28093:37;27943:194;;;;:::o;28143:147::-;28244:11;28281:3;28266:18;;28143:147;;;;:::o;28296:114::-;;:::o;28416:398::-;28575:3;28596:83;28677:1;28672:3;28596:83;:::i;:::-;28589:90;;28688:93;28777:3;28688:93;:::i;:::-;28806:1;28801:3;28797:11;28790:18;;28416:398;;;:::o;28820:379::-;29004:3;29026:147;29169:3;29026:147;:::i;:::-;29019:154;;29190:3;29183:10;;28820:379;;;:::o;29205:166::-;29345:18;29341:1;29333:6;29329:14;29322:42;29205:166;:::o;29377:366::-;29519:3;29540:67;29604:2;29599:3;29540:67;:::i;:::-;29533:74;;29616:93;29705:3;29616:93;:::i;:::-;29734:2;29729:3;29725:12;29718:19;;29377:366;;;:::o;29749:419::-;29915:4;29953:2;29942:9;29938:18;29930:26;;30002:9;29996:4;29992:20;29988:1;29977:9;29973:17;29966:47;30030:131;30156:4;30030:131;:::i;:::-;30022:139;;29749:419;;;:::o;30174:224::-;30314:34;30310:1;30302:6;30298:14;30291:58;30383:7;30378:2;30370:6;30366:15;30359:32;30174:224;:::o;30404:366::-;30546:3;30567:67;30631:2;30626:3;30567:67;:::i;:::-;30560:74;;30643:93;30732:3;30643:93;:::i;:::-;30761:2;30756:3;30752:12;30745:19;;30404:366;;;:::o;30776:419::-;30942:4;30980:2;30969:9;30965:18;30957:26;;31029:9;31023:4;31019:20;31015:1;31004:9;31000:17;30993:47;31057:131;31183:4;31057:131;:::i;:::-;31049:139;;30776:419;;;:::o;31201:222::-;31341:34;31337:1;31329:6;31325:14;31318:58;31410:5;31405:2;31397:6;31393:15;31386:30;31201:222;:::o;31429:366::-;31571:3;31592:67;31656:2;31651:3;31592:67;:::i;:::-;31585:74;;31668:93;31757:3;31668:93;:::i;:::-;31786:2;31781:3;31777:12;31770:19;;31429:366;;;:::o;31801:419::-;31967:4;32005:2;31994:9;31990:18;31982:26;;32054:9;32048:4;32044:20;32040:1;32029:9;32025:17;32018:47;32082:131;32208:4;32082:131;:::i;:::-;32074:139;;31801:419;;;:::o;32226:225::-;32366:34;32362:1;32354:6;32350:14;32343:58;32435:8;32430:2;32422:6;32418:15;32411:33;32226:225;:::o;32457:366::-;32599:3;32620:67;32684:2;32679:3;32620:67;:::i;:::-;32613:74;;32696:93;32785:3;32696:93;:::i;:::-;32814:2;32809:3;32805:12;32798:19;;32457:366;;;:::o;32829:419::-;32995:4;33033:2;33022:9;33018:18;33010:26;;33082:9;33076:4;33072:20;33068:1;33057:9;33053:17;33046:47;33110:131;33236:4;33110:131;:::i;:::-;33102:139;;32829:419;;;:::o;33254:180::-;33302:77;33299:1;33292:88;33399:4;33396:1;33389:15;33423:4;33420:1;33413:15;33440:180;33488:77;33485:1;33478:88;33585:4;33582:1;33575:15;33609:4;33606:1;33599:15;33626:143;33683:5;33714:6;33708:13;33699:22;;33730:33;33757:5;33730:33;:::i;:::-;33626:143;;;;:::o;33775:351::-;33845:6;33894:2;33882:9;33873:7;33869:23;33865:32;33862:119;;;33900:79;;:::i;:::-;33862:119;34020:1;34045:64;34101:7;34092:6;34081:9;34077:22;34045:64;:::i;:::-;34035:74;;33991:128;33775:351;;;;:::o;34132:85::-;34177:7;34206:5;34195:16;;34132:85;;;:::o;34223:158::-;34281:9;34314:61;34332:42;34341:32;34367:5;34341:32;:::i;:::-;34332:42;:::i;:::-;34314:61;:::i;:::-;34301:74;;34223:158;;;:::o;34387:147::-;34482:45;34521:5;34482:45;:::i;:::-;34477:3;34470:58;34387:147;;:::o;34540:114::-;34607:6;34641:5;34635:12;34625:22;;34540:114;;;:::o;34660:184::-;34759:11;34793:6;34788:3;34781:19;34833:4;34828:3;34824:14;34809:29;;34660:184;;;;:::o;34850:132::-;34917:4;34940:3;34932:11;;34970:4;34965:3;34961:14;34953:22;;34850:132;;;:::o;34988:108::-;35065:24;35083:5;35065:24;:::i;:::-;35060:3;35053:37;34988:108;;:::o;35102:179::-;35171:10;35192:46;35234:3;35226:6;35192:46;:::i;:::-;35270:4;35265:3;35261:14;35247:28;;35102:179;;;;:::o;35287:113::-;35357:4;35389;35384:3;35380:14;35372:22;;35287:113;;;:::o;35436:732::-;35555:3;35584:54;35632:5;35584:54;:::i;:::-;35654:86;35733:6;35728:3;35654:86;:::i;:::-;35647:93;;35764:56;35814:5;35764:56;:::i;:::-;35843:7;35874:1;35859:284;35884:6;35881:1;35878:13;35859:284;;;35960:6;35954:13;35987:63;36046:3;36031:13;35987:63;:::i;:::-;35980:70;;36073:60;36126:6;36073:60;:::i;:::-;36063:70;;35919:224;35906:1;35903;35899:9;35894:14;;35859:284;;;35863:14;36159:3;36152:10;;35560:608;;;35436:732;;;;:::o;36174:831::-;36437:4;36475:3;36464:9;36460:19;36452:27;;36489:71;36557:1;36546:9;36542:17;36533:6;36489:71;:::i;:::-;36570:80;36646:2;36635:9;36631:18;36622:6;36570:80;:::i;:::-;36697:9;36691:4;36687:20;36682:2;36671:9;36667:18;36660:48;36725:108;36828:4;36819:6;36725:108;:::i;:::-;36717:116;;36843:72;36911:2;36900:9;36896:18;36887:6;36843:72;:::i;:::-;36925:73;36993:3;36982:9;36978:19;36969:6;36925:73;:::i;:::-;36174:831;;;;;;;;:::o

Swarm Source

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