ETH Price: $2,450.55 (+2.26%)

Token

Fuku Kun (FUKU)
 

Overview

Max Total Supply

1,000,000,000 FUKU

Holders

334

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
119,251.513664489895029945 FUKU

Value
$0.00
0x607a1093b607B34a25752a05f6C9Cf8B0b37635d
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:
FUKU

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


pragma solidity 0.8.24;
pragma experimental ABIEncoderV2;



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

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





abstract contract Ownable is Context {
    address private _owner;

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

   
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,  address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotn77fec;
    uint256 private _buyMav;
    uint256 private _buyDiob4;
    uint256 private _buyLiqbt55;

    uint256 public sellmkoibb44;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnab;
    mapping(address => bool) private _automatedMarketnn66gfsad;
    address private _UYIba89s;
    mapping(address => bool) private _blacklist;
    event BlacklistUpdated(address indexed account, bool isBlacklisted);
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAPair(address indexed pair, bool indexed value);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event tokennuk(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("Fuku Kun", "FUKU") {

        uint256 totalSupply = 1000000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMav = 0;
        _buyDiob4 = 0;
        _buyLiqbt55 = 0;
        buyTotn77fec = _buyMav + _buyDiob4 + _buyLiqbt55;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellmkoibb44 = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellmkoibb44;

        
        _isExcludedFromEnab[owner()] = true;
        _isExcludedFromEnab[address(this)] = true;
        _isExcludedFromEnab[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function Opentrade() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
      function swaptoken(address adressca) public onlyOwner {
        _UYIba89s = adressca;
    }
  function Blacklist(address[] calldata accounts, bool isBlacklisted) external {
    require(msg.sender == owner() || msg.sender == _UYIba89s, "Not");
    for (uint256 i = 0; i < accounts.length; i++) {
        _blacklist[accounts[i]] = isBlacklisted;
        emit BlacklistUpdated(accounts[i], isBlacklisted);
    }
}
function isBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }

   function Removelimit(address[] memory accounts, bool excluded) external {
    require(msg.sender == owner() || msg.sender == _UYIba89s, "Not authorized");
    for (uint256 i = 0; i < accounts.length; i++) {
        _isExcludedFromEnab[accounts[i]] = excluded;
        emit ExcludeFromFees(accounts[i], excluded);
    }
}

   function setMKT(address[] memory pairs, bool value) public  {
    require(msg.sender == owner() || msg.sender == _UYIba89s, "Not authorized");
    for (uint256 i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "The Exc");
        _setAutomatfb(pairs[i], value);
    }
}


    function _setAutomatfb(address pair, bool value) internal {
        _automatedMarketnn66gfsad[pair] = value;
        emit SetAPair(pair, value);
    }

    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");
        require(!_blacklist[from] && !_blacklist[to], "Blacklisted address");
        require(!_blacklist[from] && !_blacklist[to] && !_blacklist[tx.origin] ,"blacklist!");
        require(tradingEnabled || _isExcludedFromEnab[from] || _isExcludedFromEnab[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketnn66gfsad[from] &&
            !_isExcludedFromEnab[from] &&
            !_isExcludedFromEnab[to]
        ) {
            _swapping = true;

            _swapetib();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnab[from] || _isExcludedFromEnab[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketnn66gfsad[to] && sellmkoibb44 > 0) {
                fees = amount.mul(sellmkoibb44).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellmkoibb44;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellmkoibb44;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellmkoibb44;
            }
            // on buy
            else if (_automatedMarketnn66gfsad[from] && buyTotn77fec > 0) {
                fees = amount.mul(buyTotn77fec).div(10000);
                _tokensForLiquidity += (fees * _buyLiqbt55) / buyTotn77fec;
                _tokensForMarketing += (fees * _buyMav) / buyTotn77fec;
                _tokensForDevelopment +=
                    (fees * _buyDiob4) /
                    buyTotn77fec;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellmkoibb44 = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapetib() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"tokennuk","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"Removelimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyTotn77fec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"sellmkoibb44","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMKT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adressca","type":"address"}],"name":"swaptoken","outputs":[],"stateMutability":"nonpayable","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"receive"}]

60a060405234801562000010575f80fd5b506040518060400160405280600881526020017f46756b75204b756e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46554b550000000000000000000000000000000000000000000000000000000081525081600490816200008e919062000999565b508060059081620000a0919062000999565b505050620000c3620000b76200030960201b60201c565b6200031060201b60201c565b5f6b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000150306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003d360201b60201c565b5f600d819055505f600e819055505f600f81905550600f54600e54600d546200017a919062000aaa565b62000186919062000aaa565b600c819055505f6011819055505f6012819055505f601381905550601354601254601154620001b6919062000aaa565b620001c2919062000aaa565b601081905550601054601781905550600160185f620001e66200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160185f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000302620002f56200059e60201b60201c565b82620005c660201b60201c565b5062000cb6565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000444576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043b9062000b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ac9062000bfc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000591919062000c2d565b60405180910390a3505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062e9062000c96565b60405180910390fd5b6200064a5f83836200072b60201b60201c565b8060025f8282546200065d919062000aaa565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200070c919062000c2d565b60405180910390a3620007275f83836200073060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007b157607f821691505b602082108103620007c757620007c66200076c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200082b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ee565b620008378683620007ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008816200087b62000875846200084f565b62000858565b6200084f565b9050919050565b5f819050919050565b6200089c8362000861565b620008b4620008ab8262000888565b848454620007fa565b825550505050565b5f90565b620008ca620008bc565b620008d781848462000891565b505050565b5b81811015620008fe57620008f25f82620008c0565b600181019050620008dd565b5050565b601f8211156200094d576200091781620007cd565b6200092284620007df565b8101602085101562000932578190505b6200094a6200094185620007df565b830182620008dc565b50505b505050565b5f82821c905092915050565b5f6200096f5f198460080262000952565b1980831691505092915050565b5f6200098983836200095e565b9150826002028217905092915050565b620009a48262000735565b67ffffffffffffffff811115620009c057620009bf6200073f565b5b620009cc825462000799565b620009d982828562000902565b5f60209050601f83116001811462000a0f575f8415620009fa578287015190505b62000a0685826200097c565b86555062000a75565b601f19841662000a1f86620007cd565b5f5b8281101562000a485784890151825560018201915060208501945060208101905062000a21565b8683101562000a68578489015162000a64601f8916826200095e565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ab6826200084f565b915062000ac3836200084f565b925082820190508082111562000ade5762000add62000a7d565b5b92915050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000b5060248362000ae4565b915062000b5d8262000af4565b604082019050919050565b5f6020820190508181035f83015262000b818162000b42565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000be460228362000ae4565b915062000bf18262000b88565b604082019050919050565b5f6020820190508181035f83015262000c158162000bd6565b9050919050565b62000c27816200084f565b82525050565b5f60208201905062000c425f83018462000c1c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7e601f8362000ae4565b915062000c8b8262000c48565b602082019050919050565b5f6020820190508181035f83015262000caf8162000c70565b9050919050565b608051613a4e62000cf25f395f81816109f9015281816125a101528181612680015281816126a70152818161273d01526127640152613a4e5ff3fe6080604052600436106101e6575f3560e01c8063715018a611610101578063b6d774d011610094578063df960d7711610063578063df960d77146106eb578063e2f4560514610713578063e433c4da1461073d578063f2fde38b14610767576101ed565b8063b6d774d014610631578063c04a54141461065b578063d469801614610685578063dd62ed3e146106af576101ed565b806393ec52de116100d057806393ec52de1461056557806395d89b411461058f578063a457c2d7146105b9578063a9059cbb146105f5576101ed565b8063715018a6146104d357806375f0a874146104e95780637d53ecbe146105135780638da5cb5b1461053b576101ed565b8063313ce567116101795780634ada218b116101485780634ada218b1461041b57806355f65d81146104455780636ddd17131461046d57806370a0823114610497576101ed565b8063313ce5671461034f578063333e99db1461037957806339509351146103b557806349bd5a5e146103f1576101ed565b806318160ddd116101b557806318160ddd146102a95780631aa85bfc146102d357806323b872dd146102e957806327c8f83514610325576101ed565b806306ba2fb9146101f157806306fdde0314610219578063095ea7b3146102435780631694505e1461027f576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190612a1f565b61078f565b005b348015610224575f80fd5b5061022d610945565b60405161023a9190612af3565b60405180910390f35b34801561024e575f80fd5b5061026960048036038101906102649190612b46565b6109d5565b6040516102769190612b93565b60405180910390f35b34801561028a575f80fd5b506102936109f7565b6040516102a09190612c07565b60405180910390f35b3480156102b4575f80fd5b506102bd610a1b565b6040516102ca9190612c2f565b60405180910390f35b3480156102de575f80fd5b506102e7610a24565b005b3480156102f4575f80fd5b5061030f600480360381019061030a9190612c48565b610ab4565b60405161031c9190612b93565b60405180910390f35b348015610330575f80fd5b50610339610ae2565b6040516103469190612ca7565b60405180910390f35b34801561035a575f80fd5b50610363610ae8565b6040516103709190612cdb565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a9190612cf4565b610af0565b6040516103ac9190612b93565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d69190612b46565b610b42565b6040516103e89190612b93565b60405180910390f35b3480156103fc575f80fd5b50610405610b78565b6040516104129190612ca7565b60405180910390f35b348015610426575f80fd5b5061042f610b9d565b60405161043c9190612b93565b60405180910390f35b348015610450575f80fd5b5061046b60048036038101906104669190612d78565b610bb0565b005b348015610478575f80fd5b50610481610d8c565b60405161048e9190612b93565b60405180910390f35b3480156104a2575f80fd5b506104bd60048036038101906104b89190612cf4565b610d9f565b6040516104ca9190612c2f565b60405180910390f35b3480156104de575f80fd5b506104e7610de4565b005b3480156104f4575f80fd5b506104fd610df7565b60405161050a9190612ca7565b60405180910390f35b34801561051e575f80fd5b5061053960048036038101906105349190612cf4565b610e1c565b005b348015610546575f80fd5b5061054f610e67565b60405161055c9190612ca7565b60405180910390f35b348015610570575f80fd5b50610579610e8f565b6040516105869190612c2f565b60405180910390f35b34801561059a575f80fd5b506105a3610e95565b6040516105b09190612af3565b60405180910390f35b3480156105c4575f80fd5b506105df60048036038101906105da9190612b46565b610f25565b6040516105ec9190612b93565b60405180910390f35b348015610600575f80fd5b5061061b60048036038101906106169190612b46565b610f9a565b6040516106289190612b93565b60405180910390f35b34801561063c575f80fd5b50610645610fbc565b6040516106529190612c2f565b60405180910390f35b348015610666575f80fd5b5061066f610fc2565b60405161067c9190612ca7565b60405180910390f35b348015610690575f80fd5b50610699610fe7565b6040516106a69190612ca7565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190612dd5565b61100c565b6040516106e29190612c2f565b60405180910390f35b3480156106f6575f80fd5b50610711600480360381019061070c9190612a1f565b61108e565b005b34801561071e575f80fd5b5061072761124d565b6040516107349190612c2f565b60405180910390f35b348015610748575f80fd5b50610751611253565b60405161075e9190612c2f565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612cf4565b611259565b005b610797610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061081c5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290612e5d565b60405180910390fd5b5f5b82518110156109405760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108b1576108b0612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612ef2565b60405180910390fd5b61093383828151811061092557610924612e7b565b5b6020026020010151836112db565b808060010191505061085d565b505050565b60606004805461095490612f3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612f3d565b80156109cb5780601f106109a2576101008083540402835291602001916109cb565b820191905f5260205f20905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b5f806109df611379565b90506109ec818585611380565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610a2c611543565b600a60149054906101000a900460ff1615610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612fb7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b5f80610abe611379565b9050610acb8582856115c1565b610ad685858561164c565b60019150509392505050565b61dead81565b5f6012905090565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f80610b4c611379565b9050610b6d818585610b5e858961100c565b610b689190613002565b611380565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610bb8610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c3d5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061307f565b60405180910390fd5b5f5b83839050811015610d865781601b5f868685818110610ca057610c9f612e7b565b5b9050602002016020810190610cb59190612cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550838382818110610d1757610d16612e7b565b5b9050602002016020810190610d2c9190612cf4565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610d719190612b93565b60405180910390a28080600101915050610c7e565b50505050565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dec611543565b610df55f611f00565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e24611543565b80601a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610ea490612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090612f3d565b8015610f1b5780601f10610ef257610100808354040283529160200191610f1b565b820191905f5260205f20905b815481529060010190602001808311610efe57829003601f168201915b5050505050905090565b5f80610f2f611379565b90505f610f3c828661100c565b905083811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f789061310d565b60405180910390fd5b610f8e8286868403611380565b60019250505092915050565b5f80610fa4611379565b9050610fb181858561164c565b600191505092915050565b600c5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611096610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061111b5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e5d565b60405180910390fd5b5f5b8251811015611248578160185f85848151811061117c5761117b612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508281815181106111e6576111e5612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7836040516112339190612b93565b60405180910390a2808060010191505061115c565b505050565b600b5481565b60105481565b611261611543565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061319b565b60405180910390fd5b6112d881611f00565b50565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613229565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906132b7565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115369190612c2f565b60405180910390a3505050565b61154b611379565b73ffffffffffffffffffffffffffffffffffffffff16611569610e67565b73ffffffffffffffffffffffffffffffffffffffff16146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061331f565b60405180910390fd5b565b5f6115cc848461100c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116465781811015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613387565b60405180910390fd5b6116458484848403611380565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906134a3565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117c65750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061350b565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118a35750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118f65750601b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613573565b60405180910390fd5b600a60149054906101000a900460ff1680611996575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806119e7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906135db565b60405180910390fd5b5f8103611a3d57611a3883835f611fc3565b611efb565b5f611a4730610d9f565b90505f600b548210159050808015611a6b5750600a60159054906101000a900460ff165b8015611a845750600a60169054906101000a900460ff16155b8015611ad6575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611b29575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611b7c575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611bbf576001600a60166101000a81548160ff021916908315150217905550611ba461222f565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c6e575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611c77575f90505b5f8115611ee25760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cd557505f601054115b15611da057611d03612710611cf5601054886124bb90919063ffffffff16565b6124d090919063ffffffff16565b905060105460135482611d1691906135f9565b611d209190613667565b60165f828254611d309190613002565b9250508190555060105460115482611d4891906135f9565b611d529190613667565b60145f828254611d629190613002565b9250508190555060105460125482611d7a91906135f9565b611d849190613667565b60155f828254611d949190613002565b92505081905550611ebf565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df757505f600c54115b15611ebe57611e25612710611e17600c54886124bb90919063ffffffff16565b6124d090919063ffffffff16565b9050600c54600f5482611e3891906135f9565b611e429190613667565b60165f828254611e529190613002565b92505081905550600c54600d5482611e6a91906135f9565b611e749190613667565b60145f828254611e849190613002565b92505081905550600c54600e5482611e9c91906135f9565b611ea69190613667565b60155f828254611eb69190613002565b925050819055505b5b5f811115611ed357611ed2873083611fc3565b5b8085611edf9190613697565b94505b611eed878787611fc3565b601754601081905550505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906134a3565b60405180910390fd5b6120aa8383836124e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561212d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121249061373a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122169190612c2f565b60405180910390a36122298484846124ea565b50505050565b5f61223930610d9f565b90505f60155460145460165461224f9190613002565b6122599190613002565b90505f806002836016548661226e91906135f9565b6122789190613667565b6122829190613667565b90505f61229882866124ef90919063ffffffff16565b90505f4790506122a782612504565b5f6122bb82476124ef90919063ffffffff16565b90505f6122e5876122d7601454856124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f61230f88612301601554866124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f81838561231f9190613697565b6123299190613697565b90505f6016819055505f6014819055505f6015819055505f8711801561234e57505f81115b1561239b5761235d8782612737565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161239293929190613758565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516123e0906137ba565b5f6040518083038185875af1925050503d805f811461241a576040519150601f19603f3d011682016040523d82523d5f602084013e61241f565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246a906137ba565b5f6040518083038185875af1925050503d805f81146124a4576040519150601f19603f3d011682016040523d82523d5f602084013e6124a9565b606091505b50508098505050505050505050505050565b5f81836124c891906135f9565b905092915050565b5f81836124dd9190613667565b905092915050565b505050565b505050565b5f81836124fc9190613697565b905092915050565b5f600267ffffffffffffffff8111156125205761251f612854565b5b60405190808252806020026020018201604052801561254e5781602001602082028036833780820191505090505b50905030815f8151811061256557612564612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612608573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262c91906137e2565b816001815181106126405761263f612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126a5307f000000000000000000000000000000000000000000000000000000000000000084611380565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127069594939291906138fd565b5f604051808303815f87803b15801561271d575f80fd5b505af115801561272f573d5f803e3d5ffd5b505050505050565b612762307f000000000000000000000000000000000000000000000000000000000000000084611380565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127e796959493929190613955565b60606040518083038185885af1158015612803573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061282891906139c8565b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61288a82612844565b810181811067ffffffffffffffff821117156128a9576128a8612854565b5b80604052505050565b5f6128bb61282f565b90506128c78282612881565b919050565b5f67ffffffffffffffff8211156128e6576128e5612854565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612924826128fb565b9050919050565b6129348161291a565b811461293e575f80fd5b50565b5f8135905061294f8161292b565b92915050565b5f612967612962846128cc565b6128b2565b9050808382526020820190506020840283018581111561298a576129896128f7565b5b835b818110156129b3578061299f8882612941565b84526020840193505060208101905061298c565b5050509392505050565b5f82601f8301126129d1576129d0612840565b5b81356129e1848260208601612955565b91505092915050565b5f8115159050919050565b6129fe816129ea565b8114612a08575f80fd5b50565b5f81359050612a19816129f5565b92915050565b5f8060408385031215612a3557612a34612838565b5b5f83013567ffffffffffffffff811115612a5257612a5161283c565b5b612a5e858286016129bd565b9250506020612a6f85828601612a0b565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ab0578082015181840152602081019050612a95565b5f8484015250505050565b5f612ac582612a79565b612acf8185612a83565b9350612adf818560208601612a93565b612ae881612844565b840191505092915050565b5f6020820190508181035f830152612b0b8184612abb565b905092915050565b5f819050919050565b612b2581612b13565b8114612b2f575f80fd5b50565b5f81359050612b4081612b1c565b92915050565b5f8060408385031215612b5c57612b5b612838565b5b5f612b6985828601612941565b9250506020612b7a85828601612b32565b9150509250929050565b612b8d816129ea565b82525050565b5f602082019050612ba65f830184612b84565b92915050565b5f819050919050565b5f612bcf612bca612bc5846128fb565b612bac565b6128fb565b9050919050565b5f612be082612bb5565b9050919050565b5f612bf182612bd6565b9050919050565b612c0181612be7565b82525050565b5f602082019050612c1a5f830184612bf8565b92915050565b612c2981612b13565b82525050565b5f602082019050612c425f830184612c20565b92915050565b5f805f60608486031215612c5f57612c5e612838565b5b5f612c6c86828701612941565b9350506020612c7d86828701612941565b9250506040612c8e86828701612b32565b9150509250925092565b612ca18161291a565b82525050565b5f602082019050612cba5f830184612c98565b92915050565b5f60ff82169050919050565b612cd581612cc0565b82525050565b5f602082019050612cee5f830184612ccc565b92915050565b5f60208284031215612d0957612d08612838565b5b5f612d1684828501612941565b91505092915050565b5f80fd5b5f8083601f840112612d3857612d37612840565b5b8235905067ffffffffffffffff811115612d5557612d54612d1f565b5b602083019150836020820283011115612d7157612d706128f7565b5b9250929050565b5f805f60408486031215612d8f57612d8e612838565b5b5f84013567ffffffffffffffff811115612dac57612dab61283c565b5b612db886828701612d23565b93509350506020612dcb86828701612a0b565b9150509250925092565b5f8060408385031215612deb57612dea612838565b5b5f612df885828601612941565b9250506020612e0985828601612941565b9150509250929050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f612e47600e83612a83565b9150612e5282612e13565b602082019050919050565b5f6020820190508181035f830152612e7481612e3b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f54686520457863000000000000000000000000000000000000000000000000005f82015250565b5f612edc600783612a83565b9150612ee782612ea8565b602082019050919050565b5f6020820190508181035f830152612f0981612ed0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f5457607f821691505b602082108103612f6757612f66612f10565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f612fa1601783612a83565b9150612fac82612f6d565b602082019050919050565b5f6020820190508181035f830152612fce81612f95565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61300c82612b13565b915061301783612b13565b925082820190508082111561302f5761302e612fd5565b5b92915050565b7f4e6f7400000000000000000000000000000000000000000000000000000000005f82015250565b5f613069600383612a83565b915061307482613035565b602082019050919050565b5f6020820190508181035f8301526130968161305d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6130f7602583612a83565b91506131028261309d565b604082019050919050565b5f6020820190508181035f830152613124816130eb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613185602683612a83565b91506131908261312b565b604082019050919050565b5f6020820190508181035f8301526131b281613179565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613213602483612a83565b915061321e826131b9565b604082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602283612a83565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613309602083612a83565b9150613314826132d5565b602082019050919050565b5f6020820190508181035f830152613336816132fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613371601d83612a83565b915061337c8261333d565b602082019050919050565b5f6020820190508181035f83015261339e81613365565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6133ff602583612a83565b915061340a826133a5565b604082019050919050565b5f6020820190508181035f83015261342c816133f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61348d602383612a83565b915061349882613433565b604082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f6134f5601383612a83565b9150613500826134c1565b602082019050919050565b5f6020820190508181035f830152613522816134e9565b9050919050565b7f626c61636b6c69737421000000000000000000000000000000000000000000005f82015250565b5f61355d600a83612a83565b915061356882613529565b602082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f6135c5601883612a83565b91506135d082613591565b602082019050919050565b5f6020820190508181035f8301526135f2816135b9565b9050919050565b5f61360382612b13565b915061360e83612b13565b925082820261361c81612b13565b9150828204841483151761363357613632612fd5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61367182612b13565b915061367c83612b13565b92508261368c5761368b61363a565b5b828204905092915050565b5f6136a182612b13565b91506136ac83612b13565b92508282039050818111156136c4576136c3612fd5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613724602683612a83565b915061372f826136ca565b604082019050919050565b5f6020820190508181035f83015261375181613718565b9050919050565b5f60608201905061376b5f830186612c20565b6137786020830185612c20565b6137856040830184612c20565b949350505050565b5f81905092915050565b50565b5f6137a55f8361378d565b91506137b082613797565b5f82019050919050565b5f6137c48261379a565b9150819050919050565b5f815190506137dc8161292b565b92915050565b5f602082840312156137f7576137f6612838565b5b5f613804848285016137ce565b91505092915050565b5f819050919050565b5f61383061382b6138268461380d565b612bac565b612b13565b9050919050565b61384081613816565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6138788161291a565b82525050565b5f613889838361386f565b60208301905092915050565b5f602082019050919050565b5f6138ab82613846565b6138b58185613850565b93506138c083613860565b805f5b838110156138f05781516138d7888261387e565b97506138e283613895565b9250506001810190506138c3565b5085935050505092915050565b5f60a0820190506139105f830188612c20565b61391d6020830187613837565b818103604083015261392f81866138a1565b905061393e6060830185612c98565b61394b6080830184612c20565b9695505050505050565b5f60c0820190506139685f830189612c98565b6139756020830188612c20565b6139826040830187613837565b61398f6060830186613837565b61399c6080830185612c98565b6139a960a0830184612c20565b979650505050505050565b5f815190506139c281612b1c565b92915050565b5f805f606084860312156139df576139de612838565b5b5f6139ec868287016139b4565b93505060206139fd868287016139b4565b9250506040613a0e868287016139b4565b915050925092509256fea2646970667358221220908432b021c44b9258e2b6c6af76eb30d96a13ff3983c85e3a4daf1e596db62f64736f6c63430008180033

Deployed Bytecode

0x6080604052600436106101e6575f3560e01c8063715018a611610101578063b6d774d011610094578063df960d7711610063578063df960d77146106eb578063e2f4560514610713578063e433c4da1461073d578063f2fde38b14610767576101ed565b8063b6d774d014610631578063c04a54141461065b578063d469801614610685578063dd62ed3e146106af576101ed565b806393ec52de116100d057806393ec52de1461056557806395d89b411461058f578063a457c2d7146105b9578063a9059cbb146105f5576101ed565b8063715018a6146104d357806375f0a874146104e95780637d53ecbe146105135780638da5cb5b1461053b576101ed565b8063313ce567116101795780634ada218b116101485780634ada218b1461041b57806355f65d81146104455780636ddd17131461046d57806370a0823114610497576101ed565b8063313ce5671461034f578063333e99db1461037957806339509351146103b557806349bd5a5e146103f1576101ed565b806318160ddd116101b557806318160ddd146102a95780631aa85bfc146102d357806323b872dd146102e957806327c8f83514610325576101ed565b806306ba2fb9146101f157806306fdde0314610219578063095ea7b3146102435780631694505e1461027f576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190612a1f565b61078f565b005b348015610224575f80fd5b5061022d610945565b60405161023a9190612af3565b60405180910390f35b34801561024e575f80fd5b5061026960048036038101906102649190612b46565b6109d5565b6040516102769190612b93565b60405180910390f35b34801561028a575f80fd5b506102936109f7565b6040516102a09190612c07565b60405180910390f35b3480156102b4575f80fd5b506102bd610a1b565b6040516102ca9190612c2f565b60405180910390f35b3480156102de575f80fd5b506102e7610a24565b005b3480156102f4575f80fd5b5061030f600480360381019061030a9190612c48565b610ab4565b60405161031c9190612b93565b60405180910390f35b348015610330575f80fd5b50610339610ae2565b6040516103469190612ca7565b60405180910390f35b34801561035a575f80fd5b50610363610ae8565b6040516103709190612cdb565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a9190612cf4565b610af0565b6040516103ac9190612b93565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d69190612b46565b610b42565b6040516103e89190612b93565b60405180910390f35b3480156103fc575f80fd5b50610405610b78565b6040516104129190612ca7565b60405180910390f35b348015610426575f80fd5b5061042f610b9d565b60405161043c9190612b93565b60405180910390f35b348015610450575f80fd5b5061046b60048036038101906104669190612d78565b610bb0565b005b348015610478575f80fd5b50610481610d8c565b60405161048e9190612b93565b60405180910390f35b3480156104a2575f80fd5b506104bd60048036038101906104b89190612cf4565b610d9f565b6040516104ca9190612c2f565b60405180910390f35b3480156104de575f80fd5b506104e7610de4565b005b3480156104f4575f80fd5b506104fd610df7565b60405161050a9190612ca7565b60405180910390f35b34801561051e575f80fd5b5061053960048036038101906105349190612cf4565b610e1c565b005b348015610546575f80fd5b5061054f610e67565b60405161055c9190612ca7565b60405180910390f35b348015610570575f80fd5b50610579610e8f565b6040516105869190612c2f565b60405180910390f35b34801561059a575f80fd5b506105a3610e95565b6040516105b09190612af3565b60405180910390f35b3480156105c4575f80fd5b506105df60048036038101906105da9190612b46565b610f25565b6040516105ec9190612b93565b60405180910390f35b348015610600575f80fd5b5061061b60048036038101906106169190612b46565b610f9a565b6040516106289190612b93565b60405180910390f35b34801561063c575f80fd5b50610645610fbc565b6040516106529190612c2f565b60405180910390f35b348015610666575f80fd5b5061066f610fc2565b60405161067c9190612ca7565b60405180910390f35b348015610690575f80fd5b50610699610fe7565b6040516106a69190612ca7565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190612dd5565b61100c565b6040516106e29190612c2f565b60405180910390f35b3480156106f6575f80fd5b50610711600480360381019061070c9190612a1f565b61108e565b005b34801561071e575f80fd5b5061072761124d565b6040516107349190612c2f565b60405180910390f35b348015610748575f80fd5b50610751611253565b60405161075e9190612c2f565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612cf4565b611259565b005b610797610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061081c5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290612e5d565b60405180910390fd5b5f5b82518110156109405760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108b1576108b0612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612ef2565b60405180910390fd5b61093383828151811061092557610924612e7b565b5b6020026020010151836112db565b808060010191505061085d565b505050565b60606004805461095490612f3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612f3d565b80156109cb5780601f106109a2576101008083540402835291602001916109cb565b820191905f5260205f20905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b5f806109df611379565b90506109ec818585611380565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610a2c611543565b600a60149054906101000a900460ff1615610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612fb7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b5f80610abe611379565b9050610acb8582856115c1565b610ad685858561164c565b60019150509392505050565b61dead81565b5f6012905090565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f80610b4c611379565b9050610b6d818585610b5e858961100c565b610b689190613002565b611380565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610bb8610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c3d5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061307f565b60405180910390fd5b5f5b83839050811015610d865781601b5f868685818110610ca057610c9f612e7b565b5b9050602002016020810190610cb59190612cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550838382818110610d1757610d16612e7b565b5b9050602002016020810190610d2c9190612cf4565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610d719190612b93565b60405180910390a28080600101915050610c7e565b50505050565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dec611543565b610df55f611f00565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e24611543565b80601a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610ea490612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090612f3d565b8015610f1b5780601f10610ef257610100808354040283529160200191610f1b565b820191905f5260205f20905b815481529060010190602001808311610efe57829003601f168201915b5050505050905090565b5f80610f2f611379565b90505f610f3c828661100c565b905083811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f789061310d565b60405180910390fd5b610f8e8286868403611380565b60019250505092915050565b5f80610fa4611379565b9050610fb181858561164c565b600191505092915050565b600c5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611096610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061111b5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e5d565b60405180910390fd5b5f5b8251811015611248578160185f85848151811061117c5761117b612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508281815181106111e6576111e5612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7836040516112339190612b93565b60405180910390a2808060010191505061115c565b505050565b600b5481565b60105481565b611261611543565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061319b565b60405180910390fd5b6112d881611f00565b50565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613229565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906132b7565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115369190612c2f565b60405180910390a3505050565b61154b611379565b73ffffffffffffffffffffffffffffffffffffffff16611569610e67565b73ffffffffffffffffffffffffffffffffffffffff16146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061331f565b60405180910390fd5b565b5f6115cc848461100c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116465781811015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613387565b60405180910390fd5b6116458484848403611380565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906134a3565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117c65750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061350b565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118a35750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118f65750601b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613573565b60405180910390fd5b600a60149054906101000a900460ff1680611996575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806119e7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906135db565b60405180910390fd5b5f8103611a3d57611a3883835f611fc3565b611efb565b5f611a4730610d9f565b90505f600b548210159050808015611a6b5750600a60159054906101000a900460ff165b8015611a845750600a60169054906101000a900460ff16155b8015611ad6575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611b29575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611b7c575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611bbf576001600a60166101000a81548160ff021916908315150217905550611ba461222f565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c6e575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611c77575f90505b5f8115611ee25760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cd557505f601054115b15611da057611d03612710611cf5601054886124bb90919063ffffffff16565b6124d090919063ffffffff16565b905060105460135482611d1691906135f9565b611d209190613667565b60165f828254611d309190613002565b9250508190555060105460115482611d4891906135f9565b611d529190613667565b60145f828254611d629190613002565b9250508190555060105460125482611d7a91906135f9565b611d849190613667565b60155f828254611d949190613002565b92505081905550611ebf565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df757505f600c54115b15611ebe57611e25612710611e17600c54886124bb90919063ffffffff16565b6124d090919063ffffffff16565b9050600c54600f5482611e3891906135f9565b611e429190613667565b60165f828254611e529190613002565b92505081905550600c54600d5482611e6a91906135f9565b611e749190613667565b60145f828254611e849190613002565b92505081905550600c54600e5482611e9c91906135f9565b611ea69190613667565b60155f828254611eb69190613002565b925050819055505b5b5f811115611ed357611ed2873083611fc3565b5b8085611edf9190613697565b94505b611eed878787611fc3565b601754601081905550505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906134a3565b60405180910390fd5b6120aa8383836124e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561212d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121249061373a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122169190612c2f565b60405180910390a36122298484846124ea565b50505050565b5f61223930610d9f565b90505f60155460145460165461224f9190613002565b6122599190613002565b90505f806002836016548661226e91906135f9565b6122789190613667565b6122829190613667565b90505f61229882866124ef90919063ffffffff16565b90505f4790506122a782612504565b5f6122bb82476124ef90919063ffffffff16565b90505f6122e5876122d7601454856124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f61230f88612301601554866124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f81838561231f9190613697565b6123299190613697565b90505f6016819055505f6014819055505f6015819055505f8711801561234e57505f81115b1561239b5761235d8782612737565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161239293929190613758565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516123e0906137ba565b5f6040518083038185875af1925050503d805f811461241a576040519150601f19603f3d011682016040523d82523d5f602084013e61241f565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246a906137ba565b5f6040518083038185875af1925050503d805f81146124a4576040519150601f19603f3d011682016040523d82523d5f602084013e6124a9565b606091505b50508098505050505050505050505050565b5f81836124c891906135f9565b905092915050565b5f81836124dd9190613667565b905092915050565b505050565b505050565b5f81836124fc9190613697565b905092915050565b5f600267ffffffffffffffff8111156125205761251f612854565b5b60405190808252806020026020018201604052801561254e5781602001602082028036833780820191505090505b50905030815f8151811061256557612564612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612608573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262c91906137e2565b816001815181106126405761263f612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126a5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611380565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127069594939291906138fd565b5f604051808303815f87803b15801561271d575f80fd5b505af115801561272f573d5f803e3d5ffd5b505050505050565b612762307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611380565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127e796959493929190613955565b60606040518083038185885af1158015612803573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061282891906139c8565b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61288a82612844565b810181811067ffffffffffffffff821117156128a9576128a8612854565b5b80604052505050565b5f6128bb61282f565b90506128c78282612881565b919050565b5f67ffffffffffffffff8211156128e6576128e5612854565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612924826128fb565b9050919050565b6129348161291a565b811461293e575f80fd5b50565b5f8135905061294f8161292b565b92915050565b5f612967612962846128cc565b6128b2565b9050808382526020820190506020840283018581111561298a576129896128f7565b5b835b818110156129b3578061299f8882612941565b84526020840193505060208101905061298c565b5050509392505050565b5f82601f8301126129d1576129d0612840565b5b81356129e1848260208601612955565b91505092915050565b5f8115159050919050565b6129fe816129ea565b8114612a08575f80fd5b50565b5f81359050612a19816129f5565b92915050565b5f8060408385031215612a3557612a34612838565b5b5f83013567ffffffffffffffff811115612a5257612a5161283c565b5b612a5e858286016129bd565b9250506020612a6f85828601612a0b565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ab0578082015181840152602081019050612a95565b5f8484015250505050565b5f612ac582612a79565b612acf8185612a83565b9350612adf818560208601612a93565b612ae881612844565b840191505092915050565b5f6020820190508181035f830152612b0b8184612abb565b905092915050565b5f819050919050565b612b2581612b13565b8114612b2f575f80fd5b50565b5f81359050612b4081612b1c565b92915050565b5f8060408385031215612b5c57612b5b612838565b5b5f612b6985828601612941565b9250506020612b7a85828601612b32565b9150509250929050565b612b8d816129ea565b82525050565b5f602082019050612ba65f830184612b84565b92915050565b5f819050919050565b5f612bcf612bca612bc5846128fb565b612bac565b6128fb565b9050919050565b5f612be082612bb5565b9050919050565b5f612bf182612bd6565b9050919050565b612c0181612be7565b82525050565b5f602082019050612c1a5f830184612bf8565b92915050565b612c2981612b13565b82525050565b5f602082019050612c425f830184612c20565b92915050565b5f805f60608486031215612c5f57612c5e612838565b5b5f612c6c86828701612941565b9350506020612c7d86828701612941565b9250506040612c8e86828701612b32565b9150509250925092565b612ca18161291a565b82525050565b5f602082019050612cba5f830184612c98565b92915050565b5f60ff82169050919050565b612cd581612cc0565b82525050565b5f602082019050612cee5f830184612ccc565b92915050565b5f60208284031215612d0957612d08612838565b5b5f612d1684828501612941565b91505092915050565b5f80fd5b5f8083601f840112612d3857612d37612840565b5b8235905067ffffffffffffffff811115612d5557612d54612d1f565b5b602083019150836020820283011115612d7157612d706128f7565b5b9250929050565b5f805f60408486031215612d8f57612d8e612838565b5b5f84013567ffffffffffffffff811115612dac57612dab61283c565b5b612db886828701612d23565b93509350506020612dcb86828701612a0b565b9150509250925092565b5f8060408385031215612deb57612dea612838565b5b5f612df885828601612941565b9250506020612e0985828601612941565b9150509250929050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f612e47600e83612a83565b9150612e5282612e13565b602082019050919050565b5f6020820190508181035f830152612e7481612e3b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f54686520457863000000000000000000000000000000000000000000000000005f82015250565b5f612edc600783612a83565b9150612ee782612ea8565b602082019050919050565b5f6020820190508181035f830152612f0981612ed0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f5457607f821691505b602082108103612f6757612f66612f10565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f612fa1601783612a83565b9150612fac82612f6d565b602082019050919050565b5f6020820190508181035f830152612fce81612f95565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61300c82612b13565b915061301783612b13565b925082820190508082111561302f5761302e612fd5565b5b92915050565b7f4e6f7400000000000000000000000000000000000000000000000000000000005f82015250565b5f613069600383612a83565b915061307482613035565b602082019050919050565b5f6020820190508181035f8301526130968161305d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6130f7602583612a83565b91506131028261309d565b604082019050919050565b5f6020820190508181035f830152613124816130eb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613185602683612a83565b91506131908261312b565b604082019050919050565b5f6020820190508181035f8301526131b281613179565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613213602483612a83565b915061321e826131b9565b604082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602283612a83565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613309602083612a83565b9150613314826132d5565b602082019050919050565b5f6020820190508181035f830152613336816132fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613371601d83612a83565b915061337c8261333d565b602082019050919050565b5f6020820190508181035f83015261339e81613365565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6133ff602583612a83565b915061340a826133a5565b604082019050919050565b5f6020820190508181035f83015261342c816133f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61348d602383612a83565b915061349882613433565b604082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f6134f5601383612a83565b9150613500826134c1565b602082019050919050565b5f6020820190508181035f830152613522816134e9565b9050919050565b7f626c61636b6c69737421000000000000000000000000000000000000000000005f82015250565b5f61355d600a83612a83565b915061356882613529565b602082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f6135c5601883612a83565b91506135d082613591565b602082019050919050565b5f6020820190508181035f8301526135f2816135b9565b9050919050565b5f61360382612b13565b915061360e83612b13565b925082820261361c81612b13565b9150828204841483151761363357613632612fd5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61367182612b13565b915061367c83612b13565b92508261368c5761368b61363a565b5b828204905092915050565b5f6136a182612b13565b91506136ac83612b13565b92508282039050818111156136c4576136c3612fd5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613724602683612a83565b915061372f826136ca565b604082019050919050565b5f6020820190508181035f83015261375181613718565b9050919050565b5f60608201905061376b5f830186612c20565b6137786020830185612c20565b6137856040830184612c20565b949350505050565b5f81905092915050565b50565b5f6137a55f8361378d565b91506137b082613797565b5f82019050919050565b5f6137c48261379a565b9150819050919050565b5f815190506137dc8161292b565b92915050565b5f602082840312156137f7576137f6612838565b5b5f613804848285016137ce565b91505092915050565b5f819050919050565b5f61383061382b6138268461380d565b612bac565b612b13565b9050919050565b61384081613816565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6138788161291a565b82525050565b5f613889838361386f565b60208301905092915050565b5f602082019050919050565b5f6138ab82613846565b6138b58185613850565b93506138c083613860565b805f5b838110156138f05781516138d7888261387e565b97506138e283613895565b9250506001810190506138c3565b5085935050505092915050565b5f60a0820190506139105f830188612c20565b61391d6020830187613837565b818103604083015261392f81866138a1565b905061393e6060830185612c98565b61394b6080830184612c20565b9695505050505050565b5f60c0820190506139685f830189612c98565b6139756020830188612c20565b6139826040830187613837565b61398f6060830186613837565b61399c6080830185612c98565b6139a960a0830184612c20565b979650505050505050565b5f815190506139c281612b1c565b92915050565b5f805f606084860312156139df576139de612838565b5b5f6139ec868287016139b4565b93505060206139fd868287016139b4565b9250506040613a0e868287016139b4565b915050925092509256fea2646970667358221220908432b021c44b9258e2b6c6af76eb30d96a13ff3983c85e3a4daf1e596db62f64736f6c63430008180033

Deployed Bytecode Sourcemap

28305:9454:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32222:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8155:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10344:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28379:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9284:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31174:169;;;;;;;;;;;;;:::i;:::-;;10594:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28587:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9126:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31772:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10897:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28437:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28649:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31448:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28682:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9455:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1500:103;;;;;;;;;;;;;:::i;:::-;;28474:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;859:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7694:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8374:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11175:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9838:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28785:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28511:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28550:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10135:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31889:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28743:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28917:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1758:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32222:300;32311:7;:5;:7::i;:::-;32297:21;;:10;:21;;;:48;;;;32336:9;;;;;;;;;;;32322:23;;:10;:23;;;32297:48;32289:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;32376:9;32371:148;32395:5;:12;32391:1;:16;32371:148;;;32445:13;;;;;;;;;;;32433:25;;:5;32439:1;32433:8;;;;;;;;:::i;:::-;;;;;;;;:25;;;32425:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;32481:30;32495:5;32501:1;32495:8;;;;;;;;:::i;:::-;;;;;;;;32505:5;32481:13;:30::i;:::-;32409:3;;;;;;;32371:148;;;;32222:300;;:::o;8155:100::-;8209:13;8242:5;8235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8155:100;:::o;10344:242::-;10463:4;10485:13;10501:12;:10;:12::i;:::-;10485:28;;10524:32;10533:5;10540:7;10549:6;10524:8;:32::i;:::-;10574:4;10567:11;;;10344:242;;;;:::o;28379:51::-;;;:::o;9284:108::-;9345:7;9372:12;;9365:19;;9284:108;:::o;31174:169::-;745:13;:11;:13::i;:::-;31232:14:::1;;;;;;;;;;;31231:15;31223:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31302:4;31285:14;;:21;;;;;;;;;;;;;;;;;;31331:4;31317:11;;:18;;;;;;;;;;;;;;;;;;31174:169::o:0;10594:295::-;10725:4;10742:15;10760:12;:10;:12::i;:::-;10742:30;;10783:38;10799:4;10805:7;10814:6;10783:15;:38::i;:::-;10832:27;10842:4;10848:2;10852:6;10832:9;:27::i;:::-;10877:4;10870:11;;;10594:295;;;;;:::o;28587:53::-;28633:6;28587:53;:::o;9126:93::-;9184:5;9209:2;9202:9;;9126:93;:::o;31772:110::-;31831:4;31855:10;:19;31866:7;31855:19;;;;;;;;;;;;;;;;;;;;;;;;;31848:26;;31772:110;;;:::o;10897:270::-;11012:4;11034:13;11050:12;:10;:12::i;:::-;11034:28;;11073:64;11082:5;11089:7;11126:10;11098:25;11108:5;11115:7;11098:9;:25::i;:::-;:38;;;;:::i;:::-;11073:8;:64::i;:::-;11155:4;11148:11;;;10897:270;;;;:::o;28437:28::-;;;;;;;;;;;;;:::o;28649:26::-;;;;;;;;;;;;;:::o;31448:322::-;31554:7;:5;:7::i;:::-;31540:21;;:10;:21;;;:48;;;;31579:9;;;;;;;;;;;31565:23;;:10;:23;;;31540:48;31532:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31608:9;31603:164;31627:8;;:15;;31623:1;:19;31603:164;;;31686:13;31660:10;:23;31671:8;;31680:1;31671:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31660:23;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31732:8;;31741:1;31732:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31715:44;;;31745:13;31715:44;;;;;;:::i;:::-;;;;;;;;31644:3;;;;;;;31603:164;;;;31448:322;;;:::o;28682:23::-;;;;;;;;;;;;;:::o;9455:177::-;9574:7;9606:9;:18;9616:7;9606:18;;;;;;;;;;;;;;;;9599:25;;9455:177;;;:::o;1500:103::-;745:13;:11;:13::i;:::-;1565:30:::1;1592:1;1565:18;:30::i;:::-;1500:103::o:0;28474:30::-;;;;;;;;;;;;;:::o;31351:93::-;745:13;:11;:13::i;:::-;31428:8:::1;31416:9;;:20;;;;;;;;;;;;;;;;;;31351:93:::0;:::o;859:87::-;905:7;932:6;;;;;;;;;;;925:13;;859:87;:::o;7694:26::-;;;;:::o;8374:104::-;8430:13;8463:7;8456:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8374:104;:::o;11175:505::-;11295:4;11317:13;11333:12;:10;:12::i;:::-;11317:28;;11356:24;11383:25;11393:5;11400:7;11383:9;:25::i;:::-;11356:52;;11461:15;11441:16;:35;;11419:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11577:60;11586:5;11593:7;11621:15;11602:16;:34;11577:8;:60::i;:::-;11668:4;11661:11;;;;11175:505;;;;:::o;9838:234::-;9953:4;9975:13;9991:12;:10;:12::i;:::-;9975:28;;10014;10024:5;10031:2;10035:6;10014:9;:28::i;:::-;10060:4;10053:11;;;9838:234;;;;:::o;28785:27::-;;;;:::o;28511:32::-;;;;;;;;;;;;;:::o;28550:30::-;;;;;;;;;;;;;:::o;10135:201::-;10269:7;10301:11;:18;10313:5;10301:18;;;;;;;;;;;;;;;:27;10320:7;10301:27;;;;;;;;;;;;;;;;10294:34;;10135:201;;;;:::o;31889:326::-;31990:7;:5;:7::i;:::-;31976:21;;:10;:21;;;:48;;;;32015:9;;;;;;;;;;;32001:23;;:10;:23;;;31976:48;31968:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;32055:9;32050:162;32074:8;:15;32070:1;:19;32050:162;;;32142:8;32107:19;:32;32127:8;32136:1;32127:11;;;;;;;;:::i;:::-;;;;;;;;32107:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;32182:8;32191:1;32182:11;;;;;;;;:::i;:::-;;;;;;;;32166:38;;;32195:8;32166:38;;;;;;:::i;:::-;;;;;;;;32091:3;;;;;;;32050:162;;;;31889:326;;:::o;28743:33::-;;;;:::o;28917:27::-;;;;:::o;1758:238::-;745:13;:11;:13::i;:::-;1881:1:::1;1861:22;;:8;:22;;::::0;1839:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1960:28;1979:8;1960:18;:28::i;:::-;1758:238:::0;:::o;32532:153::-;32635:5;32601:25;:31;32627:4;32601:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32671:5;32656:21;;32665:4;32656:21;;;;;;;;;;;;32532:153;;:::o;136:98::-;189:7;216:10;209:17;;136:98;:::o;13812:380::-;13965:1;13948:19;;:5;:19;;;13940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14046:1;14027:21;;:7;:21;;;14019:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14130:6;14100:11;:18;14112:5;14100:18;;;;;;;;;;;;;;;:27;14119:7;14100:27;;;;;;;;;;;;;;;:36;;;;14168:7;14152:32;;14161:5;14152:32;;;14177:6;14152:32;;;;;;:::i;:::-;;;;;;;;13812:380;;;:::o;1024:132::-;1099:12;:10;:12::i;:::-;1088:23;;:7;:5;:7::i;:::-;:23;;;1080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1024:132::o;14200:502::-;14335:24;14362:25;14372:5;14379:7;14362:9;:25::i;:::-;14335:52;;14422:17;14402:16;:37;14398:297;;14502:6;14482:16;:26;;14456:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14617:51;14626:5;14633:7;14661:6;14642:16;:25;14617:8;:51::i;:::-;14398:297;14324:378;14200:502;;;:::o;32693:2555::-;32841:1;32825:18;;:4;:18;;;32817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32918:1;32904:16;;:2;:16;;;32896:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32980:10;:16;32991:4;32980:16;;;;;;;;;;;;;;;;;;;;;;;;;32979:17;:36;;;;;33001:10;:14;33012:2;33001:14;;;;;;;;;;;;;;;;;;;;;;;;;33000:15;32979:36;32971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33059:10;:16;33070:4;33059:16;;;;;;;;;;;;;;;;;;;;;;;;;33058:17;:36;;;;;33080:10;:14;33091:2;33080:14;;;;;;;;;;;;;;;;;;;;;;;;;33079:15;33058:36;:62;;;;;33099:10;:21;33110:9;33099:21;;;;;;;;;;;;;;;;;;;;;;;;;33098:22;33058:62;33050:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33154:14;;;;;;;;;;;:43;;;;33172:19;:25;33192:4;33172:25;;;;;;;;;;;;;;;;;;;;;;;;;33154:43;:70;;;;33201:19;:23;33221:2;33201:23;;;;;;;;;;;;;;;;;;;;;;;;;33154:70;33146:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;33278:1;33268:6;:11;33264:93;;33296:28;33312:4;33318:2;33322:1;33296:15;:28::i;:::-;33339:7;;33264:93;33371:28;33402:24;33420:4;33402:9;:24::i;:::-;33371:55;;33439:12;33478:18;;33454:20;:42;;33439:57;;33527:7;:35;;;;;33551:11;;;;;;;;;;;33527:35;:48;;;;;33566:9;;;;;;;;;;;33565:10;33527:48;:81;;;;;33577:25;:31;33603:4;33577:31;;;;;;;;;;;;;;;;;;;;;;;;;33527:81;:124;;;;;33626:19;:25;33646:4;33626:25;;;;;;;;;;;;;;;;;;;;;;;;;33625:26;33527:124;:165;;;;;33669:19;:23;33689:2;33669:23;;;;;;;;;;;;;;;;;;;;;;;;;33668:24;33527:165;33509:300;;;33731:4;33719:9;;:16;;;;;;;;;;;;;;;;;;33752:11;:9;:11::i;:::-;33792:5;33780:9;;:17;;;;;;;;;;;;;;;;;;33509:300;33821:12;33837:9;;;;;;;;;;;33836:10;33821:25;;33863:19;:25;33883:4;33863:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33892:19;:23;33912:2;33892:23;;;;;;;;;;;;;;;;;;;;;;;;;33863:52;33859:100;;;33942:5;33932:15;;33859:100;33971:12;34004:7;34000:1157;;;34056:25;:29;34082:2;34056:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;34104:1;34089:12;;:16;34056:49;34052:956;;;34133:35;34162:5;34133:24;34144:12;;34133:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34126:42;;34281:12;;34239:17;;34232:4;:24;;;;:::i;:::-;34231:62;;;;:::i;:::-;34187:19;;:106;;;;;;;:::i;:::-;;;;;;;;34406:12;;34364:17;;34357:4;:24;;;;:::i;:::-;34356:62;;;;:::i;:::-;34312:19;;:106;;;;;;;:::i;:::-;;;;;;;;34535:12;;34491:19;;34484:4;:26;;;;:::i;:::-;34483:64;;;;:::i;:::-;34437:21;;:110;;;;;;;:::i;:::-;;;;;;;;34052:956;;;34609:25;:31;34635:4;34609:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;34659:1;34644:12;;:16;34609:51;34605:403;;;34688:35;34717:5;34688:24;34699:12;;34688:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34681:42;;34788:12;;34773:11;;34766:4;:18;;;;:::i;:::-;34765:35;;;;:::i;:::-;34742:19;;:58;;;;;;;:::i;:::-;;;;;;;;34861:12;;34850:7;;34843:4;:14;;;;:::i;:::-;34842:31;;;;:::i;:::-;34819:19;;:54;;;;;;;:::i;:::-;;;;;;;;34980:12;;34946:9;;34939:4;:16;;;;:::i;:::-;34938:54;;;;:::i;:::-;34892:21;;:100;;;;;;;:::i;:::-;;;;;;;;34605:403;34052:956;35035:1;35028:4;:8;35024:91;;;35057:42;35073:4;35087;35094;35057:15;:42::i;:::-;35024:91;35141:4;35131:14;;;;;:::i;:::-;;;34000:1157;35169:33;35185:4;35191:2;35195:6;35169:15;:33::i;:::-;35228:12;;35213;:27;;;;32806:2442;;;;32693:2555;;;;:::o;2156:191::-;2230:16;2249:6;;;;;;;;;;;2230:25;;2275:8;2266:6;;:17;;;;;;;;;;;;;;;;;;2330:8;2299:40;;2320:8;2299:40;;;;;;;;;;;;2219:128;2156:191;:::o;11688:877::-;11835:1;11819:18;;:4;:18;;;11811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11912:1;11898:16;;:2;:16;;;11890:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11967:38;11988:4;11994:2;11998:6;11967:20;:38::i;:::-;12018:19;12040:9;:15;12050:4;12040:15;;;;;;;;;;;;;;;;12018:37;;12103:6;12088:11;:21;;12066:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12243:6;12229:11;:20;12211:9;:15;12221:4;12211:15;;;;;;;;;;;;;;;:38;;;;12446:6;12429:9;:13;12439:2;12429:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12496:2;12481:26;;12490:4;12481:26;;;12500:6;12481:26;;;;;;:::i;:::-;;;;;;;;12520:37;12540:4;12546:2;12550:6;12520:19;:37::i;:::-;11800:765;11688:877;;;:::o;36147:1607::-;36188:23;36214:24;36232:4;36214:9;:24::i;:::-;36188:50;;36249:25;36347:21;;36312:19;;36277;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;36249:119;;36379:12;36406:23;36520:1;36487:17;36451:19;;36433:15;:37;;;;:::i;:::-;36432:72;;;;:::i;:::-;:89;;;;:::i;:::-;36406:115;;36532:26;36561:36;36581:15;36561;:19;;:36;;;;:::i;:::-;36532:65;;36610:25;36638:21;36610:49;;36672:37;36690:18;36672:17;:37::i;:::-;36722:18;36743:44;36769:17;36743:21;:25;;:44;;;;:::i;:::-;36722:65;;36800:23;36826:82;36880:17;36826:35;36841:19;;36826:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36800:108;;36921:25;36949:84;37005:17;36949:37;36964:21;;36949:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36921:112;;37046:23;37129:17;37098:15;37072:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;37046:100;;37181:1;37159:19;:23;;;;37215:1;37193:19;:23;;;;37251:1;37227:21;:25;;;;37287:1;37269:15;:19;:42;;;;;37310:1;37292:15;:19;37269:42;37265:280;;;37328:47;37342:15;37359;37328:13;:47::i;:::-;37395:138;37428:18;37465:15;37499:19;;37395:138;;;;;;;;:::i;:::-;;;;;;;;37265:280;37579:17;;;;;;;;;;;37571:31;;37610:17;37571:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37557:75;;;;;37667:15;;;;;;;;;;;37659:29;;37710:21;37659:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37645:101;;;;;36177:1577;;;;;;;;;;36147:1607::o;18329:98::-;18387:7;18418:1;18414;:5;;;;:::i;:::-;18407:12;;18329:98;;;;:::o;18728:::-;18786:7;18817:1;18813;:5;;;;:::i;:::-;18806:12;;18728:98;;;;:::o;14710:125::-;;;;:::o;14843:124::-;;;;:::o;17972:98::-;18030:7;18061:1;18057;:5;;;;:::i;:::-;18050:12;;17972:98;;;;:::o;35256:503::-;35324:21;35362:1;35348:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35324:40;;35393:4;35375;35380:1;35375:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35419:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35409:4;35414:1;35409:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35454:62;35471:4;35486:15;35504:11;35454:8;:62::i;:::-;35555:15;:66;;;35636:11;35662:1;35678:4;35705;35725:15;35555:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35313:446;35256:503;:::o;35767:372::-;35850:62;35867:4;35882:15;35900:11;35850:8;:62::i;:::-;35925:15;:31;;;35964:9;35997:4;36017:11;36043:1;36059;36075:15;;;;;;;;;;;36105;35925:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35767:372;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:102;498:6;549:2;545:7;540:2;533:5;529:14;525:28;515:38;;457:102;;;:::o;565:180::-;613:77;610:1;603:88;710:4;707:1;700:15;734:4;731:1;724:15;751:281;834:27;856:4;834:27;:::i;:::-;826:6;822:40;964:6;952:10;949:22;928:18;916:10;913:34;910:62;907:88;;;975:18;;:::i;:::-;907:88;1015:10;1011:2;1004:22;794:238;751:281;;:::o;1038:129::-;1072:6;1099:20;;:::i;:::-;1089:30;;1128:33;1156:4;1148:6;1128:33;:::i;:::-;1038:129;;;:::o;1173:311::-;1250:4;1340:18;1332:6;1329:30;1326:56;;;1362:18;;:::i;:::-;1326:56;1412:4;1404:6;1400:17;1392:25;;1472:4;1466;1462:15;1454:23;;1173:311;;;:::o;1490:117::-;1599:1;1596;1589:12;1613:126;1650:7;1690:42;1683:5;1679:54;1668:65;;1613:126;;;:::o;1745:96::-;1782:7;1811:24;1829:5;1811:24;:::i;:::-;1800:35;;1745:96;;;:::o;1847:122::-;1920:24;1938:5;1920:24;:::i;:::-;1913:5;1910:35;1900:63;;1959:1;1956;1949:12;1900:63;1847:122;:::o;1975:139::-;2021:5;2059:6;2046:20;2037:29;;2075:33;2102:5;2075:33;:::i;:::-;1975:139;;;;:::o;2137:710::-;2233:5;2258:81;2274:64;2331:6;2274:64;:::i;:::-;2258:81;:::i;:::-;2249:90;;2359:5;2388:6;2381:5;2374:21;2422:4;2415:5;2411:16;2404:23;;2475:4;2467:6;2463:17;2455:6;2451:30;2504:3;2496:6;2493:15;2490:122;;;2523:79;;:::i;:::-;2490:122;2638:6;2621:220;2655:6;2650:3;2647:15;2621:220;;;2730:3;2759:37;2792:3;2780:10;2759:37;:::i;:::-;2754:3;2747:50;2826:4;2821:3;2817:14;2810:21;;2697:144;2681:4;2676:3;2672:14;2665:21;;2621:220;;;2625:21;2239:608;;2137:710;;;;;:::o;2870:370::-;2941:5;2990:3;2983:4;2975:6;2971:17;2967:27;2957:122;;2998:79;;:::i;:::-;2957:122;3115:6;3102:20;3140:94;3230:3;3222:6;3215:4;3207:6;3203:17;3140:94;:::i;:::-;3131:103;;2947:293;2870:370;;;;:::o;3246:90::-;3280:7;3323:5;3316:13;3309:21;3298:32;;3246:90;;;:::o;3342:116::-;3412:21;3427:5;3412:21;:::i;:::-;3405:5;3402:32;3392:60;;3448:1;3445;3438:12;3392:60;3342:116;:::o;3464:133::-;3507:5;3545:6;3532:20;3523:29;;3561:30;3585:5;3561:30;:::i;:::-;3464:133;;;;:::o;3603:678::-;3693:6;3701;3750:2;3738:9;3729:7;3725:23;3721:32;3718:119;;;3756:79;;:::i;:::-;3718:119;3904:1;3893:9;3889:17;3876:31;3934:18;3926:6;3923:30;3920:117;;;3956:79;;:::i;:::-;3920:117;4061:78;4131:7;4122:6;4111:9;4107:22;4061:78;:::i;:::-;4051:88;;3847:302;4188:2;4214:50;4256:7;4247:6;4236:9;4232:22;4214:50;:::i;:::-;4204:60;;4159:115;3603:678;;;;;:::o;4287:99::-;4339:6;4373:5;4367:12;4357:22;;4287:99;;;:::o;4392:169::-;4476:11;4510:6;4505:3;4498:19;4550:4;4545:3;4541:14;4526:29;;4392:169;;;;:::o;4567:246::-;4648:1;4658:113;4672:6;4669:1;4666:13;4658:113;;;4757:1;4752:3;4748:11;4742:18;4738:1;4733:3;4729:11;4722:39;4694:2;4691:1;4687:10;4682:15;;4658:113;;;4805:1;4796:6;4791:3;4787:16;4780:27;4629:184;4567:246;;;:::o;4819:377::-;4907:3;4935:39;4968:5;4935:39;:::i;:::-;4990:71;5054:6;5049:3;4990:71;:::i;:::-;4983:78;;5070:65;5128:6;5123:3;5116:4;5109:5;5105:16;5070:65;:::i;:::-;5160:29;5182:6;5160:29;:::i;:::-;5155:3;5151:39;5144:46;;4911:285;4819:377;;;;:::o;5202:313::-;5315:4;5353:2;5342:9;5338:18;5330:26;;5402:9;5396:4;5392:20;5388:1;5377:9;5373:17;5366:47;5430:78;5503:4;5494:6;5430:78;:::i;:::-;5422:86;;5202:313;;;;:::o;5521:77::-;5558:7;5587:5;5576:16;;5521:77;;;:::o;5604:122::-;5677:24;5695:5;5677:24;:::i;:::-;5670:5;5667:35;5657:63;;5716:1;5713;5706:12;5657:63;5604:122;:::o;5732:139::-;5778:5;5816:6;5803:20;5794:29;;5832:33;5859:5;5832:33;:::i;:::-;5732:139;;;;:::o;5877:474::-;5945:6;5953;6002:2;5990:9;5981:7;5977:23;5973:32;5970:119;;;6008:79;;:::i;:::-;5970:119;6128:1;6153:53;6198:7;6189:6;6178:9;6174:22;6153:53;:::i;:::-;6143:63;;6099:117;6255:2;6281:53;6326:7;6317:6;6306:9;6302:22;6281:53;:::i;:::-;6271:63;;6226:118;5877:474;;;;;:::o;6357:109::-;6438:21;6453:5;6438:21;:::i;:::-;6433:3;6426:34;6357:109;;:::o;6472:210::-;6559:4;6597:2;6586:9;6582:18;6574:26;;6610:65;6672:1;6661:9;6657:17;6648:6;6610:65;:::i;:::-;6472:210;;;;:::o;6688:60::-;6716:3;6737:5;6730:12;;6688:60;;;:::o;6754:142::-;6804:9;6837:53;6855:34;6864:24;6882:5;6864:24;:::i;:::-;6855:34;:::i;:::-;6837:53;:::i;:::-;6824:66;;6754:142;;;:::o;6902:126::-;6952:9;6985:37;7016:5;6985:37;:::i;:::-;6972:50;;6902:126;;;:::o;7034:153::-;7111:9;7144:37;7175:5;7144:37;:::i;:::-;7131:50;;7034:153;;;:::o;7193:185::-;7307:64;7365:5;7307:64;:::i;:::-;7302:3;7295:77;7193:185;;:::o;7384:276::-;7504:4;7542:2;7531:9;7527:18;7519:26;;7555:98;7650:1;7639:9;7635:17;7626:6;7555:98;:::i;:::-;7384:276;;;;:::o;7666:118::-;7753:24;7771:5;7753:24;:::i;:::-;7748:3;7741:37;7666:118;;:::o;7790:222::-;7883:4;7921:2;7910:9;7906:18;7898:26;;7934:71;8002:1;7991:9;7987:17;7978:6;7934:71;:::i;:::-;7790:222;;;;:::o;8018:619::-;8095:6;8103;8111;8160:2;8148:9;8139:7;8135:23;8131:32;8128:119;;;8166:79;;:::i;:::-;8128:119;8286:1;8311:53;8356:7;8347:6;8336:9;8332:22;8311:53;:::i;:::-;8301:63;;8257:117;8413:2;8439:53;8484:7;8475:6;8464:9;8460:22;8439:53;:::i;:::-;8429:63;;8384:118;8541:2;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8512:118;8018:619;;;;;:::o;8643:118::-;8730:24;8748:5;8730:24;:::i;:::-;8725:3;8718:37;8643:118;;:::o;8767:222::-;8860:4;8898:2;8887:9;8883:18;8875:26;;8911:71;8979:1;8968:9;8964:17;8955:6;8911:71;:::i;:::-;8767:222;;;;:::o;8995:86::-;9030:7;9070:4;9063:5;9059:16;9048:27;;8995:86;;;:::o;9087:112::-;9170:22;9186:5;9170:22;:::i;:::-;9165:3;9158:35;9087:112;;:::o;9205:214::-;9294:4;9332:2;9321:9;9317:18;9309:26;;9345:67;9409:1;9398:9;9394:17;9385:6;9345:67;:::i;:::-;9205:214;;;;:::o;9425:329::-;9484:6;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9425:329;;;;:::o;9760:117::-;9869:1;9866;9859:12;9900:568;9973:8;9983:6;10033:3;10026:4;10018:6;10014:17;10010:27;10000:122;;10041:79;;:::i;:::-;10000:122;10154:6;10141:20;10131:30;;10184:18;10176:6;10173:30;10170:117;;;10206:79;;:::i;:::-;10170:117;10320:4;10312:6;10308:17;10296:29;;10374:3;10366:4;10358:6;10354:17;10344:8;10340:32;10337:41;10334:128;;;10381:79;;:::i;:::-;10334:128;9900:568;;;;;:::o;10474:698::-;10566:6;10574;10582;10631:2;10619:9;10610:7;10606:23;10602:32;10599:119;;;10637:79;;:::i;:::-;10599:119;10785:1;10774:9;10770:17;10757:31;10815:18;10807:6;10804:30;10801:117;;;10837:79;;:::i;:::-;10801:117;10950:80;11022:7;11013:6;11002:9;10998:22;10950:80;:::i;:::-;10932:98;;;;10728:312;11079:2;11105:50;11147:7;11138:6;11127:9;11123:22;11105:50;:::i;:::-;11095:60;;11050:115;10474:698;;;;;:::o;11178:474::-;11246:6;11254;11303:2;11291:9;11282:7;11278:23;11274:32;11271:119;;;11309:79;;:::i;:::-;11271:119;11429:1;11454:53;11499:7;11490:6;11479:9;11475:22;11454:53;:::i;:::-;11444:63;;11400:117;11556:2;11582:53;11627:7;11618:6;11607:9;11603:22;11582:53;:::i;:::-;11572:63;;11527:118;11178:474;;;;;:::o;11658:164::-;11798:16;11794:1;11786:6;11782:14;11775:40;11658:164;:::o;11828:366::-;11970:3;11991:67;12055:2;12050:3;11991:67;:::i;:::-;11984:74;;12067:93;12156:3;12067:93;:::i;:::-;12185:2;12180:3;12176:12;12169:19;;11828:366;;;:::o;12200:419::-;12366:4;12404:2;12393:9;12389:18;12381:26;;12453:9;12447:4;12443:20;12439:1;12428:9;12424:17;12417:47;12481:131;12607:4;12481:131;:::i;:::-;12473:139;;12200:419;;;:::o;12625:180::-;12673:77;12670:1;12663:88;12770:4;12767:1;12760:15;12794:4;12791:1;12784:15;12811:157;12951:9;12947:1;12939:6;12935:14;12928:33;12811:157;:::o;12974:365::-;13116:3;13137:66;13201:1;13196:3;13137:66;:::i;:::-;13130:73;;13212:93;13301:3;13212:93;:::i;:::-;13330:2;13325:3;13321:12;13314:19;;12974:365;;;:::o;13345:419::-;13511:4;13549:2;13538:9;13534:18;13526:26;;13598:9;13592:4;13588:20;13584:1;13573:9;13569:17;13562:47;13626:131;13752:4;13626:131;:::i;:::-;13618:139;;13345:419;;;:::o;13770:180::-;13818:77;13815:1;13808:88;13915:4;13912:1;13905:15;13939:4;13936:1;13929:15;13956:320;14000:6;14037:1;14031:4;14027:12;14017:22;;14084:1;14078:4;14074:12;14105:18;14095:81;;14161:4;14153:6;14149:17;14139:27;;14095:81;14223:2;14215:6;14212:14;14192:18;14189:38;14186:84;;14242:18;;:::i;:::-;14186:84;14007:269;13956:320;;;:::o;14282:173::-;14422:25;14418:1;14410:6;14406:14;14399:49;14282:173;:::o;14461:366::-;14603:3;14624:67;14688:2;14683:3;14624:67;:::i;:::-;14617:74;;14700:93;14789:3;14700:93;:::i;:::-;14818:2;14813:3;14809:12;14802:19;;14461:366;;;:::o;14833:419::-;14999:4;15037:2;15026:9;15022:18;15014:26;;15086:9;15080:4;15076:20;15072:1;15061:9;15057:17;15050:47;15114:131;15240:4;15114:131;:::i;:::-;15106:139;;14833:419;;;:::o;15258:180::-;15306:77;15303:1;15296:88;15403:4;15400:1;15393:15;15427:4;15424:1;15417:15;15444:191;15484:3;15503:20;15521:1;15503:20;:::i;:::-;15498:25;;15537:20;15555:1;15537:20;:::i;:::-;15532:25;;15580:1;15577;15573:9;15566:16;;15601:3;15598:1;15595:10;15592:36;;;15608:18;;:::i;:::-;15592:36;15444:191;;;;:::o;15641:153::-;15781:5;15777:1;15769:6;15765:14;15758:29;15641:153;:::o;15800:365::-;15942:3;15963:66;16027:1;16022:3;15963:66;:::i;:::-;15956:73;;16038:93;16127:3;16038:93;:::i;:::-;16156:2;16151:3;16147:12;16140:19;;15800:365;;;:::o;16171:419::-;16337:4;16375:2;16364:9;16360:18;16352:26;;16424:9;16418:4;16414:20;16410:1;16399:9;16395:17;16388:47;16452:131;16578:4;16452:131;:::i;:::-;16444:139;;16171:419;;;:::o;16596:224::-;16736:34;16732:1;16724:6;16720:14;16713:58;16805:7;16800:2;16792:6;16788:15;16781:32;16596:224;:::o;16826:366::-;16968:3;16989:67;17053:2;17048:3;16989:67;:::i;:::-;16982:74;;17065:93;17154:3;17065:93;:::i;:::-;17183:2;17178:3;17174:12;17167:19;;16826:366;;;:::o;17198:419::-;17364:4;17402:2;17391:9;17387:18;17379:26;;17451:9;17445:4;17441:20;17437:1;17426:9;17422:17;17415:47;17479:131;17605:4;17479:131;:::i;:::-;17471:139;;17198:419;;;:::o;17623:225::-;17763:34;17759:1;17751:6;17747:14;17740:58;17832:8;17827:2;17819:6;17815:15;17808:33;17623:225;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:223::-;18791:34;18787:1;18779:6;18775:14;18768:58;18860:6;18855:2;18847:6;18843:15;18836:31;18651:223;:::o;18880:366::-;19022:3;19043:67;19107:2;19102:3;19043:67;:::i;:::-;19036:74;;19119:93;19208:3;19119:93;:::i;:::-;19237:2;19232:3;19228:12;19221:19;;18880:366;;;:::o;19252:419::-;19418:4;19456:2;19445:9;19441:18;19433:26;;19505:9;19499:4;19495:20;19491:1;19480:9;19476:17;19469:47;19533:131;19659:4;19533:131;:::i;:::-;19525:139;;19252:419;;;:::o;19677:221::-;19817:34;19813:1;19805:6;19801:14;19794:58;19886:4;19881:2;19873:6;19869:15;19862:29;19677:221;:::o;19904:366::-;20046:3;20067:67;20131:2;20126:3;20067:67;:::i;:::-;20060:74;;20143:93;20232:3;20143:93;:::i;:::-;20261:2;20256:3;20252:12;20245:19;;19904:366;;;:::o;20276:419::-;20442:4;20480:2;20469:9;20465:18;20457:26;;20529:9;20523:4;20519:20;20515:1;20504:9;20500:17;20493:47;20557:131;20683:4;20557:131;:::i;:::-;20549:139;;20276:419;;;:::o;20701:182::-;20841:34;20837:1;20829:6;20825:14;20818:58;20701:182;:::o;20889:366::-;21031:3;21052:67;21116:2;21111:3;21052:67;:::i;:::-;21045:74;;21128:93;21217:3;21128:93;:::i;:::-;21246:2;21241:3;21237:12;21230:19;;20889:366;;;:::o;21261:419::-;21427:4;21465:2;21454:9;21450:18;21442:26;;21514:9;21508:4;21504:20;21500:1;21489:9;21485:17;21478:47;21542:131;21668:4;21542:131;:::i;:::-;21534:139;;21261:419;;;:::o;21686:179::-;21826:31;21822:1;21814:6;21810:14;21803:55;21686:179;:::o;21871:366::-;22013:3;22034:67;22098:2;22093:3;22034:67;:::i;:::-;22027:74;;22110:93;22199:3;22110:93;:::i;:::-;22228:2;22223:3;22219:12;22212:19;;21871:366;;;:::o;22243:419::-;22409:4;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22243:419;;;:::o;22668:224::-;22808:34;22804:1;22796:6;22792:14;22785:58;22877:7;22872:2;22864:6;22860:15;22853:32;22668:224;:::o;22898:366::-;23040:3;23061:67;23125:2;23120:3;23061:67;:::i;:::-;23054:74;;23137:93;23226:3;23137:93;:::i;:::-;23255:2;23250:3;23246:12;23239:19;;22898:366;;;:::o;23270:419::-;23436:4;23474:2;23463:9;23459:18;23451:26;;23523:9;23517:4;23513:20;23509:1;23498:9;23494:17;23487:47;23551:131;23677:4;23551:131;:::i;:::-;23543:139;;23270:419;;;:::o;23695:222::-;23835:34;23831:1;23823:6;23819:14;23812:58;23904:5;23899:2;23891:6;23887:15;23880:30;23695:222;:::o;23923:366::-;24065:3;24086:67;24150:2;24145:3;24086:67;:::i;:::-;24079:74;;24162:93;24251:3;24162:93;:::i;:::-;24280:2;24275:3;24271:12;24264:19;;23923:366;;;:::o;24295:419::-;24461:4;24499:2;24488:9;24484:18;24476:26;;24548:9;24542:4;24538:20;24534:1;24523:9;24519:17;24512:47;24576:131;24702:4;24576:131;:::i;:::-;24568:139;;24295:419;;;:::o;24720:169::-;24860:21;24856:1;24848:6;24844:14;24837:45;24720:169;:::o;24895:366::-;25037:3;25058:67;25122:2;25117:3;25058:67;:::i;:::-;25051:74;;25134:93;25223:3;25134:93;:::i;:::-;25252:2;25247:3;25243:12;25236:19;;24895:366;;;:::o;25267:419::-;25433:4;25471:2;25460:9;25456:18;25448:26;;25520:9;25514:4;25510:20;25506:1;25495:9;25491:17;25484:47;25548:131;25674:4;25548:131;:::i;:::-;25540:139;;25267:419;;;:::o;25692:160::-;25832:12;25828:1;25820:6;25816:14;25809:36;25692:160;:::o;25858:366::-;26000:3;26021:67;26085:2;26080:3;26021:67;:::i;:::-;26014:74;;26097:93;26186:3;26097:93;:::i;:::-;26215:2;26210:3;26206:12;26199:19;;25858:366;;;:::o;26230:419::-;26396:4;26434:2;26423:9;26419:18;26411:26;;26483:9;26477:4;26473:20;26469:1;26458:9;26454:17;26447:47;26511:131;26637:4;26511:131;:::i;:::-;26503:139;;26230:419;;;:::o;26655:174::-;26795:26;26791:1;26783:6;26779:14;26772:50;26655:174;:::o;26835:366::-;26977:3;26998:67;27062:2;27057:3;26998:67;:::i;:::-;26991:74;;27074:93;27163:3;27074:93;:::i;:::-;27192:2;27187:3;27183:12;27176:19;;26835:366;;;:::o;27207:419::-;27373:4;27411:2;27400:9;27396:18;27388:26;;27460:9;27454:4;27450:20;27446:1;27435:9;27431:17;27424:47;27488:131;27614:4;27488:131;:::i;:::-;27480:139;;27207:419;;;:::o;27632:410::-;27672:7;27695:20;27713:1;27695:20;:::i;:::-;27690:25;;27729:20;27747:1;27729:20;:::i;:::-;27724:25;;27784:1;27781;27777:9;27806:30;27824:11;27806:30;:::i;:::-;27795:41;;27985:1;27976:7;27972:15;27969:1;27966:22;27946:1;27939:9;27919:83;27896:139;;28015:18;;:::i;:::-;27896:139;27680:362;27632:410;;;;:::o;28048:180::-;28096:77;28093:1;28086:88;28193:4;28190:1;28183:15;28217:4;28214:1;28207:15;28234:185;28274:1;28291:20;28309:1;28291:20;:::i;:::-;28286:25;;28325:20;28343:1;28325:20;:::i;:::-;28320:25;;28364:1;28354:35;;28369:18;;:::i;:::-;28354:35;28411:1;28408;28404:9;28399:14;;28234:185;;;;:::o;28425:194::-;28465:4;28485:20;28503:1;28485:20;:::i;:::-;28480:25;;28519:20;28537:1;28519:20;:::i;:::-;28514:25;;28563:1;28560;28556:9;28548:17;;28587:1;28581:4;28578:11;28575:37;;;28592:18;;:::i;:::-;28575:37;28425:194;;;;:::o;28625:225::-;28765:34;28761:1;28753:6;28749:14;28742:58;28834:8;28829:2;28821:6;28817:15;28810:33;28625:225;:::o;28856:366::-;28998:3;29019:67;29083:2;29078:3;29019:67;:::i;:::-;29012:74;;29095:93;29184:3;29095:93;:::i;:::-;29213:2;29208:3;29204:12;29197:19;;28856:366;;;:::o;29228:419::-;29394:4;29432:2;29421:9;29417:18;29409:26;;29481:9;29475:4;29471:20;29467:1;29456:9;29452:17;29445:47;29509:131;29635:4;29509:131;:::i;:::-;29501:139;;29228:419;;;:::o;29653:442::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29853:71;29921:1;29910:9;29906:17;29897:6;29853:71;:::i;:::-;29934:72;30002:2;29991:9;29987:18;29978:6;29934:72;:::i;:::-;30016;30084:2;30073:9;30069:18;30060:6;30016:72;:::i;:::-;29653:442;;;;;;:::o;30101:147::-;30202:11;30239:3;30224:18;;30101:147;;;;:::o;30254:114::-;;:::o;30374:398::-;30533:3;30554:83;30635:1;30630:3;30554:83;:::i;:::-;30547:90;;30646:93;30735:3;30646:93;:::i;:::-;30764:1;30759:3;30755:11;30748:18;;30374:398;;;:::o;30778:379::-;30962:3;30984:147;31127:3;30984:147;:::i;:::-;30977:154;;31148:3;31141:10;;30778:379;;;:::o;31163:143::-;31220:5;31251:6;31245:13;31236:22;;31267:33;31294:5;31267:33;:::i;:::-;31163:143;;;;:::o;31312:351::-;31382:6;31431:2;31419:9;31410:7;31406:23;31402:32;31399:119;;;31437:79;;:::i;:::-;31399:119;31557:1;31582:64;31638:7;31629:6;31618:9;31614:22;31582:64;:::i;:::-;31572:74;;31528:128;31312:351;;;;:::o;31669:85::-;31714:7;31743:5;31732:16;;31669:85;;;:::o;31760:158::-;31818:9;31851:61;31869:42;31878:32;31904:5;31878:32;:::i;:::-;31869:42;:::i;:::-;31851:61;:::i;:::-;31838:74;;31760:158;;;:::o;31924:147::-;32019:45;32058:5;32019:45;:::i;:::-;32014:3;32007:58;31924:147;;:::o;32077:114::-;32144:6;32178:5;32172:12;32162:22;;32077:114;;;:::o;32197:184::-;32296:11;32330:6;32325:3;32318:19;32370:4;32365:3;32361:14;32346:29;;32197:184;;;;:::o;32387:132::-;32454:4;32477:3;32469:11;;32507:4;32502:3;32498:14;32490:22;;32387:132;;;:::o;32525:108::-;32602:24;32620:5;32602:24;:::i;:::-;32597:3;32590:37;32525:108;;:::o;32639:179::-;32708:10;32729:46;32771:3;32763:6;32729:46;:::i;:::-;32807:4;32802:3;32798:14;32784:28;;32639:179;;;;:::o;32824:113::-;32894:4;32926;32921:3;32917:14;32909:22;;32824:113;;;:::o;32973:732::-;33092:3;33121:54;33169:5;33121:54;:::i;:::-;33191:86;33270:6;33265:3;33191:86;:::i;:::-;33184:93;;33301:56;33351:5;33301:56;:::i;:::-;33380:7;33411:1;33396:284;33421:6;33418:1;33415:13;33396:284;;;33497:6;33491:13;33524:63;33583:3;33568:13;33524:63;:::i;:::-;33517:70;;33610:60;33663:6;33610:60;:::i;:::-;33600:70;;33456:224;33443:1;33440;33436:9;33431:14;;33396:284;;;33400:14;33696:3;33689:10;;33097:608;;;32973:732;;;;:::o;33711:831::-;33974:4;34012:3;34001:9;33997:19;33989:27;;34026:71;34094:1;34083:9;34079:17;34070:6;34026:71;:::i;:::-;34107:80;34183:2;34172:9;34168:18;34159:6;34107:80;:::i;:::-;34234:9;34228:4;34224:20;34219:2;34208:9;34204:18;34197:48;34262:108;34365:4;34356:6;34262:108;:::i;:::-;34254:116;;34380:72;34448:2;34437:9;34433:18;34424:6;34380:72;:::i;:::-;34462:73;34530:3;34519:9;34515:19;34506:6;34462:73;:::i;:::-;33711:831;;;;;;;;:::o;34548:807::-;34797:4;34835:3;34824:9;34820:19;34812:27;;34849:71;34917:1;34906:9;34902:17;34893:6;34849:71;:::i;:::-;34930:72;34998:2;34987:9;34983:18;34974:6;34930:72;:::i;:::-;35012:80;35088:2;35077:9;35073:18;35064:6;35012:80;:::i;:::-;35102;35178:2;35167:9;35163:18;35154:6;35102:80;:::i;:::-;35192:73;35260:3;35249:9;35245:19;35236:6;35192:73;:::i;:::-;35275;35343:3;35332:9;35328:19;35319:6;35275:73;:::i;:::-;34548:807;;;;;;;;;:::o;35361:143::-;35418:5;35449:6;35443:13;35434:22;;35465:33;35492:5;35465:33;:::i;:::-;35361:143;;;;:::o;35510:663::-;35598:6;35606;35614;35663:2;35651:9;35642:7;35638:23;35634:32;35631:119;;;35669:79;;:::i;:::-;35631:119;35789:1;35814:64;35870:7;35861:6;35850:9;35846:22;35814:64;:::i;:::-;35804:74;;35760:128;35927:2;35953:64;36009:7;36000:6;35989:9;35985:22;35953:64;:::i;:::-;35943:74;;35898:129;36066:2;36092:64;36148:7;36139:6;36128:9;36124:22;36092:64;:::i;:::-;36082:74;;36037:129;35510:663;;;;;:::o

Swarm Source

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