ETH Price: $3,068.23 (+3.35%)
Gas: 9 Gwei

Token

Half Grok (GROK0.5)
 

Overview

Max Total Supply

1,000,000 GROK0.5

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.591840815917826048 GROK0.5

Value
$0.00
0x244f5ee0A22B65F59863f51456AB8eD89231b722
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:
halfgrok

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-17
*/

// Twitter/X: https://twitter.com/halfgrokerc
// Telegram: https://t.me/halfgrokerc
// Website: https://halfgrok.com


// How to buy?

// Step 1:
// Swap your $ETH to $GROK
// $GROK- Contract: 0x8390a1da07e376ef7add4be859ba74fb83aa02d5

// Step 2: 

// Swap your $GROK to $GROK0.5



// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.12;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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


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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public GROK = 0x8390a1DA07E376ef7aDd4Be859BA74Fb83aA02D5;

    bool private swapping;

    address public devWallet;

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

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

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

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

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Half Grok", "GROK0.5") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), GROK);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buyDevFee = 20;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 40;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        devWallet = address(0xF2e5FA7d0Ef03a87C8b9f46cE204E419Fab28bC6); 

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 15, "Must keep fees at 15% or less");
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForGROK(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = GROK;

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of GROK
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForGROK(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"GROK","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052738390a1da07e376ef7add4be859ba74fb83aa02d5600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600981526020017f48616c662047726f6b00000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f47524f4b302e350000000000000000000000000000000000000000000000000081525081600390805190602001906200013c929190620009af565b50806004908051906020019062000155929190620009af565b505050620001786200016c6200051060201b60201c565b6200051860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a4816001620005de60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000ac9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620002a892919062000b0c565b6020604051808303816000875af1158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000ac9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033660a0516001620005de60201b60201c565b6000601490506000806028905060008069d3c21bcecceda10000009050606460028262000364919062000b72565b62000370919062000c02565b600881905550606460028262000387919062000b72565b62000393919062000c02565b600a81905550612710600582620003ab919062000b72565b620003b7919062000c02565b60098190555084600d8190555083600e81905550600e54600d54620003dd919062000c3a565b600c81905550826010819055508160118190555060115460105462000403919062000c3a565b600f8190555073f2e5fa7d0ef03a87c8b9f46ce204e419fab28bc6600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048062000472620006c860201b60201c565b6001620006f260201b60201c565b62000493306001620006f260201b60201c565b620004a861dead6001620006f260201b60201c565b620004ca620004bc620006c860201b60201c565b6001620005de60201b60201c565b620004dd306001620005de60201b60201c565b620004f261dead6001620005de60201b60201c565b6200050433826200082c60201b60201c565b50505050505062000e59565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005ee6200051060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000614620006c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200066d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006649062000cf8565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007026200051060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000728620006c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007789062000cf8565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000820919062000d37565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200089f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008969062000da4565b60405180910390fd5b620008b360008383620009a560201b60201c565b8060026000828254620008c7919062000c3a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200091e919062000c3a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000985919062000dd7565b60405180910390a3620009a160008383620009aa60201b60201c565b5050565b505050565b505050565b828054620009bd9062000e23565b90600052602060002090601f016020900481019282620009e1576000855562000a2d565b82601f10620009fc57805160ff191683800117855562000a2d565b8280016001018555821562000a2d579182015b8281111562000a2c57825182559160200191906001019062000a0f565b5b50905062000a3c919062000a40565b5090565b5b8082111562000a5b57600081600090555060010162000a41565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a918262000a64565b9050919050565b62000aa38162000a84565b811462000aaf57600080fd5b50565b60008151905062000ac38162000a98565b92915050565b60006020828403121562000ae25762000ae162000a5f565b5b600062000af28482850162000ab2565b91505092915050565b62000b068162000a84565b82525050565b600060408201905062000b23600083018562000afb565b62000b32602083018462000afb565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b7f8262000b39565b915062000b8c8362000b39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bc85762000bc762000b43565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c0f8262000b39565b915062000c1c8362000b39565b92508262000c2f5762000c2e62000bd3565b5b828204905092915050565b600062000c478262000b39565b915062000c548362000b39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c8c5762000c8b62000b43565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ce060208362000c97565b915062000ced8262000ca8565b602082019050919050565b6000602082019050818103600083015262000d138162000cd1565b9050919050565b60008115159050919050565b62000d318162000d1a565b82525050565b600060208201905062000d4e600083018462000d26565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d8c601f8362000c97565b915062000d998262000d54565b602082019050919050565b6000602082019050818103600083015262000dbf8162000d7d565b9050919050565b62000dd18162000b39565b82525050565b600060208201905062000dee600083018462000dc6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e3c57607f821691505b6020821081141562000e535762000e5262000df4565b5b50919050565b60805160a051613ccd62000eb060003960008181610f2601528181611f73015281816121bc015281816123c701528181612492015261257c015260008181610ba601528181612aaa0152612ad10152613ccd6000f3fe6080604052600436106102555760003560e01c80637571336a11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b806395d89b41116100fd57806395d89b41146106e55780639c3b4fdc14610710578063a0d82dc51461073b578063a9059cbb14610766578063bbc0c742146107a35761025c565b80637571336a146106265780638a8c523c1461064f5780638da5cb5b146106665780638ea5220f14610691578063924de9b7146106bc5761025c565b806327c8f835116101d257806366ca9b831161019657806366ca9b83146105285780636a486a8e146105515780636ddd17131461057c57806370a08231146105a7578063715018a6146105e4578063751039fc146105fb5761025c565b806327c8f8351461043f578063313ce5671461046a57806349bd5a5e146104955780634a62bb65146104c05780634fbee193146104eb5761025c565b80631694505e116102195780631694505e1461035a57806318160ddd146103855780631816467f146103b0578063203e727e146103d957806323b872dd146104025761025c565b806302dbd8f81461026157806305efa0571461028a57806306fdde03146102b5578063095ea7b3146102e057806310d5de531461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bc4565b6109c5565b005b34801561029657600080fd5b5061029f610aae565b6040516102ac9190612c45565b60405180910390f35b3480156102c157600080fd5b506102ca610ad4565b6040516102d79190612cf9565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612d47565b610b66565b6040516103149190612da2565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190612dbd565b610b84565b6040516103519190612da2565b60405180910390f35b34801561036657600080fd5b5061036f610ba4565b60405161037c9190612e49565b60405180910390f35b34801561039157600080fd5b5061039a610bc8565b6040516103a79190612e73565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612dbd565b610bd2565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612e8e565b610d0e565b005b34801561040e57600080fd5b5061042960048036038101906104249190612ebb565b610e1d565b6040516104369190612da2565b60405180910390f35b34801561044b57600080fd5b50610454610f15565b6040516104619190612c45565b60405180910390f35b34801561047657600080fd5b5061047f610f1b565b60405161048c9190612f2a565b60405180910390f35b3480156104a157600080fd5b506104aa610f24565b6040516104b79190612c45565b60405180910390f35b3480156104cc57600080fd5b506104d5610f48565b6040516104e29190612da2565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612dbd565b610f5b565b60405161051f9190612da2565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612bc4565b610fb1565b005b34801561055d57600080fd5b5061056661109b565b6040516105739190612e73565b60405180910390f35b34801561058857600080fd5b506105916110a1565b60405161059e9190612da2565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612dbd565b6110b4565b6040516105db9190612e73565b60405180910390f35b3480156105f057600080fd5b506105f96110fc565b005b34801561060757600080fd5b50610610611184565b60405161061d9190612da2565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612f71565b611224565b005b34801561065b57600080fd5b506106646112fb565b005b34801561067257600080fd5b5061067b6113af565b6040516106889190612c45565b60405180910390f35b34801561069d57600080fd5b506106a66113d9565b6040516106b39190612c45565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612fb1565b6113ff565b005b3480156106f157600080fd5b506106fa611498565b6040516107079190612cf9565b60405180910390f35b34801561071c57600080fd5b5061072561152a565b6040516107329190612e73565b60405180910390f35b34801561074757600080fd5b50610750611530565b60405161075d9190612e73565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612d47565b611536565b60405161079a9190612da2565b60405180910390f35b3480156107af57600080fd5b506107b8611554565b6040516107c59190612da2565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612f71565b611567565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e8e565b61168c565b005b34801561082c57600080fd5b5061083561179b565b6040516108429190612e73565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612e8e565b6117a1565b60405161087f9190612da2565b60405180910390f35b34801561089457600080fd5b5061089d6118f6565b6040516108aa9190612e73565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612fde565b6118fc565b6040516108e79190612e73565b60405180910390f35b3480156108fc57600080fd5b50610905611983565b6040516109129190612e73565b60405180910390f35b34801561092757600080fd5b50610930611989565b60405161093d9190612e73565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612dbd565b61198f565b005b34801561097b57600080fd5b50610984611a87565b6040516109919190612e73565b60405180910390f35b3480156109a657600080fd5b506109af611a8d565b6040516109bc9190612e73565b60405180910390f35b6109cd611a93565b73ffffffffffffffffffffffffffffffffffffffff166109eb6113af565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a389061306a565b60405180910390fd5b8160108190555080601181905550601154601054610a5f91906130b9565b600f81905550600f80541115610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa19061315b565b60405180910390fd5b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ae3906131aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f906131aa565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b5050505050905090565b6000610b7a610b73611a93565b8484611a9b565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bda611a93565b73ffffffffffffffffffffffffffffffffffffffff16610bf86113af565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061306a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d16611a93565b73ffffffffffffffffffffffffffffffffffffffff16610d346113af565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d819061306a565b60405180910390fd5b670de0b6b3a76400006103e86001610da0610bc8565b610daa91906131dc565b610db49190613265565b610dbe9190613265565b811015610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613308565b60405180910390fd5b670de0b6b3a764000081610e1491906131dc565b60088190555050565b6000610e2a848484611c66565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e75611a93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec9061339a565b60405180910390fd5b610f0985610f01611a93565b858403611a9b565b60019150509392505050565b61dead81565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fb9611a93565b73ffffffffffffffffffffffffffffffffffffffff16610fd76113af565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110249061306a565b60405180910390fd5b81600d8190555080600e81905550600e54600d5461104b91906130b9565b600c81905550600a600c541115611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613406565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611104611a93565b73ffffffffffffffffffffffffffffffffffffffff166111226113af565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061306a565b60405180910390fd5b61118260006125c8565b565b600061118e611a93565b73ffffffffffffffffffffffffffffffffffffffff166111ac6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061306a565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61122c611a93565b73ffffffffffffffffffffffffffffffffffffffff1661124a6113af565b73ffffffffffffffffffffffffffffffffffffffff16146112a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112979061306a565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611303611a93565b73ffffffffffffffffffffffffffffffffffffffff166113216113af565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e9061306a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611407611a93565b73ffffffffffffffffffffffffffffffffffffffff166114256113af565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061306a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114a7906131aa565b80601f01602080910402602001604051908101604052809291908181526020018280546114d3906131aa565b80156115205780601f106114f557610100808354040283529160200191611520565b820191906000526020600020905b81548152906001019060200180831161150357829003601f168201915b5050505050905090565b600d5481565b60105481565b600061154a611543611a93565b8484611c66565b6001905092915050565b600b60019054906101000a900460ff1681565b61156f611a93565b73ffffffffffffffffffffffffffffffffffffffff1661158d6113af565b73ffffffffffffffffffffffffffffffffffffffff16146115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da9061306a565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116809190612da2565b60405180910390a25050565b611694611a93565b73ffffffffffffffffffffffffffffffffffffffff166116b26113af565b73ffffffffffffffffffffffffffffffffffffffff1614611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff9061306a565b60405180910390fd5b670de0b6b3a76400006103e8600561171e610bc8565b61172891906131dc565b6117329190613265565b61173c9190613265565b81101561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613498565b60405180910390fd5b670de0b6b3a76400008161179291906131dc565b600a8190555050565b60085481565b60006117ab611a93565b73ffffffffffffffffffffffffffffffffffffffff166117c96113af565b73ffffffffffffffffffffffffffffffffffffffff161461181f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118169061306a565b60405180910390fd5b620186a0600161182d610bc8565b61183791906131dc565b6118419190613265565b821015611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a9061352a565b60405180910390fd5b6103e86005611890610bc8565b61189a91906131dc565b6118a49190613265565b8211156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906135bc565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611997611a93565b73ffffffffffffffffffffffffffffffffffffffff166119b56113af565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a029061306a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061364e565b60405180910390fd5b611a84816125c8565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b02906136e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613772565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c599190612e73565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90613804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d90613896565b60405180910390fd5b6000811415611d6057611d5b8383600061268e565b6125c3565b600b60009054906101000a900460ff161561216a57611d7d6113af565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611deb5750611dbb6113af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e245750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e5e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e775750600660149054906101000a900460ff16155b1561216957600b60019054906101000a900460ff16611f7157601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f315750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613902565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120165750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120bd57600854811115612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613994565b60405180910390fd5b600a5461206c836110b4565b8261207791906130b9565b11156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90613a00565b60405180910390fd5b612168565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661216757600a5461211a836110b4565b8261212591906130b9565b1115612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90613a00565b60405180910390fd5b5b5b5b5b6000612175306110b4565b90506000600954821015905080801561219a5750600b60029054906101000a900460ff165b80156121b35750600660149054906101000a900460ff16155b801561220a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122605750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122b65750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122fa576001600660146101000a81548160ff0219169083151502179055506122de61290f565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123b05750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123ba57600090505b600080600083156125b1577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561242257506000600f54115b156124905761244f6064612441600f548a61296090919063ffffffff16565b61297690919063ffffffff16565b9250600f546011548461246291906131dc565b61246c9190613265565b9150600f546010548461247f91906131dc565b6124899190613265565b9050612558565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124ed57506000600c54115b156125575761251a606461250c600c548a61296090919063ffffffff16565b61297690919063ffffffff16565b9250600c54600e548461252d91906131dc565b6125379190613265565b9150600c54600d548461254a91906131dc565b6125549190613265565b90505b5b600083111561256d5761256c89308561268e565b5b60008211156125a2576125a1307f00000000000000000000000000000000000000000000000000000000000000008461268e565b5b82876125ae9190613a20565b96505b6125bc89898961268e565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590613804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590613896565b60405180910390fd5b61277983838361298c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f690613ac6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289291906130b9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128f69190612e73565b60405180910390a3612909848484612991565b50505050565b600061291a306110b4565b9050600081141561292b575061295e565b601460095461293a91906131dc565b81111561295357601460095461295091906131dc565b90505b61295c81612996565b505b565b6000818361296e91906131dc565b905092915050565b600081836129849190613265565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129b3576129b2613ae6565b5b6040519080825280602002602001820160405280156129e15781602001602082028036833780820191505090505b50905030816000815181106129f9576129f8613b15565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a6a57612a69613b15565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612acf307f000000000000000000000000000000000000000000000000000000000000000084611a9b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b53959493929190613c3d565b600060405180830381600087803b158015612b6d57600080fd5b505af1158015612b81573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba181612b8e565b8114612bac57600080fd5b50565b600081359050612bbe81612b98565b92915050565b60008060408385031215612bdb57612bda612b89565b5b6000612be985828601612baf565b9250506020612bfa85828601612baf565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2f82612c04565b9050919050565b612c3f81612c24565b82525050565b6000602082019050612c5a6000830184612c36565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c9a578082015181840152602081019050612c7f565b83811115612ca9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ccb82612c60565b612cd58185612c6b565b9350612ce5818560208601612c7c565b612cee81612caf565b840191505092915050565b60006020820190508181036000830152612d138184612cc0565b905092915050565b612d2481612c24565b8114612d2f57600080fd5b50565b600081359050612d4181612d1b565b92915050565b60008060408385031215612d5e57612d5d612b89565b5b6000612d6c85828601612d32565b9250506020612d7d85828601612baf565b9150509250929050565b60008115159050919050565b612d9c81612d87565b82525050565b6000602082019050612db76000830184612d93565b92915050565b600060208284031215612dd357612dd2612b89565b5b6000612de184828501612d32565b91505092915050565b6000819050919050565b6000612e0f612e0a612e0584612c04565b612dea565b612c04565b9050919050565b6000612e2182612df4565b9050919050565b6000612e3382612e16565b9050919050565b612e4381612e28565b82525050565b6000602082019050612e5e6000830184612e3a565b92915050565b612e6d81612b8e565b82525050565b6000602082019050612e886000830184612e64565b92915050565b600060208284031215612ea457612ea3612b89565b5b6000612eb284828501612baf565b91505092915050565b600080600060608486031215612ed457612ed3612b89565b5b6000612ee286828701612d32565b9350506020612ef386828701612d32565b9250506040612f0486828701612baf565b9150509250925092565b600060ff82169050919050565b612f2481612f0e565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b612f4e81612d87565b8114612f5957600080fd5b50565b600081359050612f6b81612f45565b92915050565b60008060408385031215612f8857612f87612b89565b5b6000612f9685828601612d32565b9250506020612fa785828601612f5c565b9150509250929050565b600060208284031215612fc757612fc6612b89565b5b6000612fd584828501612f5c565b91505092915050565b60008060408385031215612ff557612ff4612b89565b5b600061300385828601612d32565b925050602061301485828601612d32565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613054602083612c6b565b915061305f8261301e565b602082019050919050565b6000602082019050818103600083015261308381613047565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c482612b8e565b91506130cf83612b8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131045761310361308a565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000613145601d83612c6b565b91506131508261310f565b602082019050919050565b6000602082019050818103600083015261317481613138565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c257607f821691505b602082108114156131d6576131d561317b565b5b50919050565b60006131e782612b8e565b91506131f283612b8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322b5761322a61308a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327082612b8e565b915061327b83612b8e565b92508261328b5761328a613236565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132f2602f83612c6b565b91506132fd82613296565b604082019050919050565b60006020820190508181036000830152613321816132e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613384602883612c6b565b915061338f82613328565b604082019050919050565b600060208201905081810360008301526133b381613377565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006133f0601d83612c6b565b91506133fb826133ba565b602082019050919050565b6000602082019050818103600083015261341f816133e3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613482602483612c6b565b915061348d82613426565b604082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613514603583612c6b565b915061351f826134b8565b604082019050919050565b6000602082019050818103600083015261354381613507565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006135a6603483612c6b565b91506135b18261354a565b604082019050919050565b600060208201905081810360008301526135d581613599565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613638602683612c6b565b9150613643826135dc565b604082019050919050565b600060208201905081810360008301526136678161362b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136ca602483612c6b565b91506136d58261366e565b604082019050919050565b600060208201905081810360008301526136f9816136bd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061375c602283612c6b565b915061376782613700565b604082019050919050565b6000602082019050818103600083015261378b8161374f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ee602583612c6b565b91506137f982613792565b604082019050919050565b6000602082019050818103600083015261381d816137e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613880602383612c6b565b915061388b82613824565b604082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138ec601683612c6b565b91506138f7826138b6565b602082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061397e603583612c6b565b915061398982613922565b604082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139ea601383612c6b565b91506139f5826139b4565b602082019050919050565b60006020820190508181036000830152613a19816139dd565b9050919050565b6000613a2b82612b8e565b9150613a3683612b8e565b925082821015613a4957613a4861308a565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ab0602683612c6b565b9150613abb82613a54565b604082019050919050565b60006020820190508181036000830152613adf81613aa3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b69613b64613b5f84613b44565b612dea565b612b8e565b9050919050565b613b7981613b4e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bb481612c24565b82525050565b6000613bc68383613bab565b60208301905092915050565b6000602082019050919050565b6000613bea82613b7f565b613bf48185613b8a565b9350613bff83613b9b565b8060005b83811015613c30578151613c178882613bba565b9750613c2283613bd2565b925050600181019050613c03565b5085935050505092915050565b600060a082019050613c526000830188612e64565b613c5f6020830187613b70565b8181036040830152613c718186613bdf565b9050613c806060830185612c36565b613c8d6080830184612e64565b969550505050505056fea26469706673582212202707f15a22e742ab22ec8ce7d6e4917329b4681c4082aaa27b2ef5a08a5917ef64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80637571336a11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b806395d89b41116100fd57806395d89b41146106e55780639c3b4fdc14610710578063a0d82dc51461073b578063a9059cbb14610766578063bbc0c742146107a35761025c565b80637571336a146106265780638a8c523c1461064f5780638da5cb5b146106665780638ea5220f14610691578063924de9b7146106bc5761025c565b806327c8f835116101d257806366ca9b831161019657806366ca9b83146105285780636a486a8e146105515780636ddd17131461057c57806370a08231146105a7578063715018a6146105e4578063751039fc146105fb5761025c565b806327c8f8351461043f578063313ce5671461046a57806349bd5a5e146104955780634a62bb65146104c05780634fbee193146104eb5761025c565b80631694505e116102195780631694505e1461035a57806318160ddd146103855780631816467f146103b0578063203e727e146103d957806323b872dd146104025761025c565b806302dbd8f81461026157806305efa0571461028a57806306fdde03146102b5578063095ea7b3146102e057806310d5de531461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bc4565b6109c5565b005b34801561029657600080fd5b5061029f610aae565b6040516102ac9190612c45565b60405180910390f35b3480156102c157600080fd5b506102ca610ad4565b6040516102d79190612cf9565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612d47565b610b66565b6040516103149190612da2565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190612dbd565b610b84565b6040516103519190612da2565b60405180910390f35b34801561036657600080fd5b5061036f610ba4565b60405161037c9190612e49565b60405180910390f35b34801561039157600080fd5b5061039a610bc8565b6040516103a79190612e73565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612dbd565b610bd2565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612e8e565b610d0e565b005b34801561040e57600080fd5b5061042960048036038101906104249190612ebb565b610e1d565b6040516104369190612da2565b60405180910390f35b34801561044b57600080fd5b50610454610f15565b6040516104619190612c45565b60405180910390f35b34801561047657600080fd5b5061047f610f1b565b60405161048c9190612f2a565b60405180910390f35b3480156104a157600080fd5b506104aa610f24565b6040516104b79190612c45565b60405180910390f35b3480156104cc57600080fd5b506104d5610f48565b6040516104e29190612da2565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612dbd565b610f5b565b60405161051f9190612da2565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612bc4565b610fb1565b005b34801561055d57600080fd5b5061056661109b565b6040516105739190612e73565b60405180910390f35b34801561058857600080fd5b506105916110a1565b60405161059e9190612da2565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612dbd565b6110b4565b6040516105db9190612e73565b60405180910390f35b3480156105f057600080fd5b506105f96110fc565b005b34801561060757600080fd5b50610610611184565b60405161061d9190612da2565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612f71565b611224565b005b34801561065b57600080fd5b506106646112fb565b005b34801561067257600080fd5b5061067b6113af565b6040516106889190612c45565b60405180910390f35b34801561069d57600080fd5b506106a66113d9565b6040516106b39190612c45565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612fb1565b6113ff565b005b3480156106f157600080fd5b506106fa611498565b6040516107079190612cf9565b60405180910390f35b34801561071c57600080fd5b5061072561152a565b6040516107329190612e73565b60405180910390f35b34801561074757600080fd5b50610750611530565b60405161075d9190612e73565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612d47565b611536565b60405161079a9190612da2565b60405180910390f35b3480156107af57600080fd5b506107b8611554565b6040516107c59190612da2565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612f71565b611567565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e8e565b61168c565b005b34801561082c57600080fd5b5061083561179b565b6040516108429190612e73565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612e8e565b6117a1565b60405161087f9190612da2565b60405180910390f35b34801561089457600080fd5b5061089d6118f6565b6040516108aa9190612e73565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612fde565b6118fc565b6040516108e79190612e73565b60405180910390f35b3480156108fc57600080fd5b50610905611983565b6040516109129190612e73565b60405180910390f35b34801561092757600080fd5b50610930611989565b60405161093d9190612e73565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612dbd565b61198f565b005b34801561097b57600080fd5b50610984611a87565b6040516109919190612e73565b60405180910390f35b3480156109a657600080fd5b506109af611a8d565b6040516109bc9190612e73565b60405180910390f35b6109cd611a93565b73ffffffffffffffffffffffffffffffffffffffff166109eb6113af565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a389061306a565b60405180910390fd5b8160108190555080601181905550601154601054610a5f91906130b9565b600f81905550600f80541115610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa19061315b565b60405180910390fd5b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ae3906131aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f906131aa565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b5050505050905090565b6000610b7a610b73611a93565b8484611a9b565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bda611a93565b73ffffffffffffffffffffffffffffffffffffffff16610bf86113af565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061306a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d16611a93565b73ffffffffffffffffffffffffffffffffffffffff16610d346113af565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d819061306a565b60405180910390fd5b670de0b6b3a76400006103e86001610da0610bc8565b610daa91906131dc565b610db49190613265565b610dbe9190613265565b811015610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790613308565b60405180910390fd5b670de0b6b3a764000081610e1491906131dc565b60088190555050565b6000610e2a848484611c66565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e75611a93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec9061339a565b60405180910390fd5b610f0985610f01611a93565b858403611a9b565b60019150509392505050565b61dead81565b60006012905090565b7f00000000000000000000000006098c260f7840745fcb3b2ad72fc271c71828b181565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fb9611a93565b73ffffffffffffffffffffffffffffffffffffffff16610fd76113af565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110249061306a565b60405180910390fd5b81600d8190555080600e81905550600e54600d5461104b91906130b9565b600c81905550600a600c541115611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613406565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611104611a93565b73ffffffffffffffffffffffffffffffffffffffff166111226113af565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061306a565b60405180910390fd5b61118260006125c8565b565b600061118e611a93565b73ffffffffffffffffffffffffffffffffffffffff166111ac6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061306a565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61122c611a93565b73ffffffffffffffffffffffffffffffffffffffff1661124a6113af565b73ffffffffffffffffffffffffffffffffffffffff16146112a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112979061306a565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611303611a93565b73ffffffffffffffffffffffffffffffffffffffff166113216113af565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e9061306a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611407611a93565b73ffffffffffffffffffffffffffffffffffffffff166114256113af565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061306a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114a7906131aa565b80601f01602080910402602001604051908101604052809291908181526020018280546114d3906131aa565b80156115205780601f106114f557610100808354040283529160200191611520565b820191906000526020600020905b81548152906001019060200180831161150357829003601f168201915b5050505050905090565b600d5481565b60105481565b600061154a611543611a93565b8484611c66565b6001905092915050565b600b60019054906101000a900460ff1681565b61156f611a93565b73ffffffffffffffffffffffffffffffffffffffff1661158d6113af565b73ffffffffffffffffffffffffffffffffffffffff16146115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da9061306a565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116809190612da2565b60405180910390a25050565b611694611a93565b73ffffffffffffffffffffffffffffffffffffffff166116b26113af565b73ffffffffffffffffffffffffffffffffffffffff1614611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff9061306a565b60405180910390fd5b670de0b6b3a76400006103e8600561171e610bc8565b61172891906131dc565b6117329190613265565b61173c9190613265565b81101561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613498565b60405180910390fd5b670de0b6b3a76400008161179291906131dc565b600a8190555050565b60085481565b60006117ab611a93565b73ffffffffffffffffffffffffffffffffffffffff166117c96113af565b73ffffffffffffffffffffffffffffffffffffffff161461181f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118169061306a565b60405180910390fd5b620186a0600161182d610bc8565b61183791906131dc565b6118419190613265565b821015611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a9061352a565b60405180910390fd5b6103e86005611890610bc8565b61189a91906131dc565b6118a49190613265565b8211156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906135bc565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611997611a93565b73ffffffffffffffffffffffffffffffffffffffff166119b56113af565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a029061306a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061364e565b60405180910390fd5b611a84816125c8565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b02906136e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613772565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c599190612e73565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90613804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d90613896565b60405180910390fd5b6000811415611d6057611d5b8383600061268e565b6125c3565b600b60009054906101000a900460ff161561216a57611d7d6113af565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611deb5750611dbb6113af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e245750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e5e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e775750600660149054906101000a900460ff16155b1561216957600b60019054906101000a900460ff16611f7157601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f315750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6790613902565b60405180910390fd5b5b7f00000000000000000000000006098c260f7840745fcb3b2ad72fc271c71828b173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120165750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120bd57600854811115612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613994565b60405180910390fd5b600a5461206c836110b4565b8261207791906130b9565b11156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90613a00565b60405180910390fd5b612168565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661216757600a5461211a836110b4565b8261212591906130b9565b1115612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90613a00565b60405180910390fd5b5b5b5b5b6000612175306110b4565b90506000600954821015905080801561219a5750600b60029054906101000a900460ff165b80156121b35750600660149054906101000a900460ff16155b801561220a57507f00000000000000000000000006098c260f7840745fcb3b2ad72fc271c71828b173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122605750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122b65750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122fa576001600660146101000a81548160ff0219169083151502179055506122de61290f565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123b05750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123ba57600090505b600080600083156125b1577f00000000000000000000000006098c260f7840745fcb3b2ad72fc271c71828b173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561242257506000600f54115b156124905761244f6064612441600f548a61296090919063ffffffff16565b61297690919063ffffffff16565b9250600f546011548461246291906131dc565b61246c9190613265565b9150600f546010548461247f91906131dc565b6124899190613265565b9050612558565b7f00000000000000000000000006098c260f7840745fcb3b2ad72fc271c71828b173ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124ed57506000600c54115b156125575761251a606461250c600c548a61296090919063ffffffff16565b61297690919063ffffffff16565b9250600c54600e548461252d91906131dc565b6125379190613265565b9150600c54600d548461254a91906131dc565b6125549190613265565b90505b5b600083111561256d5761256c89308561268e565b5b60008211156125a2576125a1307f00000000000000000000000006098c260f7840745fcb3b2ad72fc271c71828b18461268e565b5b82876125ae9190613a20565b96505b6125bc89898961268e565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590613804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590613896565b60405180910390fd5b61277983838361298c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f690613ac6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289291906130b9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128f69190612e73565b60405180910390a3612909848484612991565b50505050565b600061291a306110b4565b9050600081141561292b575061295e565b601460095461293a91906131dc565b81111561295357601460095461295091906131dc565b90505b61295c81612996565b505b565b6000818361296e91906131dc565b905092915050565b600081836129849190613265565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129b3576129b2613ae6565b5b6040519080825280602002602001820160405280156129e15781602001602082028036833780820191505090505b50905030816000815181106129f9576129f8613b15565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a6a57612a69613b15565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612acf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a9b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b53959493929190613c3d565b600060405180830381600087803b158015612b6d57600080fd5b505af1158015612b81573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba181612b8e565b8114612bac57600080fd5b50565b600081359050612bbe81612b98565b92915050565b60008060408385031215612bdb57612bda612b89565b5b6000612be985828601612baf565b9250506020612bfa85828601612baf565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2f82612c04565b9050919050565b612c3f81612c24565b82525050565b6000602082019050612c5a6000830184612c36565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c9a578082015181840152602081019050612c7f565b83811115612ca9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ccb82612c60565b612cd58185612c6b565b9350612ce5818560208601612c7c565b612cee81612caf565b840191505092915050565b60006020820190508181036000830152612d138184612cc0565b905092915050565b612d2481612c24565b8114612d2f57600080fd5b50565b600081359050612d4181612d1b565b92915050565b60008060408385031215612d5e57612d5d612b89565b5b6000612d6c85828601612d32565b9250506020612d7d85828601612baf565b9150509250929050565b60008115159050919050565b612d9c81612d87565b82525050565b6000602082019050612db76000830184612d93565b92915050565b600060208284031215612dd357612dd2612b89565b5b6000612de184828501612d32565b91505092915050565b6000819050919050565b6000612e0f612e0a612e0584612c04565b612dea565b612c04565b9050919050565b6000612e2182612df4565b9050919050565b6000612e3382612e16565b9050919050565b612e4381612e28565b82525050565b6000602082019050612e5e6000830184612e3a565b92915050565b612e6d81612b8e565b82525050565b6000602082019050612e886000830184612e64565b92915050565b600060208284031215612ea457612ea3612b89565b5b6000612eb284828501612baf565b91505092915050565b600080600060608486031215612ed457612ed3612b89565b5b6000612ee286828701612d32565b9350506020612ef386828701612d32565b9250506040612f0486828701612baf565b9150509250925092565b600060ff82169050919050565b612f2481612f0e565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b612f4e81612d87565b8114612f5957600080fd5b50565b600081359050612f6b81612f45565b92915050565b60008060408385031215612f8857612f87612b89565b5b6000612f9685828601612d32565b9250506020612fa785828601612f5c565b9150509250929050565b600060208284031215612fc757612fc6612b89565b5b6000612fd584828501612f5c565b91505092915050565b60008060408385031215612ff557612ff4612b89565b5b600061300385828601612d32565b925050602061301485828601612d32565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613054602083612c6b565b915061305f8261301e565b602082019050919050565b6000602082019050818103600083015261308381613047565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c482612b8e565b91506130cf83612b8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131045761310361308a565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000613145601d83612c6b565b91506131508261310f565b602082019050919050565b6000602082019050818103600083015261317481613138565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c257607f821691505b602082108114156131d6576131d561317b565b5b50919050565b60006131e782612b8e565b91506131f283612b8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322b5761322a61308a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327082612b8e565b915061327b83612b8e565b92508261328b5761328a613236565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132f2602f83612c6b565b91506132fd82613296565b604082019050919050565b60006020820190508181036000830152613321816132e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613384602883612c6b565b915061338f82613328565b604082019050919050565b600060208201905081810360008301526133b381613377565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006133f0601d83612c6b565b91506133fb826133ba565b602082019050919050565b6000602082019050818103600083015261341f816133e3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613482602483612c6b565b915061348d82613426565b604082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613514603583612c6b565b915061351f826134b8565b604082019050919050565b6000602082019050818103600083015261354381613507565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006135a6603483612c6b565b91506135b18261354a565b604082019050919050565b600060208201905081810360008301526135d581613599565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613638602683612c6b565b9150613643826135dc565b604082019050919050565b600060208201905081810360008301526136678161362b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136ca602483612c6b565b91506136d58261366e565b604082019050919050565b600060208201905081810360008301526136f9816136bd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061375c602283612c6b565b915061376782613700565b604082019050919050565b6000602082019050818103600083015261378b8161374f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ee602583612c6b565b91506137f982613792565b604082019050919050565b6000602082019050818103600083015261381d816137e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613880602383612c6b565b915061388b82613824565b604082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138ec601683612c6b565b91506138f7826138b6565b602082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061397e603583612c6b565b915061398982613922565b604082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006139ea601383612c6b565b91506139f5826139b4565b602082019050919050565b60006020820190508181036000830152613a19816139dd565b9050919050565b6000613a2b82612b8e565b9150613a3683612b8e565b925082821015613a4957613a4861308a565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ab0602683612c6b565b9150613abb82613a54565b604082019050919050565b60006020820190508181036000830152613adf81613aa3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b69613b64613b5f84613b44565b612dea565b612b8e565b9050919050565b613b7981613b4e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bb481612c24565b82525050565b6000613bc68383613bab565b60208301905092915050565b6000602082019050919050565b6000613bea82613b7f565b613bf48185613b8a565b9350613bff83613b9b565b8060005b83811015613c30578151613c178882613bba565b9750613c2283613bd2565b925050600181019050613c03565b5085935050505092915050565b600060a082019050613c526000830188612e64565b613c5f6020830187613b70565b8181036040830152613c718186613bdf565b9050613c806060830185612c36565b613c8d6080830184612e64565b969550505050505056fea26469706673582212202707f15a22e742ab22ec8ce7d6e4917329b4681c4082aaa27b2ef5a08a5917ef64736f6c634300080c0033

Deployed Bytecode Sourcemap

23592:10721:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28852:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23833:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8448:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10615:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24554:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23670:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9568:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29368:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27615:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11266:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23773:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9410:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23728:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24084:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29567:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28533:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24307:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24164:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9739:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1683:103;;;;;;;;;;;;;:::i;:::-;;26919:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28162:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26755:112;;;;;;;;;;;;;:::i;:::-;;1032:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23936:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28425:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8667:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24237:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24342:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10079:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24124:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29178:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27898:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23969:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27110:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24203:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10317:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24011:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24268:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1941:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24374:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24051:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28852:318;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28984:7:::1;28971:10;:20;;;;29021:13;29002:16;:32;;;;29074:16;;29061:10;;:29;;;;:::i;:::-;29045:13;:45;;;;29126:2;29109:13:::0;::::1;:19;;29101:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28852:318:::0;;:::o;23833:64::-;;;;;;;;;;;;;:::o;8448:100::-;8502:13;8535:5;8528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8448:100;:::o;10615:169::-;10698:4;10715:39;10724:12;:10;:12::i;:::-;10738:7;10747:6;10715:8;:39::i;:::-;10772:4;10765:11;;10615:169;;;;:::o;24554:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;23670:51::-;;;:::o;9568:108::-;9629:7;9656:12;;9649:19;;9568:108;:::o;29368:189::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29504:9:::1;;;;;;;;;;;29473:41;;29490:12;29473:41;;;;;;;;;;;;29537:12;29525:9;;:24;;;;;;;;;;;;;;;;;;29368:189:::0;:::o;27615:275::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27752:4:::1;27744;27739:1;27723:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27722:26;;;;:::i;:::-;27721:35;;;;:::i;:::-;27711:6;:45;;27689:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;27875:6;27865;:17;;;;:::i;:::-;27842:20;:40;;;;27615:275:::0;:::o;11266:492::-;11406:4;11423:36;11433:6;11441:9;11452:6;11423:9;:36::i;:::-;11472:24;11499:11;:19;11511:6;11499:19;;;;;;;;;;;;;;;:33;11519:12;:10;:12::i;:::-;11499:33;;;;;;;;;;;;;;;;11472:60;;11571:6;11551:16;:26;;11543:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11658:57;11667:6;11675:12;:10;:12::i;:::-;11708:6;11689:16;:25;11658:8;:57::i;:::-;11746:4;11739:11;;;11266:492;;;;;:::o;23773:53::-;23819:6;23773:53;:::o;9410:93::-;9468:5;9493:2;9486:9;;9410:93;:::o;23728:38::-;;;:::o;24084:33::-;;;;;;;;;;;;;:::o;29567:126::-;29633:4;29657:19;:28;29677:7;29657:28;;;;;;;;;;;;;;;;;;;;;;;;;29650:35;;29567:126;;;:::o;28533:311::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28663:7:::1;28651:9;:19;;;;28699:13;28681:15;:31;;;;28750:15;;28738:9;;:27;;;;:::i;:::-;28723:12;:42;;;;28800:2;28784:12;;:18;;28776:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28533:311:::0;;:::o;24307:28::-;;;;:::o;24164:30::-;;;;;;;;;;;;;:::o;9739:127::-;9813:7;9840:9;:18;9850:7;9840:18;;;;;;;;;;;;;;;;9833:25;;9739:127;;;:::o;1683:103::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1748:30:::1;1775:1;1748:18;:30::i;:::-;1683:103::o:0;26919:121::-;26971:4;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27005:5:::1;26988:14;;:22;;;;;;;;;;;;;;;;;;27028:4;27021:11;;26919:121:::0;:::o;28162:167::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28317:4:::1;28275:31;:39;28307:6;28275:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;28162:167:::0;;:::o;26755:112::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26826:4:::1;26810:13;;:20;;;;;;;;;;;;;;;;;;26855:4;26841:11;;:18;;;;;;;;;;;;;;;;;;26755:112::o:0;1032:87::-;1078:7;1105:6;;;;;;;;;;;1098:13;;1032:87;:::o;23936:24::-;;;;;;;;;;;;;:::o;28425:100::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28510:7:::1;28496:11;;:21;;;;;;;;;;;;;;;;;;28425:100:::0;:::o;8667:104::-;8723:13;8756:7;8749:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8667:104;:::o;24237:24::-;;;;:::o;24342:25::-;;;;:::o;10079:175::-;10165:4;10182:42;10192:12;:10;:12::i;:::-;10206:9;10217:6;10182:9;:42::i;:::-;10242:4;10235:11;;10079:175;;;;:::o;24124:33::-;;;;;;;;;;;;;:::o;29178:182::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29294:8:::1;29263:19;:28;29283:7;29263:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29334:7;29318:34;;;29343:8;29318:34;;;;;;:::i;:::-;;;;;;;;29178:182:::0;;:::o;27898:256::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28038:4:::1;28030;28025:1;28009:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28008:26;;;;:::i;:::-;28007:35;;;;:::i;:::-;27997:6;:45;;27975:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;28139:6;28129;:17;;;;:::i;:::-;28117:9;:29;;;;27898:256:::0;:::o;23969:35::-;;;;:::o;27110:497::-;27218:4;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27297:6:::1;27292:1;27276:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27275:28;;;;:::i;:::-;27262:9;:41;;27240:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;27452:4;27447:1;27431:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27430:26;;;;:::i;:::-;27417:9;:39;;27395:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;27568:9;27547:18;:30;;;;27595:4;27588:11;;27110:497:::0;;;:::o;24203:27::-;;;;:::o;10317:151::-;10406:7;10433:11;:18;10445:5;10433:18;;;;;;;;;;;;;;;:27;10452:7;10433:27;;;;;;;;;;;;;;;;10426:34;;10317:151;;;;:::o;24011:33::-;;;;:::o;24268:30::-;;;;:::o;1941:201::-;1263:12;:10;:12::i;:::-;1252:23;;:7;:5;:7::i;:::-;:23;;;1244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2050:1:::1;2030:22;;:8;:22;;;;2022:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2106:28;2125:8;2106:18;:28::i;:::-;1941:201:::0;:::o;24374:31::-;;;;:::o;24051:24::-;;;;:::o;404:98::-;457:7;484:10;477:17;;404:98;:::o;14107:380::-;14260:1;14243:19;;:5;:19;;;;14235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14341:1;14322:21;;:7;:21;;;;14314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14425:6;14395:11;:18;14407:5;14395:18;;;;;;;;;;;;;;;:27;14414:7;14395:27;;;;;;;;;;;;;;;:36;;;;14463:7;14447:32;;14456:5;14447:32;;;14472:6;14447:32;;;;;;:::i;:::-;;;;;;;;14107:380;;;:::o;29701:3679::-;29849:1;29833:18;;:4;:18;;;;29825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29926:1;29912:16;;:2;:16;;;;29904:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29995:1;29985:6;:11;29981:93;;;30013:28;30029:4;30035:2;30039:1;30013:15;:28::i;:::-;30056:7;;29981:93;30090:14;;;;;;;;;;;30086:1430;;;30151:7;:5;:7::i;:::-;30143:15;;:4;:15;;;;:49;;;;;30185:7;:5;:7::i;:::-;30179:13;;:2;:13;;;;30143:49;:86;;;;;30227:1;30213:16;;:2;:16;;;;30143:86;:128;;;;;30264:6;30250:21;;:2;:21;;;;30143:128;:158;;;;;30293:8;;;;;;;;;;;30292:9;30143:158;30121:1384;;;30341:13;;;;;;;;;;;30336:223;;30413:19;:25;30433:4;30413:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30442:19;:23;30462:2;30442:23;;;;;;;;;;;;;;;;;;;;;;;;;30413:52;30379:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;30336:223;30773:13;30765:21;;:4;:21;;;:82;;;;;30812:31;:35;30844:2;30812:35;;;;;;;;;;;;;;;;;;;;;;;;;30811:36;30765:82;30739:751;;;30934:20;;30924:6;:30;;30890:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;31142:9;;31125:13;31135:2;31125:9;:13::i;:::-;31116:6;:22;;;;:::i;:::-;:35;;31082:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30739:751;;;31270:31;:35;31302:2;31270:35;;;;;;;;;;;;;;;;;;;;;;;;;31265:225;;31390:9;;31373:13;31383:2;31373:9;:13::i;:::-;31364:6;:22;;;;:::i;:::-;:35;;31330:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31265:225;30739:751;30121:1384;30086:1430;31528:28;31559:24;31577:4;31559:9;:24::i;:::-;31528:55;;31596:12;31635:18;;31611:20;:42;;31596:57;;31684:7;:35;;;;;31708:11;;;;;;;;;;;31684:35;:61;;;;;31737:8;;;;;;;;;;;31736:9;31684:61;:97;;;;;31768:13;31762:19;;:2;:19;;;31684:97;:140;;;;;31799:19;:25;31819:4;31799:25;;;;;;;;;;;;;;;;;;;;;;;;;31798:26;31684:140;:181;;;;;31842:19;:23;31862:2;31842:23;;;;;;;;;;;;;;;;;;;;;;;;;31841:24;31684:181;31666:313;;;31903:4;31892:8;;:15;;;;;;;;;;;;;;;;;;31924:10;:8;:10::i;:::-;31962:5;31951:8;;:16;;;;;;;;;;;;;;;;;;31666:313;31991:12;32007:8;;;;;;;;;;;32006:9;31991:24;;32117:19;:25;32137:4;32117:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32146:19;:23;32166:2;32146:23;;;;;;;;;;;;;;;;;;;;;;;;;32117:52;32113:100;;;32196:5;32186:15;;32113:100;32225:12;32252:26;32293:20;32406:7;32402:925;;;32464:13;32458:19;;:2;:19;;;:40;;;;;32497:1;32481:13;;:17;32458:40;32454:583;;;32526:34;32556:3;32526:25;32537:13;;32526:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;32519:41;;32628:13;;32608:16;;32601:4;:23;;;;:::i;:::-;32600:41;;;;:::i;:::-;32579:62;;32697:13;;32683:10;;32676:4;:17;;;;:::i;:::-;32675:35;;;;:::i;:::-;32660:50;;32454:583;;;32780:13;32772:21;;:4;:21;;;:41;;;;;32812:1;32797:12;;:16;32772:41;32768:269;;;32841:33;32870:3;32841:24;32852:12;;32841:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;32834:40;;32941:12;;32922:15;;32915:4;:22;;;;:::i;:::-;32914:39;;;;:::i;:::-;32893:60;;33009:12;;32996:9;;32989:4;:16;;;;:::i;:::-;32988:33;;;;:::i;:::-;32973:48;;32768:269;32454:583;33063:1;33057:4;:7;33053:90;;;33085:42;33101:4;33115;33122;33085:15;:42::i;:::-;33053:90;33182:1;33161:18;:22;33157:128;;;33204:65;33228:4;33235:13;33250:18;33204:15;:65::i;:::-;33157:128;33311:4;33301:14;;;;;:::i;:::-;;;32402:925;33339:33;33355:4;33361:2;33365:6;33339:15;:33::i;:::-;29814:3566;;;;;;29701:3679;;;;:::o;2302:191::-;2376:16;2395:6;;;;;;;;;;;2376:25;;2421:8;2412:6;;:17;;;;;;;;;;;;;;;;;;2476:8;2445:40;;2466:8;2445:40;;;;;;;;;;;;2365:128;2302:191;:::o;12248:733::-;12406:1;12388:20;;:6;:20;;;;12380:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12490:1;12469:23;;:9;:23;;;;12461:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12545:47;12566:6;12574:9;12585:6;12545:20;:47::i;:::-;12605:21;12629:9;:17;12639:6;12629:17;;;;;;;;;;;;;;;;12605:41;;12682:6;12665:13;:23;;12657:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12803:6;12787:13;:22;12767:9;:17;12777:6;12767:17;;;;;;;;;;;;;;;:42;;;;12855:6;12831:9;:20;12841:9;12831:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12896:9;12879:35;;12888:6;12879:35;;;12907:6;12879:35;;;;;;:::i;:::-;;;;;;;;12927:46;12947:6;12955:9;12966:6;12927:19;:46::i;:::-;12369:612;12248:733;;;:::o;33968:340::-;34007:23;34033:24;34051:4;34033:9;:24::i;:::-;34007:50;;34091:1;34072:15;:20;34068:59;;;34109:7;;;34068:59;34182:2;34161:18;;:23;;;;:::i;:::-;34143:15;:41;34139:115;;;34240:2;34219:18;;:23;;;;:::i;:::-;34201:41;;34139:115;34266:34;34284:15;34266:17;:34::i;:::-;33996:312;33968:340;:::o;19560:98::-;19618:7;19649:1;19645;:5;;;;:::i;:::-;19638:12;;19560:98;;;;:::o;19959:::-;20017:7;20048:1;20044;:5;;;;:::i;:::-;20037:12;;19959:98;;;;:::o;15087:125::-;;;;:::o;15816:124::-;;;;:::o;33388:572::-;33515:21;33553:1;33539:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33515:40;;33584:4;33566;33571:1;33566:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33610:4;;;;;;;;;;;33600;33605:1;33600:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;33627:62;33644:4;33659:15;33677:11;33627:8;:62::i;:::-;33728:15;:69;;;33812:11;33838:1;33883:4;33902:9;;;;;;;;;;;33926:15;33728:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33444:516;33388:572;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:126::-;1207:7;1247:42;1240:5;1236:54;1225:65;;1170:126;;;:::o;1302:96::-;1339:7;1368:24;1386:5;1368:24;:::i;:::-;1357:35;;1302:96;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:307::-;2104:1;2114:113;2128:6;2125:1;2122:13;2114:113;;;2213:1;2208:3;2204:11;2198:18;2194:1;2189:3;2185:11;2178:39;2150:2;2147:1;2143:10;2138:15;;2114:113;;;2245:6;2242:1;2239:13;2236:101;;;2325:1;2316:6;2311:3;2307:16;2300:27;2236:101;2085:258;2036:307;;;:::o;2349:102::-;2390:6;2441:2;2437:7;2432:2;2425:5;2421:14;2417:28;2407:38;;2349:102;;;:::o;2457:364::-;2545:3;2573:39;2606:5;2573:39;:::i;:::-;2628:71;2692:6;2687:3;2628:71;:::i;:::-;2621:78;;2708:52;2753:6;2748:3;2741:4;2734:5;2730:16;2708:52;:::i;:::-;2785:29;2807:6;2785:29;:::i;:::-;2780:3;2776:39;2769:46;;2549:272;2457:364;;;;:::o;2827:313::-;2940:4;2978:2;2967:9;2963:18;2955:26;;3027:9;3021:4;3017:20;3013:1;3002:9;2998:17;2991:47;3055:78;3128:4;3119:6;3055:78;:::i;:::-;3047:86;;2827:313;;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:60::-;4689:3;4710:5;4703:12;;4661:60;;;:::o;4727:142::-;4777:9;4810:53;4828:34;4837:24;4855:5;4837:24;:::i;:::-;4828:34;:::i;:::-;4810:53;:::i;:::-;4797:66;;4727:142;;;:::o;4875:126::-;4925:9;4958:37;4989:5;4958:37;:::i;:::-;4945:50;;4875:126;;;:::o;5007:152::-;5083:9;5116:37;5147:5;5116:37;:::i;:::-;5103:50;;5007:152;;;:::o;5165:183::-;5278:63;5335:5;5278:63;:::i;:::-;5273:3;5266:76;5165:183;;:::o;5354:274::-;5473:4;5511:2;5500:9;5496:18;5488:26;;5524:97;5618:1;5607:9;5603:17;5594:6;5524:97;:::i;:::-;5354:274;;;;:::o;5634:118::-;5721:24;5739:5;5721:24;:::i;:::-;5716:3;5709:37;5634:118;;:::o;5758:222::-;5851:4;5889:2;5878:9;5874:18;5866:26;;5902:71;5970:1;5959:9;5955:17;5946:6;5902:71;:::i;:::-;5758:222;;;;:::o;5986:329::-;6045:6;6094:2;6082:9;6073:7;6069:23;6065:32;6062:119;;;6100:79;;:::i;:::-;6062:119;6220:1;6245:53;6290:7;6281:6;6270:9;6266:22;6245:53;:::i;:::-;6235:63;;6191:117;5986:329;;;;:::o;6321:619::-;6398:6;6406;6414;6463:2;6451:9;6442:7;6438:23;6434:32;6431:119;;;6469:79;;:::i;:::-;6431:119;6589:1;6614:53;6659:7;6650:6;6639:9;6635:22;6614:53;:::i;:::-;6604:63;;6560:117;6716:2;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6687:118;6844:2;6870:53;6915:7;6906:6;6895:9;6891:22;6870:53;:::i;:::-;6860:63;;6815:118;6321:619;;;;;:::o;6946:86::-;6981:7;7021:4;7014:5;7010:16;6999:27;;6946:86;;;:::o;7038:112::-;7121:22;7137:5;7121:22;:::i;:::-;7116:3;7109:35;7038:112;;:::o;7156:214::-;7245:4;7283:2;7272:9;7268:18;7260:26;;7296:67;7360:1;7349:9;7345:17;7336:6;7296:67;:::i;:::-;7156:214;;;;:::o;7376:116::-;7446:21;7461:5;7446:21;:::i;:::-;7439:5;7436:32;7426:60;;7482:1;7479;7472:12;7426:60;7376:116;:::o;7498:133::-;7541:5;7579:6;7566:20;7557:29;;7595:30;7619:5;7595:30;:::i;:::-;7498:133;;;;:::o;7637:468::-;7702:6;7710;7759:2;7747:9;7738:7;7734:23;7730:32;7727:119;;;7765:79;;:::i;:::-;7727:119;7885:1;7910:53;7955:7;7946:6;7935:9;7931:22;7910:53;:::i;:::-;7900:63;;7856:117;8012:2;8038:50;8080:7;8071:6;8060:9;8056:22;8038:50;:::i;:::-;8028:60;;7983:115;7637:468;;;;;:::o;8111:323::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:50;8409:7;8400:6;8389:9;8385:22;8367:50;:::i;:::-;8357:60;;8313:114;8111:323;;;;:::o;8440:474::-;8508:6;8516;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8818:2;8844:53;8889:7;8880:6;8869:9;8865:22;8844:53;:::i;:::-;8834:63;;8789:118;8440:474;;;;;:::o;8920:182::-;9060:34;9056:1;9048:6;9044:14;9037:58;8920:182;:::o;9108:366::-;9250:3;9271:67;9335:2;9330:3;9271:67;:::i;:::-;9264:74;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9108:366;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:180::-;9953:77;9950:1;9943:88;10050:4;10047:1;10040:15;10074:4;10071:1;10064:15;10091:305;10131:3;10150:20;10168:1;10150:20;:::i;:::-;10145:25;;10184:20;10202:1;10184:20;:::i;:::-;10179:25;;10338:1;10270:66;10266:74;10263:1;10260:81;10257:107;;;10344:18;;:::i;:::-;10257:107;10388:1;10385;10381:9;10374:16;;10091:305;;;;:::o;10402:179::-;10542:31;10538:1;10530:6;10526:14;10519:55;10402:179;:::o;10587:366::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:419::-;11125:4;11163:2;11152:9;11148:18;11140:26;;11212:9;11206:4;11202:20;11198:1;11187:9;11183:17;11176:47;11240:131;11366:4;11240:131;:::i;:::-;11232:139;;10959:419;;;:::o;11384:180::-;11432:77;11429:1;11422:88;11529:4;11526:1;11519:15;11553:4;11550:1;11543:15;11570:320;11614:6;11651:1;11645:4;11641:12;11631:22;;11698:1;11692:4;11688:12;11719:18;11709:81;;11775:4;11767:6;11763:17;11753:27;;11709:81;11837:2;11829:6;11826:14;11806:18;11803:38;11800:84;;;11856:18;;:::i;:::-;11800:84;11621:269;11570:320;;;:::o;11896:348::-;11936:7;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12181:1;12113:66;12109:74;12106:1;12103:81;12098:1;12091:9;12084:17;12080:105;12077:131;;;12188:18;;:::i;:::-;12077:131;12236:1;12233;12229:9;12218:20;;11896:348;;;;:::o;12250:180::-;12298:77;12295:1;12288:88;12395:4;12392:1;12385:15;12419:4;12416:1;12409:15;12436:185;12476:1;12493:20;12511:1;12493:20;:::i;:::-;12488:25;;12527:20;12545:1;12527:20;:::i;:::-;12522:25;;12566:1;12556:35;;12571:18;;:::i;:::-;12556:35;12613:1;12610;12606:9;12601:14;;12436:185;;;;:::o;12627:234::-;12767:34;12763:1;12755:6;12751:14;12744:58;12836:17;12831:2;12823:6;12819:15;12812:42;12627:234;:::o;12867:366::-;13009:3;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13106:93;13195:3;13106:93;:::i;:::-;13224:2;13219:3;13215:12;13208:19;;12867:366;;;:::o;13239:419::-;13405:4;13443:2;13432:9;13428:18;13420:26;;13492:9;13486:4;13482:20;13478:1;13467:9;13463:17;13456:47;13520:131;13646:4;13520:131;:::i;:::-;13512:139;;13239:419;;;:::o;13664:227::-;13804:34;13800:1;13792:6;13788:14;13781:58;13873:10;13868:2;13860:6;13856:15;13849:35;13664:227;:::o;13897:366::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:419::-;14435:4;14473:2;14462:9;14458:18;14450:26;;14522:9;14516:4;14512:20;14508:1;14497:9;14493:17;14486:47;14550:131;14676:4;14550:131;:::i;:::-;14542:139;;14269:419;;;:::o;14694:179::-;14834:31;14830:1;14822:6;14818:14;14811:55;14694:179;:::o;14879:366::-;15021:3;15042:67;15106:2;15101:3;15042:67;:::i;:::-;15035:74;;15118:93;15207:3;15118:93;:::i;:::-;15236:2;15231:3;15227:12;15220:19;;14879:366;;;:::o;15251:419::-;15417:4;15455:2;15444:9;15440:18;15432:26;;15504:9;15498:4;15494:20;15490:1;15479:9;15475:17;15468:47;15532:131;15658:4;15532:131;:::i;:::-;15524:139;;15251:419;;;:::o;15676:223::-;15816:34;15812:1;15804:6;15800:14;15793:58;15885:6;15880:2;15872:6;15868:15;15861:31;15676:223;:::o;15905:366::-;16047:3;16068:67;16132:2;16127:3;16068:67;:::i;:::-;16061:74;;16144:93;16233:3;16144:93;:::i;:::-;16262:2;16257:3;16253:12;16246:19;;15905:366;;;:::o;16277:419::-;16443:4;16481:2;16470:9;16466:18;16458:26;;16530:9;16524:4;16520:20;16516:1;16505:9;16501:17;16494:47;16558:131;16684:4;16558:131;:::i;:::-;16550:139;;16277:419;;;:::o;16702:240::-;16842:34;16838:1;16830:6;16826:14;16819:58;16911:23;16906:2;16898:6;16894:15;16887:48;16702:240;:::o;16948:366::-;17090:3;17111:67;17175:2;17170:3;17111:67;:::i;:::-;17104:74;;17187:93;17276:3;17187:93;:::i;:::-;17305:2;17300:3;17296:12;17289:19;;16948:366;;;:::o;17320:419::-;17486:4;17524:2;17513:9;17509:18;17501:26;;17573:9;17567:4;17563:20;17559:1;17548:9;17544:17;17537:47;17601:131;17727:4;17601:131;:::i;:::-;17593:139;;17320:419;;;:::o;17745:239::-;17885:34;17881:1;17873:6;17869:14;17862:58;17954:22;17949:2;17941:6;17937:15;17930:47;17745:239;:::o;17990:366::-;18132:3;18153:67;18217:2;18212:3;18153:67;:::i;:::-;18146:74;;18229:93;18318:3;18229:93;:::i;:::-;18347:2;18342:3;18338:12;18331:19;;17990:366;;;:::o;18362:419::-;18528:4;18566:2;18555:9;18551:18;18543:26;;18615:9;18609:4;18605:20;18601:1;18590:9;18586:17;18579:47;18643:131;18769:4;18643:131;:::i;:::-;18635:139;;18362:419;;;:::o;18787:225::-;18927:34;18923:1;18915:6;18911:14;18904:58;18996:8;18991:2;18983:6;18979:15;18972:33;18787:225;:::o;19018:366::-;19160:3;19181:67;19245:2;19240:3;19181:67;:::i;:::-;19174:74;;19257:93;19346:3;19257:93;:::i;:::-;19375:2;19370:3;19366:12;19359:19;;19018:366;;;:::o;19390:419::-;19556:4;19594:2;19583:9;19579:18;19571:26;;19643:9;19637:4;19633:20;19629:1;19618:9;19614:17;19607:47;19671:131;19797:4;19671:131;:::i;:::-;19663:139;;19390:419;;;:::o;19815:223::-;19955:34;19951:1;19943:6;19939:14;19932:58;20024:6;20019:2;20011:6;20007:15;20000:31;19815:223;:::o;20044:366::-;20186:3;20207:67;20271:2;20266:3;20207:67;:::i;:::-;20200:74;;20283:93;20372:3;20283:93;:::i;:::-;20401:2;20396:3;20392:12;20385:19;;20044:366;;;:::o;20416:419::-;20582:4;20620:2;20609:9;20605:18;20597:26;;20669:9;20663:4;20659:20;20655:1;20644:9;20640:17;20633:47;20697:131;20823:4;20697:131;:::i;:::-;20689:139;;20416:419;;;:::o;20841:221::-;20981:34;20977:1;20969:6;20965:14;20958:58;21050:4;21045:2;21037:6;21033:15;21026:29;20841:221;:::o;21068:366::-;21210:3;21231:67;21295:2;21290:3;21231:67;:::i;:::-;21224:74;;21307:93;21396:3;21307:93;:::i;:::-;21425:2;21420:3;21416:12;21409:19;;21068:366;;;:::o;21440:419::-;21606:4;21644:2;21633:9;21629:18;21621:26;;21693:9;21687:4;21683:20;21679:1;21668:9;21664:17;21657:47;21721:131;21847:4;21721:131;:::i;:::-;21713:139;;21440:419;;;:::o;21865:224::-;22005:34;22001:1;21993:6;21989:14;21982:58;22074:7;22069:2;22061:6;22057:15;22050:32;21865:224;:::o;22095:366::-;22237:3;22258:67;22322:2;22317:3;22258:67;:::i;:::-;22251:74;;22334:93;22423:3;22334:93;:::i;:::-;22452:2;22447:3;22443:12;22436:19;;22095:366;;;:::o;22467:419::-;22633:4;22671:2;22660:9;22656:18;22648:26;;22720:9;22714:4;22710:20;22706:1;22695:9;22691:17;22684:47;22748:131;22874:4;22748:131;:::i;:::-;22740:139;;22467:419;;;:::o;22892:222::-;23032:34;23028:1;23020:6;23016:14;23009:58;23101:5;23096:2;23088:6;23084:15;23077:30;22892:222;:::o;23120:366::-;23262:3;23283:67;23347:2;23342:3;23283:67;:::i;:::-;23276:74;;23359:93;23448:3;23359:93;:::i;:::-;23477:2;23472:3;23468:12;23461:19;;23120:366;;;:::o;23492:419::-;23658:4;23696:2;23685:9;23681:18;23673:26;;23745:9;23739:4;23735:20;23731:1;23720:9;23716:17;23709:47;23773:131;23899:4;23773:131;:::i;:::-;23765:139;;23492:419;;;:::o;23917:172::-;24057:24;24053:1;24045:6;24041:14;24034:48;23917:172;:::o;24095:366::-;24237:3;24258:67;24322:2;24317:3;24258:67;:::i;:::-;24251:74;;24334:93;24423:3;24334:93;:::i;:::-;24452:2;24447:3;24443:12;24436:19;;24095:366;;;:::o;24467:419::-;24633:4;24671:2;24660:9;24656:18;24648:26;;24720:9;24714:4;24710:20;24706:1;24695:9;24691:17;24684:47;24748:131;24874:4;24748:131;:::i;:::-;24740:139;;24467:419;;;:::o;24892:240::-;25032:34;25028:1;25020:6;25016:14;25009:58;25101:23;25096:2;25088:6;25084:15;25077:48;24892:240;:::o;25138:366::-;25280:3;25301:67;25365:2;25360:3;25301:67;:::i;:::-;25294:74;;25377:93;25466:3;25377:93;:::i;:::-;25495:2;25490:3;25486:12;25479:19;;25138:366;;;:::o;25510:419::-;25676:4;25714:2;25703:9;25699:18;25691:26;;25763:9;25757:4;25753:20;25749:1;25738:9;25734:17;25727:47;25791:131;25917:4;25791:131;:::i;:::-;25783:139;;25510:419;;;:::o;25935:169::-;26075:21;26071:1;26063:6;26059:14;26052:45;25935:169;:::o;26110:366::-;26252:3;26273:67;26337:2;26332:3;26273:67;:::i;:::-;26266:74;;26349:93;26438:3;26349:93;:::i;:::-;26467:2;26462:3;26458:12;26451:19;;26110:366;;;:::o;26482:419::-;26648:4;26686:2;26675:9;26671:18;26663:26;;26735:9;26729:4;26725:20;26721:1;26710:9;26706:17;26699:47;26763:131;26889:4;26763:131;:::i;:::-;26755:139;;26482:419;;;:::o;26907:191::-;26947:4;26967:20;26985:1;26967:20;:::i;:::-;26962:25;;27001:20;27019:1;27001:20;:::i;:::-;26996:25;;27040:1;27037;27034:8;27031:34;;;27045:18;;:::i;:::-;27031:34;27090:1;27087;27083:9;27075:17;;26907:191;;;;:::o;27104:225::-;27244:34;27240:1;27232:6;27228:14;27221:58;27313:8;27308:2;27300:6;27296:15;27289:33;27104:225;:::o;27335:366::-;27477:3;27498:67;27562:2;27557:3;27498:67;:::i;:::-;27491:74;;27574:93;27663:3;27574:93;:::i;:::-;27692:2;27687:3;27683:12;27676:19;;27335:366;;;:::o;27707:419::-;27873:4;27911:2;27900:9;27896:18;27888:26;;27960:9;27954:4;27950:20;27946:1;27935:9;27931:17;27924:47;27988:131;28114:4;27988:131;:::i;:::-;27980:139;;27707:419;;;:::o;28132:180::-;28180:77;28177:1;28170:88;28277:4;28274:1;28267:15;28301:4;28298:1;28291:15;28318:180;28366:77;28363:1;28356:88;28463:4;28460:1;28453:15;28487:4;28484:1;28477:15;28504:85;28549:7;28578:5;28567:16;;28504:85;;;:::o;28595:158::-;28653:9;28686:61;28704:42;28713:32;28739:5;28713:32;:::i;:::-;28704:42;:::i;:::-;28686:61;:::i;:::-;28673:74;;28595:158;;;:::o;28759:147::-;28854:45;28893:5;28854:45;:::i;:::-;28849:3;28842:58;28759:147;;:::o;28912:114::-;28979:6;29013:5;29007:12;28997:22;;28912:114;;;:::o;29032:184::-;29131:11;29165:6;29160:3;29153:19;29205:4;29200:3;29196:14;29181:29;;29032:184;;;;:::o;29222:132::-;29289:4;29312:3;29304:11;;29342:4;29337:3;29333:14;29325:22;;29222:132;;;:::o;29360:108::-;29437:24;29455:5;29437:24;:::i;:::-;29432:3;29425:37;29360:108;;:::o;29474:179::-;29543:10;29564:46;29606:3;29598:6;29564:46;:::i;:::-;29642:4;29637:3;29633:14;29619:28;;29474:179;;;;:::o;29659:113::-;29729:4;29761;29756:3;29752:14;29744:22;;29659:113;;;:::o;29808:732::-;29927:3;29956:54;30004:5;29956:54;:::i;:::-;30026:86;30105:6;30100:3;30026:86;:::i;:::-;30019:93;;30136:56;30186:5;30136:56;:::i;:::-;30215:7;30246:1;30231:284;30256:6;30253:1;30250:13;30231:284;;;30332:6;30326:13;30359:63;30418:3;30403:13;30359:63;:::i;:::-;30352:70;;30445:60;30498:6;30445:60;:::i;:::-;30435:70;;30291:224;30278:1;30275;30271:9;30266:14;;30231:284;;;30235:14;30531:3;30524:10;;29932:608;;;29808:732;;;;:::o;30546:831::-;30809:4;30847:3;30836:9;30832:19;30824:27;;30861:71;30929:1;30918:9;30914:17;30905:6;30861:71;:::i;:::-;30942:80;31018:2;31007:9;31003:18;30994:6;30942:80;:::i;:::-;31069:9;31063:4;31059:20;31054:2;31043:9;31039:18;31032:48;31097:108;31200:4;31191:6;31097:108;:::i;:::-;31089:116;;31215:72;31283:2;31272:9;31268:18;31259:6;31215:72;:::i;:::-;31297:73;31365:3;31354:9;31350:19;31341:6;31297:73;:::i;:::-;30546:831;;;;;;;;:::o

Swarm Source

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