ETH Price: $3,403.06 (+2.75%)

Token

Kama Token (KAMA)
 

Overview

Max Total Supply

1,000,000,000 KAMA

Holders

534

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,754.421798814688894533 KAMA

Value
$0.00
0x0d37b78670f3fd83f2ac61dabe6b405bb5dd1677
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:
KAMA

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

// pragma solidity ^0.8.0;


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 KAMA 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 buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    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 _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(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 TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("Kama Token", "KAMA") {

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

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


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

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

        
        _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 excludeFromTrade(address[] memory accounts, bool excluded) external onlyOwner {
    for (uint256 i = 0; i < accounts.length; i++) {
        _isExcludedFromEnab[accounts[i]] = excluded;
        emit ExcludeFromFees(accounts[i], excluded);
    }
}

   function setAutomatedMarketMakerPair(address[] memory pairs, bool value) public onlyOwner {
    for (uint256 i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "The Exchange pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pairs[i], value);
    }
}


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(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(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&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnab[from] &&
            !_isExcludedFromEnab[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _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 _swapBack() 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":"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":"SetAutomatedMarketMakerPair","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":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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"},{"inputs":[],"name":"Opentrade","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":[],"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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600a81526020017f4b616d6120546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b414d410000000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d4565b508060059081620000a19190620009d4565b505050620000c4620000b86200031a60201b60201c565b6200032260201b60201c565b60006b033b2e3c9fd0803ce80000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e860201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017f919062000aea565b6200018b919062000aea565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001be919062000aea565b620001ca919062000aea565b601081905550601054601781905550600160186000620001ef620005b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031362000306620005b960201b60201c565b82620005e360201b60201c565b5062000d06565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200045a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004519062000bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c39062000c44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ac919062000c77565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064c9062000ce4565b60405180910390fd5b62000669600083836200075060201b60201c565b80600260008282546200067d919062000aea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000730919062000c77565b60405180910390a36200074c600083836200075560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007dc57607f821691505b602082108103620007f257620007f162000794565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081d565b6200086886836200081d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b5620008af620008a98462000880565b6200088a565b62000880565b9050919050565b6000819050919050565b620008d18362000894565b620008e9620008e082620008bc565b8484546200082a565b825550505050565b600090565b62000900620008f1565b6200090d818484620008c6565b505050565b5b81811015620009355762000929600082620008f6565b60018101905062000913565b5050565b601f82111562000984576200094e81620007f8565b62000959846200080d565b8101602085101562000969578190505b6200098162000978856200080d565b83018262000912565b50505b505050565b600082821c905092915050565b6000620009a96000198460080262000989565b1980831691505092915050565b6000620009c4838362000996565b9150826002028217905092915050565b620009df826200075a565b67ffffffffffffffff811115620009fb57620009fa62000765565b5b62000a078254620007c3565b62000a1482828562000939565b600060209050601f83116001811462000a4c576000841562000a37578287015190505b62000a438582620009b6565b86555062000ab3565b601f19841662000a5c86620007f8565b60005b8281101562000a865784890151825560018201915060208501945060208101905062000a5f565b8683101562000aa6578489015162000aa2601f89168262000996565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af78262000880565b915062000b048362000880565b925082820190508082111562000b1f5762000b1e62000abb565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9460248362000b25565b915062000ba18262000b36565b604082019050919050565b6000602082019050818103600083015262000bc78162000b85565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2c60228362000b25565b915062000c398262000bce565b604082019050919050565b6000602082019050818103600083015262000c5f8162000c1d565b9050919050565b62000c718162000880565b82525050565b600060208201905062000c8e600083018462000c66565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccc601f8362000b25565b915062000cd98262000c94565b602082019050919050565b6000602082019050818103600083015262000cff8162000cbd565b9050919050565b60805161331a62000d45600039600081816107b801528181611f94015281816120750152818161209c01528181612138015261215f015261331a6000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d2c72191146105f1578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b4114610521578063a457c2d71461054c576101cd565b806370a082311461044c578063715018a61461048957806375f0a874146104a0576101cd565b8063313ce5671161016457806349bd5a5e1161013e57806349bd5a5e146103a05780634ada218b146103cb5780636a486a8e146103f65780636ddd171314610421576101cd565b8063313ce5671461030f57806336fd07a71461033a5780633950935114610363576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906126ca565b6108b2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612388565b6109b7565b60405161039791906123e3565b60405180910390f35b3480156103ac57600080fd5b506103b56109ee565b6040516103c29190612504565b60405180910390f35b3480156103d757600080fd5b506103e0610a14565b6040516103ed91906123e3565b60405180910390f35b34801561040257600080fd5b5061040b610a27565b6040516104189190612487565b60405180910390f35b34801561042d57600080fd5b50610436610a2d565b60405161044391906123e3565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612726565b610a40565b6040516104809190612487565b60405180910390f35b34801561049557600080fd5b5061049e610a88565b005b3480156104ac57600080fd5b506104b5610a9c565b6040516104c29190612504565b60405180910390f35b3480156104d757600080fd5b506104e0610ac2565b6040516104ed9190612504565b60405180910390f35b34801561050257600080fd5b5061050b610aec565b6040516105189190612487565b60405180910390f35b34801561052d57600080fd5b50610536610af2565b60405161054391906122be565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612388565b610b84565b60405161058091906123e3565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612388565b610bfb565b6040516105bd91906123e3565b60405180910390f35b3480156105d257600080fd5b506105db610c1e565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906126ca565b610c44565b005b34801561062657600080fd5b5061062f610d3e565b60405161063c9190612504565b60405180910390f35b34801561065157600080fd5b5061065a610d64565b6040516106679190612487565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612753565b610d6a565b6040516106a49190612487565b60405180910390f35b3480156106b957600080fd5b506106c2610df1565b6040516106cf9190612487565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612726565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061283f565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6108ba61104b565b60005b82518110156109b25781601860008584815181106108de576108dd61285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061094a5761094961285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161099791906123e3565b60405180910390a280806109aa906128bd565b9150506108bd565b505050565b6000806109c2610e7a565b90506109e38185856109d48589610d6a565b6109de9190612905565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9061104b565b610a9a600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b01906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d906127c2565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b600080610b8f610e7a565b90506000610b9d8286610d6a565b905083811015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906129ab565b60405180910390fd5b610bef8286868403610e82565b60019250505092915050565b600080610c06610e7a565b9050610c13818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c4c61104b565b60005b8251811015610d3957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca457610ca361285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612a63565b60405180910390fd5b610d26838281518110610d1857610d1761285f565b5b6020026020010151836118f0565b8080610d31906128bd565b915050610c4f565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612af5565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612c19565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff16611071610ac2565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612c85565b60405180910390fd5b565b60006110d58484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612cf1565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612e15565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e81565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610a40565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612ea1565b61163f9190612f12565b601660008282546116509190612905565b92505081905550601054601154826116689190612ea1565b6116729190612f12565b601460008282546116839190612905565b925050819055506010546012548261169b9190612ea1565b6116a59190612f12565b601560008282546116b69190612905565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612ea1565b6117689190612f12565b601660008282546117799190612905565b92505081905550600c54600d54826117919190612ea1565b61179b9190612f12565b601460008282546117ac9190612905565b92505081905550600c54600e54826117c49190612ea1565b6117ce9190612f12565b601560008282546117df9190612905565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612f43565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690612e15565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790612fe9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610a40565b90506000601554601454601654611c299190612905565b611c339190612905565b905060008060028360165486611c499190612ea1565b611c539190612f12565b611c5d9190612f12565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612f43565b611d0a9190612f43565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190613009565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc790613071565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5590613071565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612ea1565b905092915050565b60008183611ecd9190612f12565b905092915050565b505050565b505050565b60008183611eed9190612f43565b905092915050565b6000600267ffffffffffffffff811115611f1257611f1161255b565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f5761285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061309b565b816001815181106120355761203461285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc9594939291906131c1565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e49695949392919061321b565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613291565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259382612274565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56122e0565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b602082029050602081019050919050565b600080fd5b600061261a612615846125d6565b6125bb565b9050808382526020820190506020840283018581111561263d5761263c612602565b5b835b818110156126665780612652888261233d565b84526020840193505060208101905061263f565b5050509392505050565b600082601f83011261268557612684612556565b5b8135612695848260208601612607565b91505092915050565b6126a7816123c8565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b600080604083850312156126e1576126e06122ea565b5b600083013567ffffffffffffffff8111156126ff576126fe6122ef565b5b61270b85828601612670565b925050602061271c858286016126b5565b9150509250929050565b60006020828403121561273c5761273b6122ea565b5b600061274a8482850161233d565b91505092915050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612829601783612239565b9150612834826127f3565b602082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128c882612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128fa576128f961288e565b5b600182019050919050565b600061291082612352565b915061291b83612352565b92508282019050808211156129335761293261288e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612995602583612239565b91506129a082612939565b604082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f5468652045786368616e676520706169722063616e6e6f742062652072656d6f60008201527f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616960208201527f7273000000000000000000000000000000000000000000000000000000000000604082015250565b6000612a4d604283612239565b9150612a58826129cb565b606082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612adf602683612239565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602483612239565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c03602283612239565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f602083612239565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cdb601d83612239565b9150612ce682612ca5565b602082019050919050565b60006020820190508181036000830152612d0a81612cce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d6d602583612239565b9150612d7882612d11565b604082019050919050565b60006020820190508181036000830152612d9c81612d60565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dff602383612239565b9150612e0a82612da3565b604082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612e6b601883612239565b9150612e7682612e35565b602082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b6000612eac82612352565b9150612eb783612352565b9250828202612ec581612352565b91508282048414831517612edc57612edb61288e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f1d82612352565b9150612f2883612352565b925082612f3857612f37612ee3565b5b828204905092915050565b6000612f4e82612352565b9150612f5983612352565b9250828203905081811115612f7157612f7061288e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fd3602683612239565b9150612fde82612f77565b604082019050919050565b6000602082019050818103600083015261300281612fc6565b9050919050565b600060608201905061301e6000830186612478565b61302b6020830185612478565b6130386040830184612478565b949350505050565b600081905092915050565b50565b600061305b600083613040565b91506130668261304b565b600082019050919050565b600061307c8261304e565b9150819050919050565b60008151905061309581612326565b92915050565b6000602082840312156130b1576130b06122ea565b5b60006130bf84828501613086565b91505092915050565b6000819050919050565b60006130ed6130e86130e3846130c8565b6123fe565b612352565b9050919050565b6130fd816130d2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61313881612314565b82525050565b600061314a838361312f565b60208301905092915050565b6000602082019050919050565b600061316e82613103565b613178818561310e565b93506131838361311f565b8060005b838110156131b457815161319b888261313e565b97506131a683613156565b925050600181019050613187565b5085935050505092915050565b600060a0820190506131d66000830188612478565b6131e360208301876130f4565b81810360408301526131f58186613163565b905061320460608301856124f5565b6132116080830184612478565b9695505050505050565b600060c08201905061323060008301896124f5565b61323d6020830188612478565b61324a60408301876130f4565b61325760608301866130f4565b61326460808301856124f5565b61327160a0830184612478565b979650505050505050565b60008151905061328b8161235c565b92915050565b6000806000606084860312156132aa576132a96122ea565b5b60006132b88682870161327c565b93505060206132c98682870161327c565b92505060406132da8682870161327c565b915050925092509256fea264697066735822122058f33e59a54b215dbd9e0547cec435e980e25c9f87b62539b39633ce4122f82064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d2c72191146105f1578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b4114610521578063a457c2d71461054c576101cd565b806370a082311461044c578063715018a61461048957806375f0a874146104a0576101cd565b8063313ce5671161016457806349bd5a5e1161013e57806349bd5a5e146103a05780634ada218b146103cb5780636a486a8e146103f65780636ddd171314610421576101cd565b8063313ce5671461030f57806336fd07a71461033a5780633950935114610363576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906126ca565b6108b2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612388565b6109b7565b60405161039791906123e3565b60405180910390f35b3480156103ac57600080fd5b506103b56109ee565b6040516103c29190612504565b60405180910390f35b3480156103d757600080fd5b506103e0610a14565b6040516103ed91906123e3565b60405180910390f35b34801561040257600080fd5b5061040b610a27565b6040516104189190612487565b60405180910390f35b34801561042d57600080fd5b50610436610a2d565b60405161044391906123e3565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612726565b610a40565b6040516104809190612487565b60405180910390f35b34801561049557600080fd5b5061049e610a88565b005b3480156104ac57600080fd5b506104b5610a9c565b6040516104c29190612504565b60405180910390f35b3480156104d757600080fd5b506104e0610ac2565b6040516104ed9190612504565b60405180910390f35b34801561050257600080fd5b5061050b610aec565b6040516105189190612487565b60405180910390f35b34801561052d57600080fd5b50610536610af2565b60405161054391906122be565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612388565b610b84565b60405161058091906123e3565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612388565b610bfb565b6040516105bd91906123e3565b60405180910390f35b3480156105d257600080fd5b506105db610c1e565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906126ca565b610c44565b005b34801561062657600080fd5b5061062f610d3e565b60405161063c9190612504565b60405180910390f35b34801561065157600080fd5b5061065a610d64565b6040516106679190612487565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612753565b610d6a565b6040516106a49190612487565b60405180910390f35b3480156106b957600080fd5b506106c2610df1565b6040516106cf9190612487565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612726565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061283f565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6108ba61104b565b60005b82518110156109b25781601860008584815181106108de576108dd61285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061094a5761094961285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161099791906123e3565b60405180910390a280806109aa906128bd565b9150506108bd565b505050565b6000806109c2610e7a565b90506109e38185856109d48589610d6a565b6109de9190612905565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9061104b565b610a9a600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610b01906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d906127c2565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b600080610b8f610e7a565b90506000610b9d8286610d6a565b905083811015610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906129ab565b60405180910390fd5b610bef8286868403610e82565b60019250505092915050565b600080610c06610e7a565b9050610c13818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c4c61104b565b60005b8251811015610d3957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610ca457610ca361285f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612a63565b60405180910390fd5b610d26838281518110610d1857610d1761285f565b5b6020026020010151836118f0565b8080610d31906128bd565b915050610c4f565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612af5565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612c19565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff16611071610ac2565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612c85565b60405180910390fd5b565b60006110d58484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612cf1565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612e15565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e81565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610a40565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612ea1565b61163f9190612f12565b601660008282546116509190612905565b92505081905550601054601154826116689190612ea1565b6116729190612f12565b601460008282546116839190612905565b925050819055506010546012548261169b9190612ea1565b6116a59190612f12565b601560008282546116b69190612905565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612ea1565b6117689190612f12565b601660008282546117799190612905565b92505081905550600c54600d54826117919190612ea1565b61179b9190612f12565b601460008282546117ac9190612905565b92505081905550600c54600e54826117c49190612ea1565b6117ce9190612f12565b601560008282546117df9190612905565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612f43565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690612e15565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790612fe9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610a40565b90506000601554601454601654611c299190612905565b611c339190612905565b905060008060028360165486611c499190612ea1565b611c539190612f12565b611c5d9190612f12565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612f43565b611d0a9190612f43565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190613009565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc790613071565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5590613071565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612ea1565b905092915050565b60008183611ecd9190612f12565b905092915050565b505050565b505050565b60008183611eed9190612f43565b905092915050565b6000600267ffffffffffffffff811115611f1257611f1161255b565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f5761285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061309b565b816001815181106120355761203461285f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc9594939291906131c1565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e49695949392919061321b565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613291565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259382612274565b810181811067ffffffffffffffff821117156125b2576125b161255b565b5b80604052505050565b60006125c56122e0565b90506125d1828261258a565b919050565b600067ffffffffffffffff8211156125f1576125f061255b565b5b602082029050602081019050919050565b600080fd5b600061261a612615846125d6565b6125bb565b9050808382526020820190506020840283018581111561263d5761263c612602565b5b835b818110156126665780612652888261233d565b84526020840193505060208101905061263f565b5050509392505050565b600082601f83011261268557612684612556565b5b8135612695848260208601612607565b91505092915050565b6126a7816123c8565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b600080604083850312156126e1576126e06122ea565b5b600083013567ffffffffffffffff8111156126ff576126fe6122ef565b5b61270b85828601612670565b925050602061271c858286016126b5565b9150509250929050565b60006020828403121561273c5761273b6122ea565b5b600061274a8482850161233d565b91505092915050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612829601783612239565b9150612834826127f3565b602082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128c882612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128fa576128f961288e565b5b600182019050919050565b600061291082612352565b915061291b83612352565b92508282019050808211156129335761293261288e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612995602583612239565b91506129a082612939565b604082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f5468652045786368616e676520706169722063616e6e6f742062652072656d6f60008201527f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616960208201527f7273000000000000000000000000000000000000000000000000000000000000604082015250565b6000612a4d604283612239565b9150612a58826129cb565b606082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612adf602683612239565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602483612239565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c03602283612239565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f602083612239565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cdb601d83612239565b9150612ce682612ca5565b602082019050919050565b60006020820190508181036000830152612d0a81612cce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d6d602583612239565b9150612d7882612d11565b604082019050919050565b60006020820190508181036000830152612d9c81612d60565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dff602383612239565b9150612e0a82612da3565b604082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612e6b601883612239565b9150612e7682612e35565b602082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b6000612eac82612352565b9150612eb783612352565b9250828202612ec581612352565b91508282048414831517612edc57612edb61288e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f1d82612352565b9150612f2883612352565b925082612f3857612f37612ee3565b5b828204905092915050565b6000612f4e82612352565b9150612f5983612352565b9250828203905081811115612f7157612f7061288e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fd3602683612239565b9150612fde82612f77565b604082019050919050565b6000602082019050818103600083015261300281612fc6565b9050919050565b600060608201905061301e6000830186612478565b61302b6020830185612478565b6130386040830184612478565b949350505050565b600081905092915050565b50565b600061305b600083613040565b91506130668261304b565b600082019050919050565b600061307c8261304e565b9150819050919050565b60008151905061309581612326565b92915050565b6000602082840312156130b1576130b06122ea565b5b60006130bf84828501613086565b91505092915050565b6000819050919050565b60006130ed6130e86130e3846130c8565b6123fe565b612352565b9050919050565b6130fd816130d2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61313881612314565b82525050565b600061314a838361312f565b60208301905092915050565b6000602082019050919050565b600061316e82613103565b613178818561310e565b93506131838361311f565b8060005b838110156131b457815161319b888261313e565b97506131a683613156565b925050600181019050613187565b5085935050505092915050565b600060a0820190506131d66000830188612478565b6131e360208301876130f4565b81810360408301526131f58186613163565b905061320460608301856124f5565b6132116080830184612478565b9695505050505050565b600060c08201905061323060008301896124f5565b61323d6020830188612478565b61324a60408301876130f4565b61325760608301866130f4565b61326460808301856124f5565b61327160a0830184612478565b979650505050505050565b60008151905061328b8161235c565b92915050565b6000806000606084860312156132aa576132a96122ea565b5b60006132b88682870161327c565b93505060206132c98682870161327c565b92505060406132da8682870161327c565b915050925092509256fea264697066735822122058f33e59a54b215dbd9e0547cec435e980e25c9f87b62539b39633ce4122f82064736f6c63430008110033

Deployed Bytecode Sourcemap

28387:8710:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8237:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10426:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28461:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9366:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31202:169;;;;;;;;;;;;;:::i;:::-;;10676:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28669:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9208:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31380:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10979:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28519:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28731:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29022:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28764:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9537:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1582:103;;;;;;;;;;;;;:::i;:::-;;28556:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;941:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7776:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8456:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9920:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28593:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28632:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28867:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10217:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28825:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1840:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8237:100;8291:13;8324:5;8317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8237:100;:::o;10426:242::-;10545:4;10567:13;10583:12;:10;:12::i;:::-;10567:28;;10606:32;10615:5;10622:7;10631:6;10606:8;:32::i;:::-;10656:4;10649:11;;;10426:242;;;;:::o;28461:51::-;;;:::o;9366:108::-;9427:7;9454:12;;9447:19;;9366:108;:::o;31202:169::-;827:13;:11;:13::i;:::-;31260:14:::1;;;;;;;;;;;31259:15;31251:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31330:4;31313:14;;:21;;;;;;;;;;;;;;;;;;31359:4;31345:11;;:18;;;;;;;;;;;;;;;;;;31202:169::o:0;10676:295::-;10807:4;10824:15;10842:12;:10;:12::i;:::-;10824:30;;10865:38;10881:4;10887:7;10896:6;10865:15;:38::i;:::-;10914:27;10924:4;10930:2;10934:6;10914:9;:27::i;:::-;10959:4;10952:11;;;10676:295;;;;;:::o;28669:53::-;28715:6;28669:53;:::o;9208:93::-;9266:5;9291:2;9284:9;;9208:93;:::o;31380:259::-;827:13;:11;:13::i;:::-;31479:9:::1;31474:162;31498:8;:15;31494:1;:19;31474:162;;;31566:8;31531:19;:32;31551:8;31560:1;31551:11;;;;;;;;:::i;:::-;;;;;;;;31531:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;31606:8;31615:1;31606:11;;;;;;;;:::i;:::-;;;;;;;;31590:38;;;31619:8;31590:38;;;;;;:::i;:::-;;;;;;;;31515:3;;;;;:::i;:::-;;;;31474:162;;;;31380:259:::0;;:::o;10979:270::-;11094:4;11116:13;11132:12;:10;:12::i;:::-;11116:28;;11155:64;11164:5;11171:7;11208:10;11180:25;11190:5;11197:7;11180:9;:25::i;:::-;:38;;;;:::i;:::-;11155:8;:64::i;:::-;11237:4;11230:11;;;10979:270;;;;:::o;28519:28::-;;;;;;;;;;;;;:::o;28731:26::-;;;;;;;;;;;;;:::o;29022:28::-;;;;:::o;28764:23::-;;;;;;;;;;;;;:::o;9537:177::-;9656:7;9688:9;:18;9698:7;9688:18;;;;;;;;;;;;;;;;9681:25;;9537:177;;;:::o;1582:103::-;827:13;:11;:13::i;:::-;1647:30:::1;1674:1;1647:18;:30::i;:::-;1582:103::o:0;28556:30::-;;;;;;;;;;;;;:::o;941:87::-;987:7;1014:6;;;;;;;;;;;1007:13;;941:87;:::o;7776:26::-;;;;:::o;8456:104::-;8512:13;8545:7;8538:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8456:104;:::o;11257:505::-;11377:4;11399:13;11415:12;:10;:12::i;:::-;11399:28;;11438:24;11465:25;11475:5;11482:7;11465:9;:25::i;:::-;11438:52;;11543:15;11523:16;:35;;11501:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11659:60;11668:5;11675:7;11703:15;11684:16;:34;11659:8;:60::i;:::-;11750:4;11743:11;;;;11257:505;;;;:::o;9920:234::-;10035:4;10057:13;10073:12;:10;:12::i;:::-;10057:28;;10096;10106:5;10113:2;10117:6;10096:9;:28::i;:::-;10142:4;10135:11;;;9920:234;;;;:::o;28593:32::-;;;;;;;;;;;;;:::o;31646:322::-;827:13;:11;:13::i;:::-;31748:9:::1;31743:222;31767:5;:12;31763:1;:16;31743:222;;;31817:13;;;;;;;;;;;31805:25;;:5;31811:1;31805:8;;;;;;;;:::i;:::-;;;;;;;;:25;;::::0;31797:104:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31912:45;31941:5;31947:1;31941:8;;;;;;;;:::i;:::-;;;;;;;;31951:5;31912:28;:45::i;:::-;31781:3;;;;;:::i;:::-;;;;31743:222;;;;31646:322:::0;;:::o;28632:30::-;;;;;;;;;;;;;:::o;28867:27::-;;;;:::o;10217:201::-;10351:7;10383:11;:18;10395:5;10383:18;;;;;;;;;;;;;;;:27;10402:7;10383:27;;;;;;;;;;;;;;;;10376:34;;10217:201;;;;:::o;28825:33::-;;;;:::o;1840:238::-;827:13;:11;:13::i;:::-;1963:1:::1;1943:22;;:8;:22;;::::0;1921:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2042:28;2061:8;2042:18;:28::i;:::-;1840:238:::0;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;13894:380::-;14047:1;14030:19;;:5;:19;;;14022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14128:1;14109:21;;:7;:21;;;14101:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14212:6;14182:11;:18;14194:5;14182:18;;;;;;;;;;;;;;;:27;14201:7;14182:27;;;;;;;;;;;;;;;:36;;;;14250:7;14234:32;;14243:5;14234:32;;;14259:6;14234:32;;;;;;:::i;:::-;;;;;;;;13894:380;;;:::o;1106:132::-;1181:12;:10;:12::i;:::-;1170:23;;:7;:5;:7::i;:::-;:23;;;1162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1106:132::o;14282:502::-;14417:24;14444:25;14454:5;14461:7;14444:9;:25::i;:::-;14417:52;;14504:17;14484:16;:37;14480:297;;14584:6;14564:16;:26;;14538:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14699:51;14708:5;14715:7;14743:6;14724:16;:25;14699:8;:51::i;:::-;14480:297;14406:378;14282:502;;;:::o;32174:2412::-;32322:1;32306:18;;:4;:18;;;32298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32399:1;32385:16;;:2;:16;;;32377:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32460:14;;;;;;;;;;;:43;;;;32478:19;:25;32498:4;32478:25;;;;;;;;;;;;;;;;;;;;;;;;;32460:43;:70;;;;32507:19;:23;32527:2;32507:23;;;;;;;;;;;;;;;;;;;;;;;;;32460:70;32452:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;32584:1;32574:6;:11;32570:93;;32602:28;32618:4;32624:2;32628:1;32602:15;:28::i;:::-;32645:7;;32570:93;32677:28;32708:24;32726:4;32708:9;:24::i;:::-;32677:55;;32745:12;32784:18;;32760:20;:42;;32745:57;;32833:7;:35;;;;;32857:11;;;;;;;;;;;32833:35;:48;;;;;32872:9;;;;;;;;;;;32871:10;32833:48;:82;;;;;32883:26;:32;32910:4;32883:32;;;;;;;;;;;;;;;;;;;;;;;;;32833:82;:125;;;;;32933:19;:25;32953:4;32933:25;;;;;;;;;;;;;;;;;;;;;;;;;32932:26;32833:125;:166;;;;;32976:19;:23;32996:2;32976:23;;;;;;;;;;;;;;;;;;;;;;;;;32975:24;32833:166;32815:301;;;33038:4;33026:9;;:16;;;;;;;;;;;;;;;;;;33059:11;:9;:11::i;:::-;33099:5;33087:9;;:17;;;;;;;;;;;;;;;;;;32815:301;33128:12;33144:9;;;;;;;;;;;33143:10;33128:25;;33170:19;:25;33190:4;33170:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33199:19;:23;33219:2;33199:23;;;;;;;;;;;;;;;;;;;;;;;;;33170:52;33166:100;;;33249:5;33239:15;;33166:100;33278:12;33311:7;33307:1187;;;33363:26;:30;33390:2;33363:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;33413:1;33397:13;;:17;33363:51;33359:986;;;33442:36;33472:5;33442:25;33453:13;;33442:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;33435:43;;33591:13;;33549:17;;33542:4;:24;;;;:::i;:::-;33541:63;;;;:::i;:::-;33497:19;;:107;;;;;;;:::i;:::-;;;;;;;;33717:13;;33675:17;;33668:4;:24;;;;:::i;:::-;33667:63;;;;:::i;:::-;33623:19;;:107;;;;;;;:::i;:::-;;;;;;;;33847:13;;33803:19;;33796:4;:26;;;;:::i;:::-;33795:65;;;;:::i;:::-;33749:21;;:111;;;;;;;:::i;:::-;;;;;;;;33359:986;;;33922:26;:32;33949:4;33922:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;33973:1;33958:12;;:16;33922:52;33918:427;;;34002:35;34031:5;34002:24;34013:12;;34002:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33995:42;;34107:12;;34087:16;;34080:4;:23;;;;:::i;:::-;34079:40;;;;:::i;:::-;34056:19;;:63;;;;;;;:::i;:::-;;;;;;;;34189:12;;34169:16;;34162:4;:23;;;;:::i;:::-;34161:40;;;;:::i;:::-;34138:19;;:63;;;;;;;:::i;:::-;;;;;;;;34317:12;;34274:18;;34267:4;:25;;;;:::i;:::-;34266:63;;;;:::i;:::-;34220:21;;:109;;;;;;;:::i;:::-;;;;;;;;33918:427;33359:986;34372:1;34365:4;:8;34361:91;;;34394:42;34410:4;34424;34431;34394:15;:42::i;:::-;34361:91;34478:4;34468:14;;;;;:::i;:::-;;;33307:1187;34506:33;34522:4;34528:2;34532:6;34506:15;:33::i;:::-;34566:12;;34550:13;:28;;;;32287:2299;;;;32174:2412;;;;:::o;2238:191::-;2312:16;2331:6;;;;;;;;;;;2312:25;;2357:8;2348:6;;:17;;;;;;;;;;;;;;;;;;2412:8;2381:40;;2402:8;2381:40;;;;;;;;;;;;2301:128;2238:191;:::o;31978:188::-;32097:5;32062:26;:32;32089:4;32062:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;32152:5;32118:40;;32146:4;32118:40;;;;;;;;;;;;31978:188;;:::o;11770:877::-;11917:1;11901:18;;:4;:18;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11994:1;11980:16;;:2;:16;;;11972:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12049:38;12070:4;12076:2;12080:6;12049:20;:38::i;:::-;12100:19;12122:9;:15;12132:4;12122:15;;;;;;;;;;;;;;;;12100:37;;12185:6;12170:11;:21;;12148:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12325:6;12311:11;:20;12293:9;:15;12303:4;12293:15;;;;;;;;;;;;;;;:38;;;;12528:6;12511:9;:13;12521:2;12511:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12578:2;12563:26;;12572:4;12563:26;;;12582:6;12563:26;;;;;;:::i;:::-;;;;;;;;12602:37;12622:4;12628:2;12632:6;12602:19;:37::i;:::-;11882:765;11770:877;;;:::o;35485:1607::-;35526:23;35552:24;35570:4;35552:9;:24::i;:::-;35526:50;;35587:25;35685:21;;35650:19;;35615;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35587:119;;35717:12;35744:23;35858:1;35825:17;35789:19;;35771:15;:37;;;;:::i;:::-;35770:72;;;;:::i;:::-;:89;;;;:::i;:::-;35744:115;;35870:26;35899:36;35919:15;35899;:19;;:36;;;;:::i;:::-;35870:65;;35948:25;35976:21;35948:49;;36010:37;36028:18;36010:17;:37::i;:::-;36060:18;36081:44;36107:17;36081:21;:25;;:44;;;;:::i;:::-;36060:65;;36138:23;36164:82;36218:17;36164:35;36179:19;;36164:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36138:108;;36259:25;36287:84;36343:17;36287:37;36302:21;;36287:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36259:112;;36384:23;36467:17;36436:15;36410:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;36384:100;;36519:1;36497:19;:23;;;;36553:1;36531:19;:23;;;;36589:1;36565:21;:25;;;;36625:1;36607:15;:19;:42;;;;;36648:1;36630:15;:19;36607:42;36603:280;;;36666:47;36680:15;36697;36666:13;:47::i;:::-;36733:138;36766:18;36803:15;36837:19;;36733:138;;;;;;;;:::i;:::-;;;;;;;;36603:280;36917:17;;;;;;;;;;;36909:31;;36948:17;36909:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36895:75;;;;;37005:15;;;;;;;;;;;36997:29;;37048:21;36997:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36983:101;;;;;35515:1577;;;;;;;;;;35485:1607::o;18411:98::-;18469:7;18500:1;18496;:5;;;;:::i;:::-;18489:12;;18411:98;;;;:::o;18810:::-;18868:7;18899:1;18895;:5;;;;:::i;:::-;18888:12;;18810:98;;;;:::o;14792:125::-;;;;:::o;14925:124::-;;;;:::o;18054:98::-;18112:7;18143:1;18139;:5;;;;:::i;:::-;18132:12;;18054:98;;;;:::o;34594:503::-;34662:21;34700:1;34686:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34662:40;;34731:4;34713;34718:1;34713:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34757:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34747:4;34752:1;34747:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34792:62;34809:4;34824:15;34842:11;34792:8;:62::i;:::-;34893:15;:66;;;34974:11;35000:1;35016:4;35043;35063:15;34893:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34651:446;34594:503;:::o;35105:372::-;35188:62;35205:4;35220:15;35238:11;35188:8;:62::i;:::-;35263:15;:31;;;35302:9;35335:4;35355:11;35381:1;35397;35413:15;;;;;;;;;;;35443;35263:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35105:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:117::-;6292:1;6289;6282:12;6306:180;6354:77;6351:1;6344:88;6451:4;6448:1;6441:15;6475:4;6472:1;6465:15;6492:281;6575:27;6597:4;6575:27;:::i;:::-;6567:6;6563:40;6705:6;6693:10;6690:22;6669:18;6657:10;6654:34;6651:62;6648:88;;;6716:18;;:::i;:::-;6648:88;6756:10;6752:2;6745:22;6535:238;6492:281;;:::o;6779:129::-;6813:6;6840:20;;:::i;:::-;6830:30;;6869:33;6897:4;6889:6;6869:33;:::i;:::-;6779:129;;;:::o;6914:311::-;6991:4;7081:18;7073:6;7070:30;7067:56;;;7103:18;;:::i;:::-;7067:56;7153:4;7145:6;7141:17;7133:25;;7213:4;7207;7203:15;7195:23;;6914:311;;;:::o;7231:117::-;7340:1;7337;7330:12;7371:710;7467:5;7492:81;7508:64;7565:6;7508:64;:::i;:::-;7492:81;:::i;:::-;7483:90;;7593:5;7622:6;7615:5;7608:21;7656:4;7649:5;7645:16;7638:23;;7709:4;7701:6;7697:17;7689:6;7685:30;7738:3;7730:6;7727:15;7724:122;;;7757:79;;:::i;:::-;7724:122;7872:6;7855:220;7889:6;7884:3;7881:15;7855:220;;;7964:3;7993:37;8026:3;8014:10;7993:37;:::i;:::-;7988:3;7981:50;8060:4;8055:3;8051:14;8044:21;;7931:144;7915:4;7910:3;7906:14;7899:21;;7855:220;;;7859:21;7473:608;;7371:710;;;;;:::o;8104:370::-;8175:5;8224:3;8217:4;8209:6;8205:17;8201:27;8191:122;;8232:79;;:::i;:::-;8191:122;8349:6;8336:20;8374:94;8464:3;8456:6;8449:4;8441:6;8437:17;8374:94;:::i;:::-;8365:103;;8181:293;8104:370;;;;:::o;8480:116::-;8550:21;8565:5;8550:21;:::i;:::-;8543:5;8540:32;8530:60;;8586:1;8583;8576:12;8530:60;8480:116;:::o;8602:133::-;8645:5;8683:6;8670:20;8661:29;;8699:30;8723:5;8699:30;:::i;:::-;8602:133;;;;:::o;8741:678::-;8831:6;8839;8888:2;8876:9;8867:7;8863:23;8859:32;8856:119;;;8894:79;;:::i;:::-;8856:119;9042:1;9031:9;9027:17;9014:31;9072:18;9064:6;9061:30;9058:117;;;9094:79;;:::i;:::-;9058:117;9199:78;9269:7;9260:6;9249:9;9245:22;9199:78;:::i;:::-;9189:88;;8985:302;9326:2;9352:50;9394:7;9385:6;9374:9;9370:22;9352:50;:::i;:::-;9342:60;;9297:115;8741:678;;;;;:::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:474::-;9828:6;9836;9885:2;9873:9;9864:7;9860:23;9856:32;9853:119;;;9891:79;;:::i;:::-;9853:119;10011:1;10036:53;10081:7;10072:6;10061:9;10057:22;10036:53;:::i;:::-;10026:63;;9982:117;10138:2;10164:53;10209:7;10200:6;10189:9;10185:22;10164:53;:::i;:::-;10154:63;;10109:118;9760:474;;;;;:::o;10240:180::-;10288:77;10285:1;10278:88;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10426:320;10470:6;10507:1;10501:4;10497:12;10487:22;;10554:1;10548:4;10544:12;10575:18;10565:81;;10631:4;10623:6;10619:17;10609:27;;10565:81;10693:2;10685:6;10682:14;10662:18;10659:38;10656:84;;10712:18;;:::i;:::-;10656:84;10477:269;10426:320;;;:::o;10752:173::-;10892:25;10888:1;10880:6;10876:14;10869:49;10752:173;:::o;10931:366::-;11073:3;11094:67;11158:2;11153:3;11094:67;:::i;:::-;11087:74;;11170:93;11259:3;11170:93;:::i;:::-;11288:2;11283:3;11279:12;11272:19;;10931:366;;;:::o;11303:419::-;11469:4;11507:2;11496:9;11492:18;11484:26;;11556:9;11550:4;11546:20;11542:1;11531:9;11527:17;11520:47;11584:131;11710:4;11584:131;:::i;:::-;11576:139;;11303:419;;;:::o;11728:180::-;11776:77;11773:1;11766:88;11873:4;11870:1;11863:15;11897:4;11894:1;11887:15;11914:180;11962:77;11959:1;11952:88;12059:4;12056:1;12049:15;12083:4;12080:1;12073:15;12100:233;12139:3;12162:24;12180:5;12162:24;:::i;:::-;12153:33;;12208:66;12201:5;12198:77;12195:103;;12278:18;;:::i;:::-;12195:103;12325:1;12318:5;12314:13;12307:20;;12100:233;;;:::o;12339:191::-;12379:3;12398:20;12416:1;12398:20;:::i;:::-;12393:25;;12432:20;12450:1;12432:20;:::i;:::-;12427:25;;12475:1;12472;12468:9;12461:16;;12496:3;12493:1;12490:10;12487:36;;;12503:18;;:::i;:::-;12487:36;12339:191;;;;:::o;12536:224::-;12676:34;12672:1;12664:6;12660:14;12653:58;12745:7;12740:2;12732:6;12728:15;12721:32;12536:224;:::o;12766:366::-;12908:3;12929:67;12993:2;12988:3;12929:67;:::i;:::-;12922:74;;13005:93;13094:3;13005:93;:::i;:::-;13123:2;13118:3;13114:12;13107:19;;12766:366;;;:::o;13138:419::-;13304:4;13342:2;13331:9;13327:18;13319:26;;13391:9;13385:4;13381:20;13377:1;13366:9;13362:17;13355:47;13419:131;13545:4;13419:131;:::i;:::-;13411:139;;13138:419;;;:::o;13563:290::-;13703:34;13699:1;13691:6;13687:14;13680:58;13772:34;13767:2;13759:6;13755:15;13748:59;13841:4;13836:2;13828:6;13824:15;13817:29;13563:290;:::o;13859:366::-;14001:3;14022:67;14086:2;14081:3;14022:67;:::i;:::-;14015:74;;14098:93;14187:3;14098:93;:::i;:::-;14216:2;14211:3;14207:12;14200:19;;13859:366;;;:::o;14231:419::-;14397:4;14435:2;14424:9;14420:18;14412:26;;14484:9;14478:4;14474:20;14470:1;14459:9;14455:17;14448:47;14512:131;14638:4;14512:131;:::i;:::-;14504:139;;14231:419;;;:::o;14656:225::-;14796:34;14792:1;14784:6;14780:14;14773:58;14865:8;14860:2;14852:6;14848:15;14841:33;14656:225;:::o;14887:366::-;15029:3;15050:67;15114:2;15109:3;15050:67;:::i;:::-;15043:74;;15126:93;15215:3;15126:93;:::i;:::-;15244:2;15239:3;15235:12;15228:19;;14887:366;;;:::o;15259:419::-;15425:4;15463:2;15452:9;15448:18;15440:26;;15512:9;15506:4;15502:20;15498:1;15487:9;15483:17;15476:47;15540:131;15666:4;15540:131;:::i;:::-;15532:139;;15259:419;;;:::o;15684:223::-;15824:34;15820:1;15812:6;15808:14;15801:58;15893:6;15888:2;15880:6;15876:15;15869:31;15684:223;:::o;15913:366::-;16055:3;16076:67;16140:2;16135:3;16076:67;:::i;:::-;16069:74;;16152:93;16241:3;16152:93;:::i;:::-;16270:2;16265:3;16261:12;16254:19;;15913:366;;;:::o;16285:419::-;16451:4;16489:2;16478:9;16474:18;16466:26;;16538:9;16532:4;16528:20;16524:1;16513:9;16509:17;16502:47;16566:131;16692:4;16566:131;:::i;:::-;16558:139;;16285:419;;;:::o;16710:221::-;16850:34;16846:1;16838:6;16834:14;16827:58;16919:4;16914:2;16906:6;16902:15;16895:29;16710:221;:::o;16937:366::-;17079:3;17100:67;17164:2;17159:3;17100:67;:::i;:::-;17093:74;;17176:93;17265:3;17176:93;:::i;:::-;17294:2;17289:3;17285:12;17278:19;;16937:366;;;:::o;17309:419::-;17475:4;17513:2;17502:9;17498:18;17490:26;;17562:9;17556:4;17552:20;17548:1;17537:9;17533:17;17526:47;17590:131;17716:4;17590:131;:::i;:::-;17582:139;;17309:419;;;:::o;17734:182::-;17874:34;17870:1;17862:6;17858:14;17851:58;17734:182;:::o;17922:366::-;18064:3;18085:67;18149:2;18144:3;18085:67;:::i;:::-;18078:74;;18161:93;18250:3;18161:93;:::i;:::-;18279:2;18274:3;18270:12;18263:19;;17922:366;;;:::o;18294:419::-;18460:4;18498:2;18487:9;18483:18;18475:26;;18547:9;18541:4;18537:20;18533:1;18522:9;18518:17;18511:47;18575:131;18701:4;18575:131;:::i;:::-;18567:139;;18294:419;;;:::o;18719:179::-;18859:31;18855:1;18847:6;18843:14;18836:55;18719:179;:::o;18904:366::-;19046:3;19067:67;19131:2;19126:3;19067:67;:::i;:::-;19060:74;;19143:93;19232:3;19143:93;:::i;:::-;19261:2;19256:3;19252:12;19245:19;;18904:366;;;:::o;19276:419::-;19442:4;19480:2;19469:9;19465:18;19457:26;;19529:9;19523:4;19519:20;19515:1;19504:9;19500:17;19493:47;19557:131;19683:4;19557:131;:::i;:::-;19549:139;;19276:419;;;:::o;19701:224::-;19841:34;19837:1;19829:6;19825:14;19818:58;19910:7;19905:2;19897:6;19893:15;19886:32;19701:224;:::o;19931:366::-;20073:3;20094:67;20158:2;20153:3;20094:67;:::i;:::-;20087:74;;20170:93;20259:3;20170:93;:::i;:::-;20288:2;20283:3;20279:12;20272:19;;19931:366;;;:::o;20303:419::-;20469:4;20507:2;20496:9;20492:18;20484:26;;20556:9;20550:4;20546:20;20542:1;20531:9;20527:17;20520:47;20584:131;20710:4;20584:131;:::i;:::-;20576:139;;20303:419;;;:::o;20728:222::-;20868:34;20864:1;20856:6;20852:14;20845:58;20937:5;20932:2;20924:6;20920:15;20913:30;20728:222;:::o;20956:366::-;21098:3;21119:67;21183:2;21178:3;21119:67;:::i;:::-;21112:74;;21195:93;21284:3;21195:93;:::i;:::-;21313:2;21308:3;21304:12;21297:19;;20956:366;;;:::o;21328:419::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21328:419;;;:::o;21753:174::-;21893:26;21889:1;21881:6;21877:14;21870:50;21753:174;:::o;21933:366::-;22075:3;22096:67;22160:2;22155:3;22096:67;:::i;:::-;22089:74;;22172:93;22261:3;22172:93;:::i;:::-;22290:2;22285:3;22281:12;22274:19;;21933:366;;;:::o;22305:419::-;22471:4;22509:2;22498:9;22494:18;22486:26;;22558:9;22552:4;22548:20;22544:1;22533:9;22529:17;22522:47;22586:131;22712:4;22586:131;:::i;:::-;22578:139;;22305:419;;;:::o;22730:410::-;22770:7;22793:20;22811:1;22793:20;:::i;:::-;22788:25;;22827:20;22845:1;22827:20;:::i;:::-;22822:25;;22882:1;22879;22875:9;22904:30;22922:11;22904:30;:::i;:::-;22893:41;;23083:1;23074:7;23070:15;23067:1;23064:22;23044:1;23037:9;23017:83;22994:139;;23113:18;;:::i;:::-;22994:139;22778:362;22730:410;;;;:::o;23146:180::-;23194:77;23191:1;23184:88;23291:4;23288:1;23281:15;23315:4;23312:1;23305:15;23332:185;23372:1;23389:20;23407:1;23389:20;:::i;:::-;23384:25;;23423:20;23441:1;23423:20;:::i;:::-;23418:25;;23462:1;23452:35;;23467:18;;:::i;:::-;23452:35;23509:1;23506;23502:9;23497:14;;23332:185;;;;:::o;23523:194::-;23563:4;23583:20;23601:1;23583:20;:::i;:::-;23578:25;;23617:20;23635:1;23617:20;:::i;:::-;23612:25;;23661:1;23658;23654:9;23646:17;;23685:1;23679:4;23676:11;23673:37;;;23690:18;;:::i;:::-;23673:37;23523:194;;;;:::o;23723:225::-;23863:34;23859:1;23851:6;23847:14;23840:58;23932:8;23927:2;23919:6;23915:15;23908:33;23723:225;:::o;23954:366::-;24096:3;24117:67;24181:2;24176:3;24117:67;:::i;:::-;24110:74;;24193:93;24282:3;24193:93;:::i;:::-;24311:2;24306:3;24302:12;24295:19;;23954:366;;;:::o;24326:419::-;24492:4;24530:2;24519:9;24515:18;24507:26;;24579:9;24573:4;24569:20;24565:1;24554:9;24550:17;24543:47;24607:131;24733:4;24607:131;:::i;:::-;24599:139;;24326:419;;;:::o;24751:442::-;24900:4;24938:2;24927:9;24923:18;24915:26;;24951:71;25019:1;25008:9;25004:17;24995:6;24951:71;:::i;:::-;25032:72;25100:2;25089:9;25085:18;25076:6;25032:72;:::i;:::-;25114;25182:2;25171:9;25167:18;25158:6;25114:72;:::i;:::-;24751:442;;;;;;:::o;25199:147::-;25300:11;25337:3;25322:18;;25199:147;;;;:::o;25352:114::-;;:::o;25472:398::-;25631:3;25652:83;25733:1;25728:3;25652:83;:::i;:::-;25645:90;;25744:93;25833:3;25744:93;:::i;:::-;25862:1;25857:3;25853:11;25846:18;;25472:398;;;:::o;25876:379::-;26060:3;26082:147;26225:3;26082:147;:::i;:::-;26075:154;;26246:3;26239:10;;25876:379;;;:::o;26261:143::-;26318:5;26349:6;26343:13;26334:22;;26365:33;26392:5;26365:33;:::i;:::-;26261:143;;;;:::o;26410:351::-;26480:6;26529:2;26517:9;26508:7;26504:23;26500:32;26497:119;;;26535:79;;:::i;:::-;26497:119;26655:1;26680:64;26736:7;26727:6;26716:9;26712:22;26680:64;:::i;:::-;26670:74;;26626:128;26410:351;;;;:::o;26767:85::-;26812:7;26841:5;26830:16;;26767:85;;;:::o;26858:158::-;26916:9;26949:61;26967:42;26976:32;27002:5;26976:32;:::i;:::-;26967:42;:::i;:::-;26949:61;:::i;:::-;26936:74;;26858:158;;;:::o;27022:147::-;27117:45;27156:5;27117:45;:::i;:::-;27112:3;27105:58;27022:147;;:::o;27175:114::-;27242:6;27276:5;27270:12;27260:22;;27175:114;;;:::o;27295:184::-;27394:11;27428:6;27423:3;27416:19;27468:4;27463:3;27459:14;27444:29;;27295:184;;;;:::o;27485:132::-;27552:4;27575:3;27567:11;;27605:4;27600:3;27596:14;27588:22;;27485:132;;;:::o;27623:108::-;27700:24;27718:5;27700:24;:::i;:::-;27695:3;27688:37;27623:108;;:::o;27737:179::-;27806:10;27827:46;27869:3;27861:6;27827:46;:::i;:::-;27905:4;27900:3;27896:14;27882:28;;27737:179;;;;:::o;27922:113::-;27992:4;28024;28019:3;28015:14;28007:22;;27922:113;;;:::o;28071:732::-;28190:3;28219:54;28267:5;28219:54;:::i;:::-;28289:86;28368:6;28363:3;28289:86;:::i;:::-;28282:93;;28399:56;28449:5;28399:56;:::i;:::-;28478:7;28509:1;28494:284;28519:6;28516:1;28513:13;28494:284;;;28595:6;28589:13;28622:63;28681:3;28666:13;28622:63;:::i;:::-;28615:70;;28708:60;28761:6;28708:60;:::i;:::-;28698:70;;28554:224;28541:1;28538;28534:9;28529:14;;28494:284;;;28498:14;28794:3;28787:10;;28195:608;;;28071:732;;;;:::o;28809:831::-;29072:4;29110:3;29099:9;29095:19;29087:27;;29124:71;29192:1;29181:9;29177:17;29168:6;29124:71;:::i;:::-;29205:80;29281:2;29270:9;29266:18;29257:6;29205:80;:::i;:::-;29332:9;29326:4;29322:20;29317:2;29306:9;29302:18;29295:48;29360:108;29463:4;29454:6;29360:108;:::i;:::-;29352:116;;29478:72;29546:2;29535:9;29531:18;29522:6;29478:72;:::i;:::-;29560:73;29628:3;29617:9;29613:19;29604:6;29560:73;:::i;:::-;28809:831;;;;;;;;:::o;29646:807::-;29895:4;29933:3;29922:9;29918:19;29910:27;;29947:71;30015:1;30004:9;30000:17;29991:6;29947:71;:::i;:::-;30028:72;30096:2;30085:9;30081:18;30072:6;30028:72;:::i;:::-;30110:80;30186:2;30175:9;30171:18;30162:6;30110:80;:::i;:::-;30200;30276:2;30265:9;30261:18;30252:6;30200:80;:::i;:::-;30290:73;30358:3;30347:9;30343:19;30334:6;30290:73;:::i;:::-;30373;30441:3;30430:9;30426:19;30417:6;30373:73;:::i;:::-;29646:807;;;;;;;;;:::o;30459:143::-;30516:5;30547:6;30541:13;30532:22;;30563:33;30590:5;30563:33;:::i;:::-;30459:143;;;;:::o;30608:663::-;30696:6;30704;30712;30761:2;30749:9;30740:7;30736:23;30732:32;30729:119;;;30767:79;;:::i;:::-;30729:119;30887:1;30912:64;30968:7;30959:6;30948:9;30944:22;30912:64;:::i;:::-;30902:74;;30858:128;31025:2;31051:64;31107:7;31098:6;31087:9;31083:22;31051:64;:::i;:::-;31041:74;;30996:129;31164:2;31190:64;31246:7;31237:6;31226:9;31222:22;31190:64;:::i;:::-;31180:74;;31135:129;30608:663;;;;;:::o

Swarm Source

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