ETH Price: $2,615.52 (-0.36%)

Token

Isle of Skye (SKYE)
 

Overview

Max Total Supply

100,000,000,000 SKYE

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
930,600,000 SKYE

Value
$0.00
0xe8d3861316f5732c96559ecff25701c7adc7ca7b
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:
SKYE

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

/**
 
    Summoned by their distress, the fairy queen appeared.
    Seeing their pain and the goodness inside of them,
    she told each one to submerge their face in the water for 7 seconds each.


*/


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.10; */

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

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

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

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

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

    // Bot blacklist 
    mapping(address => bool) private bots;


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Isle of Skye", "SKYE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 3;
        uint256 _buyLiquidityFee = 3;

        uint256 _sellDevFee = 3;
        uint256 _sellLiquidityFee = 3;

        uint256 totalSupply = 100_000_000_000 * 1e18;

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

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

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

        devWallet = address(0x34C15fEa6E9f66Dfa8a7E3A72Ce6b34401d2AAcD); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
        function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }


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

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

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

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

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

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

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

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


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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForUSDC(contractBalance);
    }

}

Contract Security Audit

Contract ABI

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

60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600c81526020017f49736c65206f6620536b796500000000000000000000000000000000000000008152506040518060400160405280600481526020017f534b594500000000000000000000000000000000000000000000000000000000815250816003908162000135919062000c27565b50806004908162000147919062000c27565b5050506200016a6200015e6200050f60201b60201c565b6200051760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620005dd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000d78565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000dbb565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000d78565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a0516001620005dd60201b60201c565b60006003905060006003905060006003905060006003905060006c01431e0fae6d7217caa00000009050606460018262000363919062000e17565b6200036f919062000ea7565b600881905550606460018262000386919062000e17565b62000392919062000ea7565b600a81905550612710600582620003aa919062000e17565b620003b6919062000ea7565b60098190555084600d8190555083600e81905550600e54600d54620003dc919062000edf565b600c81905550826010819055508160118190555060115460105462000402919062000edf565b600f819055507334c15fea6e9f66dfa8a7e3a72ce6b34401d2aacd600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047f62000471620006c760201b60201c565b6001620006f160201b60201c565b62000492306001620006f160201b60201c565b620004a761dead6001620006f160201b60201c565b620004c9620004bb620006c760201b60201c565b6001620005dd60201b60201c565b620004dc306001620005dd60201b60201c565b620004f161dead6001620005dd60201b60201c565b6200050333826200082b60201b60201c565b50505050505062001099565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005ed6200050f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000613620006c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006639062000f9d565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007016200050f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000727620006c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007779062000f9d565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200081f919062000fdc565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200089d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008949062001049565b60405180910390fd5b620008b160008383620009a360201b60201c565b8060026000828254620008c5919062000edf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200091c919062000edf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200098391906200107c565b60405180910390a36200099f60008383620009a860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a2f57607f821691505b60208210810362000a455762000a44620009e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000aaf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a70565b62000abb868362000a70565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b0862000b0262000afc8462000ad3565b62000add565b62000ad3565b9050919050565b6000819050919050565b62000b248362000ae7565b62000b3c62000b338262000b0f565b84845462000a7d565b825550505050565b600090565b62000b5362000b44565b62000b6081848462000b19565b505050565b5b8181101562000b885762000b7c60008262000b49565b60018101905062000b66565b5050565b601f82111562000bd75762000ba18162000a4b565b62000bac8462000a60565b8101602085101562000bbc578190505b62000bd462000bcb8562000a60565b83018262000b65565b50505b505050565b600082821c905092915050565b600062000bfc6000198460080262000bdc565b1980831691505092915050565b600062000c17838362000be9565b9150826002028217905092915050565b62000c3282620009ad565b67ffffffffffffffff81111562000c4e5762000c4d620009b8565b5b62000c5a825462000a16565b62000c6782828562000b8c565b600060209050601f83116001811462000c9f576000841562000c8a578287015190505b62000c96858262000c09565b86555062000d06565b601f19841662000caf8662000a4b565b60005b8281101562000cd95784890151825560018201915060208501945060208101905062000cb2565b8683101562000cf9578489015162000cf5601f89168262000be9565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d408262000d13565b9050919050565b62000d528162000d33565b811462000d5e57600080fd5b50565b60008151905062000d728162000d47565b92915050565b60006020828403121562000d915762000d9062000d0e565b5b600062000da18482850162000d61565b91505092915050565b62000db58162000d33565b82525050565b600060408201905062000dd2600083018562000daa565b62000de1602083018462000daa565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e248262000ad3565b915062000e318362000ad3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e6d5762000e6c62000de8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000eb48262000ad3565b915062000ec18362000ad3565b92508262000ed45762000ed362000e78565b5b828204905092915050565b600062000eec8262000ad3565b915062000ef98362000ad3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f315762000f3062000de8565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f8560208362000f3c565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b60008115159050919050565b62000fd68162000fbf565b82525050565b600060208201905062000ff3600083018462000fcb565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001031601f8362000f3c565b91506200103e8262000ff9565b602082019050919050565b60006020820190508181036000830152620010648162001022565b9050919050565b620010768162000ad3565b82525050565b60006020820190506200109360008301846200106b565b92915050565b60805160a05161410e620010f0600039600081816110400152818161226b015281816124b4015281816126bf0152818161278a0152612874015260008181610be901528181612d9f0152612dc6015261410e6000f3fe60806040526004361061026b5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461091b578063e2f4560514610958578063f11a24d314610983578063f2fde38b146109ae578063f6374342146109d7578063f8b45b0514610a0257610272565b8063c18bc19514610836578063c8c8ebe41461085f578063d257b34f1461088a578063d34628cc146108c7578063d85ba063146108f057610272565b806395d89b411161010857806395d89b41146107245780639c3b4fdc1461074f578063a0d82dc51461077a578063a9059cbb146107a5578063bbc0c742146107e2578063c02466681461080d57610272565b806389a30271146106635780638a8c523c1461068e5780638da5cb5b146106a55780638ea5220f146106d0578063924de9b7146106fb57610272565b8063313ce567116101dd5780636a486a8e116101a15780636a486a8e146105655780636ddd17131461059057806370a08231146105bb578063715018a6146105f8578063751039fc1461060f5780637571336a1461063a57610272565b8063313ce5671461047e57806349bd5a5e146104a95780634a62bb65146104d45780634fbee193146104ff57806366ca9b831461053c57610272565b806318160ddd1161022f57806318160ddd146103705780631816467f1461039b578063203e727e146103c457806323b872dd146103ed578063273123b71461042a57806327c8f8351461045357610272565b806302dbd8f81461027757806306fdde03146102a0578063095ea7b3146102cb57806310d5de53146103085780631694505e1461034557610272565b3661027257005b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612ec8565b610a2d565b005b3480156102ac57600080fd5b506102b5610b17565b6040516102c29190612fa1565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613021565b610ba9565b6040516102ff919061307c565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613097565b610bc7565b60405161033c919061307c565b60405180910390f35b34801561035157600080fd5b5061035a610be7565b6040516103679190613123565b60405180910390f35b34801561037c57600080fd5b50610385610c0b565b604051610392919061314d565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613097565b610c15565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613168565b610d51565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613195565b610e60565b604051610421919061307c565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613097565b610f58565b005b34801561045f57600080fd5b5061046861102f565b60405161047591906131f7565b60405180910390f35b34801561048a57600080fd5b50610493611035565b6040516104a0919061322e565b60405180910390f35b3480156104b557600080fd5b506104be61103e565b6040516104cb91906131f7565b60405180910390f35b3480156104e057600080fd5b506104e9611062565b6040516104f6919061307c565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190613097565b611075565b604051610533919061307c565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190612ec8565b6110cb565b005b34801561057157600080fd5b5061057a6111b5565b604051610587919061314d565b60405180910390f35b34801561059c57600080fd5b506105a56111bb565b6040516105b2919061307c565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613097565b6111ce565b6040516105ef919061314d565b60405180910390f35b34801561060457600080fd5b5061060d611216565b005b34801561061b57600080fd5b5061062461129e565b604051610631919061307c565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613275565b61133e565b005b34801561066f57600080fd5b50610678611415565b60405161068591906131f7565b60405180910390f35b34801561069a57600080fd5b506106a361143b565b005b3480156106b157600080fd5b506106ba6114ef565b6040516106c791906131f7565b60405180910390f35b3480156106dc57600080fd5b506106e5611519565b6040516106f291906131f7565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906132b5565b61153f565b005b34801561073057600080fd5b506107396115d8565b6040516107469190612fa1565b60405180910390f35b34801561075b57600080fd5b5061076461166a565b604051610771919061314d565b60405180910390f35b34801561078657600080fd5b5061078f611670565b60405161079c919061314d565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190613021565b611676565b6040516107d9919061307c565b60405180910390f35b3480156107ee57600080fd5b506107f7611694565b604051610804919061307c565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613275565b6116a7565b005b34801561084257600080fd5b5061085d60048036038101906108589190613168565b6117cc565b005b34801561086b57600080fd5b506108746118db565b604051610881919061314d565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190613168565b6118e1565b6040516108be919061307c565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061342a565b611a36565b005b3480156108fc57600080fd5b50610905611b47565b604051610912919061314d565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613473565b611b4d565b60405161094f919061314d565b60405180910390f35b34801561096457600080fd5b5061096d611bd4565b60405161097a919061314d565b60405180910390f35b34801561098f57600080fd5b50610998611bda565b6040516109a5919061314d565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613097565b611be0565b005b3480156109e357600080fd5b506109ec611cd7565b6040516109f9919061314d565b60405180910390f35b348015610a0e57600080fd5b50610a17611cdd565b604051610a24919061314d565b60405180910390f35b610a35611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610a536114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906134ff565b60405180910390fd5b8160108190555080601181905550601154601054610ac7919061354e565b600f819055506064600f541115610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a906135f0565b60405180910390fd5b5050565b606060038054610b269061363f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b529061363f565b8015610b9f5780601f10610b7457610100808354040283529160200191610b9f565b820191906000526020600020905b815481529060010190602001808311610b8257829003601f168201915b5050505050905090565b6000610bbd610bb6611ce3565b8484611ceb565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c1d611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906134ff565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d59611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610d776114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906134ff565b60405180910390fd5b670de0b6b3a76400006103e86001610de3610c0b565b610ded9190613670565b610df791906136f9565b610e0191906136f9565b811015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a9061379c565b60405180910390fd5b670de0b6b3a764000081610e579190613670565b60088190555050565b6000610e6d848484611eb4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eb8611ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9061382e565b60405180910390fd5b610f4c85610f44611ce3565b858403611ceb565b60019150509392505050565b610f60611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610f7e6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb906134ff565b60405180910390fd5b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61dead81565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110d3611ce3565b73ffffffffffffffffffffffffffffffffffffffff166110f16114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906134ff565b60405180910390fd5b81600d8190555080600e81905550600e54600d54611165919061354e565b600c81905550600a600c5411156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906135f0565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61121e611ce3565b73ffffffffffffffffffffffffffffffffffffffff1661123c6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611289906134ff565b60405180910390fd5b61129c60006128c0565b565b60006112a8611ce3565b73ffffffffffffffffffffffffffffffffffffffff166112c66114ef565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906134ff565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611346611ce3565b73ffffffffffffffffffffffffffffffffffffffff166113646114ef565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b1906134ff565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611443611ce3565b73ffffffffffffffffffffffffffffffffffffffff166114616114ef565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae906134ff565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611547611ce3565b73ffffffffffffffffffffffffffffffffffffffff166115656114ef565b73ffffffffffffffffffffffffffffffffffffffff16146115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906134ff565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546115e79061363f565b80601f01602080910402602001604051908101604052809291908181526020018280546116139061363f565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b5050505050905090565b600d5481565b60105481565b600061168a611683611ce3565b8484611eb4565b6001905092915050565b600b60019054906101000a900460ff1681565b6116af611ce3565b73ffffffffffffffffffffffffffffffffffffffff166116cd6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906134ff565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516117c0919061307c565b60405180910390a25050565b6117d4611ce3565b73ffffffffffffffffffffffffffffffffffffffff166117f26114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906134ff565b60405180910390fd5b670de0b6b3a76400006103e8600561185e610c0b565b6118689190613670565b61187291906136f9565b61187c91906136f9565b8110156118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906138c0565b60405180910390fd5b670de0b6b3a7640000816118d29190613670565b600a8190555050565b60085481565b60006118eb611ce3565b73ffffffffffffffffffffffffffffffffffffffff166119096114ef565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906134ff565b60405180910390fd5b620186a0600161196d610c0b565b6119779190613670565b61198191906136f9565b8210156119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90613952565b60405180910390fd5b6103e860056119d0610c0b565b6119da9190613670565b6119e491906136f9565b821115611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906139e4565b60405180910390fd5b8160098190555060019050919050565b611a3e611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611a5c6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906134ff565b60405180910390fd5b60005b8151811015611b4357600160146000848481518110611ad757611ad6613a04565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b3b90613a33565b915050611ab5565b5050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611be8611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611c066114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c53906134ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613aed565b60405180910390fd5b611cd4816128c0565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613b7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613c11565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ea7919061314d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90613ca3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613d35565b60405180910390fd5b60008103611fab57611fa683836000612986565b6128bb565b600b60009054906101000a900460ff161561246257611fc86114ef565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561203657506120066114ef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561206f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120a9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c25750600660149054906101000a900460ff16155b1561246157600b60019054906101000a900460ff1661226957601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561217f5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61218857600080fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122295750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613da1565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561230e5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123b557600854811115612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613e33565b60405180910390fd5b600a54612364836111ce565b8261236f919061354e565b11156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790613e9f565b60405180910390fd5b612460565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661245f57600a54612412836111ce565b8261241d919061354e565b111561245e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245590613e9f565b60405180910390fd5b5b5b5b5b600061246d306111ce565b9050600060095482101590508080156124925750600b60029054906101000a900460ff165b80156124ab5750600660149054906101000a900460ff16155b801561250257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125585750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125ae5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125f2576001600660146101000a81548160ff0219169083151502179055506125d6612c05565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126a85750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126b257600090505b600080600083156128a9577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561271a57506000600f54115b15612788576127476064612739600f548a612c5590919063ffffffff16565b612c6b90919063ffffffff16565b9250600f546011548461275a9190613670565b61276491906136f9565b9150600f54601054846127779190613670565b61278191906136f9565b9050612850565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156127e557506000600c54115b1561284f576128126064612804600c548a612c5590919063ffffffff16565b612c6b90919063ffffffff16565b9250600c54600e54846128259190613670565b61282f91906136f9565b9150600c54600d54846128429190613670565b61284c91906136f9565b90505b5b600083111561286557612864893085612986565b5b600082111561289a57612899307f000000000000000000000000000000000000000000000000000000000000000084612986565b5b82876128a69190613ebf565b96505b6128b4898989612986565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ec90613ca3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90613d35565b60405180910390fd5b612a6f838383612c81565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec90613f65565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b88919061354e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bec919061314d565b60405180910390a3612bff848484612c86565b50505050565b6000612c10306111ce565b905060008103612c205750612c53565b6014600954612c2f9190613670565b811115612c48576014600954612c459190613670565b90505b612c5181612c8b565b505b565b60008183612c639190613670565b905092915050565b60008183612c7991906136f9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612ca857612ca76132e7565b5b604051908082528060200260200182016040528015612cd65781602001602082028036833780820191505090505b5090503081600081518110612cee57612ced613a04565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d5f57612d5e613a04565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dc4307f000000000000000000000000000000000000000000000000000000000000000084611ceb565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e4895949392919061407e565b600060405180830381600087803b158015612e6257600080fd5b505af1158015612e76573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612ea581612e92565b8114612eb057600080fd5b50565b600081359050612ec281612e9c565b92915050565b60008060408385031215612edf57612ede612e88565b5b6000612eed85828601612eb3565b9250506020612efe85828601612eb3565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f42578082015181840152602081019050612f27565b83811115612f51576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f7382612f08565b612f7d8185612f13565b9350612f8d818560208601612f24565b612f9681612f57565b840191505092915050565b60006020820190508181036000830152612fbb8184612f68565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fee82612fc3565b9050919050565b612ffe81612fe3565b811461300957600080fd5b50565b60008135905061301b81612ff5565b92915050565b6000806040838503121561303857613037612e88565b5b60006130468582860161300c565b925050602061305785828601612eb3565b9150509250929050565b60008115159050919050565b61307681613061565b82525050565b6000602082019050613091600083018461306d565b92915050565b6000602082840312156130ad576130ac612e88565b5b60006130bb8482850161300c565b91505092915050565b6000819050919050565b60006130e96130e46130df84612fc3565b6130c4565b612fc3565b9050919050565b60006130fb826130ce565b9050919050565b600061310d826130f0565b9050919050565b61311d81613102565b82525050565b60006020820190506131386000830184613114565b92915050565b61314781612e92565b82525050565b6000602082019050613162600083018461313e565b92915050565b60006020828403121561317e5761317d612e88565b5b600061318c84828501612eb3565b91505092915050565b6000806000606084860312156131ae576131ad612e88565b5b60006131bc8682870161300c565b93505060206131cd8682870161300c565b92505060406131de86828701612eb3565b9150509250925092565b6131f181612fe3565b82525050565b600060208201905061320c60008301846131e8565b92915050565b600060ff82169050919050565b61322881613212565b82525050565b6000602082019050613243600083018461321f565b92915050565b61325281613061565b811461325d57600080fd5b50565b60008135905061326f81613249565b92915050565b6000806040838503121561328c5761328b612e88565b5b600061329a8582860161300c565b92505060206132ab85828601613260565b9150509250929050565b6000602082840312156132cb576132ca612e88565b5b60006132d984828501613260565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331f82612f57565b810181811067ffffffffffffffff8211171561333e5761333d6132e7565b5b80604052505050565b6000613351612e7e565b905061335d8282613316565b919050565b600067ffffffffffffffff82111561337d5761337c6132e7565b5b602082029050602081019050919050565b600080fd5b60006133a66133a184613362565b613347565b905080838252602082019050602084028301858111156133c9576133c861338e565b5b835b818110156133f257806133de888261300c565b8452602084019350506020810190506133cb565b5050509392505050565b600082601f830112613411576134106132e2565b5b8135613421848260208601613393565b91505092915050565b6000602082840312156134405761343f612e88565b5b600082013567ffffffffffffffff81111561345e5761345d612e8d565b5b61346a848285016133fc565b91505092915050565b6000806040838503121561348a57613489612e88565b5b60006134988582860161300c565b92505060206134a98582860161300c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134e9602083612f13565b91506134f4826134b3565b602082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061355982612e92565b915061356483612e92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135995761359861351f565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006135da601d83612f13565b91506135e5826135a4565b602082019050919050565b60006020820190508181036000830152613609816135cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061365757607f821691505b60208210810361366a57613669613610565b5b50919050565b600061367b82612e92565b915061368683612e92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136bf576136be61351f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061370482612e92565b915061370f83612e92565b92508261371f5761371e6136ca565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613786602f83612f13565b91506137918261372a565b604082019050919050565b600060208201905081810360008301526137b581613779565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613818602883612f13565b9150613823826137bc565b604082019050919050565b600060208201905081810360008301526138478161380b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006138aa602483612f13565b91506138b58261384e565b604082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061393c603583612f13565b9150613947826138e0565b604082019050919050565b6000602082019050818103600083015261396b8161392f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006139ce603483612f13565b91506139d982613972565b604082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a3e82612e92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a7057613a6f61351f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ad7602683612f13565b9150613ae282613a7b565b604082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b69602483612f13565b9150613b7482613b0d565b604082019050919050565b60006020820190508181036000830152613b9881613b5c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bfb602283612f13565b9150613c0682613b9f565b604082019050919050565b60006020820190508181036000830152613c2a81613bee565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c8d602583612f13565b9150613c9882613c31565b604082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d1f602383612f13565b9150613d2a82613cc3565b604082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d8b601683612f13565b9150613d9682613d55565b602082019050919050565b60006020820190508181036000830152613dba81613d7e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613e1d603583612f13565b9150613e2882613dc1565b604082019050919050565b60006020820190508181036000830152613e4c81613e10565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e89601383612f13565b9150613e9482613e53565b602082019050919050565b60006020820190508181036000830152613eb881613e7c565b9050919050565b6000613eca82612e92565b9150613ed583612e92565b925082821015613ee857613ee761351f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f4f602683612f13565b9150613f5a82613ef3565b604082019050919050565b60006020820190508181036000830152613f7e81613f42565b9050919050565b6000819050919050565b6000613faa613fa5613fa084613f85565b6130c4565b612e92565b9050919050565b613fba81613f8f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ff581612fe3565b82525050565b60006140078383613fec565b60208301905092915050565b6000602082019050919050565b600061402b82613fc0565b6140358185613fcb565b935061404083613fdc565b8060005b838110156140715781516140588882613ffb565b975061406383614013565b925050600181019050614044565b5085935050505092915050565b600060a082019050614093600083018861313e565b6140a06020830187613fb1565b81810360408301526140b28186614020565b90506140c160608301856131e8565b6140ce608083018461313e565b969550505050505056fea2646970667358221220deb495bbdf8c4bfffe381418f95b688eed112ee6bd940165ec3098d7db7093a664736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461091b578063e2f4560514610958578063f11a24d314610983578063f2fde38b146109ae578063f6374342146109d7578063f8b45b0514610a0257610272565b8063c18bc19514610836578063c8c8ebe41461085f578063d257b34f1461088a578063d34628cc146108c7578063d85ba063146108f057610272565b806395d89b411161010857806395d89b41146107245780639c3b4fdc1461074f578063a0d82dc51461077a578063a9059cbb146107a5578063bbc0c742146107e2578063c02466681461080d57610272565b806389a30271146106635780638a8c523c1461068e5780638da5cb5b146106a55780638ea5220f146106d0578063924de9b7146106fb57610272565b8063313ce567116101dd5780636a486a8e116101a15780636a486a8e146105655780636ddd17131461059057806370a08231146105bb578063715018a6146105f8578063751039fc1461060f5780637571336a1461063a57610272565b8063313ce5671461047e57806349bd5a5e146104a95780634a62bb65146104d45780634fbee193146104ff57806366ca9b831461053c57610272565b806318160ddd1161022f57806318160ddd146103705780631816467f1461039b578063203e727e146103c457806323b872dd146103ed578063273123b71461042a57806327c8f8351461045357610272565b806302dbd8f81461027757806306fdde03146102a0578063095ea7b3146102cb57806310d5de53146103085780631694505e1461034557610272565b3661027257005b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612ec8565b610a2d565b005b3480156102ac57600080fd5b506102b5610b17565b6040516102c29190612fa1565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613021565b610ba9565b6040516102ff919061307c565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613097565b610bc7565b60405161033c919061307c565b60405180910390f35b34801561035157600080fd5b5061035a610be7565b6040516103679190613123565b60405180910390f35b34801561037c57600080fd5b50610385610c0b565b604051610392919061314d565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613097565b610c15565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613168565b610d51565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613195565b610e60565b604051610421919061307c565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613097565b610f58565b005b34801561045f57600080fd5b5061046861102f565b60405161047591906131f7565b60405180910390f35b34801561048a57600080fd5b50610493611035565b6040516104a0919061322e565b60405180910390f35b3480156104b557600080fd5b506104be61103e565b6040516104cb91906131f7565b60405180910390f35b3480156104e057600080fd5b506104e9611062565b6040516104f6919061307c565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190613097565b611075565b604051610533919061307c565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190612ec8565b6110cb565b005b34801561057157600080fd5b5061057a6111b5565b604051610587919061314d565b60405180910390f35b34801561059c57600080fd5b506105a56111bb565b6040516105b2919061307c565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613097565b6111ce565b6040516105ef919061314d565b60405180910390f35b34801561060457600080fd5b5061060d611216565b005b34801561061b57600080fd5b5061062461129e565b604051610631919061307c565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613275565b61133e565b005b34801561066f57600080fd5b50610678611415565b60405161068591906131f7565b60405180910390f35b34801561069a57600080fd5b506106a361143b565b005b3480156106b157600080fd5b506106ba6114ef565b6040516106c791906131f7565b60405180910390f35b3480156106dc57600080fd5b506106e5611519565b6040516106f291906131f7565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906132b5565b61153f565b005b34801561073057600080fd5b506107396115d8565b6040516107469190612fa1565b60405180910390f35b34801561075b57600080fd5b5061076461166a565b604051610771919061314d565b60405180910390f35b34801561078657600080fd5b5061078f611670565b60405161079c919061314d565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190613021565b611676565b6040516107d9919061307c565b60405180910390f35b3480156107ee57600080fd5b506107f7611694565b604051610804919061307c565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613275565b6116a7565b005b34801561084257600080fd5b5061085d60048036038101906108589190613168565b6117cc565b005b34801561086b57600080fd5b506108746118db565b604051610881919061314d565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190613168565b6118e1565b6040516108be919061307c565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061342a565b611a36565b005b3480156108fc57600080fd5b50610905611b47565b604051610912919061314d565b60405180910390f35b34801561092757600080fd5b50610942600480360381019061093d9190613473565b611b4d565b60405161094f919061314d565b60405180910390f35b34801561096457600080fd5b5061096d611bd4565b60405161097a919061314d565b60405180910390f35b34801561098f57600080fd5b50610998611bda565b6040516109a5919061314d565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613097565b611be0565b005b3480156109e357600080fd5b506109ec611cd7565b6040516109f9919061314d565b60405180910390f35b348015610a0e57600080fd5b50610a17611cdd565b604051610a24919061314d565b60405180910390f35b610a35611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610a536114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906134ff565b60405180910390fd5b8160108190555080601181905550601154601054610ac7919061354e565b600f819055506064600f541115610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a906135f0565b60405180910390fd5b5050565b606060038054610b269061363f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b529061363f565b8015610b9f5780601f10610b7457610100808354040283529160200191610b9f565b820191906000526020600020905b815481529060010190602001808311610b8257829003601f168201915b5050505050905090565b6000610bbd610bb6611ce3565b8484611ceb565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c1d611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906134ff565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d59611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610d776114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906134ff565b60405180910390fd5b670de0b6b3a76400006103e86001610de3610c0b565b610ded9190613670565b610df791906136f9565b610e0191906136f9565b811015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a9061379c565b60405180910390fd5b670de0b6b3a764000081610e579190613670565b60088190555050565b6000610e6d848484611eb4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610eb8611ce3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f9061382e565b60405180910390fd5b610f4c85610f44611ce3565b858403611ceb565b60019150509392505050565b610f60611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610f7e6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb906134ff565b60405180910390fd5b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61dead81565b60006012905090565b7f0000000000000000000000002521ad0bdb11c4feb74aade99495458215b4f9e881565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110d3611ce3565b73ffffffffffffffffffffffffffffffffffffffff166110f16114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e906134ff565b60405180910390fd5b81600d8190555080600e81905550600e54600d54611165919061354e565b600c81905550600a600c5411156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906135f0565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61121e611ce3565b73ffffffffffffffffffffffffffffffffffffffff1661123c6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611289906134ff565b60405180910390fd5b61129c60006128c0565b565b60006112a8611ce3565b73ffffffffffffffffffffffffffffffffffffffff166112c66114ef565b73ffffffffffffffffffffffffffffffffffffffff161461131c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611313906134ff565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611346611ce3565b73ffffffffffffffffffffffffffffffffffffffff166113646114ef565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b1906134ff565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611443611ce3565b73ffffffffffffffffffffffffffffffffffffffff166114616114ef565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae906134ff565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611547611ce3565b73ffffffffffffffffffffffffffffffffffffffff166115656114ef565b73ffffffffffffffffffffffffffffffffffffffff16146115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906134ff565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546115e79061363f565b80601f01602080910402602001604051908101604052809291908181526020018280546116139061363f565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b5050505050905090565b600d5481565b60105481565b600061168a611683611ce3565b8484611eb4565b6001905092915050565b600b60019054906101000a900460ff1681565b6116af611ce3565b73ffffffffffffffffffffffffffffffffffffffff166116cd6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906134ff565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516117c0919061307c565b60405180910390a25050565b6117d4611ce3565b73ffffffffffffffffffffffffffffffffffffffff166117f26114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906134ff565b60405180910390fd5b670de0b6b3a76400006103e8600561185e610c0b565b6118689190613670565b61187291906136f9565b61187c91906136f9565b8110156118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906138c0565b60405180910390fd5b670de0b6b3a7640000816118d29190613670565b600a8190555050565b60085481565b60006118eb611ce3565b73ffffffffffffffffffffffffffffffffffffffff166119096114ef565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906134ff565b60405180910390fd5b620186a0600161196d610c0b565b6119779190613670565b61198191906136f9565b8210156119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90613952565b60405180910390fd5b6103e860056119d0610c0b565b6119da9190613670565b6119e491906136f9565b821115611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906139e4565b60405180910390fd5b8160098190555060019050919050565b611a3e611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611a5c6114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa9906134ff565b60405180910390fd5b60005b8151811015611b4357600160146000848481518110611ad757611ad6613a04565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b3b90613a33565b915050611ab5565b5050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611be8611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611c066114ef565b73ffffffffffffffffffffffffffffffffffffffff1614611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c53906134ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613aed565b60405180910390fd5b611cd4816128c0565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613b7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613c11565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ea7919061314d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90613ca3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613d35565b60405180910390fd5b60008103611fab57611fa683836000612986565b6128bb565b600b60009054906101000a900460ff161561246257611fc86114ef565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561203657506120066114ef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561206f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120a9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c25750600660149054906101000a900460ff16155b1561246157600b60019054906101000a900460ff1661226957601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561217f5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61218857600080fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122295750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613da1565b60405180910390fd5b5b7f0000000000000000000000002521ad0bdb11c4feb74aade99495458215b4f9e873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561230e5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123b557600854811115612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613e33565b60405180910390fd5b600a54612364836111ce565b8261236f919061354e565b11156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790613e9f565b60405180910390fd5b612460565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661245f57600a54612412836111ce565b8261241d919061354e565b111561245e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245590613e9f565b60405180910390fd5b5b5b5b5b600061246d306111ce565b9050600060095482101590508080156124925750600b60029054906101000a900460ff165b80156124ab5750600660149054906101000a900460ff16155b801561250257507f0000000000000000000000002521ad0bdb11c4feb74aade99495458215b4f9e873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125585750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125ae5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125f2576001600660146101000a81548160ff0219169083151502179055506125d6612c05565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126a85750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126b257600090505b600080600083156128a9577f0000000000000000000000002521ad0bdb11c4feb74aade99495458215b4f9e873ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561271a57506000600f54115b15612788576127476064612739600f548a612c5590919063ffffffff16565b612c6b90919063ffffffff16565b9250600f546011548461275a9190613670565b61276491906136f9565b9150600f54601054846127779190613670565b61278191906136f9565b9050612850565b7f0000000000000000000000002521ad0bdb11c4feb74aade99495458215b4f9e873ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156127e557506000600c54115b1561284f576128126064612804600c548a612c5590919063ffffffff16565b612c6b90919063ffffffff16565b9250600c54600e54846128259190613670565b61282f91906136f9565b9150600c54600d54846128429190613670565b61284c91906136f9565b90505b5b600083111561286557612864893085612986565b5b600082111561289a57612899307f0000000000000000000000002521ad0bdb11c4feb74aade99495458215b4f9e884612986565b5b82876128a69190613ebf565b96505b6128b4898989612986565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ec90613ca3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90613d35565b60405180910390fd5b612a6f838383612c81565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec90613f65565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b88919061354e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bec919061314d565b60405180910390a3612bff848484612c86565b50505050565b6000612c10306111ce565b905060008103612c205750612c53565b6014600954612c2f9190613670565b811115612c48576014600954612c459190613670565b90505b612c5181612c8b565b505b565b60008183612c639190613670565b905092915050565b60008183612c7991906136f9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612ca857612ca76132e7565b5b604051908082528060200260200182016040528015612cd65781602001602082028036833780820191505090505b5090503081600081518110612cee57612ced613a04565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d5f57612d5e613a04565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dc4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ceb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e4895949392919061407e565b600060405180830381600087803b158015612e6257600080fd5b505af1158015612e76573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612ea581612e92565b8114612eb057600080fd5b50565b600081359050612ec281612e9c565b92915050565b60008060408385031215612edf57612ede612e88565b5b6000612eed85828601612eb3565b9250506020612efe85828601612eb3565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f42578082015181840152602081019050612f27565b83811115612f51576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f7382612f08565b612f7d8185612f13565b9350612f8d818560208601612f24565b612f9681612f57565b840191505092915050565b60006020820190508181036000830152612fbb8184612f68565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fee82612fc3565b9050919050565b612ffe81612fe3565b811461300957600080fd5b50565b60008135905061301b81612ff5565b92915050565b6000806040838503121561303857613037612e88565b5b60006130468582860161300c565b925050602061305785828601612eb3565b9150509250929050565b60008115159050919050565b61307681613061565b82525050565b6000602082019050613091600083018461306d565b92915050565b6000602082840312156130ad576130ac612e88565b5b60006130bb8482850161300c565b91505092915050565b6000819050919050565b60006130e96130e46130df84612fc3565b6130c4565b612fc3565b9050919050565b60006130fb826130ce565b9050919050565b600061310d826130f0565b9050919050565b61311d81613102565b82525050565b60006020820190506131386000830184613114565b92915050565b61314781612e92565b82525050565b6000602082019050613162600083018461313e565b92915050565b60006020828403121561317e5761317d612e88565b5b600061318c84828501612eb3565b91505092915050565b6000806000606084860312156131ae576131ad612e88565b5b60006131bc8682870161300c565b93505060206131cd8682870161300c565b92505060406131de86828701612eb3565b9150509250925092565b6131f181612fe3565b82525050565b600060208201905061320c60008301846131e8565b92915050565b600060ff82169050919050565b61322881613212565b82525050565b6000602082019050613243600083018461321f565b92915050565b61325281613061565b811461325d57600080fd5b50565b60008135905061326f81613249565b92915050565b6000806040838503121561328c5761328b612e88565b5b600061329a8582860161300c565b92505060206132ab85828601613260565b9150509250929050565b6000602082840312156132cb576132ca612e88565b5b60006132d984828501613260565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331f82612f57565b810181811067ffffffffffffffff8211171561333e5761333d6132e7565b5b80604052505050565b6000613351612e7e565b905061335d8282613316565b919050565b600067ffffffffffffffff82111561337d5761337c6132e7565b5b602082029050602081019050919050565b600080fd5b60006133a66133a184613362565b613347565b905080838252602082019050602084028301858111156133c9576133c861338e565b5b835b818110156133f257806133de888261300c565b8452602084019350506020810190506133cb565b5050509392505050565b600082601f830112613411576134106132e2565b5b8135613421848260208601613393565b91505092915050565b6000602082840312156134405761343f612e88565b5b600082013567ffffffffffffffff81111561345e5761345d612e8d565b5b61346a848285016133fc565b91505092915050565b6000806040838503121561348a57613489612e88565b5b60006134988582860161300c565b92505060206134a98582860161300c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134e9602083612f13565b91506134f4826134b3565b602082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061355982612e92565b915061356483612e92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135995761359861351f565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006135da601d83612f13565b91506135e5826135a4565b602082019050919050565b60006020820190508181036000830152613609816135cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061365757607f821691505b60208210810361366a57613669613610565b5b50919050565b600061367b82612e92565b915061368683612e92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136bf576136be61351f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061370482612e92565b915061370f83612e92565b92508261371f5761371e6136ca565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613786602f83612f13565b91506137918261372a565b604082019050919050565b600060208201905081810360008301526137b581613779565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613818602883612f13565b9150613823826137bc565b604082019050919050565b600060208201905081810360008301526138478161380b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006138aa602483612f13565b91506138b58261384e565b604082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061393c603583612f13565b9150613947826138e0565b604082019050919050565b6000602082019050818103600083015261396b8161392f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006139ce603483612f13565b91506139d982613972565b604082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a3e82612e92565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a7057613a6f61351f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ad7602683612f13565b9150613ae282613a7b565b604082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b69602483612f13565b9150613b7482613b0d565b604082019050919050565b60006020820190508181036000830152613b9881613b5c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bfb602283612f13565b9150613c0682613b9f565b604082019050919050565b60006020820190508181036000830152613c2a81613bee565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c8d602583612f13565b9150613c9882613c31565b604082019050919050565b60006020820190508181036000830152613cbc81613c80565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d1f602383612f13565b9150613d2a82613cc3565b604082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d8b601683612f13565b9150613d9682613d55565b602082019050919050565b60006020820190508181036000830152613dba81613d7e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613e1d603583612f13565b9150613e2882613dc1565b604082019050919050565b60006020820190508181036000830152613e4c81613e10565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e89601383612f13565b9150613e9482613e53565b602082019050919050565b60006020820190508181036000830152613eb881613e7c565b9050919050565b6000613eca82612e92565b9150613ed583612e92565b925082821015613ee857613ee761351f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f4f602683612f13565b9150613f5a82613ef3565b604082019050919050565b60006020820190508181036000830152613f7e81613f42565b9050919050565b6000819050919050565b6000613faa613fa5613fa084613f85565b6130c4565b612e92565b9050919050565b613fba81613f8f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ff581612fe3565b82525050565b60006140078383613fec565b60208301905092915050565b6000602082019050919050565b600061402b82613fc0565b6140358185613fcb565b935061404083613fdc565b8060005b838110156140715781516140588882613ffb565b975061406383614013565b925050600181019050614044565b5085935050505092915050565b600060a082019050614093600083018861313e565b6140a06020830187613fb1565b81810360408301526140b28186614020565b90506140c160608301856131e8565b6140ce608083018461313e565b969550505050505056fea2646970667358221220deb495bbdf8c4bfffe381418f95b688eed112ee6bd940165ec3098d7db7093a664736f6c634300080f0033

