ETH Price: $3,422.57 (+0.52%)
Gas: 7 Gwei

Token

Derabit (DABI)
 

Overview

Max Total Supply

1,000,000 DABI

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,558.220388888023993669 DABI

Value
$0.00
0x30099fd5119f891c4b8ed0925420bc7d950e460e
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:
Derabit

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
    Website: https://derabit.org/
    Twitter: https://twitter.com/Derabit_org
    Telegram: https://t.me/Derabit_Portal
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Derabit.sol

//SPDX-License-Identifier: MIT

/**
    Website: https://derabit.org/
    Twitter: https://twitter.com/Derabit_org
    Telegram: https://t.me/Derabit_Portal
*/



pragma solidity 0.8.19;

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

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

    function WETH() external pure returns (address);

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

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

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

    uint256 private constant _totalSupply = 1000000 * 1e18;

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

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



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

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1000; //after 0.1% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;
    bool public launchTax;


    //Wallets
    address public marketingWallet = 0x06c74e9f04Fa6FCea21bD1F2F5C0e0b76baAef79 ;

    uint256 public maxWalletPercentage = 2;


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

    constructor() ERC20("Derabit", "DABI") {

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

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


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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526040518060200160405280600581525060066000820151816000015550506040518060200160405280600581525060076000820151816000015550506040518060200160405280600581525060086000820151816000015550506103e869d3c21bcecceda1000000620000789190620007d9565b600b556001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055507306c74e9f04fa6fcea21bd1f2f5c0e0b76baaef79600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002600f553480156200014e57600080fd5b506040518060400160405280600781526020017f44657261626974000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44414249000000000000000000000000000000000000000000000000000000008152508160039081620001cc919062000a81565b508060049081620001de919062000a81565b50505062000201620001f56200052c60201b60201c565b6200053460201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000297573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bd919062000bd2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000327573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034d919062000bd2565b6040518363ffffffff1660e01b81526004016200036c92919062000c15565b6020604051808303816000875af11580156200038c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b2919062000bd2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200050b3369d3c21bcecceda1000000620005fa60201b60201c565b6000600e60016101000a81548160ff02191690831515021790555062000d2e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006639062000ca3565b60405180910390fd5b62000680600083836200076760201b60201c565b806002600082825462000694919062000cc5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000747919062000d11565b60405180910390a362000763600083836200076c60201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007e68262000771565b9150620007f38362000771565b9250826200080657620008056200077b565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200089357607f821691505b602082108103620008a957620008a86200084b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008d4565b6200091f8683620008d4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009626200095c620009568462000771565b62000937565b62000771565b9050919050565b6000819050919050565b6200097e8362000941565b620009966200098d8262000969565b848454620008e1565b825550505050565b600090565b620009ad6200099e565b620009ba81848462000973565b505050565b5b81811015620009e257620009d6600082620009a3565b600181019050620009c0565b5050565b601f82111562000a3157620009fb81620008af565b62000a0684620008c4565b8101602085101562000a16578190505b62000a2e62000a2585620008c4565b830182620009bf565b50505b505050565b600082821c905092915050565b600062000a566000198460080262000a36565b1980831691505092915050565b600062000a71838362000a43565b9150826002028217905092915050565b62000a8c8262000811565b67ffffffffffffffff81111562000aa85762000aa76200081c565b5b62000ab482546200087a565b62000ac1828285620009e6565b600060209050601f83116001811462000af9576000841562000ae4578287015190505b62000af0858262000a63565b86555062000b60565b601f19841662000b0986620008af565b60005b8281101562000b335784890151825560018201915060208501945060208101905062000b0c565b8683101562000b53578489015162000b4f601f89168262000a43565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9a8262000b6d565b9050919050565b62000bac8162000b8d565b811462000bb857600080fd5b50565b60008151905062000bcc8162000ba1565b92915050565b60006020828403121562000beb5762000bea62000b68565b5b600062000bfb8482850162000bbb565b91505092915050565b62000c0f8162000b8d565b82525050565b600060408201905062000c2c600083018562000c04565b62000c3b602083018462000c04565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c8b601f8362000c42565b915062000c988262000c53565b602082019050919050565b6000602082019050818103600083015262000cbe8162000c7c565b9050919050565b600062000cd28262000771565b915062000cdf8362000771565b925082820190508082111562000cfa5762000cf9620007aa565b5b92915050565b62000d0b8162000771565b82525050565b600060208201905062000d28600083018462000d00565b92915050565b60805160a0516139e462000d936000396000818161111e0152818161168b015281816116e201528181611a6401528181611c4101528181611f460152611fa6015260008181610d320152818161249301528181612574015261259b01526139e46000f3fe6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e14610818578063e2f4560514610855578063ef586f7114610880578063f2fde38b14610897578063f66895a3146108c05761023b565b8063a8b0898214610731578063a9059cbb1461075c578063afa4f3b214610799578063b8863115146107c2578063c876d0b9146107ed5761023b565b80638d456754116100f25780638d4567541461065e5780638da5cb5b1461067557806395d89b41146106a0578063a3ca847d146106cb578063a457c2d7146106f45761023b565b806376be96f31461059d5780637a845ece146105c8578063830351ff146105f1578063864701a51461061c5780638a8c523c146106475761023b565b806339509351116101bc57806370a082311161018057806370a08231146104dc578063715018a614610519578063735de9f714610530578063751039fc1461055b57806375f0a874146105725761023b565b806339509351146103f35780634a74bb02146104305780634ada218b1461045b5780635331803c14610486578063599ca397146104b15761023b565b806318160ddd1161020357806318160ddd146102fa5780631950c21814610325578063224611731461036257806323b872dd1461038b578063313ce567146103c85761023b565b806306fdde03146102405780630940bbc71461026b578063095ea7b3146102945780630c424284146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108eb565b60405161026291906126cb565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612728565b61097d565b005b3480156102a057600080fd5b506102bb60048036038101906102b691906127b3565b610a03565b6040516102c8919061280e565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612855565b610a26565b005b34801561030657600080fd5b5061030f610acf565b60405161031c91906128a4565b60405180910390f35b34801561033157600080fd5b5061034c600480360381019061034791906128bf565b610ad9565b604051610359919061280e565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906128bf565b610b2f565b005b34801561039757600080fd5b506103b260048036038101906103ad91906128ec565b610c2d565b6040516103bf919061280e565b60405180910390f35b3480156103d457600080fd5b506103dd610c5c565b6040516103ea919061295b565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906127b3565b610c65565b604051610427919061280e565b60405180910390f35b34801561043c57600080fd5b50610445610c9c565b604051610452919061280e565b60405180910390f35b34801561046757600080fd5b50610470610caf565b60405161047d919061280e565b60405180910390f35b34801561049257600080fd5b5061049b610cc2565b6040516104a891906128a4565b60405180910390f35b3480156104bd57600080fd5b506104c6610cce565b6040516104d391906128a4565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906128bf565b610cd4565b60405161051091906128a4565b60405180910390f35b34801561052557600080fd5b5061052e610d1c565b005b34801561053c57600080fd5b50610545610d30565b60405161055291906129d5565b60405180910390f35b34801561056757600080fd5b50610570610d54565b005b34801561057e57600080fd5b50610587610d8c565b60405161059491906129ff565b60405180910390f35b3480156105a957600080fd5b506105b2610db2565b6040516105bf91906128a4565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190612728565b610db8565b005b3480156105fd57600080fd5b50610606610e88565b604051610613919061280e565b60405180910390f35b34801561062857600080fd5b50610631610e9b565b60405161063e91906128a4565b60405180910390f35b34801561065357600080fd5b5061065c610ea7565b005b34801561066a57600080fd5b50610673610f3e565b005b34801561068157600080fd5b5061068a610f63565b60405161069791906129ff565b60405180910390f35b3480156106ac57600080fd5b506106b5610f8d565b6040516106c291906126cb565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612728565b61101f565b005b34801561070057600080fd5b5061071b600480360381019061071691906127b3565b6110a5565b604051610728919061280e565b60405180910390f35b34801561073d57600080fd5b5061074661111c565b60405161075391906129ff565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e91906127b3565b611140565b604051610790919061280e565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190612728565b611163565b005b3480156107ce57600080fd5b506107d7611216565b6040516107e4919061280e565b60405180910390f35b3480156107f957600080fd5b50610802611229565b60405161080f919061280e565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190612a1a565b61123c565b60405161084c91906128a4565b60405180910390f35b34801561086157600080fd5b5061086a6112c3565b60405161087791906128a4565b60405180910390f35b34801561088c57600080fd5b506108956112c9565b005b3480156108a357600080fd5b506108be60048036038101906108b991906128bf565b61130a565b005b3480156108cc57600080fd5b506108d561138d565b6040516108e291906128a4565b60405180910390f35b6060600380546108fa90612a89565b80601f016020809104026020016040519081016040528092919081815260200182805461092690612a89565b80156109735780601f1061094857610100808354040283529160200191610973565b820191906000526020600020905b81548152906001019060200180831161095657829003601f168201915b5050505050905090565b610985611399565b80600760000181905550601e8111156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612b2c565b60405180910390fd5b807f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5560405160405180910390a250565b600080610a0e611417565b9050610a1b81858561141f565b600191505092915050565b610a2e611399565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d60405160405180910390a35050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610b37611399565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90612bbe565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761960405160405180910390a250565b600080610c38611417565b9050610c458582856115e8565b610c50858585611674565b60019150509392505050565b60006012905090565b600080610c70611417565b9050610c91818585610c82858961123c565b610c8c9190612c0d565b61141f565b600191505092915050565b600c60009054906101000a900460ff1681565b600c60029054906101000a900460ff1681565b60088060000154905081565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d24611399565b610d2e6000611cd3565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d5c611399565b6064600f819055506000600e60006101000a81548160ff0219169083151502179055506000600860000181905550565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610dc0611399565b60028111610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612cb3565b60405180910390fd5b6064811115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90612d45565b60405180910390fd5b80600f819055507f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df081604051610e7d91906128a4565b60405180910390a150565b600e60019054906101000a900460ff1681565b60068060000154905081565b610eaf611399565b600c60029054906101000a900460ff1615610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612db1565b60405180910390fd5b6001600c60026101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff02191690831515021790555043600d81905550565b610f46611399565b6000600e60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f9c90612a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc890612a89565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b611027611399565b80600660000181905550601e811115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612b2c565b60405180910390fd5b807f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb60405160405180910390a250565b6000806110b0611417565b905060006110be828661123c565b905083811015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612e43565b60405180910390fd5b611110828686840361141f565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061114b611417565b9050611158818585611674565b600191505092915050565b61116b611399565b60008111801561119e57506103e8600569d3c21bcecceda10000006111909190612e63565b61119a9190612ed4565b8111155b6111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490612f9d565b60405180910390fd5b80600b81905550600b547f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b600c60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6112d1611399565b600c60009054906101000a900460ff166112ec5760016112ef565b60005b600c60006101000a81548160ff021916908315150217905550565b611312611399565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061302f565b60405180910390fd5b61138a81611cd3565b50565b60078060000154905081565b6113a1611417565b73ffffffffffffffffffffffffffffffffffffffff166113bf610f63565b73ffffffffffffffffffffffffffffffffffffffff1614611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c9061309b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061312d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906131bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115db91906128a4565b60405180910390a3505050565b60006115f4848461123c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461166e5781811015611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579061322b565b60405180910390fd5b61166d848484840361141f565b5b50505050565b600e60009054906101000a900460ff16156117fd577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561173157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117fc5743600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906132bd565b60405180910390fd5b43600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613329565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613395565b60405180910390fd5b6000811161191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613427565b60405180910390fd5b60006064600f5469d3c21bcecceda100000061193a9190612e63565b6119449190612ed4565b9050600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119ea5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a235750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a5b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ab357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b0f578082611ac385610cd4565b611acd9190612c0d565b1115611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613493565b60405180910390fd5b5b6000611b1c858585611d99565b90506000600b54611b2c30610cd4565b10159050600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bd45750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cc057600c60029054906101000a900460ff16611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906134ff565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16148015611c8f5750600c60009054906101000a900460ff165b8015611c985750805b8015611cb15750600c60019054906101000a900460ff16155b15611cbf57611cbe612049565b5b5b611ccb86868461217e565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e3c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e4957819050612042565b60006008600001549050600e60019054906101000a900460ff1615611f44576023600d54611e779190612c0d565b431115611eb457600560066000018190555060056007600001819055506000600e60016101000a81548160ff021916908315150217905550611f43565b6002600d54611ec39190612c0d565b4311611ee45760146006600001819055506014600760000181905550611f42565b6014600d54611ef39190612c0d565b4311611f1457600f6006600001819055506014600760000181905550611f41565b6023600d54611f239190612c0d565b4311611f4057600a60066000018190555060146007600001819055505b5b5b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fa4576007600001549050612001565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036120005760066000015490505b5b60008082111561203157606482856120199190612e63565b6120239190612ed4565b905061203086308361217e565b5b808461203d919061351f565b925050505b9392505050565b6001600c60016101000a81548160ff021916908315150217905550600061206f30610cd4565b90506000810361207f575061217c565b61209061208b30610cd4565b6123f4565b6000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516120d890613584565b60006040518083038185875af1925050503d8060008114612115576040519150601f19603f3d011682016040523d82523d6000602084013e61211a565b606091505b505090508061215e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612155906135e5565b60405180910390fd5b6000600c60016101000a81548160ff02191690831515021790555050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613677565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390613709565b60405180910390fd5b612267838383612631565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e49061379b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123db91906128a4565b60405180910390a36123ee848484612636565b50505050565b6000600267ffffffffffffffff811115612411576124106137bb565b5b60405190808252806020026020018201604052801561243f5781602001602082028036833780820191505090505b5090503081600081518110612457576124566137ea565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612520919061382e565b81600181518110612534576125336137ea565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612599307f00000000000000000000000000000000000000000000000000000000000000008461141f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016125fb959493929190613954565b600060405180830381600087803b15801561261557600080fd5b505af1158015612629573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561267557808201518184015260208101905061265a565b60008484015250505050565b6000601f19601f8301169050919050565b600061269d8261263b565b6126a78185612646565b93506126b7818560208601612657565b6126c081612681565b840191505092915050565b600060208201905081810360008301526126e58184612692565b905092915050565b600080fd5b6000819050919050565b612705816126f2565b811461271057600080fd5b50565b600081359050612722816126fc565b92915050565b60006020828403121561273e5761273d6126ed565b5b600061274c84828501612713565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278082612755565b9050919050565b61279081612775565b811461279b57600080fd5b50565b6000813590506127ad81612787565b92915050565b600080604083850312156127ca576127c96126ed565b5b60006127d88582860161279e565b92505060206127e985828601612713565b9150509250929050565b60008115159050919050565b612808816127f3565b82525050565b600060208201905061282360008301846127ff565b92915050565b612832816127f3565b811461283d57600080fd5b50565b60008135905061284f81612829565b92915050565b6000806040838503121561286c5761286b6126ed565b5b600061287a8582860161279e565b925050602061288b85828601612840565b9150509250929050565b61289e816126f2565b82525050565b60006020820190506128b96000830184612895565b92915050565b6000602082840312156128d5576128d46126ed565b5b60006128e38482850161279e565b91505092915050565b600080600060608486031215612905576129046126ed565b5b60006129138682870161279e565b93505060206129248682870161279e565b925050604061293586828701612713565b9150509250925092565b600060ff82169050919050565b6129558161293f565b82525050565b6000602082019050612970600083018461294c565b92915050565b6000819050919050565b600061299b61299661299184612755565b612976565b612755565b9050919050565b60006129ad82612980565b9050919050565b60006129bf826129a2565b9050919050565b6129cf816129b4565b82525050565b60006020820190506129ea60008301846129c6565b92915050565b6129f981612775565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b60008060408385031215612a3157612a306126ed565b5b6000612a3f8582860161279e565b9250506020612a508582860161279e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aa157607f821691505b602082108103612ab457612ab3612a5a565b5b50919050565b7f43616e206e6f742073657420627579206665657320686967686572207468616e60008201527f2033302500000000000000000000000000000000000000000000000000000000602082015250565b6000612b16602483612646565b9150612b2182612aba565b604082019050919050565b60006020820190508181036000830152612b4581612b09565b9050919050565b7f63616e206e6f7420736574206d61726b6574696e6720746f206465616420776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000612ba8602483612646565b9150612bb382612b4c565b604082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c18826126f2565b9150612c23836126f2565b9250828201905080821115612c3b57612c3a612bde565b5b92915050565b7f50657263656e74616765206d7573742062652067726561746572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9d602283612646565b9150612ca882612c41565b604082019050919050565b60006020820190508181036000830152612ccc81612c90565b9050919050565b7f50657263656e74616765206d757374206265206c657373207468616e206f722060008201527f657175616c20746f203130300000000000000000000000000000000000000000602082015250565b6000612d2f602c83612646565b9150612d3a82612cd3565b604082019050919050565b60006020820190508181036000830152612d5e81612d22565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000612d9b601a83612646565b9150612da682612d65565b602082019050919050565b60006020820190508181036000830152612dca81612d8e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e2d602583612646565b9150612e3882612dd1565b604082019050919050565b60006020820190508181036000830152612e5c81612e20565b9050919050565b6000612e6e826126f2565b9150612e79836126f2565b9250828202612e87816126f2565b91508282048414831517612e9e57612e9d612bde565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612edf826126f2565b9150612eea836126f2565b925082612efa57612ef9612ea5565b5b828204905092915050565b7f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160008201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660208201527f20746f74616c20737570706c7921000000000000000000000000000000000000604082015250565b6000612f87604e83612646565b9150612f9282612f05565b606082019050919050565b60006020820190508181036000830152612fb681612f7a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613019602683612646565b915061302482612fbd565b604082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613085602083612646565b91506130908261304f565b602082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613117602483612646565b9150613122826130bb565b604082019050919050565b600060208201905081810360008301526131468161310a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131a9602283612646565b91506131b48261314d565b604082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613215601d83612646565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b60006132a7602483612646565b91506132b28261324b565b604082019050919050565b600060208201905081810360008301526132d68161329a565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613313601a83612646565b915061331e826132dd565b602082019050919050565b6000602082019050818103600083015261334281613306565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b600061337f601883612646565b915061338a82613349565b602082019050919050565b600060208201905081810360008301526133ae81613372565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613411602983612646565b915061341c826133b5565b604082019050919050565b6000602082019050818103600083015261344081613404565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000600082015250565b600061347d601d83612646565b915061348882613447565b602082019050919050565b600060208201905081810360008301526134ac81613470565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006134e9601283612646565b91506134f4826134b3565b602082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b600061352a826126f2565b9150613535836126f2565b925082820390508181111561354d5761354c612bde565b5b92915050565b600081905092915050565b50565b600061356e600083613553565b91506135798261355e565b600082019050919050565b600061358f82613561565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135cf601083612646565b91506135da82613599565b602082019050919050565b600060208201905081810360008301526135fe816135c2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613661602583612646565b915061366c82613605565b604082019050919050565b6000602082019050818103600083015261369081613654565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136f3602383612646565b91506136fe82613697565b604082019050919050565b60006020820190508181036000830152613722816136e6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613785602683612646565b915061379082613729565b604082019050919050565b600060208201905081810360008301526137b481613778565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061382881612787565b92915050565b600060208284031215613844576138436126ed565b5b600061385284828501613819565b91505092915050565b6000819050919050565b600061388061387b6138768461385b565b612976565b6126f2565b9050919050565b61389081613865565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138cb81612775565b82525050565b60006138dd83836138c2565b60208301905092915050565b6000602082019050919050565b600061390182613896565b61390b81856138a1565b9350613916836138b2565b8060005b8381101561394757815161392e88826138d1565b9750613939836138e9565b92505060018101905061391a565b5085935050505092915050565b600060a0820190506139696000830188612895565b6139766020830187613887565b818103604083015261398881866138f6565b905061399760608301856129f0565b6139a46080830184612895565b969550505050505056fea2646970667358221220654d69b8ce0af3dd7b4815587233778b6ba9eb0230fea55200caa91f4911046464736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e14610818578063e2f4560514610855578063ef586f7114610880578063f2fde38b14610897578063f66895a3146108c05761023b565b8063a8b0898214610731578063a9059cbb1461075c578063afa4f3b214610799578063b8863115146107c2578063c876d0b9146107ed5761023b565b80638d456754116100f25780638d4567541461065e5780638da5cb5b1461067557806395d89b41146106a0578063a3ca847d146106cb578063a457c2d7146106f45761023b565b806376be96f31461059d5780637a845ece146105c8578063830351ff146105f1578063864701a51461061c5780638a8c523c146106475761023b565b806339509351116101bc57806370a082311161018057806370a08231146104dc578063715018a614610519578063735de9f714610530578063751039fc1461055b57806375f0a874146105725761023b565b806339509351146103f35780634a74bb02146104305780634ada218b1461045b5780635331803c14610486578063599ca397146104b15761023b565b806318160ddd1161020357806318160ddd146102fa5780631950c21814610325578063224611731461036257806323b872dd1461038b578063313ce567146103c85761023b565b806306fdde03146102405780630940bbc71461026b578063095ea7b3146102945780630c424284146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108eb565b60405161026291906126cb565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612728565b61097d565b005b3480156102a057600080fd5b506102bb60048036038101906102b691906127b3565b610a03565b6040516102c8919061280e565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612855565b610a26565b005b34801561030657600080fd5b5061030f610acf565b60405161031c91906128a4565b60405180910390f35b34801561033157600080fd5b5061034c600480360381019061034791906128bf565b610ad9565b604051610359919061280e565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906128bf565b610b2f565b005b34801561039757600080fd5b506103b260048036038101906103ad91906128ec565b610c2d565b6040516103bf919061280e565b60405180910390f35b3480156103d457600080fd5b506103dd610c5c565b6040516103ea919061295b565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906127b3565b610c65565b604051610427919061280e565b60405180910390f35b34801561043c57600080fd5b50610445610c9c565b604051610452919061280e565b60405180910390f35b34801561046757600080fd5b50610470610caf565b60405161047d919061280e565b60405180910390f35b34801561049257600080fd5b5061049b610cc2565b6040516104a891906128a4565b60405180910390f35b3480156104bd57600080fd5b506104c6610cce565b6040516104d391906128a4565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906128bf565b610cd4565b60405161051091906128a4565b60405180910390f35b34801561052557600080fd5b5061052e610d1c565b005b34801561053c57600080fd5b50610545610d30565b60405161055291906129d5565b60405180910390f35b34801561056757600080fd5b50610570610d54565b005b34801561057e57600080fd5b50610587610d8c565b60405161059491906129ff565b60405180910390f35b3480156105a957600080fd5b506105b2610db2565b6040516105bf91906128a4565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190612728565b610db8565b005b3480156105fd57600080fd5b50610606610e88565b604051610613919061280e565b60405180910390f35b34801561062857600080fd5b50610631610e9b565b60405161063e91906128a4565b60405180910390f35b34801561065357600080fd5b5061065c610ea7565b005b34801561066a57600080fd5b50610673610f3e565b005b34801561068157600080fd5b5061068a610f63565b60405161069791906129ff565b60405180910390f35b3480156106ac57600080fd5b506106b5610f8d565b6040516106c291906126cb565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612728565b61101f565b005b34801561070057600080fd5b5061071b600480360381019061071691906127b3565b6110a5565b604051610728919061280e565b60405180910390f35b34801561073d57600080fd5b5061074661111c565b60405161075391906129ff565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e91906127b3565b611140565b604051610790919061280e565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb9190612728565b611163565b005b3480156107ce57600080fd5b506107d7611216565b6040516107e4919061280e565b60405180910390f35b3480156107f957600080fd5b50610802611229565b60405161080f919061280e565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190612a1a565b61123c565b60405161084c91906128a4565b60405180910390f35b34801561086157600080fd5b5061086a6112c3565b60405161087791906128a4565b60405180910390f35b34801561088c57600080fd5b506108956112c9565b005b3480156108a357600080fd5b506108be60048036038101906108b991906128bf565b61130a565b005b3480156108cc57600080fd5b506108d561138d565b6040516108e291906128a4565b60405180910390f35b6060600380546108fa90612a89565b80601f016020809104026020016040519081016040528092919081815260200182805461092690612a89565b80156109735780601f1061094857610100808354040283529160200191610973565b820191906000526020600020905b81548152906001019060200180831161095657829003601f168201915b5050505050905090565b610985611399565b80600760000181905550601e8111156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612b2c565b60405180910390fd5b807f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5560405160405180910390a250565b600080610a0e611417565b9050610a1b81858561141f565b600191505092915050565b610a2e611399565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d60405160405180910390a35050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610b37611399565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90612bbe565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761960405160405180910390a250565b600080610c38611417565b9050610c458582856115e8565b610c50858585611674565b60019150509392505050565b60006012905090565b600080610c70611417565b9050610c91818585610c82858961123c565b610c8c9190612c0d565b61141f565b600191505092915050565b600c60009054906101000a900460ff1681565b600c60029054906101000a900460ff1681565b60088060000154905081565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d24611399565b610d2e6000611cd3565b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b610d5c611399565b6064600f819055506000600e60006101000a81548160ff0219169083151502179055506000600860000181905550565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610dc0611399565b60028111610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612cb3565b60405180910390fd5b6064811115610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90612d45565b60405180910390fd5b80600f819055507f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df081604051610e7d91906128a4565b60405180910390a150565b600e60019054906101000a900460ff1681565b60068060000154905081565b610eaf611399565b600c60029054906101000a900460ff1615610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612db1565b60405180910390fd5b6001600c60026101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff02191690831515021790555043600d81905550565b610f46611399565b6000600e60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f9c90612a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc890612a89565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b611027611399565b80600660000181905550601e811115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612b2c565b60405180910390fd5b807f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb60405160405180910390a250565b6000806110b0611417565b905060006110be828661123c565b905083811015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612e43565b60405180910390fd5b611110828686840361141f565b60019250505092915050565b7f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4281565b60008061114b611417565b9050611158818585611674565b600191505092915050565b61116b611399565b60008111801561119e57506103e8600569d3c21bcecceda10000006111909190612e63565b61119a9190612ed4565b8111155b6111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490612f9d565b60405180910390fd5b80600b81905550600b547f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b600c60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6112d1611399565b600c60009054906101000a900460ff166112ec5760016112ef565b60005b600c60006101000a81548160ff021916908315150217905550565b611312611399565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061302f565b60405180910390fd5b61138a81611cd3565b50565b60078060000154905081565b6113a1611417565b73ffffffffffffffffffffffffffffffffffffffff166113bf610f63565b73ffffffffffffffffffffffffffffffffffffffff1614611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c9061309b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061312d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906131bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115db91906128a4565b60405180910390a3505050565b60006115f4848461123c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461166e5781811015611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579061322b565b60405180910390fd5b61166d848484840361141f565b5b50505050565b600e60009054906101000a900460ff16156117fd577f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561173157507f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117fc5743600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906132bd565b60405180910390fd5b43600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613329565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613395565b60405180910390fd5b6000811161191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613427565b60405180910390fd5b60006064600f5469d3c21bcecceda100000061193a9190612e63565b6119449190612ed4565b9050600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119ea5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a235750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a5b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ab357507f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b0f578082611ac385610cd4565b611acd9190612c0d565b1115611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613493565b60405180910390fd5b5b6000611b1c858585611d99565b90506000600b54611b2c30610cd4565b10159050600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bd45750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cc057600c60029054906101000a900460ff16611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906134ff565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4273ffffffffffffffffffffffffffffffffffffffff16148015611c8f5750600c60009054906101000a900460ff165b8015611c985750805b8015611cb15750600c60019054906101000a900460ff16155b15611cbf57611cbe612049565b5b5b611ccb86868461217e565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e3c5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e4957819050612042565b60006008600001549050600e60019054906101000a900460ff1615611f44576023600d54611e779190612c0d565b431115611eb457600560066000018190555060056007600001819055506000600e60016101000a81548160ff021916908315150217905550611f43565b6002600d54611ec39190612c0d565b4311611ee45760146006600001819055506014600760000181905550611f42565b6014600d54611ef39190612c0d565b4311611f1457600f6006600001819055506014600760000181905550611f41565b6023600d54611f239190612c0d565b4311611f4057600a60066000018190555060146007600001819055505b5b5b5b5b7f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fa4576007600001549050612001565b7f000000000000000000000000f1f52b0e18757c4cbd462e10c8884e1127326f4273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036120005760066000015490505b5b60008082111561203157606482856120199190612e63565b6120239190612ed4565b905061203086308361217e565b5b808461203d919061351f565b925050505b9392505050565b6001600c60016101000a81548160ff021916908315150217905550600061206f30610cd4565b90506000810361207f575061217c565b61209061208b30610cd4565b6123f4565b6000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516120d890613584565b60006040518083038185875af1925050503d8060008114612115576040519150601f19603f3d011682016040523d82523d6000602084013e61211a565b606091505b505090508061215e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612155906135e5565b60405180910390fd5b6000600c60016101000a81548160ff02191690831515021790555050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613677565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390613709565b60405180910390fd5b612267838383612631565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e49061379b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123db91906128a4565b60405180910390a36123ee848484612636565b50505050565b6000600267ffffffffffffffff811115612411576124106137bb565b5b60405190808252806020026020018201604052801561243f5781602001602082028036833780820191505090505b5090503081600081518110612457576124566137ea565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612520919061382e565b81600181518110612534576125336137ea565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612599307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461141f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016125fb959493929190613954565b600060405180830381600087803b15801561261557600080fd5b505af1158015612629573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561267557808201518184015260208101905061265a565b60008484015250505050565b6000601f19601f8301169050919050565b600061269d8261263b565b6126a78185612646565b93506126b7818560208601612657565b6126c081612681565b840191505092915050565b600060208201905081810360008301526126e58184612692565b905092915050565b600080fd5b6000819050919050565b612705816126f2565b811461271057600080fd5b50565b600081359050612722816126fc565b92915050565b60006020828403121561273e5761273d6126ed565b5b600061274c84828501612713565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278082612755565b9050919050565b61279081612775565b811461279b57600080fd5b50565b6000813590506127ad81612787565b92915050565b600080604083850312156127ca576127c96126ed565b5b60006127d88582860161279e565b92505060206127e985828601612713565b9150509250929050565b60008115159050919050565b612808816127f3565b82525050565b600060208201905061282360008301846127ff565b92915050565b612832816127f3565b811461283d57600080fd5b50565b60008135905061284f81612829565b92915050565b6000806040838503121561286c5761286b6126ed565b5b600061287a8582860161279e565b925050602061288b85828601612840565b9150509250929050565b61289e816126f2565b82525050565b60006020820190506128b96000830184612895565b92915050565b6000602082840312156128d5576128d46126ed565b5b60006128e38482850161279e565b91505092915050565b600080600060608486031215612905576129046126ed565b5b60006129138682870161279e565b93505060206129248682870161279e565b925050604061293586828701612713565b9150509250925092565b600060ff82169050919050565b6129558161293f565b82525050565b6000602082019050612970600083018461294c565b92915050565b6000819050919050565b600061299b61299661299184612755565b612976565b612755565b9050919050565b60006129ad82612980565b9050919050565b60006129bf826129a2565b9050919050565b6129cf816129b4565b82525050565b60006020820190506129ea60008301846129c6565b92915050565b6129f981612775565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b60008060408385031215612a3157612a306126ed565b5b6000612a3f8582860161279e565b9250506020612a508582860161279e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aa157607f821691505b602082108103612ab457612ab3612a5a565b5b50919050565b7f43616e206e6f742073657420627579206665657320686967686572207468616e60008201527f2033302500000000000000000000000000000000000000000000000000000000602082015250565b6000612b16602483612646565b9150612b2182612aba565b604082019050919050565b60006020820190508181036000830152612b4581612b09565b9050919050565b7f63616e206e6f7420736574206d61726b6574696e6720746f206465616420776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000612ba8602483612646565b9150612bb382612b4c565b604082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c18826126f2565b9150612c23836126f2565b9250828201905080821115612c3b57612c3a612bde565b5b92915050565b7f50657263656e74616765206d7573742062652067726561746572207468616e2060008201527f3225000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9d602283612646565b9150612ca882612c41565b604082019050919050565b60006020820190508181036000830152612ccc81612c90565b9050919050565b7f50657263656e74616765206d757374206265206c657373207468616e206f722060008201527f657175616c20746f203130300000000000000000000000000000000000000000602082015250565b6000612d2f602c83612646565b9150612d3a82612cd3565b604082019050919050565b60006020820190508181036000830152612d5e81612d22565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000612d9b601a83612646565b9150612da682612d65565b602082019050919050565b60006020820190508181036000830152612dca81612d8e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e2d602583612646565b9150612e3882612dd1565b604082019050919050565b60006020820190508181036000830152612e5c81612e20565b9050919050565b6000612e6e826126f2565b9150612e79836126f2565b9250828202612e87816126f2565b91508282048414831517612e9e57612e9d612bde565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612edf826126f2565b9150612eea836126f2565b925082612efa57612ef9612ea5565b5b828204905092915050565b7f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160008201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660208201527f20746f74616c20737570706c7921000000000000000000000000000000000000604082015250565b6000612f87604e83612646565b9150612f9282612f05565b606082019050919050565b60006020820190508181036000830152612fb681612f7a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613019602683612646565b915061302482612fbd565b604082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613085602083612646565b91506130908261304f565b602082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613117602483612646565b9150613122826130bb565b604082019050919050565b600060208201905081810360008301526131468161310a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131a9602283612646565b91506131b48261314d565b604082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613215601d83612646565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b60006132a7602483612646565b91506132b28261324b565b604082019050919050565b600060208201905081810360008301526132d68161329a565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613313601a83612646565b915061331e826132dd565b602082019050919050565b6000602082019050818103600083015261334281613306565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b600061337f601883612646565b915061338a82613349565b602082019050919050565b600060208201905081810360008301526133ae81613372565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613411602983612646565b915061341c826133b5565b604082019050919050565b6000602082019050818103600083015261344081613404565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000600082015250565b600061347d601d83612646565b915061348882613447565b602082019050919050565b600060208201905081810360008301526134ac81613470565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006134e9601283612646565b91506134f4826134b3565b602082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b600061352a826126f2565b9150613535836126f2565b925082820390508181111561354d5761354c612bde565b5b92915050565b600081905092915050565b50565b600061356e600083613553565b91506135798261355e565b600082019050919050565b600061358f82613561565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135cf601083612646565b91506135da82613599565b602082019050919050565b600060208201905081810360008301526135fe816135c2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613661602583612646565b915061366c82613605565b604082019050919050565b6000602082019050818103600083015261369081613654565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136f3602383612646565b91506136fe82613697565b604082019050919050565b60006020820190508181036000830152613722816136e6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613785602683612646565b915061379082613729565b604082019050919050565b600060208201905081810360008301526137b481613778565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061382881612787565b92915050565b600060208284031215613844576138436126ed565b5b600061385284828501613819565b91505092915050565b6000819050919050565b600061388061387b6138768461385b565b612976565b6126f2565b9050919050565b61389081613865565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138cb81612775565b82525050565b60006138dd83836138c2565b60208301905092915050565b6000602082019050919050565b600061390182613896565b61390b81856138a1565b9350613916836138b2565b8060005b8381101561394757815161392e88826138d1565b9750613939836138e9565b92505060018101905061391a565b5085935050505092915050565b600060a0820190506139696000830188612895565b6139766020830187613887565b818103604083015261398881866138f6565b905061399760608301856129f0565b6139a46080830184612895565b969550505050505056fea2646970667358221220654d69b8ce0af3dd7b4815587233778b6ba9eb0230fea55200caa91f4911046464736f6c63430008130033

Deployed Bytecode Sourcemap

28439:8291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16388:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31232:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18748:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32000:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17517:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36265:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30449:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19529:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17359:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20199:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29133:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29217:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28792:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29475:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17688:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9843:103;;;;;;;;;;;;;:::i;:::-;;28616:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32201:163;;;;;;;;;;;;;:::i;:::-;;29390:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29258:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36389:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29343:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28721:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30756:217;;;;;;;;;;;;;:::i;:::-;;32370:78;;;;;;;;;;;;;:::i;:::-;;9202:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16607:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30981:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20940:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28663:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18021:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31486:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29180:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29297:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18277:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29031:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31866:126;;;;;;;;;;;;;:::i;:::-;;10101:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28756:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16388:100;16442:13;16475:5;16468:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16388:100;:::o;31232:246::-;9088:13;:11;:13::i;:::-;31332::::1;31307:9;:22;;:38;;;;31381:2;31364:13;:19;;31356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31456:13;31440:30;;;;;;;;;;31232:246:::0;:::o;18748:201::-;18831:4;18848:13;18864:12;:10;:12::i;:::-;18848:28;;18887:32;18896:5;18903:7;18912:6;18887:8;:32::i;:::-;18937:4;18930:11;;;18748:201;;;;:::o;32000:195::-;9088:13;:11;:13::i;:::-;32137:7:::1;32114:11;:20;32126:7;32114:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;32179:7;32160:27;;32170:7;32160:27;;;;;;;;;;;;32000:195:::0;;:::o;17517:108::-;17578:7;17605:12;;17598:19;;17517:108;:::o;36265:116::-;36329:4;36353:11;:20;36365:7;36353:20;;;;;;;;;;;;;;;;;;;;;;;;;36346:27;;36265:116;;;:::o;30449:297::-;9088:13;:11;:13::i;:::-;30577:1:::1;30552:27;;:13;:27;;::::0;30530:113:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30672:13;30654:15;;:31;;;;;;;;;;;;;;;;;;30724:13;30701:37;;;;;;;;;;;;30449:297:::0;:::o;19529:261::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:38;19700:4;19706:7;19715:6;19684:15;:38::i;:::-;19733:27;19743:4;19749:2;19753:6;19733:9;:27::i;:::-;19778:4;19771:11;;;19529:261;;;;;:::o;17359:93::-;17417:5;17442:2;17435:9;;17359:93;:::o;20199:238::-;20287:4;20304:13;20320:12;:10;:12::i;:::-;20304:28;;20343:64;20352:5;20359:7;20396:10;20368:25;20378:5;20385:7;20368:9;:25::i;:::-;:38;;;;:::i;:::-;20343:8;:64::i;:::-;20425:4;20418:11;;;20199:238;;;;:::o;29133:40::-;;;;;;;;;;;;;:::o;29217:34::-;;;;;;;;;;;;;:::o;28792:33::-;;;;;;;;;:::o;29475:38::-;;;;:::o;17688:127::-;17762:7;17789:9;:18;17799:7;17789:18;;;;;;;;;;;;;;;;17782:25;;17688:127;;;:::o;9843:103::-;9088:13;:11;:13::i;:::-;9908:30:::1;9935:1;9908:18;:30::i;:::-;9843:103::o:0;28616:40::-;;;:::o;32201:163::-;9088:13;:11;:13::i;:::-;32275:3:::1;32254:19;:24;;;;32310:5;32289:20;;:26;;;;;;;;;;;;;;;;;;32355:1;32326:13;:26;;:30;;;;32201:163::o:0;29390:75::-;;;;;;;;;;;;;:::o;29258:32::-;;;;:::o;36389:303::-;9088:13;:11;:13::i;:::-;36490:1:::1;36476:11;:15;36468:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36560:3;36545:11;:18;;36537:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;36641:11;36619:19;:33;;;;36664:24;36676:11;36664:24;;;;;;:::i;:::-;;;;;;;;36389:303:::0;:::o;29343:21::-;;;;;;;;;;;;;:::o;28721:28::-;;;;;;;;;:::o;30756:217::-;9088:13;:11;:13::i;:::-;30820:14:::1;;;;;;;;;;;30819:15;30811:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;30893:4;30876:14;;:21;;;;;;;;;;;;;;;;;;30918:4;30908:9;;:14;;;;;;;;;;;;;;;;;;30953:12;30933:17;:32;;;;30756:217::o:0;32370:78::-;9088:13;:11;:13::i;:::-;32435:5:::1;32425:9;;:15;;;;;;;;;;;;;;;;;;32370:78::o:0;9202:87::-;9248:7;9275:6;;;;;;;;;;;9268:13;;9202:87;:::o;16607:104::-;16663:13;16696:7;16689:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16607:104;:::o;30981:243::-;9088:13;:11;:13::i;:::-;31079::::1;31055:8;:21;;:37;;;;31128:2;31111:13;:19;;31103:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31202:13;31187:29;;;;;;;;;;30981:243:::0;:::o;20940:436::-;21033:4;21050:13;21066:12;:10;:12::i;:::-;21050:28;;21089:24;21116:25;21126:5;21133:7;21116:9;:25::i;:::-;21089:52;;21180:15;21160:16;:35;;21152:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21273:60;21282:5;21289:7;21317:15;21298:16;:34;21273:8;:60::i;:::-;21364:4;21357:11;;;;20940:436;;;;:::o;28663:36::-;;;:::o;18021:193::-;18100:4;18117:13;18133:12;:10;:12::i;:::-;18117:28;;18156;18166:5;18173:2;18177:6;18156:9;:28::i;:::-;18202:4;18195:11;;;18021:193;;;;:::o;31486:372::-;9088:13;:11;:13::i;:::-;31602:1:::1;31589:10;:14;:57;;;;;31642:4;31637:1;28579:14;31622:16;;;;:::i;:::-;31621:25;;;;:::i;:::-;31607:10;:39;;31589:57;31567:185;;;;;;;;;;;;:::i;:::-;;;;;;;;;31784:10;31763:18;:31;;;;31831:18;;31810:40;;;;;;;;;;31486:372:::0;:::o;29180:30::-;;;;;;;;;;;;;:::o;29297:39::-;;;;;;;;;;;;;:::o;18277:151::-;18366:7;18393:11;:18;18405:5;18393:18;;;;;;;;;;;;;;;:27;18412:7;18393:27;;;;;;;;;;;;;;;;18386:34;;18277:151;;;;:::o;29031:55::-;;;;:::o;31866:126::-;9088:13;:11;:13::i;:::-;31947:21:::1;;;;;;;;;;;31946:38;;31980:4;31946:38;;;31972:5;31946:38;31922:21;;:62;;;;;;;;;;;;;;;;;;31866:126::o:0;10101:201::-;9088:13;:11;:13::i;:::-;10210:1:::1;10190:22;;:8;:22;;::::0;10182:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10266:28;10285:8;10266:18;:28::i;:::-;10101:201:::0;:::o;28756:29::-;;;;;;;;;:::o;9367:132::-;9442:12;:10;:12::i;:::-;9431:23;;:7;:5;:7::i;:::-;:23;;;9423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9367:132::o;7753:98::-;7806:7;7833:10;7826:17;;7753:98;:::o;24933:346::-;25052:1;25035:19;;:5;:19;;;25027:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25133:1;25114:21;;:7;:21;;;25106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25217:6;25187:11;:18;25199:5;25187:18;;;;;;;;;;;;;;;:27;25206:7;25187:27;;;;;;;;;;;;;;;:36;;;;25255:7;25239:32;;25248:5;25239:32;;;25264:6;25239:32;;;;;;:::i;:::-;;;;;;;;24933:346;;;:::o;25570:419::-;25671:24;25698:25;25708:5;25715:7;25698:9;:25::i;:::-;25671:52;;25758:17;25738:16;:37;25734:248;;25820:6;25800:16;:26;;25792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25904:51;25913:5;25920:7;25948:6;25929:16;:25;25904:8;:51::i;:::-;25734:248;25660:329;25570:419;;;:::o;33880:1520::-;34002:20;;;;;;;;;;;33998:307;;;34054:11;34039:27;;:3;:27;;;;:58;;;;;34085:11;34070:27;;:3;:27;;;;34039:58;34035:263;;;34164:12;34122:28;:39;34151:9;34122:39;;;;;;;;;;;;;;;;:54;34114:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34274:12;34232:28;:39;34261:9;34232:39;;;;;;;;;;;;;;;:54;;;;34035:263;33998:307;34341:1;34324:19;;:5;:19;;;34316:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34404:1;34389:17;;:3;:17;;;34381:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;34460:1;34450:7;:11;34442:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34620:23;34683:3;34661:19;;28579:14;34646:34;;;;:::i;:::-;:40;;;;:::i;:::-;34620:66;;34768:11;:18;34780:5;34768:18;;;;;;;;;;;;;;;;;;;;;;;;;34767:19;:40;;;;;34791:11;:16;34803:3;34791:16;;;;;;;;;;;;;;;;;;;;;;;;;34790:17;34767:40;:61;;;;;34826:1;34811:17;;:3;:17;;;;34767:61;:85;;;;;34847:4;34832:20;;:3;:20;;;;34767:85;:107;;;;;34863:11;34856:18;;:3;:18;;;;34767:107;34763:217;;;34923:15;34912:7;34895:14;34905:3;34895:9;:14::i;:::-;:24;;;;:::i;:::-;:43;;34887:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34763:217;34988:18;35009:29;35018:5;35025:3;35030:7;35009:8;:29::i;:::-;34988:50;;35047:12;35090:18;;35062:24;35080:4;35062:9;:24::i;:::-;:46;;35047:61;;35120:11;:18;35132:5;35120:18;;;;;;;;;;;;;;;;;;;;;;;;;35119:19;:40;;;;;35143:11;:16;35155:3;35143:16;;;;;;;;;;;;;;;;;;;;;;;;;35142:17;35119:40;35115:236;;;35180:14;;;;;;;;;;;35172:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;35247:3;35232:18;;:11;:18;;;:43;;;;;35254:21;;;;;;;;;;;35232:43;:54;;;;;35279:7;35232:54;:69;;;;;35291:10;;;;;;;;;;;35290:11;35232:69;35228:116;;;35318:14;:12;:14::i;:::-;35228:116;35115:236;35357:39;35373:5;35380:3;35385:10;35357:15;:39::i;:::-;33988:1412;;;33880:1520;;;:::o;10462:191::-;10536:16;10555:6;;;;;;;;;;;10536:25;;10581:8;10572:6;;:17;;;;;;;;;;;;;;;;;;10636:8;10605:40;;10626:8;10605:40;;;;;;;;;;;;10525:128;10462:191;:::o;32594:1282::-;32693:7;32713:11;:18;32725:5;32713:18;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;;32735:11;:16;32747:3;32735:16;;;;;;;;;;;;;;;;;;;;;;;;;32713:38;32709:77;;;32771:7;32764:14;;;;32709:77;32794:16;32813:13;:26;;;32794:45;;32894:9;;;;;;;;;;;32890:637;;;32955:2;32935:17;;:22;;;;:::i;:::-;32920:12;:37;32916:604;;;32998:1;32974:8;:21;;:25;;;;33039:1;33014:9;:22;;:26;;;;33067:5;33055:9;;:17;;;;;;;;;;;;;;;;;;32916:604;;;33132:1;33112:17;;:21;;;;:::i;:::-;33096:12;:37;33092:428;;33174:2;33150:8;:21;;:26;;;;33216:2;33191:9;:22;;:27;;;;33092:428;;;33276:2;33256:17;;:22;;;;:::i;:::-;33240:12;:38;33236:284;;33319:2;33295:8;:21;;:26;;;;33361:2;33336:9;:22;;:27;;;;33236:284;;;33421:2;33401:17;;:22;;;;:::i;:::-;33385:12;:38;33381:139;;33464:2;33440:8;:21;;:26;;;;33506:2;33481:9;:22;;:27;;;;33381:139;33236:284;33092:428;32916:604;32890:637;33544:11;33537:18;;:3;:18;;;33533:159;;33579:9;:22;;;33568:33;;33533:159;;;33628:11;33619:20;;:5;:20;;;33615:77;;33663:8;:21;;;33652:32;;33615:77;33533:159;33700:11;33737:1;33726:8;:12;33722:122;;;33780:3;33768:8;33758:7;:18;;;;:::i;:::-;33757:26;;;;:::i;:::-;33751:32;;33794:42;33810:5;33825:4;33832:3;33794:15;:42::i;:::-;33722:122;33868:3;33858:7;:13;;;;:::i;:::-;33850:22;;;;32594:1282;;;;;;:::o;35408:394::-;35465:4;35452:10;;:17;;;;;;;;;;;;;;;;;;35480;35500:24;35518:4;35500:9;:24::i;:::-;35480:44;;35553:1;35540:9;:14;35536:53;;35571:7;;;35536:53;35599:35;35609:24;35627:4;35609:9;:24::i;:::-;35599:9;:35::i;:::-;35645:12;35663:15;;;;;;;;;;;:20;;35691:21;35663:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35644:73;;;35736:7;35728:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;35789:5;35776:10;;:18;;;;;;;;;;;;;;;;;;35441:361;;35408:394;:::o;21846:806::-;21959:1;21943:18;;:4;:18;;;21935:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22036:1;22022:16;;:2;:16;;;22014:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22091:38;22112:4;22118:2;22122:6;22091:20;:38::i;:::-;22142:19;22164:9;:15;22174:4;22164:15;;;;;;;;;;;;;;;;22142:37;;22213:6;22198:11;:21;;22190:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22330:6;22316:11;:20;22298:9;:15;22308:4;22298:15;;;;;;;;;;;;;;;:38;;;;22533:6;22516:9;:13;22526:2;22516:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22583:2;22568:26;;22577:4;22568:26;;;22587:6;22568:26;;;;;;:::i;:::-;;;;;;;;22607:37;22627:4;22633:2;22637:6;22607:19;:37::i;:::-;21924:728;21846:806;;;:::o;35812:447::-;35868:21;35906:1;35892:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35868:40;;35937:4;35919;35924:1;35919:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35963:13;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35953:4;35958:1;35953:7;;;;;;;;:::i;:::-;;;;;;;:30;;;;;;;;;;;35994:56;36011:4;36026:13;36042:7;35994:8;:56::i;:::-;36061:13;:64;;;36140:7;36162:1;36178:4;36205;36225:15;36061:190;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35857:402;35812:447;:::o;26589:91::-;;;;:::o;27284:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:116::-;3851:21;3866:5;3851:21;:::i;:::-;3844:5;3841:32;3831:60;;3887:1;3884;3877:12;3831:60;3781:116;:::o;3903:133::-;3946:5;3984:6;3971:20;3962:29;;4000:30;4024:5;4000:30;:::i;:::-;3903:133;;;;:::o;4042:468::-;4107:6;4115;4164:2;4152:9;4143:7;4139:23;4135:32;4132:119;;;4170:79;;:::i;:::-;4132:119;4290:1;4315:53;4360:7;4351:6;4340:9;4336:22;4315:53;:::i;:::-;4305:63;;4261:117;4417:2;4443:50;4485:7;4476:6;4465:9;4461:22;4443:50;:::i;:::-;4433:60;;4388:115;4042:468;;;;;:::o;4516:118::-;4603:24;4621:5;4603:24;:::i;:::-;4598:3;4591:37;4516:118;;:::o;4640:222::-;4733:4;4771:2;4760:9;4756:18;4748:26;;4784:71;4852:1;4841:9;4837:17;4828:6;4784:71;:::i;:::-;4640:222;;;;:::o;4868:329::-;4927:6;4976:2;4964:9;4955:7;4951:23;4947:32;4944:119;;;4982:79;;:::i;:::-;4944:119;5102:1;5127:53;5172:7;5163:6;5152:9;5148:22;5127:53;:::i;:::-;5117:63;;5073:117;4868:329;;;;:::o;5203:619::-;5280:6;5288;5296;5345:2;5333:9;5324:7;5320:23;5316:32;5313:119;;;5351:79;;:::i;:::-;5313:119;5471:1;5496:53;5541:7;5532:6;5521:9;5517:22;5496:53;:::i;:::-;5486:63;;5442:117;5598:2;5624:53;5669:7;5660:6;5649:9;5645:22;5624:53;:::i;:::-;5614:63;;5569:118;5726:2;5752:53;5797:7;5788:6;5777:9;5773:22;5752:53;:::i;:::-;5742:63;;5697:118;5203:619;;;;;:::o;5828:86::-;5863:7;5903:4;5896:5;5892:16;5881:27;;5828:86;;;:::o;5920:112::-;6003:22;6019:5;6003:22;:::i;:::-;5998:3;5991:35;5920:112;;:::o;6038:214::-;6127:4;6165:2;6154:9;6150:18;6142:26;;6178:67;6242:1;6231:9;6227:17;6218:6;6178:67;:::i;:::-;6038:214;;;;:::o;6258:60::-;6286:3;6307:5;6300:12;;6258:60;;;:::o;6324:142::-;6374:9;6407:53;6425:34;6434:24;6452:5;6434:24;:::i;:::-;6425:34;:::i;:::-;6407:53;:::i;:::-;6394:66;;6324:142;;;:::o;6472:126::-;6522:9;6555:37;6586:5;6555:37;:::i;:::-;6542:50;;6472:126;;;:::o;6604:144::-;6672:9;6705:37;6736:5;6705:37;:::i;:::-;6692:50;;6604:144;;;:::o;6754:167::-;6859:55;6908:5;6859:55;:::i;:::-;6854:3;6847:68;6754:167;;:::o;6927:258::-;7038:4;7076:2;7065:9;7061:18;7053:26;;7089:89;7175:1;7164:9;7160:17;7151:6;7089:89;:::i;:::-;6927:258;;;;:::o;7191:118::-;7278:24;7296:5;7278:24;:::i;:::-;7273:3;7266:37;7191:118;;:::o;7315:222::-;7408:4;7446:2;7435:9;7431:18;7423:26;;7459:71;7527:1;7516:9;7512:17;7503:6;7459:71;:::i;:::-;7315:222;;;;:::o;7543:474::-;7611:6;7619;7668:2;7656:9;7647:7;7643:23;7639:32;7636:119;;;7674:79;;:::i;:::-;7636:119;7794:1;7819:53;7864:7;7855:6;7844:9;7840:22;7819:53;:::i;:::-;7809:63;;7765:117;7921:2;7947:53;7992:7;7983:6;7972:9;7968:22;7947:53;:::i;:::-;7937:63;;7892:118;7543:474;;;;;:::o;8023:180::-;8071:77;8068:1;8061:88;8168:4;8165:1;8158:15;8192:4;8189:1;8182:15;8209:320;8253:6;8290:1;8284:4;8280:12;8270:22;;8337:1;8331:4;8327:12;8358:18;8348:81;;8414:4;8406:6;8402:17;8392:27;;8348:81;8476:2;8468:6;8465:14;8445:18;8442:38;8439:84;;8495:18;;:::i;:::-;8439:84;8260:269;8209:320;;;:::o;8535:223::-;8675:34;8671:1;8663:6;8659:14;8652:58;8744:6;8739:2;8731:6;8727:15;8720:31;8535:223;:::o;8764:366::-;8906:3;8927:67;8991:2;8986:3;8927:67;:::i;:::-;8920:74;;9003:93;9092:3;9003:93;:::i;:::-;9121:2;9116:3;9112:12;9105:19;;8764:366;;;:::o;9136:419::-;9302:4;9340:2;9329:9;9325:18;9317:26;;9389:9;9383:4;9379:20;9375:1;9364:9;9360:17;9353:47;9417:131;9543:4;9417:131;:::i;:::-;9409:139;;9136:419;;;:::o;9561:223::-;9701:34;9697:1;9689:6;9685:14;9678:58;9770:6;9765:2;9757:6;9753:15;9746:31;9561:223;:::o;9790:366::-;9932:3;9953:67;10017:2;10012:3;9953:67;:::i;:::-;9946:74;;10029:93;10118:3;10029:93;:::i;:::-;10147:2;10142:3;10138:12;10131:19;;9790:366;;;:::o;10162:419::-;10328:4;10366:2;10355:9;10351:18;10343:26;;10415:9;10409:4;10405:20;10401:1;10390:9;10386:17;10379:47;10443:131;10569:4;10443:131;:::i;:::-;10435:139;;10162:419;;;:::o;10587:180::-;10635:77;10632:1;10625:88;10732:4;10729:1;10722:15;10756:4;10753:1;10746:15;10773:191;10813:3;10832:20;10850:1;10832:20;:::i;:::-;10827:25;;10866:20;10884:1;10866:20;:::i;:::-;10861:25;;10909:1;10906;10902:9;10895:16;;10930:3;10927:1;10924:10;10921:36;;;10937:18;;:::i;:::-;10921:36;10773:191;;;;:::o;10970:221::-;11110:34;11106:1;11098:6;11094:14;11087:58;11179:4;11174:2;11166:6;11162:15;11155:29;10970:221;:::o;11197:366::-;11339:3;11360:67;11424:2;11419:3;11360:67;:::i;:::-;11353:74;;11436:93;11525:3;11436:93;:::i;:::-;11554:2;11549:3;11545:12;11538:19;;11197:366;;;:::o;11569:419::-;11735:4;11773:2;11762:9;11758:18;11750:26;;11822:9;11816:4;11812:20;11808:1;11797:9;11793:17;11786:47;11850:131;11976:4;11850:131;:::i;:::-;11842:139;;11569:419;;;:::o;11994:231::-;12134:34;12130:1;12122:6;12118:14;12111:58;12203:14;12198:2;12190:6;12186:15;12179:39;11994:231;:::o;12231:366::-;12373:3;12394:67;12458:2;12453:3;12394:67;:::i;:::-;12387:74;;12470:93;12559:3;12470:93;:::i;:::-;12588:2;12583:3;12579:12;12572:19;;12231:366;;;:::o;12603:419::-;12769:4;12807:2;12796:9;12792:18;12784:26;;12856:9;12850:4;12846:20;12842:1;12831:9;12827:17;12820:47;12884:131;13010:4;12884:131;:::i;:::-;12876:139;;12603:419;;;:::o;13028:176::-;13168:28;13164:1;13156:6;13152:14;13145:52;13028:176;:::o;13210:366::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:419::-;13748:4;13786:2;13775:9;13771:18;13763:26;;13835:9;13829:4;13825:20;13821:1;13810:9;13806:17;13799:47;13863:131;13989:4;13863:131;:::i;:::-;13855:139;;13582:419;;;:::o;14007:224::-;14147:34;14143:1;14135:6;14131:14;14124:58;14216:7;14211:2;14203:6;14199:15;14192:32;14007:224;:::o;14237:366::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:419::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:410::-;15074:7;15097:20;15115:1;15097:20;:::i;:::-;15092:25;;15131:20;15149:1;15131:20;:::i;:::-;15126:25;;15186:1;15183;15179:9;15208:30;15226:11;15208:30;:::i;:::-;15197:41;;15387:1;15378:7;15374:15;15371:1;15368:22;15348:1;15341:9;15321:83;15298:139;;15417:18;;:::i;:::-;15298:139;15082:362;15034:410;;;;:::o;15450:180::-;15498:77;15495:1;15488:88;15595:4;15592:1;15585:15;15619:4;15616:1;15609:15;15636:185;15676:1;15693:20;15711:1;15693:20;:::i;:::-;15688:25;;15727:20;15745:1;15727:20;:::i;:::-;15722:25;;15766:1;15756:35;;15771:18;;:::i;:::-;15756:35;15813:1;15810;15806:9;15801:14;;15636:185;;;;:::o;15827:302::-;15967:34;15963:1;15955:6;15951:14;15944:58;16036:34;16031:2;16023:6;16019:15;16012:59;16105:16;16100:2;16092:6;16088:15;16081:41;15827:302;:::o;16135:366::-;16277:3;16298:67;16362:2;16357:3;16298:67;:::i;:::-;16291:74;;16374:93;16463:3;16374:93;:::i;:::-;16492:2;16487:3;16483:12;16476:19;;16135:366;;;:::o;16507:419::-;16673:4;16711:2;16700:9;16696:18;16688:26;;16760:9;16754:4;16750:20;16746:1;16735:9;16731:17;16724:47;16788:131;16914:4;16788:131;:::i;:::-;16780:139;;16507:419;;;:::o;16932:225::-;17072:34;17068:1;17060:6;17056:14;17049:58;17141:8;17136:2;17128:6;17124:15;17117:33;16932:225;:::o;17163:366::-;17305:3;17326:67;17390:2;17385:3;17326:67;:::i;:::-;17319:74;;17402:93;17491:3;17402:93;:::i;:::-;17520:2;17515:3;17511:12;17504:19;;17163:366;;;:::o;17535:419::-;17701:4;17739:2;17728:9;17724:18;17716:26;;17788:9;17782:4;17778:20;17774:1;17763:9;17759:17;17752:47;17816:131;17942:4;17816:131;:::i;:::-;17808:139;;17535:419;;;:::o;17960:182::-;18100:34;18096:1;18088:6;18084:14;18077:58;17960:182;:::o;18148:366::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:419::-;18686:4;18724:2;18713:9;18709:18;18701:26;;18773:9;18767:4;18763:20;18759:1;18748:9;18744:17;18737:47;18801:131;18927:4;18801:131;:::i;:::-;18793:139;;18520:419;;;:::o;18945:223::-;19085:34;19081:1;19073:6;19069:14;19062:58;19154:6;19149:2;19141:6;19137:15;19130:31;18945:223;:::o;19174:366::-;19316:3;19337:67;19401:2;19396:3;19337:67;:::i;:::-;19330:74;;19413:93;19502:3;19413:93;:::i;:::-;19531:2;19526:3;19522:12;19515:19;;19174:366;;;:::o;19546:419::-;19712:4;19750:2;19739:9;19735:18;19727:26;;19799:9;19793:4;19789:20;19785:1;19774:9;19770:17;19763:47;19827:131;19953:4;19827:131;:::i;:::-;19819:139;;19546:419;;;:::o;19971:221::-;20111:34;20107:1;20099:6;20095:14;20088:58;20180:4;20175:2;20167:6;20163:15;20156:29;19971:221;:::o;20198:366::-;20340:3;20361:67;20425:2;20420:3;20361:67;:::i;:::-;20354:74;;20437:93;20526:3;20437:93;:::i;:::-;20555:2;20550:3;20546:12;20539:19;;20198:366;;;:::o;20570:419::-;20736:4;20774:2;20763:9;20759:18;20751:26;;20823:9;20817:4;20813:20;20809:1;20798:9;20794:17;20787:47;20851:131;20977:4;20851:131;:::i;:::-;20843:139;;20570:419;;;:::o;20995:179::-;21135:31;21131:1;21123:6;21119:14;21112:55;20995:179;:::o;21180:366::-;21322:3;21343:67;21407:2;21402:3;21343:67;:::i;:::-;21336:74;;21419:93;21508:3;21419:93;:::i;:::-;21537:2;21532:3;21528:12;21521:19;;21180:366;;;:::o;21552:419::-;21718:4;21756:2;21745:9;21741:18;21733:26;;21805:9;21799:4;21795:20;21791:1;21780:9;21776:17;21769:47;21833:131;21959:4;21833:131;:::i;:::-;21825:139;;21552:419;;;:::o;21977:223::-;22117:34;22113:1;22105:6;22101:14;22094:58;22186:6;22181:2;22173:6;22169:15;22162:31;21977:223;:::o;22206:366::-;22348:3;22369:67;22433:2;22428:3;22369:67;:::i;:::-;22362:74;;22445:93;22534:3;22445:93;:::i;:::-;22563:2;22558:3;22554:12;22547:19;;22206:366;;;:::o;22578:419::-;22744:4;22782:2;22771:9;22767:18;22759:26;;22831:9;22825:4;22821:20;22817:1;22806:9;22802:17;22795:47;22859:131;22985:4;22859:131;:::i;:::-;22851:139;;22578:419;;;:::o;23003:176::-;23143:28;23139:1;23131:6;23127:14;23120:52;23003:176;:::o;23185:366::-;23327:3;23348:67;23412:2;23407:3;23348:67;:::i;:::-;23341:74;;23424:93;23513:3;23424:93;:::i;:::-;23542:2;23537:3;23533:12;23526:19;;23185:366;;;:::o;23557:419::-;23723:4;23761:2;23750:9;23746:18;23738:26;;23810:9;23804:4;23800:20;23796:1;23785:9;23781:17;23774:47;23838:131;23964:4;23838:131;:::i;:::-;23830:139;;23557:419;;;:::o;23982:174::-;24122:26;24118:1;24110:6;24106:14;24099:50;23982:174;:::o;24162:366::-;24304:3;24325:67;24389:2;24384:3;24325:67;:::i;:::-;24318:74;;24401:93;24490:3;24401:93;:::i;:::-;24519:2;24514:3;24510:12;24503:19;;24162:366;;;:::o;24534:419::-;24700:4;24738:2;24727:9;24723:18;24715:26;;24787:9;24781:4;24777:20;24773:1;24762:9;24758:17;24751:47;24815:131;24941:4;24815:131;:::i;:::-;24807:139;;24534:419;;;:::o;24959:228::-;25099:34;25095:1;25087:6;25083:14;25076:58;25168:11;25163:2;25155:6;25151:15;25144:36;24959:228;:::o;25193:366::-;25335:3;25356:67;25420:2;25415:3;25356:67;:::i;:::-;25349:74;;25432:93;25521:3;25432:93;:::i;:::-;25550:2;25545:3;25541:12;25534:19;;25193:366;;;:::o;25565:419::-;25731:4;25769:2;25758:9;25754:18;25746:26;;25818:9;25812:4;25808:20;25804:1;25793:9;25789:17;25782:47;25846:131;25972:4;25846:131;:::i;:::-;25838:139;;25565:419;;;:::o;25990:179::-;26130:31;26126:1;26118:6;26114:14;26107:55;25990:179;:::o;26175:366::-;26317:3;26338:67;26402:2;26397:3;26338:67;:::i;:::-;26331:74;;26414:93;26503:3;26414:93;:::i;:::-;26532:2;26527:3;26523:12;26516:19;;26175:366;;;:::o;26547:419::-;26713:4;26751:2;26740:9;26736:18;26728:26;;26800:9;26794:4;26790:20;26786:1;26775:9;26771:17;26764:47;26828:131;26954:4;26828:131;:::i;:::-;26820:139;;26547:419;;;:::o;26972:168::-;27112:20;27108:1;27100:6;27096:14;27089:44;26972:168;:::o;27146:366::-;27288:3;27309:67;27373:2;27368:3;27309:67;:::i;:::-;27302:74;;27385:93;27474:3;27385:93;:::i;:::-;27503:2;27498:3;27494:12;27487:19;;27146:366;;;:::o;27518:419::-;27684:4;27722:2;27711:9;27707:18;27699:26;;27771:9;27765:4;27761:20;27757:1;27746:9;27742:17;27735:47;27799:131;27925:4;27799:131;:::i;:::-;27791:139;;27518:419;;;:::o;27943:194::-;27983:4;28003:20;28021:1;28003:20;:::i;:::-;27998:25;;28037:20;28055:1;28037:20;:::i;:::-;28032:25;;28081:1;28078;28074:9;28066:17;;28105:1;28099:4;28096:11;28093:37;;;28110:18;;:::i;:::-;28093:37;27943:194;;;;:::o;28143:147::-;28244:11;28281:3;28266:18;;28143:147;;;;:::o;28296:114::-;;:::o;28416:398::-;28575:3;28596:83;28677:1;28672:3;28596:83;:::i;:::-;28589:90;;28688:93;28777:3;28688:93;:::i;:::-;28806:1;28801:3;28797:11;28790:18;;28416:398;;;:::o;28820:379::-;29004:3;29026:147;29169:3;29026:147;:::i;:::-;29019:154;;29190:3;29183:10;;28820:379;;;:::o;29205:166::-;29345:18;29341:1;29333:6;29329:14;29322:42;29205:166;:::o;29377:366::-;29519:3;29540:67;29604:2;29599:3;29540:67;:::i;:::-;29533:74;;29616:93;29705:3;29616:93;:::i;:::-;29734:2;29729:3;29725:12;29718:19;;29377:366;;;:::o;29749:419::-;29915:4;29953:2;29942:9;29938:18;29930:26;;30002:9;29996:4;29992:20;29988:1;29977:9;29973:17;29966:47;30030:131;30156:4;30030:131;:::i;:::-;30022:139;;29749:419;;;:::o;30174:224::-;30314:34;30310:1;30302:6;30298:14;30291:58;30383:7;30378:2;30370:6;30366:15;30359:32;30174:224;:::o;30404:366::-;30546:3;30567:67;30631:2;30626:3;30567:67;:::i;:::-;30560:74;;30643:93;30732:3;30643:93;:::i;:::-;30761:2;30756:3;30752:12;30745:19;;30404:366;;;:::o;30776:419::-;30942:4;30980:2;30969:9;30965:18;30957:26;;31029:9;31023:4;31019:20;31015:1;31004:9;31000:17;30993:47;31057:131;31183:4;31057:131;:::i;:::-;31049:139;;30776:419;;;:::o;31201:222::-;31341:34;31337:1;31329:6;31325:14;31318:58;31410:5;31405:2;31397:6;31393:15;31386:30;31201:222;:::o;31429:366::-;31571:3;31592:67;31656:2;31651:3;31592:67;:::i;:::-;31585:74;;31668:93;31757:3;31668:93;:::i;:::-;31786:2;31781:3;31777:12;31770:19;;31429:366;;;:::o;31801:419::-;31967:4;32005:2;31994:9;31990:18;31982:26;;32054:9;32048:4;32044:20;32040:1;32029:9;32025:17;32018:47;32082:131;32208:4;32082:131;:::i;:::-;32074:139;;31801:419;;;:::o;32226:225::-;32366:34;32362:1;32354:6;32350:14;32343:58;32435:8;32430:2;32422:6;32418:15;32411:33;32226:225;:::o;32457:366::-;32599:3;32620:67;32684:2;32679:3;32620:67;:::i;:::-;32613:74;;32696:93;32785:3;32696:93;:::i;:::-;32814:2;32809:3;32805:12;32798:19;;32457:366;;;:::o;32829:419::-;32995:4;33033:2;33022:9;33018:18;33010:26;;33082:9;33076:4;33072:20;33068:1;33057:9;33053:17;33046:47;33110:131;33236:4;33110:131;:::i;:::-;33102:139;;32829:419;;;:::o;33254:180::-;33302:77;33299:1;33292:88;33399:4;33396:1;33389:15;33423:4;33420:1;33413:15;33440:180;33488:77;33485:1;33478:88;33585:4;33582:1;33575:15;33609:4;33606:1;33599:15;33626:143;33683:5;33714:6;33708:13;33699:22;;33730:33;33757:5;33730:33;:::i;:::-;33626:143;;;;:::o;33775:351::-;33845:6;33894:2;33882:9;33873:7;33869:23;33865:32;33862:119;;;33900:79;;:::i;:::-;33862:119;34020:1;34045:64;34101:7;34092:6;34081:9;34077:22;34045:64;:::i;:::-;34035:74;;33991:128;33775:351;;;;:::o;34132:85::-;34177:7;34206:5;34195:16;;34132:85;;;:::o;34223:158::-;34281:9;34314:61;34332:42;34341:32;34367:5;34341:32;:::i;:::-;34332:42;:::i;:::-;34314:61;:::i;:::-;34301:74;;34223:158;;;:::o;34387:147::-;34482:45;34521:5;34482:45;:::i;:::-;34477:3;34470:58;34387:147;;:::o;34540:114::-;34607:6;34641:5;34635:12;34625:22;;34540:114;;;:::o;34660:184::-;34759:11;34793:6;34788:3;34781:19;34833:4;34828:3;34824:14;34809:29;;34660:184;;;;:::o;34850:132::-;34917:4;34940:3;34932:11;;34970:4;34965:3;34961:14;34953:22;;34850:132;;;:::o;34988:108::-;35065:24;35083:5;35065:24;:::i;:::-;35060:3;35053:37;34988:108;;:::o;35102:179::-;35171:10;35192:46;35234:3;35226:6;35192:46;:::i;:::-;35270:4;35265:3;35261:14;35247:28;;35102:179;;;;:::o;35287:113::-;35357:4;35389;35384:3;35380:14;35372:22;;35287:113;;;:::o;35436:732::-;35555:3;35584:54;35632:5;35584:54;:::i;:::-;35654:86;35733:6;35728:3;35654:86;:::i;:::-;35647:93;;35764:56;35814:5;35764:56;:::i;:::-;35843:7;35874:1;35859:284;35884:6;35881:1;35878:13;35859:284;;;35960:6;35954:13;35987:63;36046:3;36031:13;35987:63;:::i;:::-;35980:70;;36073:60;36126:6;36073:60;:::i;:::-;36063:70;;35919:224;35906:1;35903;35899:9;35894:14;;35859:284;;;35863:14;36159:3;36152:10;;35560:608;;;35436:732;;;;:::o;36174:831::-;36437:4;36475:3;36464:9;36460:19;36452:27;;36489:71;36557:1;36546:9;36542:17;36533:6;36489:71;:::i;:::-;36570:80;36646:2;36635:9;36631:18;36622:6;36570:80;:::i;:::-;36697:9;36691:4;36687:20;36682:2;36671:9;36667:18;36660:48;36725:108;36828:4;36819:6;36725:108;:::i;:::-;36717:116;;36843:72;36911:2;36900:9;36896:18;36887:6;36843:72;:::i;:::-;36925:73;36993:3;36982:9;36978:19;36969:6;36925:73;:::i;:::-;36174:831;;;;;;;;:::o

Swarm Source

ipfs://654d69b8ce0af3dd7b4815587233778b6ba9eb0230fea55200caa91f49110464
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.