ETH Price: $3,641.30 (+8.28%)

Token

CryptoDigger (CD)
 

Overview

Max Total Supply

100,000,000 CD

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,642,400.914905454526686344 CD

Value
$0.00
0xd90a088b1f4bb17ae8ff3542e31191be36aadbf9
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:
CryptoDigger

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-21
*/

/**
                                                                    
 Crypto Digger Token 
                                                                                          
                                                                                          
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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);
}

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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;
        }
    }
}



pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;
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 CryptoDigger is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;

    address public immutable uniswapV2Pair;
    address public devWallet;
    address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTotalFees;
    uint256 public maxWallet;

    bool public swapBackEnabled = true;
    bool public limitsInEffect = true;
    bool public tradingActive;
    bool private swapping;

    constructor() ERC20("CryptoDigger", "CD") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), WETH);

        uint256 totalSupply = 100000000e18;

        maxWallet = totalSupply * 8 / 100; // 8%
        swapTokensAtAmount = (totalSupply * 8) / 10000; // 0.08%

        buyDevFee = 2;
        buyLiquidityFee = 2;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        sellDevFee = 2;
        sellLiquidityFee = 2;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = owner();

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(0x0000), true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(0xdead), true);
        excludeFromMaxWallet(address(0x0000), true);

        _mint(msg.sender, totalSupply);
    }

    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;
        }

        bool isBuy = from == uniswapV2Pair;
        bool isSell = to == uniswapV2Pair;

        if (!tradingActive && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) require(false, "Trading has not started yet");

        if (limitsInEffect && !_isExcludedFromMaxWallet[to] && !swapping) {
            if (isBuy) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (buy)");
            }
            if (!isBuy && !isSell) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (transfer)");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        if (canSwap && swapBackEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
   
     uint256 tokensForLiquidity = 0;

        if (takeFee) {
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
            }
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / 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 swapTokensForWETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;

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

        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            devWallet,
            block.timestamp
        );
    }

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

        swapTokensForWETH(contractBalance);
    }

    receive() external payable {}

    function rescue(address token) public onlyOwner {
        ERC20 Token = ERC20(token);
        uint256 balance = Token.balanceOf(address(this));
        if (balance > 0) Token.transfer(_msgSender(), balance);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function updateSwapBackEnabled(bool enabled) external onlyOwner {
        swapBackEnabled = enabled;
    }

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

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

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(newAmount >= (totalSupply() * 1) / 100000, "< 0.001% total supply.");
        require(newAmount <= (totalSupply() * 8) / 100, "> 8% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function enableTrading() public onlyOwner {
        tradingActive = true;
    }

    function enableLimits(bool _limitsInEffect) public onlyOwner {
        limitsInEffect = _limitsInEffect;
    }

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

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

    function isExcludedFromMaxWallet(address account) public view returns (bool) {
        return _isExcludedFromMaxWallet[account];
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"}],"name":"enableLimits","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","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":"swapBackEnabled","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":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxWallet","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":"updateSwapBackEnabled","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"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040518060400160405280600c81526020017f43727970746f44696767657200000000000000000000000000000000000000008152506040518060400160405280600281526020017f43440000000000000000000000000000000000000000000000000000000000008152508160039080519060200190620001219291906200090f565b5080600490805190602001906200013a9291906200090f565b5050506200015d62000151620004c060201b60201c565b620004c860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021c919062000a29565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200027a92919062000a6c565b6020604051808303816000875af11580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000a29565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006a52b7d2dcc80cd2e40000009050606460088262000314919062000ad2565b62000320919062000b62565b60118190555061271060088262000338919062000ad2565b62000344919062000b62565b600a819055506002600b819055506002600c81905550600c54600b546200036c919062000b9a565b600d819055506002600e819055506002600f81905550600f54600e5462000394919062000b9a565b601081905550620003aa6200058e60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200040c620003fe6200058e60201b60201c565b6001620005b860201b60201c565b6200041f306001620005b860201b60201c565b6200043461dead6001620005b860201b60201c565b6200044860006001620005b860201b60201c565b6200046a6200045c6200058e60201b60201c565b6001620006a260201b60201c565b6200047d306001620006a260201b60201c565b6200049261dead6001620006a260201b60201c565b620004a660006001620006a260201b60201c565b620004b833826200078c60201b60201c565b505062000d7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005c8620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005ee6200058e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000647576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063e9062000c58565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620006b2620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d86200058e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007289062000c58565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f69062000cca565b60405180910390fd5b62000813600083836200090560201b60201c565b806002600082825462000827919062000b9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200087e919062000b9a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008e5919062000cfd565b60405180910390a362000901600083836200090a60201b60201c565b5050565b505050565b505050565b8280546200091d9062000d49565b90600052602060002090601f0160209004810192826200094157600085556200098d565b82601f106200095c57805160ff19168380011785556200098d565b828001600101855582156200098d579182015b828111156200098c5782518255916020019190600101906200096f565b5b5090506200099c9190620009a0565b5090565b5b80821115620009bb576000816000905550600101620009a1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009f182620009c4565b9050919050565b62000a0381620009e4565b811462000a0f57600080fd5b50565b60008151905062000a2381620009f8565b92915050565b60006020828403121562000a425762000a41620009bf565b5b600062000a528482850162000a12565b91505092915050565b62000a6681620009e4565b82525050565b600060408201905062000a83600083018562000a5b565b62000a92602083018462000a5b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000adf8262000a99565b915062000aec8362000a99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b285762000b2762000aa3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000b6f8262000a99565b915062000b7c8362000a99565b92508262000b8f5762000b8e62000b33565b5b828204905092915050565b600062000ba78262000a99565b915062000bb48362000a99565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bec5762000beb62000aa3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c4060208362000bf7565b915062000c4d8262000c08565b602082019050919050565b6000602082019050818103600083015262000c738162000c31565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cb2601f8362000bf7565b915062000cbf8262000c7a565b602082019050919050565b6000602082019050818103600083015262000ce58162000ca3565b9050919050565b62000cf78162000a99565b82525050565b600060208201905062000d14600083018462000cec565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d6257607f821691505b6020821081141562000d795762000d7862000d1a565b5b50919050565b60805160a051613ca362000ddd60003960008181610f2d01528181611ee001528181611f33015281816122260152818161242f015281816124dd01526125aa015260008181610b8301528181612ab10152612ad80152613ca36000f3fe6080604052600436106102555760003560e01c80638da5cb5b11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a457c2d7116100fd578063a457c2d7146106f9578063a5cdee0514610736578063a9059cbb1461075f578063ad5c46481461079c578063bbc0c742146107c75761025c565b80638da5cb5b146106225780638ea5220f1461064d57806395d89b41146106785780639c3b4fdc146106a3578063a0d82dc5146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e25780638a8c523c1461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcb565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d24565b610b63565b6040516102e99190612d7f565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612df9565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e23565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3e565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6b565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e98565b610d7e565b6040516103ce9190612d7f565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f07565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d24565b610e7f565b6040516104369190612d7f565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f31565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d7f565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3e565b610f62565b6040516104c99190612d7f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcb565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d7f565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e23565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3e565b6110bb565b6040516105859190612d7f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3e565b611111565b6040516105c29190612e23565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3e565b6111e1565b005b34801561061757600080fd5b50610620611375565b005b34801561062e57600080fd5b5061063761140e565b6040516106449190612f31565b60405180910390f35b34801561065957600080fd5b50610662611438565b60405161066f9190612f31565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612ca4565b60405180910390f35b3480156106af57600080fd5b506106b86114f0565b6040516106c59190612e23565b60405180910390f35b3480156106da57600080fd5b506106e36114f6565b6040516106f09190612e23565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612d24565b6114fc565b60405161072d9190612d7f565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612f78565b6115e7565b005b34801561076b57600080fd5b5061078660048036038101906107819190612d24565b611680565b6040516107939190612d7f565b60405180910390f35b3480156107a857600080fd5b506107b161169e565b6040516107be9190612f31565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d7f565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa5565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6b565b6117ae565b60405161084f9190612d7f565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa5565b611902565b005b34801561088d57600080fd5b506108966119d9565b6040516108a39190612e23565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe5565b6119df565b6040516108e09190612e23565b60405180910390f35b3480156108f557600080fd5b506108fe611a66565b60405161090b9190612e23565b60405180910390f35b34801561092057600080fd5b50610929611a6c565b6040516109369190612e23565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3e565b611a72565b005b34801561097457600080fd5b5061097d611b6a565b60405161098a9190612e23565b60405180910390f35b34801561099f57600080fd5b506109a8611b70565b6040516109b59190612e23565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f78565b611b76565b005b6109ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a0d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613071565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c0565b60108190555060636010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613162565b60405180910390fd5b5050565b606060038054610ae0906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b1565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c0f565b8484611c17565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb7611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610bd561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613071565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610c9561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613071565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e3565b610d15919061326c565b610d1f919061326c565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061330f565b60405180910390fd5b670de0b6b3a764000081610d7591906131e3565b60118190555050565b6000610d8b848484611de2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a1565b60405180910390fd5b610e6a85610e62611c0f565b858403611c17565b60019150509392505050565b60006012905090565b6000610f21610e8c611c0f565b848460016000610e9a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c0565b611c17565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610fde61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613071565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c0565b600d81905550600f600d54111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613162565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661117f61140e565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613071565b60405180910390fd5b6111df60006125f7565b565b6111e9611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661120761140e565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613071565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f31565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de91906133d6565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c0f565b836040518363ffffffff1660e01b815260040161132b929190613403565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613441565b505b505050565b61137d611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661139b61140e565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613071565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461146d906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611499906131b1565b80156114e65780601f106114bb576101008083540402835291602001916114e6565b820191906000526020600020905b8154815290600101906020018083116114c957829003601f168201915b5050505050905090565b600b5481565b600e5481565b6000806001600061150b611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf906134e0565b60405180910390fd5b6115dc6115d3611c0f565b85858403611c17565b600191505092915050565b6115ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661160d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613071565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600061169461168d611c0f565b8484611de2565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260029054906101000a900460ff1681565b6116df611c0f565b73ffffffffffffffffffffffffffffffffffffffff166116fd61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613071565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117d661140e565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613071565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e3565b61184e919061326c565b821015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061354c565b60405180910390fd5b6064600861189c610ba5565b6118a691906131e3565b6118b0919061326c565b8211156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906135b8565b60405180910390fd5b81600a8190555060019050919050565b61190a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661192861140e565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613071565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611a9861140e565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b559061364a565b60405180910390fd5b611b67816125f7565b50565b600f5481565b60115481565b611b7e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611b9c61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613071565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061376e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd59190612e23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613892565b60405180910390fd5b6000811415611edc57611ed7838360006126bd565b6125f2565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fe95750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561203f5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612086576000612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906138fe565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ec5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750601260039054906101000a900460ff16155b156121d45781156121695760115461211c85611111565b8461212791906130c0565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f9061396a565b60405180910390fd5b5b81158015612175575080155b156121d35760115461218685611111565b8461219191906130c0565b11156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906139d6565b60405180910390fd5b5b5b60006121df30611111565b90506000600a5482101590508080156122045750601260009054906101000a900460ff165b801561221d5750601260039054906101000a900460ff16155b801561227457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122ca5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123205750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612364576001601260036101000a81548160ff02191690831515021790555061234861293e565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241a5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242457600090505b60008082156125df577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248a57506000601054115b156124db576124b760646124a96010548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150601054600f54836124ca91906131e3565b6124d4919061326c565b9050612586565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253857506000600d54115b15612585576125656064612557600d548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150600d54600c548361257891906131e3565b612582919061326c565b90505b5b600082111561259b5761259a8a30846126bd565b5b60008111156125d0576125cf307f0000000000000000000000000000000000000000000000000000000000000000836126bd565b5b81886125dc91906139f6565b97505b6125ea8a8a8a6126bd565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613892565b60405180910390fd5b6127a8838383612993565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613a9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c191906130c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612e23565b60405180910390a3612938848484612998565b50505050565b600061294930611111565b9050600081141561295a5750612965565b6129638161299d565b505b565b6000818361297591906131e3565b905092915050565b6000818361298b919061326c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ba576129b9613abc565b5b6040519080825280602002602001820160405280156129e85781602001602082028036833780820191505090505b5090503081600081518110612a00576129ff613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7157612a70613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad6307f000000000000000000000000000000000000000000000000000000000000000084611c17565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5a959493929190613c13565b600060405180830381600087803b158015612b7457600080fd5b505af1158015612b88573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba881612b95565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612b90565b5b6000612bf085828601612bb6565b9250506020612c0185828601612bb6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c45578082015181840152602081019050612c2a565b83811115612c54576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7682612c0b565b612c808185612c16565b9350612c90818560208601612c27565b612c9981612c5a565b840191505092915050565b60006020820190508181036000830152612cbe8184612c6b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf182612cc6565b9050919050565b612d0181612ce6565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612b90565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612bb6565b9150509250929050565b60008115159050919050565b612d7981612d64565b82525050565b6000602082019050612d946000830184612d70565b92915050565b6000819050919050565b6000612dbf612dba612db584612cc6565b612d9a565b612cc6565b9050919050565b6000612dd182612da4565b9050919050565b6000612de382612dc6565b9050919050565b612df381612dd8565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b612e1d81612b95565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612b90565b5b6000612e6284828501612d0f565b91505092915050565b600060208284031215612e8157612e80612b90565b5b6000612e8f84828501612bb6565b91505092915050565b600080600060608486031215612eb157612eb0612b90565b5b6000612ebf86828701612d0f565b9350506020612ed086828701612d0f565b9250506040612ee186828701612bb6565b9150509250925092565b600060ff82169050919050565b612f0181612eeb565b82525050565b6000602082019050612f1c6000830184612ef8565b92915050565b612f2b81612ce6565b82525050565b6000602082019050612f466000830184612f22565b92915050565b612f5581612d64565b8114612f6057600080fd5b50565b600081359050612f7281612f4c565b92915050565b600060208284031215612f8e57612f8d612b90565b5b6000612f9c84828501612f63565b91505092915050565b60008060408385031215612fbc57612fbb612b90565b5b6000612fca85828601612d0f565b9250506020612fdb85828601612f63565b9150509250929050565b60008060408385031215612ffc57612ffb612b90565b5b600061300a85828601612d0f565b925050602061301b85828601612d0f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305b602083612c16565b915061306682613025565b602082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cb82612b95565b91506130d683612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a613091565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061314c601d83612c16565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c957607f821691505b602082108114156131dd576131dc613182565b5b50919050565b60006131ee82612b95565b91506131f983612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323257613231613091565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327782612b95565b915061328283612b95565b9250826132925761329161323d565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132f9602483612c16565b91506133048261329d565b604082019050919050565b60006020820190508181036000830152613328816132ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338b602883612c16565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b6000815190506133d081612b9f565b92915050565b6000602082840312156133ec576133eb612b90565b5b60006133fa848285016133c1565b91505092915050565b60006040820190506134186000830185612f22565b6134256020830184612e14565b9392505050565b60008151905061343b81612f4c565b92915050565b60006020828403121561345757613456612b90565b5b60006134658482850161342c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602583612c16565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b6000613536601683612c16565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f3e20382520746f74616c20737570706c792e0000000000000000000000000000600082015250565b60006135a2601283612c16565b91506135ad8261356c565b602082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613634602683612c16565b915061363f826135d8565b604082019050919050565b6000602082019050818103600083015261366381613627565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c6602483612c16565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602283612c16565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ea602583612c16565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061387c602383612c16565b915061388782613820565b604082019050919050565b600060208201905081810360008301526138ab8161386f565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b60006138e8601b83612c16565b91506138f3826138b2565b602082019050919050565b60006020820190508181036000830152613917816138db565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b6000613954601983612c16565b915061395f8261391e565b602082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b60006139c0601e83612c16565b91506139cb8261398a565b602082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b6000613a0182612b95565b9150613a0c83612b95565b925082821015613a1f57613a1e613091565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a86602683612c16565b9150613a9182613a2a565b604082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b3f613b3a613b3584613b1a565b612d9a565b612b95565b9050919050565b613b4f81613b24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8a81612ce6565b82525050565b6000613b9c8383613b81565b60208301905092915050565b6000602082019050919050565b6000613bc082613b55565b613bca8185613b60565b9350613bd583613b71565b8060005b83811015613c06578151613bed8882613b90565b9750613bf883613ba8565b925050600181019050613bd9565b5085935050505092915050565b600060a082019050613c286000830188612e14565b613c356020830187613b46565b8181036040830152613c478186613bb5565b9050613c566060830185612f22565b613c636080830184612e14565b969550505050505056fea26469706673582212203980e4d56dd52079812d950dbfb3fe4e053899f8f43697f36338a4b95558f5ed64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638da5cb5b11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a457c2d7116100fd578063a457c2d7146106f9578063a5cdee0514610736578063a9059cbb1461075f578063ad5c46481461079c578063bbc0c742146107c75761025c565b80638da5cb5b146106225780638ea5220f1461064d57806395d89b41146106785780639c3b4fdc146106a3578063a0d82dc5146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e25780638a8c523c1461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcb565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d24565b610b63565b6040516102e99190612d7f565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612df9565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e23565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3e565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6b565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e98565b610d7e565b6040516103ce9190612d7f565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f07565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d24565b610e7f565b6040516104369190612d7f565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f31565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d7f565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3e565b610f62565b6040516104c99190612d7f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcb565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d7f565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e23565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3e565b6110bb565b6040516105859190612d7f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3e565b611111565b6040516105c29190612e23565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3e565b6111e1565b005b34801561061757600080fd5b50610620611375565b005b34801561062e57600080fd5b5061063761140e565b6040516106449190612f31565b60405180910390f35b34801561065957600080fd5b50610662611438565b60405161066f9190612f31565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612ca4565b60405180910390f35b3480156106af57600080fd5b506106b86114f0565b6040516106c59190612e23565b60405180910390f35b3480156106da57600080fd5b506106e36114f6565b6040516106f09190612e23565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612d24565b6114fc565b60405161072d9190612d7f565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612f78565b6115e7565b005b34801561076b57600080fd5b5061078660048036038101906107819190612d24565b611680565b6040516107939190612d7f565b60405180910390f35b3480156107a857600080fd5b506107b161169e565b6040516107be9190612f31565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d7f565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa5565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6b565b6117ae565b60405161084f9190612d7f565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa5565b611902565b005b34801561088d57600080fd5b506108966119d9565b6040516108a39190612e23565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe5565b6119df565b6040516108e09190612e23565b60405180910390f35b3480156108f557600080fd5b506108fe611a66565b60405161090b9190612e23565b60405180910390f35b34801561092057600080fd5b50610929611a6c565b6040516109369190612e23565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3e565b611a72565b005b34801561097457600080fd5b5061097d611b6a565b60405161098a9190612e23565b60405180910390f35b34801561099f57600080fd5b506109a8611b70565b6040516109b59190612e23565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f78565b611b76565b005b6109ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a0d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613071565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c0565b60108190555060636010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613162565b60405180910390fd5b5050565b606060038054610ae0906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b1565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c0f565b8484611c17565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb7611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610bd561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613071565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610c9561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613071565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e3565b610d15919061326c565b610d1f919061326c565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061330f565b60405180910390fd5b670de0b6b3a764000081610d7591906131e3565b60118190555050565b6000610d8b848484611de2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a1565b60405180910390fd5b610e6a85610e62611c0f565b858403611c17565b60019150509392505050565b60006012905090565b6000610f21610e8c611c0f565b848460016000610e9a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c0565b611c17565b6001905092915050565b7f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d81565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610fde61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613071565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c0565b600d81905550600f600d54111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613162565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661117f61140e565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613071565b60405180910390fd5b6111df60006125f7565b565b6111e9611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661120761140e565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613071565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f31565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de91906133d6565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c0f565b836040518363ffffffff1660e01b815260040161132b929190613403565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613441565b505b505050565b61137d611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661139b61140e565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613071565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461146d906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611499906131b1565b80156114e65780601f106114bb576101008083540402835291602001916114e6565b820191906000526020600020905b8154815290600101906020018083116114c957829003601f168201915b5050505050905090565b600b5481565b600e5481565b6000806001600061150b611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf906134e0565b60405180910390fd5b6115dc6115d3611c0f565b85858403611c17565b600191505092915050565b6115ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661160d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613071565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600061169461168d611c0f565b8484611de2565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260029054906101000a900460ff1681565b6116df611c0f565b73ffffffffffffffffffffffffffffffffffffffff166116fd61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613071565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117d661140e565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613071565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e3565b61184e919061326c565b821015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061354c565b60405180910390fd5b6064600861189c610ba5565b6118a691906131e3565b6118b0919061326c565b8211156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906135b8565b60405180910390fd5b81600a8190555060019050919050565b61190a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661192861140e565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613071565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611a9861140e565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b559061364a565b60405180910390fd5b611b67816125f7565b50565b600f5481565b60115481565b611b7e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611b9c61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613071565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061376e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd59190612e23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613892565b60405180910390fd5b6000811415611edc57611ed7838360006126bd565b6125f2565b60007f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fe95750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561203f5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612086576000612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906138fe565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ec5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750601260039054906101000a900460ff16155b156121d45781156121695760115461211c85611111565b8461212791906130c0565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f9061396a565b60405180910390fd5b5b81158015612175575080155b156121d35760115461218685611111565b8461219191906130c0565b11156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906139d6565b60405180910390fd5b5b5b60006121df30611111565b90506000600a5482101590508080156122045750601260009054906101000a900460ff165b801561221d5750601260039054906101000a900460ff16155b801561227457507f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122ca5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123205750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612364576001601260036101000a81548160ff02191690831515021790555061234861293e565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241a5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242457600090505b60008082156125df577f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248a57506000601054115b156124db576124b760646124a96010548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150601054600f54836124ca91906131e3565b6124d4919061326c565b9050612586565b7f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253857506000600d54115b15612585576125656064612557600d548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150600d54600c548361257891906131e3565b612582919061326c565b90505b5b600082111561259b5761259a8a30846126bd565b5b60008111156125d0576125cf307f000000000000000000000000af1c6be85f31f429c43c9ca0d9eee2a3e977477d836126bd565b5b81886125dc91906139f6565b97505b6125ea8a8a8a6126bd565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613892565b60405180910390fd5b6127a8838383612993565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613a9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c191906130c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612e23565b60405180910390a3612938848484612998565b50505050565b600061294930611111565b9050600081141561295a5750612965565b6129638161299d565b505b565b6000818361297591906131e3565b905092915050565b6000818361298b919061326c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ba576129b9613abc565b5b6040519080825280602002602001820160405280156129e85781602001602082028036833780820191505090505b5090503081600081518110612a00576129ff613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7157612a70613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c17565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5a959493929190613c13565b600060405180830381600087803b158015612b7457600080fd5b505af1158015612b88573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba881612b95565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612b90565b5b6000612bf085828601612bb6565b9250506020612c0185828601612bb6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c45578082015181840152602081019050612c2a565b83811115612c54576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7682612c0b565b612c808185612c16565b9350612c90818560208601612c27565b612c9981612c5a565b840191505092915050565b60006020820190508181036000830152612cbe8184612c6b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf182612cc6565b9050919050565b612d0181612ce6565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612b90565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612bb6565b9150509250929050565b60008115159050919050565b612d7981612d64565b82525050565b6000602082019050612d946000830184612d70565b92915050565b6000819050919050565b6000612dbf612dba612db584612cc6565b612d9a565b612cc6565b9050919050565b6000612dd182612da4565b9050919050565b6000612de382612dc6565b9050919050565b612df381612dd8565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b612e1d81612b95565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612b90565b5b6000612e6284828501612d0f565b91505092915050565b600060208284031215612e8157612e80612b90565b5b6000612e8f84828501612bb6565b91505092915050565b600080600060608486031215612eb157612eb0612b90565b5b6000612ebf86828701612d0f565b9350506020612ed086828701612d0f565b9250506040612ee186828701612bb6565b9150509250925092565b600060ff82169050919050565b612f0181612eeb565b82525050565b6000602082019050612f1c6000830184612ef8565b92915050565b612f2b81612ce6565b82525050565b6000602082019050612f466000830184612f22565b92915050565b612f5581612d64565b8114612f6057600080fd5b50565b600081359050612f7281612f4c565b92915050565b600060208284031215612f8e57612f8d612b90565b5b6000612f9c84828501612f63565b91505092915050565b60008060408385031215612fbc57612fbb612b90565b5b6000612fca85828601612d0f565b9250506020612fdb85828601612f63565b9150509250929050565b60008060408385031215612ffc57612ffb612b90565b5b600061300a85828601612d0f565b925050602061301b85828601612d0f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305b602083612c16565b915061306682613025565b602082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cb82612b95565b91506130d683612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a613091565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061314c601d83612c16565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c957607f821691505b602082108114156131dd576131dc613182565b5b50919050565b60006131ee82612b95565b91506131f983612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323257613231613091565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327782612b95565b915061328283612b95565b9250826132925761329161323d565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132f9602483612c16565b91506133048261329d565b604082019050919050565b60006020820190508181036000830152613328816132ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338b602883612c16565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b6000815190506133d081612b9f565b92915050565b6000602082840312156133ec576133eb612b90565b5b60006133fa848285016133c1565b91505092915050565b60006040820190506134186000830185612f22565b6134256020830184612e14565b9392505050565b60008151905061343b81612f4c565b92915050565b60006020828403121561345757613456612b90565b5b60006134658482850161342c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602583612c16565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b6000613536601683612c16565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f3e20382520746f74616c20737570706c792e0000000000000000000000000000600082015250565b60006135a2601283612c16565b91506135ad8261356c565b602082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613634602683612c16565b915061363f826135d8565b604082019050919050565b6000602082019050818103600083015261366381613627565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c6602483612c16565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602283612c16565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ea602583612c16565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061387c602383612c16565b915061388782613820565b604082019050919050565b600060208201905081810360008301526138ab8161386f565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b60006138e8601b83612c16565b91506138f3826138b2565b602082019050919050565b60006020820190508181036000830152613917816138db565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b6000613954601983612c16565b915061395f8261391e565b602082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b60006139c0601e83612c16565b91506139cb8261398a565b602082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b6000613a0182612b95565b9150613a0c83612b95565b925082821015613a1f57613a1e613091565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a86602683612c16565b9150613a9182613a2a565b604082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b3f613b3a613b3584613b1a565b612d9a565b612b95565b9050919050565b613b4f81613b24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8a81612ce6565b82525050565b6000613b9c8383613b81565b60208301905092915050565b6000602082019050919050565b6000613bc082613b55565b613bca8185613b60565b9350613bd583613b71565b8060005b83811015613c06578151613bed8882613b90565b9750613bf883613ba8565b925050600181019050613bd9565b5085935050505092915050565b600060a082019050613c286000830188612e14565b613c356020830187613b46565b8181036040830152613c478186613bb5565b9050613c566060830185612f22565b613c636080830184612e14565b969550505050505056fea26469706673582212203980e4d56dd52079812d950dbfb3fe4e053899f8f43697f36338a4b95558f5ed64736f6c634300080a0033

Deployed Bytecode Sourcemap

26400:7489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32259:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8870:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11039:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26482:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9992:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31739:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32893:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11690:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9834:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12591:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26542:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27137:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33760:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31966:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27096:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27028:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33616:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10163:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2701:103;;;;;;;;;;;;;:::i;:::-;;31514:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33117:81;;;;;;;;;;;;;:::i;:::-;;2050:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26587:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9089:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26856:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26958:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13309:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33206:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10503:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26618:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27177:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33326:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32560:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33466:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26924:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10741:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26816:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26887:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2959:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26990:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27063:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31850:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32259:293;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32366:7:::1;32353:10;:20;;;;32403:13;32384:16;:32;;;;32456:16;;32443:10;;:29;;;;:::i;:::-;32427:13;:45;;;;32508:2;32491:13;;:19;;32483:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32259:293:::0;;:::o;8870:100::-;8924:13;8957:5;8950:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8870:100;:::o;11039:169::-;11122:4;11139:39;11148:12;:10;:12::i;:::-;11162:7;11171:6;11139:8;:39::i;:::-;11196:4;11189:11;;11039:169;;;;:::o;26482:51::-;;;:::o;9992:108::-;10053:7;10080:12;;10073:19;;9992:108;:::o;31739:103::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31825:9:::1;31813;;:21;;;;;;;;;;;;;;;;;;31739:103:::0;:::o;32893:216::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33017:4:::1;33009;33005:1;32989:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;32988:33;;;;:::i;:::-;32975:9;:46;;32967:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;33097:4;33085:9;:16;;;;:::i;:::-;33073:9;:28;;;;32893:216:::0;:::o;11690:492::-;11830:4;11847:36;11857:6;11865:9;11876:6;11847:9;:36::i;:::-;11896:24;11923:11;:19;11935:6;11923:19;;;;;;;;;;;;;;;:33;11943:12;:10;:12::i;:::-;11923:33;;;;;;;;;;;;;;;;11896:60;;11995:6;11975:16;:26;;11967:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12082:57;12091:6;12099:12;:10;:12::i;:::-;12132:6;12113:16;:25;12082:8;:57::i;:::-;12170:4;12163:11;;;11690:492;;;;;:::o;9834:93::-;9892:5;9917:2;9910:9;;9834:93;:::o;12591:215::-;12679:4;12696:80;12705:12;:10;:12::i;:::-;12719:7;12765:10;12728:11;:25;12740:12;:10;:12::i;:::-;12728:25;;;;;;;;;;;;;;;:34;12754:7;12728:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12696:8;:80::i;:::-;12794:4;12787:11;;12591:215;;;;:::o;26542:38::-;;;:::o;27137:33::-;;;;;;;;;;;;;:::o;33760:126::-;33826:4;33850:19;:28;33870:7;33850:28;;;;;;;;;;;;;;;;;;;;;;;;;33843:35;;33760:126;;;:::o;31966:285::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32070:7:::1;32058:9;:19;;;;32106:13;32088:15;:31;;;;32157:15;;32145:9;;:27;;;;:::i;:::-;32130:12;:42;;;;32207:2;32191:12;;:18;;32183:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;31966:285:::0;;:::o;27096:34::-;;;;;;;;;;;;;:::o;27028:28::-;;;;:::o;33616:136::-;33687:4;33711:24;:33;33736:7;33711:33;;;;;;;;;;;;;;;;;;;;;;;;;33704:40;;33616:136;;;:::o;10163:127::-;10237:7;10264:9;:18;10274:7;10264:18;;;;;;;;;;;;;;;;10257:25;;10163:127;;;:::o;2701:103::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2766:30:::1;2793:1;2766:18;:30::i;:::-;2701:103::o:0;31514:217::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31573:11:::1;31593:5;31573:26;;31610:15;31628:5;:15;;;31652:4;31628:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31610:48;;31683:1;31673:7;:11;31669:54;;;31686:5;:14;;;31701:12;:10;:12::i;:::-;31715:7;31686:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31669:54;31562:169;;31514:217:::0;:::o;33117:81::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33186:4:::1;33170:13;;:20;;;;;;;;;;;;;;;;;;33117:81::o:0;2050:87::-;2096:7;2123:6;;;;;;;;;;;2116:13;;2050:87;:::o;26587:24::-;;;;;;;;;;;;;:::o;9089:104::-;9145:13;9178:7;9171:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9089:104;:::o;26856:24::-;;;;:::o;26958:25::-;;;;:::o;13309:413::-;13402:4;13419:24;13446:11;:25;13458:12;:10;:12::i;:::-;13446:25;;;;;;;;;;;;;;;:34;13472:7;13446:34;;;;;;;;;;;;;;;;13419:61;;13519:15;13499:16;:35;;13491:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13612:67;13621:12;:10;:12::i;:::-;13635:7;13663:15;13644:16;:34;13612:8;:67::i;:::-;13710:4;13703:11;;;13309:413;;;;:::o;33206:112::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33295:15:::1;33278:14;;:32;;;;;;;;;;;;;;;;;;33206:112:::0;:::o;10503:175::-;10589:4;10606:42;10616:12;:10;:12::i;:::-;10630:9;10641:6;10606:9;:42::i;:::-;10666:4;10659:11;;10503:175;;;;:::o;26618:64::-;;;;;;;;;;;;;:::o;27177:25::-;;;;;;;;;;;;;:::o;33326:132::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33442:8:::1;33411:19;:28;33431:7;33411:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33326:132:::0;;:::o;32560:325::-;32641:4;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32701:6:::1;32696:1;32680:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32679:28;;;;:::i;:::-;32666:9;:41;;32658:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32788:3;32783:1;32767:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32766:25;;;;:::i;:::-;32753:9;:38;;32745:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;32846:9;32825:18;:30;;;;32873:4;32866:11;;32560:325:::0;;;:::o;33466:142::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33592:8:::1;33556:24;:33;33581:7;33556:33;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;33466:142:::0;;:::o;26924:27::-;;;;:::o;10741:151::-;10830:7;10857:11;:18;10869:5;10857:18;;;;;;;;;;;;;;;:27;10876:7;10857:27;;;;;;;;;;;;;;;;10850:34;;10741:151;;;;:::o;26816:33::-;;;;:::o;26887:30::-;;;;:::o;2959:201::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3068:1:::1;3048:22;;:8;:22;;;;3040:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3124:28;3143:8;3124:18;:28::i;:::-;2959:201:::0;:::o;26990:31::-;;;;:::o;27063:24::-;;;;:::o;31850:108::-;2281:12;:10;:12::i;:::-;2270:23;;:7;:5;:7::i;:::-;:23;;;2262:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:7:::1;31925:15;;:25;;;;;;;;;;;;;;;;;;31850:108:::0;:::o;890:98::-;943:7;970:10;963:17;;890:98;:::o;16993:380::-;17146:1;17129:19;;:5;:19;;;;17121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17227:1;17208:21;;:7;:21;;;;17200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17311:6;17281:11;:18;17293:5;17281:18;;;;;;;;;;;;;;;:27;17300:7;17281:27;;;;;;;;;;;;;;;:36;;;;17349:7;17333:32;;17342:5;17333:32;;;17358:6;17333:32;;;;;;:::i;:::-;;;;;;;;16993:380;;;:::o;28414:2369::-;28562:1;28546:18;;:4;:18;;;;28538:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28639:1;28625:16;;:2;:16;;;;28617:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28708:1;28698:6;:11;28694:93;;;28726:28;28742:4;28748:2;28752:1;28726:15;:28::i;:::-;28769:7;;28694:93;28799:10;28820:13;28812:21;;:4;:21;;;28799:34;;28844:11;28864:13;28858:19;;:2;:19;;;28844:33;;28895:13;;;;;;;;;;;28894:14;:44;;;;;28913:19;:25;28933:4;28913:25;;;;;;;;;;;;;;;;;;;;;;;;;28912:26;28894:44;:72;;;;;28943:19;:23;28963:2;28943:23;;;;;;;;;;;;;;;;;;;;;;;;;28942:24;28894:72;28890:123;;;28976:5;28968:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;28890:123;29030:14;;;;;;;;;;;:47;;;;;29049:24;:28;29074:2;29049:28;;;;;;;;;;;;;;;;;;;;;;;;;29048:29;29030:47;:60;;;;;29082:8;;;;;;;;;;;29081:9;29030:60;29026:361;;;29111:5;29107:119;;;29171:9;;29154:13;29164:2;29154:9;:13::i;:::-;29145:6;:22;;;;:::i;:::-;:35;;29137:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29107:119;29245:5;29244:6;:17;;;;;29255:6;29254:7;29244:17;29240:136;;;29316:9;;29299:13;29309:2;29299:9;:13::i;:::-;29290:6;:22;;;;:::i;:::-;:35;;29282:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;29240:136;29026:361;29399:28;29430:24;29448:4;29430:9;:24::i;:::-;29399:55;;29465:12;29504:18;;29480:20;:42;;29465:57;;29537:7;:26;;;;;29548:15;;;;;;;;;;;29537:26;:39;;;;;29568:8;;;;;;;;;;;29567:9;29537:39;:62;;;;;29586:13;29580:19;;:2;:19;;;29537:62;:92;;;;;29604:19;:25;29624:4;29604:25;;;;;;;;;;;;;;;;;;;;;;;;;29603:26;29537:92;:120;;;;;29634:19;:23;29654:2;29634:23;;;;;;;;;;;;;;;;;;;;;;;;;29633:24;29537:120;29533:224;;;29685:4;29674:8;;:15;;;;;;;;;;;;;;;;;;29704:10;:8;:10::i;:::-;29740:5;29729:8;;:16;;;;;;;;;;;;;;;;;;29533:224;29769:12;29785:8;;;;;;;;;;;29784:9;29769:24;;29808:19;:25;29828:4;29808:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;29837:19;:23;29857:2;29837:23;;;;;;;;;;;;;;;;;;;;;;;;;29808:52;29804:100;;;29887:5;29877:15;;29804:100;29916:12;29945:26;29992:7;29988:742;;;30026:13;30020:19;;:2;:19;;;:40;;;;;30059:1;30043:13;;:17;30020:40;30016:423;;;30088:34;30118:3;30088:25;30099:13;;30088:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;30081:41;;30190:13;;30170:16;;30163:4;:23;;;;:::i;:::-;30162:41;;;;:::i;:::-;30141:62;;30016:423;;;30250:13;30242:21;;:4;:21;;;:41;;;;;30282:1;30267:12;;:16;30242:41;30238:201;;;30311:33;30340:3;30311:24;30322:12;;30311:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;30304:40;;30411:12;;30392:15;;30385:4;:22;;;;:::i;:::-;30384:39;;;;:::i;:::-;30363:60;;30238:201;30016:423;30466:1;30459:4;:8;30455:91;;;30488:42;30504:4;30518;30525;30488:15;:42::i;:::-;30455:91;30585:1;30564:18;:22;30560:128;;;30607:65;30631:4;30638:13;30653:18;30607:15;:65::i;:::-;30560:128;30714:4;30704:14;;;;;:::i;:::-;;;29988:742;30742:33;30758:4;30764:2;30768:6;30742:15;:33::i;:::-;28527:2256;;;;;;;28414:2369;;;;:::o;3320:191::-;3394:16;3413:6;;;;;;;;;;;3394:25;;3439:8;3430:6;;:17;;;;;;;;;;;;;;;;;;3494:8;3463:40;;3484:8;3463:40;;;;;;;;;;;;3383:128;3320:191;:::o;14212:733::-;14370:1;14352:20;;:6;:20;;;;14344:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14454:1;14433:23;;:9;:23;;;;14425:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14509:47;14530:6;14538:9;14549:6;14509:20;:47::i;:::-;14569:21;14593:9;:17;14603:6;14593:17;;;;;;;;;;;;;;;;14569:41;;14646:6;14629:13;:23;;14621:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14767:6;14751:13;:22;14731:9;:17;14741:6;14731:17;;;;;;;;;;;;;;;:42;;;;14819:6;14795:9;:20;14805:9;14795:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14860:9;14843:35;;14852:6;14843:35;;;14871:6;14843:35;;;;;;:::i;:::-;;;;;;;;14891:46;14911:6;14919:9;14930:6;14891:19;:46::i;:::-;14333:612;14212:733;;;:::o;31256:213::-;31295:23;31321:24;31339:4;31321:9;:24::i;:::-;31295:50;;31379:1;31360:15;:20;31356:59;;;31397:7;;;31356:59;31427:34;31445:15;31427:17;:34::i;:::-;31284:185;31256:213;:::o;22311:98::-;22369:7;22400:1;22396;:5;;;;:::i;:::-;22389:12;;22311:98;;;;:::o;22710:::-;22768:7;22799:1;22795;:5;;;;:::i;:::-;22788:12;;22710:98;;;;:::o;17973:125::-;;;;:::o;18702:124::-;;;;:::o;30791:457::-;30858:21;30896:1;30882:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30858:40;;30927:4;30909;30914:1;30909:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;30953:4;;;;;;;;;;;30943;30948:1;30943:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;30970:62;30987:4;31002:15;31020:11;30970:8;:62::i;:::-;31045:15;:69;;;31129:11;31155:1;31171:4;31190:9;;;;;;;;;;;31214:15;31045:195;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30847:401;30791:457;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170: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:60::-;4002:3;4023:5;4016:12;;3974:60;;;:::o;4040:142::-;4090:9;4123:53;4141:34;4150:24;4168:5;4150:24;:::i;:::-;4141:34;:::i;:::-;4123:53;:::i;:::-;4110:66;;4040:142;;;:::o;4188:126::-;4238:9;4271:37;4302:5;4271:37;:::i;:::-;4258:50;;4188:126;;;:::o;4320:153::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4320:153;;;:::o;4479:185::-;4593:64;4651:5;4593:64;:::i;:::-;4588:3;4581:77;4479:185;;:::o;4670:276::-;4790:4;4828:2;4817:9;4813:18;4805:26;;4841:98;4936:1;4925:9;4921:17;4912:6;4841:98;:::i;:::-;4670:276;;;;:::o;4952:118::-;5039:24;5057:5;5039:24;:::i;:::-;5034:3;5027:37;4952:118;;:::o;5076:222::-;5169:4;5207:2;5196:9;5192:18;5184:26;;5220:71;5288:1;5277:9;5273:17;5264:6;5220:71;:::i;:::-;5076:222;;;;:::o;5304:329::-;5363:6;5412:2;5400:9;5391:7;5387:23;5383:32;5380:119;;;5418:79;;:::i;:::-;5380:119;5538:1;5563:53;5608:7;5599:6;5588:9;5584:22;5563:53;:::i;:::-;5553:63;;5509:117;5304:329;;;;:::o;5639:::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:86::-;6634:7;6674:4;6667:5;6663:16;6652:27;;6599:86;;;:::o;6691:112::-;6774:22;6790:5;6774:22;:::i;:::-;6769:3;6762:35;6691:112;;:::o;6809:214::-;6898:4;6936:2;6925:9;6921:18;6913:26;;6949:67;7013:1;7002:9;6998:17;6989:6;6949:67;:::i;:::-;6809:214;;;;:::o;7029:118::-;7116:24;7134:5;7116:24;:::i;:::-;7111:3;7104:37;7029:118;;:::o;7153:222::-;7246:4;7284:2;7273:9;7269:18;7261:26;;7297:71;7365:1;7354:9;7350:17;7341:6;7297:71;:::i;:::-;7153:222;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:323::-;7698:6;7747:2;7735:9;7726:7;7722:23;7718:32;7715:119;;;7753:79;;:::i;:::-;7715:119;7873:1;7898:50;7940:7;7931:6;7920:9;7916:22;7898:50;:::i;:::-;7888:60;;7844:114;7642:323;;;;:::o;7971:468::-;8036:6;8044;8093:2;8081:9;8072:7;8068:23;8064:32;8061:119;;;8099:79;;:::i;:::-;8061:119;8219:1;8244:53;8289:7;8280:6;8269:9;8265:22;8244:53;:::i;:::-;8234:63;;8190:117;8346:2;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8317:115;7971:468;;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:223::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:6;12836:2;12828:6;12824:15;12817:31;12632:223;:::o;12861:366::-;13003:3;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;12861:366;;;:::o;13233:419::-;13399:4;13437:2;13426:9;13422:18;13414:26;;13486:9;13480:4;13476:20;13472:1;13461:9;13457:17;13450:47;13514:131;13640:4;13514:131;:::i;:::-;13506:139;;13233:419;;;:::o;13658:227::-;13798:34;13794:1;13786:6;13782:14;13775:58;13867:10;13862:2;13854:6;13850:15;13843:35;13658:227;:::o;13891:366::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:419::-;14429:4;14467:2;14456:9;14452:18;14444:26;;14516:9;14510:4;14506:20;14502:1;14491:9;14487:17;14480:47;14544:131;14670:4;14544:131;:::i;:::-;14536:139;;14263:419;;;:::o;14688:143::-;14745:5;14776:6;14770:13;14761:22;;14792:33;14819:5;14792:33;:::i;:::-;14688:143;;;;:::o;14837:351::-;14907:6;14956:2;14944:9;14935:7;14931:23;14927:32;14924:119;;;14962:79;;:::i;:::-;14924:119;15082:1;15107:64;15163:7;15154:6;15143:9;15139:22;15107:64;:::i;:::-;15097:74;;15053:128;14837:351;;;;:::o;15194:332::-;15315:4;15353:2;15342:9;15338:18;15330:26;;15366:71;15434:1;15423:9;15419:17;15410:6;15366:71;:::i;:::-;15447:72;15515:2;15504:9;15500:18;15491:6;15447:72;:::i;:::-;15194:332;;;;;:::o;15532:137::-;15586:5;15617:6;15611:13;15602:22;;15633:30;15657:5;15633:30;:::i;:::-;15532:137;;;;:::o;15675:345::-;15742:6;15791:2;15779:9;15770:7;15766:23;15762:32;15759:119;;;15797:79;;:::i;:::-;15759:119;15917:1;15942:61;15995:7;15986:6;15975:9;15971:22;15942:61;:::i;:::-;15932:71;;15888:125;15675:345;;;;:::o;16026:224::-;16166:34;16162:1;16154:6;16150:14;16143:58;16235:7;16230:2;16222:6;16218:15;16211:32;16026:224;:::o;16256:366::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:419::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:172::-;17193:24;17189:1;17181:6;17177:14;17170:48;17053:172;:::o;17231:366::-;17373:3;17394:67;17458:2;17453:3;17394:67;:::i;:::-;17387:74;;17470:93;17559:3;17470:93;:::i;:::-;17588:2;17583:3;17579:12;17572:19;;17231:366;;;:::o;17603:419::-;17769:4;17807:2;17796:9;17792:18;17784:26;;17856:9;17850:4;17846:20;17842:1;17831:9;17827:17;17820:47;17884:131;18010:4;17884:131;:::i;:::-;17876:139;;17603:419;;;:::o;18028:168::-;18168:20;18164:1;18156:6;18152:14;18145:44;18028:168;:::o;18202:366::-;18344:3;18365:67;18429:2;18424:3;18365:67;:::i;:::-;18358:74;;18441:93;18530:3;18441:93;:::i;:::-;18559:2;18554:3;18550:12;18543:19;;18202:366;;;:::o;18574:419::-;18740:4;18778:2;18767:9;18763:18;18755:26;;18827:9;18821:4;18817:20;18813:1;18802:9;18798:17;18791:47;18855:131;18981:4;18855:131;:::i;:::-;18847:139;;18574:419;;;:::o;18999:225::-;19139:34;19135:1;19127:6;19123:14;19116:58;19208:8;19203:2;19195:6;19191:15;19184:33;18999:225;:::o;19230:366::-;19372:3;19393:67;19457:2;19452:3;19393:67;:::i;:::-;19386:74;;19469:93;19558:3;19469:93;:::i;:::-;19587:2;19582:3;19578:12;19571:19;;19230:366;;;:::o;19602:419::-;19768:4;19806:2;19795:9;19791:18;19783:26;;19855:9;19849:4;19845:20;19841:1;19830:9;19826:17;19819:47;19883:131;20009:4;19883:131;:::i;:::-;19875:139;;19602:419;;;:::o;20027:223::-;20167:34;20163:1;20155:6;20151:14;20144:58;20236:6;20231:2;20223:6;20219:15;20212:31;20027:223;:::o;20256:366::-;20398:3;20419:67;20483:2;20478:3;20419:67;:::i;:::-;20412:74;;20495:93;20584:3;20495:93;:::i;:::-;20613:2;20608:3;20604:12;20597:19;;20256:366;;;:::o;20628:419::-;20794:4;20832:2;20821:9;20817:18;20809:26;;20881:9;20875:4;20871:20;20867:1;20856:9;20852:17;20845:47;20909:131;21035:4;20909:131;:::i;:::-;20901:139;;20628:419;;;:::o;21053:221::-;21193:34;21189:1;21181:6;21177:14;21170:58;21262:4;21257:2;21249:6;21245:15;21238:29;21053:221;:::o;21280:366::-;21422:3;21443:67;21507:2;21502:3;21443:67;:::i;:::-;21436:74;;21519:93;21608:3;21519:93;:::i;:::-;21637:2;21632:3;21628:12;21621:19;;21280:366;;;:::o;21652:419::-;21818:4;21856:2;21845:9;21841:18;21833:26;;21905:9;21899:4;21895:20;21891:1;21880:9;21876:17;21869:47;21933:131;22059:4;21933:131;:::i;:::-;21925:139;;21652:419;;;:::o;22077:224::-;22217:34;22213:1;22205:6;22201:14;22194:58;22286:7;22281:2;22273:6;22269:15;22262:32;22077:224;:::o;22307:366::-;22449:3;22470:67;22534:2;22529:3;22470:67;:::i;:::-;22463:74;;22546:93;22635:3;22546:93;:::i;:::-;22664:2;22659:3;22655:12;22648:19;;22307:366;;;:::o;22679:419::-;22845:4;22883:2;22872:9;22868:18;22860:26;;22932:9;22926:4;22922:20;22918:1;22907:9;22903:17;22896:47;22960:131;23086:4;22960:131;:::i;:::-;22952:139;;22679:419;;;:::o;23104:222::-;23244:34;23240:1;23232:6;23228:14;23221:58;23313:5;23308:2;23300:6;23296:15;23289:30;23104:222;:::o;23332:366::-;23474:3;23495:67;23559:2;23554:3;23495:67;:::i;:::-;23488:74;;23571:93;23660:3;23571:93;:::i;:::-;23689:2;23684:3;23680:12;23673:19;;23332:366;;;:::o;23704:419::-;23870:4;23908:2;23897:9;23893:18;23885:26;;23957:9;23951:4;23947:20;23943:1;23932:9;23928:17;23921:47;23985:131;24111:4;23985:131;:::i;:::-;23977:139;;23704:419;;;:::o;24129:177::-;24269:29;24265:1;24257:6;24253:14;24246:53;24129:177;:::o;24312:366::-;24454:3;24475:67;24539:2;24534:3;24475:67;:::i;:::-;24468:74;;24551:93;24640:3;24551:93;:::i;:::-;24669:2;24664:3;24660:12;24653:19;;24312:366;;;:::o;24684:419::-;24850:4;24888:2;24877:9;24873:18;24865:26;;24937:9;24931:4;24927:20;24923:1;24912:9;24908:17;24901:47;24965:131;25091:4;24965:131;:::i;:::-;24957:139;;24684:419;;;:::o;25109:175::-;25249:27;25245:1;25237:6;25233:14;25226:51;25109:175;:::o;25290:366::-;25432:3;25453:67;25517:2;25512:3;25453:67;:::i;:::-;25446:74;;25529:93;25618:3;25529:93;:::i;:::-;25647:2;25642:3;25638:12;25631:19;;25290:366;;;:::o;25662:419::-;25828:4;25866:2;25855:9;25851:18;25843:26;;25915:9;25909:4;25905:20;25901:1;25890:9;25886:17;25879:47;25943:131;26069:4;25943:131;:::i;:::-;25935:139;;25662:419;;;:::o;26087:180::-;26227:32;26223:1;26215:6;26211:14;26204:56;26087:180;:::o;26273:366::-;26415:3;26436:67;26500:2;26495:3;26436:67;:::i;:::-;26429:74;;26512:93;26601:3;26512:93;:::i;:::-;26630:2;26625:3;26621:12;26614:19;;26273:366;;;:::o;26645:419::-;26811:4;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26645:419;;;:::o;27070:191::-;27110:4;27130:20;27148:1;27130:20;:::i;:::-;27125:25;;27164:20;27182:1;27164:20;:::i;:::-;27159:25;;27203:1;27200;27197:8;27194:34;;;27208:18;;:::i;:::-;27194:34;27253:1;27250;27246:9;27238:17;;27070:191;;;;:::o;27267:225::-;27407:34;27403:1;27395:6;27391:14;27384:58;27476:8;27471:2;27463:6;27459:15;27452:33;27267:225;:::o;27498:366::-;27640:3;27661:67;27725:2;27720:3;27661:67;:::i;:::-;27654:74;;27737:93;27826:3;27737:93;:::i;:::-;27855:2;27850:3;27846:12;27839:19;;27498:366;;;:::o;27870:419::-;28036:4;28074:2;28063:9;28059:18;28051:26;;28123:9;28117:4;28113:20;28109:1;28098:9;28094:17;28087:47;28151:131;28277:4;28151:131;:::i;:::-;28143:139;;27870:419;;;:::o;28295:180::-;28343:77;28340:1;28333:88;28440:4;28437:1;28430:15;28464:4;28461:1;28454:15;28481:180;28529:77;28526:1;28519:88;28626:4;28623:1;28616:15;28650:4;28647:1;28640:15;28667:85;28712:7;28741:5;28730:16;;28667:85;;;:::o;28758:158::-;28816:9;28849:61;28867:42;28876:32;28902:5;28876:32;:::i;:::-;28867:42;:::i;:::-;28849:61;:::i;:::-;28836:74;;28758:158;;;:::o;28922:147::-;29017:45;29056:5;29017:45;:::i;:::-;29012:3;29005:58;28922:147;;:::o;29075:114::-;29142:6;29176:5;29170:12;29160:22;;29075:114;;;:::o;29195:184::-;29294:11;29328:6;29323:3;29316:19;29368:4;29363:3;29359:14;29344:29;;29195:184;;;;:::o;29385:132::-;29452:4;29475:3;29467:11;;29505:4;29500:3;29496:14;29488:22;;29385:132;;;:::o;29523:108::-;29600:24;29618:5;29600:24;:::i;:::-;29595:3;29588:37;29523:108;;:::o;29637:179::-;29706:10;29727:46;29769:3;29761:6;29727:46;:::i;:::-;29805:4;29800:3;29796:14;29782:28;;29637:179;;;;:::o;29822:113::-;29892:4;29924;29919:3;29915:14;29907:22;;29822:113;;;:::o;29971:732::-;30090:3;30119:54;30167:5;30119:54;:::i;:::-;30189:86;30268:6;30263:3;30189:86;:::i;:::-;30182:93;;30299:56;30349:5;30299:56;:::i;:::-;30378:7;30409:1;30394:284;30419:6;30416:1;30413:13;30394:284;;;30495:6;30489:13;30522:63;30581:3;30566:13;30522:63;:::i;:::-;30515:70;;30608:60;30661:6;30608:60;:::i;:::-;30598:70;;30454:224;30441:1;30438;30434:9;30429:14;;30394:284;;;30398:14;30694:3;30687:10;;30095:608;;;29971:732;;;;:::o;30709:831::-;30972:4;31010:3;30999:9;30995:19;30987:27;;31024:71;31092:1;31081:9;31077:17;31068:6;31024:71;:::i;:::-;31105:80;31181:2;31170:9;31166:18;31157:6;31105:80;:::i;:::-;31232:9;31226:4;31222:20;31217:2;31206:9;31202:18;31195:48;31260:108;31363:4;31354:6;31260:108;:::i;:::-;31252:116;;31378:72;31446:2;31435:9;31431:18;31422:6;31378:72;:::i;:::-;31460:73;31528:3;31517:9;31513:19;31504:6;31460:73;:::i;:::-;30709:831;;;;;;;;:::o

Swarm Source

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