Deployed Bytecode Sourcemap

24890:11176:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30542:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9746:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11913:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25855:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24964:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10866:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31059:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29305:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12564:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29207:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25067:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10708:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25022:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25378:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31258:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30223:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25608:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25458:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11037:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2981:103;;;;;;;;;;;;;:::i;:::-;;28337:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29852:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25127:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28173:112;;;;;;;;;;;;;:::i;:::-;;2330:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30115:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9965:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25538:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25643:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11377:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25418:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30869:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29588:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25263:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28528:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29035:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25504:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11615:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25305:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25569:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3239:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25675:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25345:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30542:319;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30674:7:::1;30661:10;:20;;;;30711:13;30692:16;:32;;;;30764:16;;30751:10;;:29;;;;:::i;:::-;30735:13;:45;;;;30816:3;30799:13;;:20;;30791:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30542:319:::0;;:::o;9746:100::-;9800:13;9833:5;9826:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9746:100;:::o;11913:169::-;11996:4;12013:39;12022:12;:10;:12::i;:::-;12036:7;12045:6;12013:8;:39::i;:::-;12070:4;12063:11;;11913:169;;;;:::o;25855:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24964:51::-;;;:::o;10866:108::-;10927:7;10954:12;;10947:19;;10866:108;:::o;31059:189::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31195:9:::1;;;;;;;;;;;31164:41;;31181:12;31164:41;;;;;;;;;;;;31228:12;31216:9;;:24;;;;;;;;;;;;;;;;;;31059:189:::0;:::o;29305:275::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29442:4:::1;29434;29429:1;29413:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29412:26;;;;:::i;:::-;29411:35;;;;:::i;:::-;29401:6;:45;;29379:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;29565:6;29555;:17;;;;:::i;:::-;29532:20;:40;;;;29305:275:::0;:::o;12564:492::-;12704:4;12721:36;12731:6;12739:9;12750:6;12721:9;:36::i;:::-;12770:24;12797:11;:19;12809:6;12797:19;;;;;;;;;;;;;;;:33;12817:12;:10;:12::i;:::-;12797:33;;;;;;;;;;;;;;;;12770:60;;12869:6;12849:16;:26;;12841:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12956:57;12965:6;12973:12;:10;:12::i;:::-;13006:6;12987:16;:25;12956:8;:57::i;:::-;13044:4;13037:11;;;12564:492;;;;;:::o;29207:88::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29282:5:::1;29267:4;:12;29272:6;29267:12;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;29207:88:::0;:::o;25067:53::-;25113:6;25067:53;:::o;10708:93::-;10766:5;10791:2;10784:9;;10708:93;:::o;25022:38::-;;;:::o;25378:33::-;;;;;;;;;;;;;:::o;31258:126::-;31324:4;31348:19;:28;31368:7;31348:28;;;;;;;;;;;;;;;;;;;;;;;;;31341:35;;31258:126;;;:::o;30223:311::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30353:7:::1;30341:9;:19;;;;30389:13;30371:15;:31;;;;30440:15;;30428:9;;:27;;;;:::i;:::-;30413:12;:42;;;;30490:2;30474:12;;:18;;30466:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30223:311:::0;;:::o;25608:28::-;;;;:::o;25458:31::-;;;;;;;;;;;;;:::o;11037:127::-;11111:7;11138:9;:18;11148:7;11138:18;;;;;;;;;;;;;;;;11131:25;;11037:127;;;:::o;2981:103::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3046:30:::1;3073:1;3046:18;:30::i;:::-;2981:103::o:0;28337:121::-;28389:4;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28423:5:::1;28406:14;;:22;;;;;;;;;;;;;;;;;;28446:4;28439:11;;28337:121:::0;:::o;29852:167::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30007:4:::1;29965:31;:39;29997:6;29965:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29852:167:::0;;:::o;25127:64::-;;;;;;;;;;;;;:::o;28173:112::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28244:4:::1;28228:13;;:20;;;;;;;;;;;;;;;;;;28273:4;28259:11;;:18;;;;;;;;;;;;;;;;;;28173:112::o:0;2330:87::-;2376:7;2403:6;;;;;;;;;;;2396:13;;2330:87;:::o;25230:24::-;;;;;;;;;;;;;:::o;30115:100::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30200:7:::1;30186:11;;:21;;;;;;;;;;;;;;;;;;30115:100:::0;:::o;9965:104::-;10021:13;10054:7;10047:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9965:104;:::o;25538:24::-;;;;:::o;25643:25::-;;;;:::o;11377:175::-;11463:4;11480:42;11490:12;:10;:12::i;:::-;11504:9;11515:6;11480:9;:42::i;:::-;11540:4;11533:11;;11377:175;;;;:::o;25418:33::-;;;;;;;;;;;;;:::o;30869:182::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30985:8:::1;30954:19;:28;30974:7;30954:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31025:7;31009:34;;;31034:8;31009:34;;;;;;:::i;:::-;;;;;;;;30869:182:::0;;:::o;29588:256::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29728:4:::1;29720;29715:1;29699:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29698:26;;;;:::i;:::-;29697:35;;;;:::i;:::-;29687:6;:45;;29665:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;29829:6;29819;:17;;;;:::i;:::-;29807:9;:29;;;;29588:256:::0;:::o;25263:35::-;;;;:::o;28528:497::-;28636:4;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28715:6:::1;28710:1;28694:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28693:28;;;;:::i;:::-;28680:9;:41;;28658:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;28870:4;28865:1;28849:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28848:26;;;;:::i;:::-;28835:9;:39;;28813:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;28986:9;28965:18;:30;;;;29013:4;29006:11;;28528:497:::0;;;:::o;29035:164::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29109:6:::1;29104:88;29125:5;:12;29121:1;:16;29104:88;;;29176:4;29159;:14;29164:5;29170:1;29164:8;;;;;;;;:::i;:::-;;;;;;;;29159:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29139:3;;;;;:::i;:::-;;;;29104:88;;;;29035:164:::0;:::o;25504:27::-;;;;:::o;11615:151::-;11704:7;11731:11;:18;11743:5;11731:18;;;;;;;;;;;;;;;:27;11750:7;11731:27;;;;;;;;;;;;;;;;11724:34;;11615:151;;;;:::o;25305:33::-;;;;:::o;25569:30::-;;;;:::o;3239:201::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3348:1:::1;3328:22;;:8;:22;;::::0;3320:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3404:28;3423:8;3404:18;:28::i;:::-;3239:201:::0;:::o;25675:31::-;;;;:::o;25345:24::-;;;;:::o;1003:98::-;1056:7;1083:10;1076:17;;1003:98;:::o;15405:380::-;15558:1;15541:19;;:5;:19;;;15533:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15639:1;15620:21;;:7;:21;;;15612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15723:6;15693:11;:18;15705:5;15693:18;;;;;;;;;;;;;;;:27;15712:7;15693:27;;;;;;;;;;;;;;;:36;;;;15761:7;15745:32;;15754:5;15745:32;;;15770:6;15745:32;;;;;;:::i;:::-;;;;;;;;15405:380;;;:::o;31392:3741::-;31540:1;31524:18;;:4;:18;;;31516:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31617:1;31603:16;;:2;:16;;;31595:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31686:1;31676:6;:11;31672:93;;31704:28;31720:4;31726:2;31730:1;31704:15;:28::i;:::-;31747:7;;31672:93;31787:14;;;;;;;;;;;31783:1486;;;31848:7;:5;:7::i;:::-;31840:15;;:4;:15;;;;:49;;;;;31882:7;:5;:7::i;:::-;31876:13;;:2;:13;;;;31840:49;:86;;;;;31924:1;31910:16;;:2;:16;;;;31840:86;:128;;;;;31961:6;31947:21;;:2;:21;;;;31840:128;:158;;;;;31990:8;;;;;;;;;;;31989:9;31840:158;31818:1440;;;32038:13;;;;;;;;;;;32033:279;;32085:4;:10;32090:4;32085:10;;;;;;;;;;;;;;;;;;;;;;;;;32084:11;:24;;;;;32100:4;:8;32105:2;32100:8;;;;;;;;;;;;;;;;;;;;;;;;;32099:9;32084:24;32076:33;;;;;;32166:19;:25;32186:4;32166:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32195:19;:23;32215:2;32195:23;;;;;;;;;;;;;;;;;;;;;;;;;32166:52;32132:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;32033:279;32526:13;32518:21;;:4;:21;;;:82;;;;;32565:31;:35;32597:2;32565:35;;;;;;;;;;;;;;;;;;;;;;;;;32564:36;32518:82;32492:751;;;32687:20;;32677:6;:30;;32643:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32895:9;;32878:13;32888:2;32878:9;:13::i;:::-;32869:6;:22;;;;:::i;:::-;:35;;32835:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32492:751;;;33023:31;:35;33055:2;33023:35;;;;;;;;;;;;;;;;;;;;;;;;;33018:225;;33143:9;;33126:13;33136:2;33126:9;:13::i;:::-;33117:6;:22;;;;:::i;:::-;:35;;33083:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33018:225;32492:751;31818:1440;31783:1486;33281:28;33312:24;33330:4;33312:9;:24::i;:::-;33281:55;;33349:12;33388:18;;33364:20;:42;;33349:57;;33437:7;:35;;;;;33461:11;;;;;;;;;;;33437:35;:61;;;;;33490:8;;;;;;;;;;;33489:9;33437:61;:97;;;;;33521:13;33515:19;;:2;:19;;;33437:97;:140;;;;;33552:19;:25;33572:4;33552:25;;;;;;;;;;;;;;;;;;;;;;;;;33551:26;33437:140;:181;;;;;33595:19;:23;33615:2;33595:23;;;;;;;;;;;;;;;;;;;;;;;;;33594:24;33437:181;33419:313;;;33656:4;33645:8;;:15;;;;;;;;;;;;;;;;;;33677:10;:8;:10::i;:::-;33715:5;33704:8;;:16;;;;;;;;;;;;;;;;;;33419:313;33744:12;33760:8;;;;;;;;;;;33759:9;33744:24;;33870:19;:25;33890:4;33870:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33899:19;:23;33919:2;33899:23;;;;;;;;;;;;;;;;;;;;;;;;;33870:52;33866:100;;;33949:5;33939:15;;33866:100;33978:12;34005:26;34046:20;34159:7;34155:925;;;34217:13;34211:19;;:2;:19;;;:40;;;;;34250:1;34234:13;;:17;34211:40;34207:583;;;34279:34;34309:3;34279:25;34290:13;;34279:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;34272:41;;34381:13;;34361:16;;34354:4;:23;;;;:::i;:::-;34353:41;;;;:::i;:::-;34332:62;;34450:13;;34436:10;;34429:4;:17;;;;:::i;:::-;34428:35;;;;:::i;:::-;34413:50;;34207:583;;;34533:13;34525:21;;:4;:21;;;:41;;;;;34565:1;34550:12;;:16;34525:41;34521:269;;;34594:33;34623:3;34594:24;34605:12;;34594:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;34587:40;;34694:12;;34675:15;;34668:4;:22;;;;:::i;:::-;34667:39;;;;:::i;:::-;34646:60;;34762:12;;34749:9;;34742:4;:16;;;;:::i;:::-;34741:33;;;;:::i;:::-;34726:48;;34521:269;34207:583;34816:1;34810:4;:7;34806:90;;;34838:42;34854:4;34868;34875;34838:15;:42::i;:::-;34806:90;34935:1;34914:18;:22;34910:128;;;34957:65;34981:4;34988:13;35003:18;34957:15;:65::i;:::-;34910:128;35064:4;35054:14;;;;;:::i;:::-;;;34155:925;35092:33;35108:4;35114:2;35118:6;35092:15;:33::i;:::-;31505:3628;;;;;;31392:3741;;;;:::o;3600:191::-;3674:16;3693:6;;;;;;;;;;;3674:25;;3719:8;3710:6;;:17;;;;;;;;;;;;;;;;;;3774:8;3743:40;;3764:8;3743:40;;;;;;;;;;;;3663:128;3600:191;:::o;13546:733::-;13704:1;13686:20;;:6;:20;;;13678:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13788:1;13767:23;;:9;:23;;;13759:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13843:47;13864:6;13872:9;13883:6;13843:20;:47::i;:::-;13903:21;13927:9;:17;13937:6;13927:17;;;;;;;;;;;;;;;;13903:41;;13980:6;13963:13;:23;;13955:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14101:6;14085:13;:22;14065:9;:17;14075:6;14065:17;;;;;;;;;;;;;;;:42;;;;14153:6;14129:9;:20;14139:9;14129:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14194:9;14177:35;;14186:6;14177:35;;;14205:6;14177:35;;;;;;:::i;:::-;;;;;;;;14225:46;14245:6;14253:9;14264:6;14225:19;:46::i;:::-;13667:612;13546:733;;;:::o;35721:340::-;35760:23;35786:24;35804:4;35786:9;:24::i;:::-;35760:50;;35844:1;35825:15;:20;35821:59;;35862:7;;;35821:59;35935:2;35914:18;;:23;;;;:::i;:::-;35896:15;:41;35892:115;;;35993:2;35972:18;;:23;;;;:::i;:::-;35954:41;;35892:115;36019:34;36037:15;36019:17;:34::i;:::-;35749:312;35721:340;:::o;20858:98::-;20916:7;20947:1;20943;:5;;;;:::i;:::-;20936:12;;20858:98;;;;:::o;21257:::-;21315:7;21346:1;21342;:5;;;;:::i;:::-;21335:12;;21257:98;;;;:::o;16385:125::-;;;;:::o;17114:124::-;;;;:::o;35141:572::-;35268:21;35306:1;35292:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35268:40;;35337:4;35319;35324:1;35319:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35363:4;;;;;;;;;;;35353;35358:1;35353:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;35380:62;35397:4;35412:15;35430:11;35380:8;:62::i;:::-;35481:15;:69;;;35565:11;35591:1;35636:4;35655:9;;;;;;;;;;;35679:15;35481:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35197:516;35141:572;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:152::-;4731:9;4764:37;4795:5;4764:37;:::i;:::-;4751:50;;4655:152;;;:::o;4813:183::-;4926:63;4983:5;4926:63;:::i;:::-;4921:3;4914:76;4813:183;;:::o;5002:274::-;5121:4;5159:2;5148:9;5144:18;5136:26;;5172:97;5266:1;5255:9;5251:17;5242:6;5172:97;:::i;:::-;5002:274;;;;:::o;5282:118::-;5369:24;5387:5;5369:24;:::i;:::-;5364:3;5357:37;5282:118;;:::o;5406:222::-;5499:4;5537:2;5526:9;5522:18;5514:26;;5550:71;5618:1;5607:9;5603:17;5594:6;5550:71;:::i;:::-;5406:222;;;;:::o;5634:329::-;5693:6;5742:2;5730:9;5721:7;5717:23;5713:32;5710:119;;;5748:79;;:::i;:::-;5710:119;5868:1;5893:53;5938:7;5929:6;5918:9;5914:22;5893:53;:::i;:::-;5883:63;;5839:117;5634:329;;;;:::o;5969:619::-;6046:6;6054;6062;6111:2;6099:9;6090:7;6086:23;6082:32;6079:119;;;6117:79;;:::i;:::-;6079:119;6237:1;6262:53;6307:7;6298:6;6287:9;6283:22;6262:53;:::i;:::-;6252:63;;6208:117;6364:2;6390:53;6435:7;6426:6;6415:9;6411:22;6390:53;:::i;:::-;6380:63;;6335:118;6492:2;6518:53;6563:7;6554:6;6543:9;6539:22;6518:53;:::i;:::-;6508:63;;6463:118;5969:619;;;;;:::o;6594:118::-;6681:24;6699:5;6681:24;:::i;:::-;6676:3;6669:37;6594:118;;:::o;6718:222::-;6811:4;6849:2;6838:9;6834:18;6826:26;;6862:71;6930:1;6919:9;6915:17;6906:6;6862:71;:::i;:::-;6718:222;;;;:::o;6946:86::-;6981:7;7021:4;7014:5;7010:16;6999:27;;6946:86;;;:::o;7038:112::-;7121:22;7137:5;7121:22;:::i;:::-;7116:3;7109:35;7038:112;;:::o;7156:214::-;7245:4;7283:2;7272:9;7268:18;7260:26;;7296:67;7360:1;7349:9;7345:17;7336:6;7296:67;:::i;:::-;7156:214;;;;:::o;7376:116::-;7446:21;7461:5;7446:21;:::i;:::-;7439:5;7436:32;7426:60;;7482:1;7479;7472:12;7426:60;7376:116;:::o;7498:133::-;7541:5;7579:6;7566:20;7557:29;;7595:30;7619:5;7595:30;:::i;:::-;7498:133;;;;:::o;7637:468::-;7702:6;7710;7759:2;7747:9;7738:7;7734:23;7730:32;7727:119;;;7765:79;;:::i;:::-;7727:119;7885:1;7910:53;7955:7;7946:6;7935:9;7931:22;7910:53;:::i;:::-;7900:63;;7856:117;8012:2;8038:50;8080:7;8071:6;8060:9;8056:22;8038:50;:::i;:::-;8028:60;;7983:115;7637:468;;;;;:::o;8111:323::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:50;8409:7;8400:6;8389:9;8385:22;8367:50;:::i;:::-;8357:60;;8313:114;8111:323;;;;:::o;8440:117::-;8549:1;8546;8539:12;8563:180;8611:77;8608:1;8601:88;8708:4;8705:1;8698:15;8732:4;8729:1;8722:15;8749:281;8832:27;8854:4;8832:27;:::i;:::-;8824:6;8820:40;8962:6;8950:10;8947:22;8926:18;8914:10;8911:34;8908:62;8905:88;;;8973:18;;:::i;:::-;8905:88;9013:10;9009:2;9002:22;8792:238;8749:281;;:::o;9036:129::-;9070:6;9097:20;;:::i;:::-;9087:30;;9126:33;9154:4;9146:6;9126:33;:::i;:::-;9036:129;;;:::o;9171:311::-;9248:4;9338:18;9330:6;9327:30;9324:56;;;9360:18;;:::i;:::-;9324:56;9410:4;9402:6;9398:17;9390:25;;9470:4;9464;9460:15;9452:23;;9171:311;;;:::o;9488:117::-;9597:1;9594;9587:12;9628:710;9724:5;9749:81;9765:64;9822:6;9765:64;:::i;:::-;9749:81;:::i;:::-;9740:90;;9850:5;9879:6;9872:5;9865:21;9913:4;9906:5;9902:16;9895:23;;9966:4;9958:6;9954:17;9946:6;9942:30;9995:3;9987:6;9984:15;9981:122;;;10014:79;;:::i;:::-;9981:122;10129:6;10112:220;10146:6;10141:3;10138:15;10112:220;;;10221:3;10250:37;10283:3;10271:10;10250:37;:::i;:::-;10245:3;10238:50;10317:4;10312:3;10308:14;10301:21;;10188:144;10172:4;10167:3;10163:14;10156:21;;10112:220;;;10116:21;9730:608;;9628:710;;;;;:::o;10361:370::-;10432:5;10481:3;10474:4;10466:6;10462:17;10458:27;10448:122;;10489:79;;:::i;:::-;10448:122;10606:6;10593:20;10631:94;10721:3;10713:6;10706:4;10698:6;10694:17;10631:94;:::i;:::-;10622:103;;10438:293;10361:370;;;;:::o;10737:539::-;10821:6;10870:2;10858:9;10849:7;10845:23;10841:32;10838:119;;;10876:79;;:::i;:::-;10838:119;11024:1;11013:9;11009:17;10996:31;11054:18;11046:6;11043:30;11040:117;;;11076:79;;:::i;:::-;11040:117;11181:78;11251:7;11242:6;11231:9;11227:22;11181:78;:::i;:::-;11171:88;;10967:302;10737:539;;;;:::o;11282:474::-;11350:6;11358;11407:2;11395:9;11386:7;11382:23;11378:32;11375:119;;;11413:79;;:::i;:::-;11375:119;11533:1;11558:53;11603:7;11594:6;11583:9;11579:22;11558:53;:::i;:::-;11548:63;;11504:117;11660:2;11686:53;11731:7;11722:6;11711:9;11707:22;11686:53;:::i;:::-;11676:63;;11631:118;11282:474;;;;;:::o;11762:182::-;11902:34;11898:1;11890:6;11886:14;11879:58;11762:182;:::o;11950:366::-;12092:3;12113:67;12177:2;12172:3;12113:67;:::i;:::-;12106:74;;12189:93;12278:3;12189:93;:::i;:::-;12307:2;12302:3;12298:12;12291:19;;11950:366;;;:::o;12322:419::-;12488:4;12526:2;12515:9;12511:18;12503:26;;12575:9;12569:4;12565:20;12561:1;12550:9;12546:17;12539:47;12603:131;12729:4;12603:131;:::i;:::-;12595:139;;12322:419;;;:::o;12747:180::-;12795:77;12792:1;12785:88;12892:4;12889:1;12882:15;12916:4;12913:1;12906:15;12933:305;12973:3;12992:20;13010:1;12992:20;:::i;:::-;12987:25;;13026:20;13044:1;13026:20;:::i;:::-;13021:25;;13180:1;13112:66;13108:74;13105:1;13102:81;13099:107;;;13186:18;;:::i;:::-;13099:107;13230:1;13227;13223:9;13216:16;;12933:305;;;;:::o;13244:179::-;13384:31;13380:1;13372:6;13368:14;13361:55;13244:179;:::o;13429:366::-;13571:3;13592:67;13656:2;13651:3;13592:67;:::i;:::-;13585:74;;13668:93;13757:3;13668:93;:::i;:::-;13786:2;13781:3;13777:12;13770:19;;13429:366;;;:::o;13801:419::-;13967:4;14005:2;13994:9;13990:18;13982:26;;14054:9;14048:4;14044:20;14040:1;14029:9;14025:17;14018:47;14082:131;14208:4;14082:131;:::i;:::-;14074:139;;13801:419;;;:::o;14226:180::-;14274:77;14271:1;14264:88;14371:4;14368:1;14361:15;14395:4;14392:1;14385:15;14412:320;14456:6;14493:1;14487:4;14483:12;14473:22;;14540:1;14534:4;14530:12;14561:18;14551:81;;14617:4;14609:6;14605:17;14595:27;;14551:81;14679:2;14671:6;14668:14;14648:18;14645:38;14642:84;;14698:18;;:::i;:::-;14642:84;14463:269;14412:320;;;:::o;14738:348::-;14778:7;14801:20;14819:1;14801:20;:::i;:::-;14796:25;;14835:20;14853:1;14835:20;:::i;:::-;14830:25;;15023:1;14955:66;14951:74;14948:1;14945:81;14940:1;14933:9;14926:17;14922:105;14919:131;;;15030:18;;:::i;:::-;14919:131;15078:1;15075;15071:9;15060:20;;14738:348;;;;:::o;15092:180::-;15140:77;15137:1;15130:88;15237:4;15234:1;15227:15;15261:4;15258:1;15251:15;15278:185;15318:1;15335:20;15353:1;15335:20;:::i;:::-;15330:25;;15369:20;15387:1;15369:20;:::i;:::-;15364:25;;15408:1;15398:35;;15413:18;;:::i;:::-;15398:35;15455:1;15452;15448:9;15443:14;;15278:185;;;;:::o;15469:234::-;15609:34;15605:1;15597:6;15593:14;15586:58;15678:17;15673:2;15665:6;15661:15;15654:42;15469:234;:::o;15709:366::-;15851:3;15872:67;15936:2;15931:3;15872:67;:::i;:::-;15865:74;;15948:93;16037:3;15948:93;:::i;:::-;16066:2;16061:3;16057:12;16050:19;;15709:366;;;:::o;16081:419::-;16247:4;16285:2;16274:9;16270:18;16262:26;;16334:9;16328:4;16324:20;16320:1;16309:9;16305:17;16298:47;16362:131;16488:4;16362:131;:::i;:::-;16354:139;;16081:419;;;:::o;16506:227::-;16646:34;16642:1;16634:6;16630:14;16623:58;16715:10;16710:2;16702:6;16698:15;16691:35;16506:227;:::o;16739:366::-;16881:3;16902:67;16966:2;16961:3;16902:67;:::i;:::-;16895:74;;16978:93;17067:3;16978:93;:::i;:::-;17096:2;17091:3;17087:12;17080:19;;16739:366;;;:::o;17111:419::-;17277:4;17315:2;17304:9;17300:18;17292:26;;17364:9;17358:4;17354:20;17350:1;17339:9;17335:17;17328:47;17392:131;17518:4;17392:131;:::i;:::-;17384:139;;17111:419;;;:::o;17536:223::-;17676:34;17672:1;17664:6;17660:14;17653:58;17745:6;17740:2;17732:6;17728:15;17721:31;17536:223;:::o;17765:366::-;17907:3;17928:67;17992:2;17987:3;17928:67;:::i;:::-;17921:74;;18004:93;18093:3;18004:93;:::i;:::-;18122:2;18117:3;18113:12;18106:19;;17765:366;;;:::o;18137:419::-;18303:4;18341:2;18330:9;18326:18;18318:26;;18390:9;18384:4;18380:20;18376:1;18365:9;18361:17;18354:47;18418:131;18544:4;18418:131;:::i;:::-;18410:139;;18137:419;;;:::o;18562:240::-;18702:34;18698:1;18690:6;18686:14;18679:58;18771:23;18766:2;18758:6;18754:15;18747:48;18562:240;:::o;18808:366::-;18950:3;18971:67;19035:2;19030:3;18971:67;:::i;:::-;18964:74;;19047:93;19136:3;19047:93;:::i;:::-;19165:2;19160:3;19156:12;19149:19;;18808:366;;;:::o;19180:419::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19433:9;19427:4;19423:20;19419:1;19408:9;19404:17;19397:47;19461:131;19587:4;19461:131;:::i;:::-;19453:139;;19180:419;;;:::o;19605:239::-;19745:34;19741:1;19733:6;19729:14;19722:58;19814:22;19809:2;19801:6;19797:15;19790:47;19605:239;:::o;19850:366::-;19992:3;20013:67;20077:2;20072:3;20013:67;:::i;:::-;20006:74;;20089:93;20178:3;20089:93;:::i;:::-;20207:2;20202:3;20198:12;20191:19;;19850:366;;;:::o;20222:419::-;20388:4;20426:2;20415:9;20411:18;20403:26;;20475:9;20469:4;20465:20;20461:1;20450:9;20446:17;20439:47;20503:131;20629:4;20503:131;:::i;:::-;20495:139;;20222:419;;;:::o;20647:180::-;20695:77;20692:1;20685:88;20792:4;20789:1;20782:15;20816:4;20813:1;20806:15;20833:233;20872:3;20895:24;20913:5;20895:24;:::i;:::-;20886:33;;20941:66;20934:5;20931:77;20928:103;;21011:18;;:::i;:::-;20928:103;21058:1;21051:5;21047:13;21040:20;;20833:233;;;:::o;21072:225::-;21212:34;21208:1;21200:6;21196:14;21189:58;21281:8;21276:2;21268:6;21264:15;21257:33;21072:225;:::o;21303:366::-;21445:3;21466:67;21530:2;21525:3;21466:67;:::i;:::-;21459:74;;21542:93;21631:3;21542:93;:::i;:::-;21660:2;21655:3;21651:12;21644:19;;21303:366;;;:::o;21675:419::-;21841:4;21879:2;21868:9;21864:18;21856:26;;21928:9;21922:4;21918:20;21914:1;21903:9;21899:17;21892:47;21956:131;22082:4;21956:131;:::i;:::-;21948:139;;21675:419;;;:::o;22100:223::-;22240:34;22236:1;22228:6;22224:14;22217:58;22309:6;22304:2;22296:6;22292:15;22285:31;22100:223;:::o;22329:366::-;22471:3;22492:67;22556:2;22551:3;22492:67;:::i;:::-;22485:74;;22568:93;22657:3;22568:93;:::i;:::-;22686:2;22681:3;22677:12;22670:19;;22329:366;;;:::o;22701:419::-;22867:4;22905:2;22894:9;22890:18;22882:26;;22954:9;22948:4;22944:20;22940:1;22929:9;22925:17;22918:47;22982:131;23108:4;22982:131;:::i;:::-;22974:139;;22701:419;;;:::o;23126:221::-;23266:34;23262:1;23254:6;23250:14;23243:58;23335:4;23330:2;23322:6;23318:15;23311:29;23126:221;:::o;23353:366::-;23495:3;23516:67;23580:2;23575:3;23516:67;:::i;:::-;23509:74;;23592:93;23681:3;23592:93;:::i;:::-;23710:2;23705:3;23701:12;23694:19;;23353:366;;;:::o;23725:419::-;23891:4;23929:2;23918:9;23914:18;23906:26;;23978:9;23972:4;23968:20;23964:1;23953:9;23949:17;23942:47;24006:131;24132:4;24006:131;:::i;:::-;23998:139;;23725:419;;;:::o;24150:224::-;24290:34;24286:1;24278:6;24274:14;24267:58;24359:7;24354:2;24346:6;24342:15;24335:32;24150:224;:::o;24380:366::-;24522:3;24543:67;24607:2;24602:3;24543:67;:::i;:::-;24536:74;;24619:93;24708:3;24619:93;:::i;:::-;24737:2;24732:3;24728:12;24721:19;;24380:366;;;:::o;24752:419::-;24918:4;24956:2;24945:9;24941:18;24933:26;;25005:9;24999:4;24995:20;24991:1;24980:9;24976:17;24969:47;25033:131;25159:4;25033:131;:::i;:::-;25025:139;;24752:419;;;:::o;25177:222::-;25317:34;25313:1;25305:6;25301:14;25294:58;25386:5;25381:2;25373:6;25369:15;25362:30;25177:222;:::o;25405:366::-;25547:3;25568:67;25632:2;25627:3;25568:67;:::i;:::-;25561:74;;25644:93;25733:3;25644:93;:::i;:::-;25762:2;25757:3;25753:12;25746:19;;25405:366;;;:::o;25777:419::-;25943:4;25981:2;25970:9;25966:18;25958:26;;26030:9;26024:4;26020:20;26016:1;26005:9;26001:17;25994:47;26058:131;26184:4;26058:131;:::i;:::-;26050:139;;25777:419;;;:::o;26202:172::-;26342:24;26338:1;26330:6;26326:14;26319:48;26202:172;:::o;26380:366::-;26522:3;26543:67;26607:2;26602:3;26543:67;:::i;:::-;26536:74;;26619:93;26708:3;26619:93;:::i;:::-;26737:2;26732:3;26728:12;26721:19;;26380:366;;;:::o;26752:419::-;26918:4;26956:2;26945:9;26941:18;26933:26;;27005:9;26999:4;26995:20;26991:1;26980:9;26976:17;26969:47;27033:131;27159:4;27033:131;:::i;:::-;27025:139;;26752:419;;;:::o;27177:240::-;27317:34;27313:1;27305:6;27301:14;27294:58;27386:23;27381:2;27373:6;27369:15;27362:48;27177:240;:::o;27423:366::-;27565:3;27586:67;27650:2;27645:3;27586:67;:::i;:::-;27579:74;;27662:93;27751:3;27662:93;:::i;:::-;27780:2;27775:3;27771:12;27764:19;;27423:366;;;:::o;27795:419::-;27961:4;27999:2;27988:9;27984:18;27976:26;;28048:9;28042:4;28038:20;28034:1;28023:9;28019:17;28012:47;28076:131;28202:4;28076:131;:::i;:::-;28068:139;;27795:419;;;:::o;28220:169::-;28360:21;28356:1;28348:6;28344:14;28337:45;28220:169;:::o;28395:366::-;28537:3;28558:67;28622:2;28617:3;28558:67;:::i;:::-;28551:74;;28634:93;28723:3;28634:93;:::i;:::-;28752:2;28747:3;28743:12;28736:19;;28395:366;;;:::o;28767:419::-;28933:4;28971:2;28960:9;28956:18;28948:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29048:131;29174:4;29048:131;:::i;:::-;29040:139;;28767:419;;;:::o;29192:191::-;29232:4;29252:20;29270:1;29252:20;:::i;:::-;29247:25;;29286:20;29304:1;29286:20;:::i;:::-;29281:25;;29325:1;29322;29319:8;29316:34;;;29330:18;;:::i;:::-;29316:34;29375:1;29372;29368:9;29360:17;;29192:191;;;;:::o;29389:225::-;29529:34;29525:1;29517:6;29513:14;29506:58;29598:8;29593:2;29585:6;29581:15;29574:33;29389:225;:::o;29620:366::-;29762:3;29783:67;29847:2;29842:3;29783:67;:::i;:::-;29776:74;;29859:93;29948:3;29859:93;:::i;:::-;29977:2;29972:3;29968:12;29961:19;;29620:366;;;:::o;29992:419::-;30158:4;30196:2;30185:9;30181:18;30173:26;;30245:9;30239:4;30235:20;30231:1;30220:9;30216:17;30209:47;30273:131;30399:4;30273:131;:::i;:::-;30265:139;;29992:419;;;:::o;30417:85::-;30462:7;30491:5;30480:16;;30417:85;;;:::o;30508:158::-;30566:9;30599:61;30617:42;30626:32;30652:5;30626:32;:::i;:::-;30617:42;:::i;:::-;30599:61;:::i;:::-;30586:74;;30508:158;;;:::o;30672:147::-;30767:45;30806:5;30767:45;:::i;:::-;30762:3;30755:58;30672:147;;:::o;30825:114::-;30892:6;30926:5;30920:12;30910:22;;30825:114;;;:::o;30945:184::-;31044:11;31078:6;31073:3;31066:19;31118:4;31113:3;31109:14;31094:29;;30945:184;;;;:::o;31135:132::-;31202:4;31225:3;31217:11;;31255:4;31250:3;31246:14;31238:22;;31135:132;;;:::o;31273:108::-;31350:24;31368:5;31350:24;:::i;:::-;31345:3;31338:37;31273:108;;:::o;31387:179::-;31456:10;31477:46;31519:3;31511:6;31477:46;:::i;:::-;31555:4;31550:3;31546:14;31532:28;;31387:179;;;;:::o;31572:113::-;31642:4;31674;31669:3;31665:14;31657:22;;31572:113;;;:::o;31721:732::-;31840:3;31869:54;31917:5;31869:54;:::i;:::-;31939:86;32018:6;32013:3;31939:86;:::i;:::-;31932:93;;32049:56;32099:5;32049:56;:::i;:::-;32128:7;32159:1;32144:284;32169:6;32166:1;32163:13;32144:284;;;32245:6;32239:13;32272:63;32331:3;32316:13;32272:63;:::i;:::-;32265:70;;32358:60;32411:6;32358:60;:::i;:::-;32348:70;;32204:224;32191:1;32188;32184:9;32179:14;;32144:284;;;32148:14;32444:3;32437:10;;31845:608;;;31721:732;;;;:::o;32459:831::-;32722:4;32760:3;32749:9;32745:19;32737:27;;32774:71;32842:1;32831:9;32827:17;32818:6;32774:71;:::i;:::-;32855:80;32931:2;32920:9;32916:18;32907:6;32855:80;:::i;:::-;32982:9;32976:4;32972:20;32967:2;32956:9;32952:18;32945:48;33010:108;33113:4;33104:6;33010:108;:::i;:::-;33002:116;;33128:72;33196:2;33185:9;33181:18;33172:6;33128:72;:::i;:::-;33210:73;33278:3;33267:9;33263:19;33254:6;33210:73;:::i;:::-;32459:831;;;;;;;;:::o

Swarm Source

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