ETH Price: $3,048.01 (+4.55%)

Token

LAMBO (LAMBO)
 

Overview

Max Total Supply

100,000,000 LAMBO

Holders

557

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,464,332.894100537912704981 LAMBO

Value
$0.00
0xd2c6cc08F34Eb32eb21D32924f15ab0B83511E01
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:
LAMBO

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
*/

/**
Lambo that whales are currently more active on the Ethereum  than on Bitcoin's.
*/

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

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

// pragma solidity ^0.8.0;

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller LAMBOis 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 theLAMBO 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 LAMBOupdated 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` LAMBOtokens 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 allowanceLAMBO 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 LAMBOcaller'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 LAMBOof 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.
     *
     LAMBO
     * 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.
 *LAMBO
 * _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}.
 LAMBOEIP 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
    LAMBOny 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 LAMBOallowance 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: LAMBOtransfer from the zero address");
        require(to != address(0), "LAMBOERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount LAMBOexceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of allLAMBO 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 LAMBOto 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 LAMBOthe zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn LAMBOamount 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: LAMBOapprove from the zero address");
        require(spender != address(0), "ERC20: approve to the zero LAMBOaddress");

        _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 LAMBOintegers, 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 LAMBOunsigned 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 LAMBOunsigned 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 LAMBOis 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 LAMBOof 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.
     *
    LAMBO
     * 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.
     *
    LAMBOrevert (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}.
    LAMBO
     *
     * 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 LAMBO 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 _isExcludedFromEnableTrad;
    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("LAMBO", "LAMBO") {

        uint256 totalSupply = 100_000_000 * (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;

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

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already LAMBOactive.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excluydeEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be LAMBOremoved from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, 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 LAMBOzero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[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] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[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":"_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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excluydeEnobleTrading","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":"pair","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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600581526020017f4c414d424f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c414d424f00000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d2b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000d09565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a204c414d424f617070726f76652066726f6d20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b600062000b9360298362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f204c414d424f60008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600062000c2b60278362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e74204c414d424f746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000cf160248362000b24565b915062000cfe8262000c93565b604082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b60805161323062000d6a600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526132306000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063b6d01540146105c6578063c04a5414146105ef578063d46980161461061a576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906124f8565b610bbf565b005b3480156105fb57600080fd5b50610604610c70565b604051610611919061244d565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c919061244d565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610cc2565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061273f565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610cc2565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127d1565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b610bc7611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610c64919061232c565b60405180910390a25050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479204c414d424f6163746976652e00000000600082015250565b6000612671601c83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204c60008201527f414d424f72656d6f7665642066726f6d206175746f6d617465644d61726b657460208201527f4d616b6572506169727300000000000000000000000000000000000000000000604082015250565b6000612729604a83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a20646563726561736564204c414d424f616c6c6f77616e63652060008201527f62656c6f77207a65726f00000000000000000000000000000000000000000000602082015250565b60006127bb602a83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468654c414d424f207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061284d602b83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a204c414d424f617070726f76652066726f6d20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b60006128df602983612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f204c414d424f60008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000612971602783612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865204c414d424f7a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612a6f602a83612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c6572204c414d424f6973206e6f74207468652060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602583612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a204c414d424f7472616e736665722066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612d67602a83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f4c414d424f45524332303a207472616e7366657220746f20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612df9602883612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74204c414d424f6578636560008201527f6564732062616c616e6365000000000000000000000000000000000000000000602082015250565b6000612e8b602b83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea2646970667358221220a068ff3d0303edaabd789cfefb765525cf9faac83514480b3057b08f87d68dd464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063b6d01540146105c6578063c04a5414146105ef578063d46980161461061a576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906124f8565b610bbf565b005b3480156105fb57600080fd5b50610604610c70565b604051610611919061244d565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c919061244d565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610cc2565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061273f565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610cc2565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127d1565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b610bc7611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610c64919061232c565b60405180910390a25050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479204c414d424f6163746976652e00000000600082015250565b6000612671601c83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204c60008201527f414d424f72656d6f7665642066726f6d206175746f6d617465644d61726b657460208201527f4d616b6572506169727300000000000000000000000000000000000000000000604082015250565b6000612729604a83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a20646563726561736564204c414d424f616c6c6f77616e63652060008201527f62656c6f77207a65726f00000000000000000000000000000000000000000000602082015250565b60006127bb602a83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468654c414d424f207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061284d602b83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a204c414d424f617070726f76652066726f6d20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b60006128df602983612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f204c414d424f60008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000612971602783612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865204c414d424f7a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612a6f602a83612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c6572204c414d424f6973206e6f74207468652060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602583612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a204c414d424f7472616e736665722066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612d67602a83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f4c414d424f45524332303a207472616e7366657220746f20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612df9602883612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74204c414d424f6578636560008201527f6564732062616c616e6365000000000000000000000000000000000000000000602082015250565b6000612e8b602b83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea2646970667358221220a068ff3d0303edaabd789cfefb765525cf9faac83514480b3057b08f87d68dd464736f6c63430008110033

Deployed Bytecode Sourcemap

26541:8659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7345:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9181:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26616:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8121:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9431:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26824:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7963:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9734:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26674:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26886:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27172:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26919:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8292:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1904:103;;;;;;;;;;;;;:::i;:::-;;26711:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29373:178;;;;;;;;;;;;;:::i;:::-;;1258:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6884:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7564:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29771:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10012:510;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8675:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29561:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26748:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26787:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27022:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8972:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26980:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2162:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7345:100;7399:13;7432:5;7425:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7345:100;:::o;9181:242::-;9300:4;9322:13;9338:12;:10;:12::i;:::-;9322:28;;9361:32;9370:5;9377:7;9386:6;9361:8;:32::i;:::-;9411:4;9404:11;;;9181:242;;;;:::o;26616:51::-;;;:::o;8121:108::-;8182:7;8209:12;;8202:19;;8121:108;:::o;9431:295::-;9562:4;9579:15;9597:12;:10;:12::i;:::-;9579:30;;9620:38;9636:4;9642:7;9651:6;9620:15;:38::i;:::-;9669:27;9679:4;9685:2;9689:6;9669:9;:27::i;:::-;9714:4;9707:11;;;9431:295;;;;;:::o;26824:53::-;26870:6;26824:53;:::o;7963:93::-;8021:5;8046:2;8039:9;;7963:93;:::o;9734:270::-;9849:4;9871:13;9887:12;:10;:12::i;:::-;9871:28;;9910:64;9919:5;9926:7;9963:10;9935:25;9945:5;9952:7;9935:9;:25::i;:::-;:38;;;;:::i;:::-;9910:8;:64::i;:::-;9992:4;9985:11;;;9734:270;;;;:::o;26674:28::-;;;;;;;;;;;;;:::o;26886:26::-;;;;;;;;;;;;;:::o;27172:28::-;;;;:::o;26919:23::-;;;;;;;;;;;;;:::o;8292:177::-;8411:7;8443:9;:18;8453:7;8443:18;;;;;;;;;;;;;;;;8436:25;;8292:177;;;:::o;1904:103::-;1144:13;:11;:13::i;:::-;1969:30:::1;1996:1;1969:18;:30::i;:::-;1904:103::o:0;26711:30::-;;;;;;;;;;;;;:::o;29373:178::-;1144:13;:11;:13::i;:::-;29435:14:::1;;;;;;;;;;;29434:15;29426:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29510:4;29493:14;;:21;;;;;;;;;;;;;;;;;;29539:4;29525:11;;:18;;;;;;;;;;;;;;;;;;29373:178::o:0;1258:87::-;1304:7;1331:6;;;;;;;;;;;1324:13;;1258:87;:::o;6884:26::-;;;;:::o;7564:104::-;7620:13;7653:7;7646:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7564:104;:::o;29771:259::-;1144:13;:11;:13::i;:::-;29878::::1;;;;;;;;;;;29870:21;;:4;:21;;::::0;29862:108:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29981:41;30010:4;30016:5;29981:28;:41::i;:::-;29771:259:::0;;:::o;10012:510::-;10132:4;10154:13;10170:12;:10;:12::i;:::-;10154:28;;10193:24;10220:25;10230:5;10237:7;10220:9;:25::i;:::-;10193:52;;10298:15;10278:16;:35;;10256:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;10419:60;10428:5;10435:7;10463:15;10444:16;:34;10419:8;:60::i;:::-;10510:4;10503:11;;;;10012:510;;;;:::o;8675:234::-;8790:4;8812:13;8828:12;:10;:12::i;:::-;8812:28;;8851;8861:5;8868:2;8872:6;8851:9;:28::i;:::-;8897:4;8890:11;;;8675:234;;;;:::o;29561:202::-;1144:13;:11;:13::i;:::-;29697:8:::1;29660:25;:34;29686:7;29660:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29737:7;29721:34;;;29746:8;29721:34;;;;;;:::i;:::-;;;;;;;;29561:202:::0;;:::o;26748:32::-;;;;;;;;;;;;;:::o;26787:30::-;;;;;;;;;;;;;:::o;27022:27::-;;;;:::o;8972:201::-;9106:7;9138:11;:18;9150:5;9138:18;;;;;;;;;;;;;;;:27;9157:7;9138:27;;;;;;;;;;;;;;;;9131:34;;8972:201;;;;:::o;26980:33::-;;;;:::o;2162:243::-;1144:13;:11;:13::i;:::-;2285:1:::1;2265:22;;:8;:22;;::::0;2243:115:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2369:28;2388:8;2369:18;:28::i;:::-;2162:243:::0;:::o;310:98::-;363:7;390:10;383:17;;310:98;:::o;12689:390::-;12842:1;12825:19;;:5;:19;;;12817:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12928:1;12909:21;;:7;:21;;;12901:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13017:6;12987:11;:18;12999:5;12987:18;;;;;;;;;;;;;;;:27;13006:7;12987:27;;;;;;;;;;;;;;;:36;;;;13055:7;13039:32;;13048:5;13039:32;;;13064:6;13039:32;;;;;;:::i;:::-;;;;;;;;12689:390;;;:::o;13087:502::-;13222:24;13249:25;13259:5;13266:7;13249:9;:25::i;:::-;13222:52;;13309:17;13289:16;:37;13285:297;;13389:6;13369:16;:26;;13343:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13504:51;13513:5;13520:7;13548:6;13529:16;:25;13504:8;:51::i;:::-;13285:297;13211:378;13087:502;;;:::o;30236:2453::-;30384:1;30368:18;;:4;:18;;;30360:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30466:1;30452:16;;:2;:16;;;30444:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30527:14;;;;;;;;;;;:49;;;;30545:25;:31;30571:4;30545:31;;;;;;;;;;;;;;;;;;;;;;;;;30527:49;:82;;;;30580:25;:29;30606:2;30580:29;;;;;;;;;;;;;;;;;;;;;;;;;30527:82;30519:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30663:1;30653:6;:11;30649:93;;30681:28;30697:4;30703:2;30707:1;30681:15;:28::i;:::-;30724:7;;30649:93;30756:28;30787:24;30805:4;30787:9;:24::i;:::-;30756:55;;30824:12;30863:18;;30839:20;:42;;30824:57;;30912:7;:35;;;;;30936:11;;;;;;;;;;;30912:35;:48;;;;;30951:9;;;;;;;;;;;30950:10;30912:48;:82;;;;;30962:26;:32;30989:4;30962:32;;;;;;;;;;;;;;;;;;;;;;;;;30912:82;:131;;;;;31012:25;:31;31038:4;31012:31;;;;;;;;;;;;;;;;;;;;;;;;;31011:32;30912:131;:178;;;;;31061:25;:29;31087:2;31061:29;;;;;;;;;;;;;;;;;;;;;;;;;31060:30;30912:178;30894:313;;;31129:4;31117:9;;:16;;;;;;;;;;;;;;;;;;31150:11;:9;:11::i;:::-;31190:5;31178:9;;:17;;;;;;;;;;;;;;;;;;30894:313;31219:12;31235:9;;;;;;;;;;;31234:10;31219:25;;31261;:31;31287:4;31261:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31296:25;:29;31322:2;31296:29;;;;;;;;;;;;;;;;;;;;;;;;;31261:64;31257:112;;;31352:5;31342:15;;31257:112;31381:12;31414:7;31410:1187;;;31466:26;:30;31493:2;31466:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31516:1;31500:13;;:17;31466:51;31462:986;;;31545:36;31575:5;31545:25;31556:13;;31545:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31538:43;;31694:13;;31652:17;;31645:4;:24;;;;:::i;:::-;31644:63;;;;:::i;:::-;31600:19;;:107;;;;;;;:::i;:::-;;;;;;;;31820:13;;31778:17;;31771:4;:24;;;;:::i;:::-;31770:63;;;;:::i;:::-;31726:19;;:107;;;;;;;:::i;:::-;;;;;;;;31950:13;;31906:19;;31899:4;:26;;;;:::i;:::-;31898:65;;;;:::i;:::-;31852:21;;:111;;;;;;;:::i;:::-;;;;;;;;31462:986;;;32025:26;:32;32052:4;32025:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32076:1;32061:12;;:16;32025:52;32021:427;;;32105:35;32134:5;32105:24;32116:12;;32105:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32098:42;;32210:12;;32190:16;;32183:4;:23;;;;:::i;:::-;32182:40;;;;:::i;:::-;32159:19;;:63;;;;;;;:::i;:::-;;;;;;;;32292:12;;32272:16;;32265:4;:23;;;;:::i;:::-;32264:40;;;;:::i;:::-;32241:19;;:63;;;;;;;:::i;:::-;;;;;;;;32420:12;;32377:18;;32370:4;:25;;;;:::i;:::-;32369:63;;;;:::i;:::-;32323:21;;:109;;;;;;;:::i;:::-;;;;;;;;32021:427;31462:986;32475:1;32468:4;:8;32464:91;;;32497:42;32513:4;32527;32534;32497:15;:42::i;:::-;32464:91;32581:4;32571:14;;;;;:::i;:::-;;;31410:1187;32609:33;32625:4;32631:2;32635:6;32609:15;:33::i;:::-;32669:12;;32653:13;:28;;;;30349:2340;;;;30236:2453;;;;:::o;1423:137::-;1498:12;:10;:12::i;:::-;1487:23;;:7;:5;:7::i;:::-;:23;;;1479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1423:137::o;2565:191::-;2639:16;2658:6;;;;;;;;;;;2639:25;;2684:8;2675:6;;:17;;;;;;;;;;;;;;;;;;2739:8;2708:40;;2729:8;2708:40;;;;;;;;;;;;2628:128;2565:191;:::o;30040:188::-;30159:5;30124:26;:32;30151:4;30124:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30214:5;30180:40;;30208:4;30180:40;;;;;;;;;;;;30040:188;;:::o;10530:897::-;10677:1;10661:18;;:4;:18;;;10653:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10759:1;10745:16;;:2;:16;;;10737:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;10819:38;10840:4;10846:2;10850:6;10819:20;:38::i;:::-;10870:19;10892:9;:15;10902:4;10892:15;;;;;;;;;;;;;;;;10870:37;;10955:6;10940:11;:21;;10918:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;11100:6;11086:11;:20;11068:9;:15;11078:4;11068:15;;;;;;;;;;;;;;;:38;;;;11308:6;11291:9;:13;11301:2;11291:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11358:2;11343:26;;11352:4;11343:26;;;11362:6;11343:26;;;;;;:::i;:::-;;;;;;;;11382:37;11402:4;11408:2;11412:6;11382:19;:37::i;:::-;10642:785;10530:897;;;:::o;33588:1607::-;33629:23;33655:24;33673:4;33655:9;:24::i;:::-;33629:50;;33690:25;33788:21;;33753:19;;33718;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33690:119;;33820:12;33847:23;33961:1;33928:17;33892:19;;33874:15;:37;;;;:::i;:::-;33873:72;;;;:::i;:::-;:89;;;;:::i;:::-;33847:115;;33973:26;34002:36;34022:15;34002;:19;;:36;;;;:::i;:::-;33973:65;;34051:25;34079:21;34051:49;;34113:37;34131:18;34113:17;:37::i;:::-;34163:18;34184:44;34210:17;34184:21;:25;;:44;;;;:::i;:::-;34163:65;;34241:23;34267:82;34321:17;34267:35;34282:19;;34267:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34241:108;;34362:25;34390:84;34446:17;34390:37;34405:21;;34390:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34362:112;;34487:23;34570:17;34539:15;34513:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34487:100;;34622:1;34600:19;:23;;;;34656:1;34634:19;:23;;;;34692:1;34668:21;:25;;;;34728:1;34710:15;:19;:42;;;;;34751:1;34733:15;:19;34710:42;34706:280;;;34769:47;34783:15;34800;34769:13;:47::i;:::-;34836:138;34869:18;34906:15;34940:19;;34836:138;;;;;;;;:::i;:::-;;;;;;;;34706:280;35020:17;;;;;;;;;;;35012:31;;35051:17;35012:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34998:75;;;;;35108:15;;;;;;;;;;;35100:29;;35151:21;35100:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35086:101;;;;;33618:1577;;;;;;;;;;33588:1607::o;17241:98::-;17299:7;17330:1;17326;:5;;;;:::i;:::-;17319:12;;17241:98;;;;:::o;17640:::-;17698:7;17729:1;17725;:5;;;;:::i;:::-;17718:12;;17640:98;;;;:::o;13597:125::-;;;;:::o;13730:124::-;;;;:::o;16879:98::-;16937:7;16968:1;16964;:5;;;;:::i;:::-;16957:12;;16879:98;;;;:::o;32697:503::-;32765:21;32803:1;32789:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32765:40;;32834:4;32816;32821:1;32816:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32860:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32850:4;32855:1;32850:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32895:62;32912:4;32927:15;32945:11;32895:8;:62::i;:::-;32996:15;:66;;;33077:11;33103:1;33119:4;33146;33166:15;32996:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32754:446;32697:503;:::o;33208:372::-;33291:62;33308:4;33323:15;33341:11;33291:8;:62::i;:::-;33366:15;:31;;;33405:9;33438:4;33458:11;33484:1;33500;33516:15;;;;;;;;;;;33546;33366:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33208: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;1430:117::-;1539:1;1536;1529: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:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:178::-;8768:30;8764:1;8756:6;8752:14;8745:54;8628:178;:::o;8812:366::-;8954:3;8975:67;9039:2;9034:3;8975:67;:::i;:::-;8968:74;;9051:93;9140:3;9051:93;:::i;:::-;9169:2;9164:3;9160:12;9153:19;;8812:366;;;:::o;9184:419::-;9350:4;9388:2;9377:9;9373:18;9365:26;;9437:9;9431:4;9427:20;9423:1;9412:9;9408:17;9401:47;9465:131;9591:4;9465:131;:::i;:::-;9457:139;;9184:419;;;:::o;9609:298::-;9749:34;9745:1;9737:6;9733:14;9726:58;9818:34;9813:2;9805:6;9801:15;9794:59;9887:12;9882:2;9874:6;9870:15;9863:37;9609:298;:::o;9913:366::-;10055:3;10076:67;10140:2;10135:3;10076:67;:::i;:::-;10069:74;;10152:93;10241:3;10152:93;:::i;:::-;10270:2;10265:3;10261:12;10254:19;;9913:366;;;:::o;10285:419::-;10451:4;10489:2;10478:9;10474:18;10466:26;;10538:9;10532:4;10528:20;10524:1;10513:9;10509:17;10502:47;10566:131;10692:4;10566:131;:::i;:::-;10558:139;;10285:419;;;:::o;10710:229::-;10850:34;10846:1;10838:6;10834:14;10827:58;10919:12;10914:2;10906:6;10902:15;10895:37;10710:229;:::o;10945:366::-;11087:3;11108:67;11172:2;11167:3;11108:67;:::i;:::-;11101:74;;11184:93;11273:3;11184:93;:::i;:::-;11302:2;11297:3;11293:12;11286:19;;10945:366;;;:::o;11317:419::-;11483:4;11521:2;11510:9;11506:18;11498:26;;11570:9;11564:4;11560:20;11556:1;11545:9;11541:17;11534:47;11598:131;11724:4;11598:131;:::i;:::-;11590:139;;11317:419;;;:::o;11742:230::-;11882:34;11878:1;11870:6;11866:14;11859:58;11951:13;11946:2;11938:6;11934:15;11927:38;11742:230;:::o;11978:366::-;12120:3;12141:67;12205:2;12200:3;12141:67;:::i;:::-;12134:74;;12217:93;12306:3;12217:93;:::i;:::-;12335:2;12330:3;12326:12;12319:19;;11978:366;;;:::o;12350:419::-;12516:4;12554:2;12543:9;12539:18;12531:26;;12603:9;12597:4;12593:20;12589:1;12578:9;12574:17;12567:47;12631:131;12757:4;12631:131;:::i;:::-;12623:139;;12350:419;;;:::o;12775:228::-;12915:34;12911:1;12903:6;12899:14;12892:58;12984:11;12979:2;12971:6;12967:15;12960:36;12775:228;:::o;13009:366::-;13151:3;13172:67;13236:2;13231:3;13172:67;:::i;:::-;13165:74;;13248:93;13337:3;13248:93;:::i;:::-;13366:2;13361:3;13357:12;13350:19;;13009:366;;;:::o;13381:419::-;13547:4;13585:2;13574:9;13570:18;13562:26;;13634:9;13628:4;13624:20;13620:1;13609:9;13605:17;13598:47;13662:131;13788:4;13662:131;:::i;:::-;13654:139;;13381:419;;;:::o;13806:226::-;13946:34;13942:1;13934:6;13930:14;13923:58;14015:9;14010:2;14002:6;13998:15;13991:34;13806:226;:::o;14038:366::-;14180:3;14201:67;14265:2;14260:3;14201:67;:::i;:::-;14194:74;;14277:93;14366:3;14277:93;:::i;:::-;14395:2;14390:3;14386:12;14379:19;;14038:366;;;:::o;14410:419::-;14576:4;14614:2;14603:9;14599:18;14591:26;;14663:9;14657:4;14653:20;14649:1;14638:9;14634:17;14627:47;14691:131;14817:4;14691:131;:::i;:::-;14683:139;;14410:419;;;:::o;14835:179::-;14975:31;14971:1;14963:6;14959:14;14952:55;14835:179;:::o;15020:366::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15020:366;;;:::o;15392:419::-;15558:4;15596:2;15585:9;15581:18;15573:26;;15645:9;15639:4;15635:20;15631:1;15620:9;15616:17;15609:47;15673:131;15799:4;15673:131;:::i;:::-;15665:139;;15392:419;;;:::o;15817:229::-;15957:34;15953:1;15945:6;15941:14;15934:58;16026:12;16021:2;16013:6;16009:15;16002:37;15817:229;:::o;16052:366::-;16194:3;16215:67;16279:2;16274:3;16215:67;:::i;:::-;16208:74;;16291:93;16380:3;16291:93;:::i;:::-;16409:2;16404:3;16400:12;16393:19;;16052:366;;;:::o;16424:419::-;16590:4;16628:2;16617:9;16613:18;16605:26;;16677:9;16671:4;16667:20;16663:1;16652:9;16648:17;16641:47;16705:131;16831:4;16705:131;:::i;:::-;16697:139;;16424:419;;;:::o;16849:222::-;16989:34;16985:1;16977:6;16973:14;16966:58;17058:5;17053:2;17045:6;17041:15;17034:30;16849:222;:::o;17077:366::-;17219:3;17240:67;17304:2;17299:3;17240:67;:::i;:::-;17233:74;;17316:93;17405:3;17316:93;:::i;:::-;17434:2;17429:3;17425:12;17418:19;;17077:366;;;:::o;17449:419::-;17615:4;17653:2;17642:9;17638:18;17630:26;;17702:9;17696:4;17692:20;17688:1;17677:9;17673:17;17666:47;17730:131;17856:4;17730:131;:::i;:::-;17722:139;;17449:419;;;:::o;17874:174::-;18014:26;18010:1;18002:6;17998:14;17991:50;17874:174;:::o;18054:366::-;18196:3;18217:67;18281:2;18276:3;18217:67;:::i;:::-;18210:74;;18293:93;18382:3;18293:93;:::i;:::-;18411:2;18406:3;18402:12;18395:19;;18054:366;;;:::o;18426:419::-;18592:4;18630:2;18619:9;18615:18;18607:26;;18679:9;18673:4;18669:20;18665:1;18654:9;18650:17;18643:47;18707:131;18833:4;18707:131;:::i;:::-;18699:139;;18426:419;;;:::o;18851:410::-;18891:7;18914:20;18932:1;18914:20;:::i;:::-;18909:25;;18948:20;18966:1;18948:20;:::i;:::-;18943:25;;19003:1;19000;18996:9;19025:30;19043:11;19025:30;:::i;:::-;19014:41;;19204:1;19195:7;19191:15;19188:1;19185:22;19165:1;19158:9;19138:83;19115:139;;19234:18;;:::i;:::-;19115:139;18899:362;18851:410;;;;:::o;19267:180::-;19315:77;19312:1;19305:88;19412:4;19409:1;19402:15;19436:4;19433:1;19426:15;19453:185;19493:1;19510:20;19528:1;19510:20;:::i;:::-;19505:25;;19544:20;19562:1;19544:20;:::i;:::-;19539:25;;19583:1;19573:35;;19588:18;;:::i;:::-;19573:35;19630:1;19627;19623:9;19618:14;;19453:185;;;;:::o;19644:194::-;19684:4;19704:20;19722:1;19704:20;:::i;:::-;19699:25;;19738:20;19756:1;19738:20;:::i;:::-;19733:25;;19782:1;19779;19775:9;19767:17;;19806:1;19800:4;19797:11;19794:37;;;19811:18;;:::i;:::-;19794:37;19644:194;;;;:::o;19844:224::-;19984:34;19980:1;19972:6;19968:14;19961:58;20053:7;20048:2;20040:6;20036:15;20029:32;19844:224;:::o;20074:366::-;20216:3;20237:67;20301:2;20296:3;20237:67;:::i;:::-;20230:74;;20313:93;20402:3;20313:93;:::i;:::-;20431:2;20426:3;20422:12;20415:19;;20074:366;;;:::o;20446:419::-;20612:4;20650:2;20639:9;20635:18;20627:26;;20699:9;20693:4;20689:20;20685:1;20674:9;20670:17;20663:47;20727:131;20853:4;20727:131;:::i;:::-;20719:139;;20446:419;;;:::o;20871:229::-;21011:34;21007:1;20999:6;20995:14;20988:58;21080:12;21075:2;21067:6;21063:15;21056:37;20871:229;:::o;21106:366::-;21248:3;21269:67;21333:2;21328:3;21269:67;:::i;:::-;21262:74;;21345:93;21434:3;21345:93;:::i;:::-;21463:2;21458:3;21454:12;21447:19;;21106:366;;;:::o;21478:419::-;21644:4;21682:2;21671:9;21667:18;21659:26;;21731:9;21725:4;21721:20;21717:1;21706:9;21702:17;21695:47;21759:131;21885:4;21759:131;:::i;:::-;21751:139;;21478:419;;;:::o;21903:227::-;22043:34;22039:1;22031:6;22027:14;22020:58;22112:10;22107:2;22099:6;22095:15;22088:35;21903:227;:::o;22136:366::-;22278:3;22299:67;22363:2;22358:3;22299:67;:::i;:::-;22292:74;;22375:93;22464:3;22375:93;:::i;:::-;22493:2;22488:3;22484:12;22477:19;;22136:366;;;:::o;22508:419::-;22674:4;22712:2;22701:9;22697:18;22689:26;;22761:9;22755:4;22751:20;22747:1;22736:9;22732:17;22725:47;22789:131;22915:4;22789:131;:::i;:::-;22781:139;;22508:419;;;:::o;22933:230::-;23073:34;23069:1;23061:6;23057:14;23050:58;23142:13;23137:2;23129:6;23125:15;23118:38;22933:230;:::o;23169:366::-;23311:3;23332:67;23396:2;23391:3;23332:67;:::i;:::-;23325:74;;23408:93;23497:3;23408:93;:::i;:::-;23526:2;23521:3;23517:12;23510:19;;23169:366;;;:::o;23541:419::-;23707:4;23745:2;23734:9;23730:18;23722:26;;23794:9;23788:4;23784:20;23780:1;23769:9;23765:17;23758:47;23822:131;23948:4;23822:131;:::i;:::-;23814:139;;23541:419;;;:::o;23966:442::-;24115:4;24153:2;24142:9;24138:18;24130:26;;24166:71;24234:1;24223:9;24219:17;24210:6;24166:71;:::i;:::-;24247:72;24315:2;24304:9;24300:18;24291:6;24247:72;:::i;:::-;24329;24397:2;24386:9;24382:18;24373:6;24329:72;:::i;:::-;23966:442;;;;;;:::o;24414:147::-;24515:11;24552:3;24537:18;;24414:147;;;;:::o;24567:114::-;;:::o;24687:398::-;24846:3;24867:83;24948:1;24943:3;24867:83;:::i;:::-;24860:90;;24959:93;25048:3;24959:93;:::i;:::-;25077:1;25072:3;25068:11;25061:18;;24687:398;;;:::o;25091:379::-;25275:3;25297:147;25440:3;25297:147;:::i;:::-;25290:154;;25461:3;25454:10;;25091:379;;;:::o;25476:180::-;25524:77;25521:1;25514:88;25621:4;25618:1;25611:15;25645:4;25642:1;25635:15;25662:180;25710:77;25707:1;25700:88;25807:4;25804:1;25797:15;25831:4;25828:1;25821:15;25848:143;25905:5;25936:6;25930:13;25921:22;;25952:33;25979:5;25952:33;:::i;:::-;25848:143;;;;:::o;25997:351::-;26067:6;26116:2;26104:9;26095:7;26091:23;26087:32;26084:119;;;26122:79;;:::i;:::-;26084:119;26242:1;26267:64;26323:7;26314:6;26303:9;26299:22;26267:64;:::i;:::-;26257:74;;26213:128;25997:351;;;;:::o;26354:85::-;26399:7;26428:5;26417:16;;26354:85;;;:::o;26445:158::-;26503:9;26536:61;26554:42;26563:32;26589:5;26563:32;:::i;:::-;26554:42;:::i;:::-;26536:61;:::i;:::-;26523:74;;26445:158;;;:::o;26609:147::-;26704:45;26743:5;26704:45;:::i;:::-;26699:3;26692:58;26609:147;;:::o;26762:114::-;26829:6;26863:5;26857:12;26847:22;;26762:114;;;:::o;26882:184::-;26981:11;27015:6;27010:3;27003:19;27055:4;27050:3;27046:14;27031:29;;26882:184;;;;:::o;27072:132::-;27139:4;27162:3;27154:11;;27192:4;27187:3;27183:14;27175:22;;27072:132;;;:::o;27210:108::-;27287:24;27305:5;27287:24;:::i;:::-;27282:3;27275:37;27210:108;;:::o;27324:179::-;27393:10;27414:46;27456:3;27448:6;27414:46;:::i;:::-;27492:4;27487:3;27483:14;27469:28;;27324:179;;;;:::o;27509:113::-;27579:4;27611;27606:3;27602:14;27594:22;;27509:113;;;:::o;27658:732::-;27777:3;27806:54;27854:5;27806:54;:::i;:::-;27876:86;27955:6;27950:3;27876:86;:::i;:::-;27869:93;;27986:56;28036:5;27986:56;:::i;:::-;28065:7;28096:1;28081:284;28106:6;28103:1;28100:13;28081:284;;;28182:6;28176:13;28209:63;28268:3;28253:13;28209:63;:::i;:::-;28202:70;;28295:60;28348:6;28295:60;:::i;:::-;28285:70;;28141:224;28128:1;28125;28121:9;28116:14;;28081:284;;;28085:14;28381:3;28374:10;;27782:608;;;27658:732;;;;:::o;28396:831::-;28659:4;28697:3;28686:9;28682:19;28674:27;;28711:71;28779:1;28768:9;28764:17;28755:6;28711:71;:::i;:::-;28792:80;28868:2;28857:9;28853:18;28844:6;28792:80;:::i;:::-;28919:9;28913:4;28909:20;28904:2;28893:9;28889:18;28882:48;28947:108;29050:4;29041:6;28947:108;:::i;:::-;28939:116;;29065:72;29133:2;29122:9;29118:18;29109:6;29065:72;:::i;:::-;29147:73;29215:3;29204:9;29200:19;29191:6;29147:73;:::i;:::-;28396:831;;;;;;;;:::o;29233:807::-;29482:4;29520:3;29509:9;29505:19;29497:27;;29534:71;29602:1;29591:9;29587:17;29578:6;29534:71;:::i;:::-;29615:72;29683:2;29672:9;29668:18;29659:6;29615:72;:::i;:::-;29697:80;29773:2;29762:9;29758:18;29749:6;29697:80;:::i;:::-;29787;29863:2;29852:9;29848:18;29839:6;29787:80;:::i;:::-;29877:73;29945:3;29934:9;29930:19;29921:6;29877:73;:::i;:::-;29960;30028:3;30017:9;30013:19;30004:6;29960:73;:::i;:::-;29233:807;;;;;;;;;:::o;30046:143::-;30103:5;30134:6;30128:13;30119:22;;30150:33;30177:5;30150:33;:::i;:::-;30046:143;;;;:::o;30195:663::-;30283:6;30291;30299;30348:2;30336:9;30327:7;30323:23;30319:32;30316:119;;;30354:79;;:::i;:::-;30316:119;30474:1;30499:64;30555:7;30546:6;30535:9;30531:22;30499:64;:::i;:::-;30489:74;;30445:128;30612:2;30638:64;30694:7;30685:6;30674:9;30670:22;30638:64;:::i;:::-;30628:74;;30583:129;30751:2;30777:64;30833:7;30824:6;30813:9;30809:22;30777:64;:::i;:::-;30767:74;;30722:129;30195:663;;;;;:::o

Swarm Source

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