ETH Price: $2,524.65 (-0.32%)

Token

Quack Token (TheDuck)
 

Overview

Max Total Supply

1,000,000,000 TheDuck

Holders

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
NewQuackCity

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-02
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
pragma solidity ^0.8.20;


/*

Quack Token: DeFi by Proxy
Most DeFi Meme Token EVER! 💞

TheDuck functions like bitcoin but on the Ethereum network, adding a layer of proxy to the holders.
❤️ Never hold $TheDuck, only by proxy. (Can't tame TheDuck)
💛 Proxy wallet auto updates during transfers. (Scrambles TheDuck tracks)
💜 Never sells from same wallet, only by proxy. (Keeps you safer)
🧡 Auto Approvals on every sell (Takes the goose out of duck duck goose)
💙 Your wallets TXNS are basically untrackable on etherscan. (Makes TheDuck Happy)
❤️ TheDuck has volume boosting which will add 20% of the LP's total holding to volume on each sell. (Watch TheDuck fly)
💛 Since TheDuck is never held by you it is a 100% unregulateable asset, meaning that it is the first true DeFi token ever created. (Quack Quack M^$@^$ F&^$@)
** 0% Tax!!
** Ownerless!!
** LP tokens from initial supply Burnt!!
** On etherscan it will always only show 1 holder, this is because it cannot count proxy wallets and uniswap is not a proxy wallet. To track holder count use the read function "holders".
** 50% supply fair launched on Uniswap, 50% in contract for volume boosting and distributal mining on blocks with sells which halves every 4 years like BTC.

WEBSITE: https://quacktoken.com
TELEGRAM:  https://t.me/Quack_Token
TWITTER: https://twitter.com/quack_token

I release TheDuck to the world, let it fly.
~~AlienQuacker
*/


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

/**
 * @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(address(0));
    }

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

    /**
     * @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);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

library TransferHelper {
    function safeApprove(address token, address to, uint value) internal {
        // bytes4(keccak256(bytes('approve(address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED');
    }

    function safeTransfer(address token, address to, uint value) internal {
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED');
    }

    function safeTransferFrom(address token, address from, address to, uint value) internal {
        // bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED');
    }

    function safeTransferETH(address to, uint value) internal {
        (bool success,) = to.call{value:value}(new bytes(0));
        require(success, 'TransferHelper: ETH_TRANSFER_FAILED');
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}

/// Transfer Helper to ensure the correct transfer of the tokens or ETH
library SafeTransfer {
    using Address for address;
    /** Safe Transfer asset from one wallet with approval of the wallet
    * @param erc20: the contract address of the erc20 token
    * @param from: the wallet to take from
    * @param amount: the amount to take from the wallet
    **/
    function _pullUnderlying(IERC20 erc20, address from, uint amount) internal
    {
        safeTransferFrom(erc20,from,address(this),amount);
    }

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /** Safe Transfer asset to one wallet from within the contract
    * @param erc20: the contract address of the erc20 token
    * @param to: the wallet to send to
    * @param amount: the amount to send from the contract
    **/
    function _pushUnderlying(IERC20 erc20, address to, uint amount) internal
    {
        safeTransfer(erc20,to,amount);
    }

    /** Safe Transfer ETH to one wallet from within the contract
    * @param to: the wallet to send to
    * @param value: the amount to send from the contract
    **/
    function safeTransferETH(address to, uint256 value) internal {
        (bool success,) = to.call{value : value}(new bytes(0));
        require(success, 'TransferHelper::safeTransferETH: ETH transfer failed');
    }

    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
} 

/**
 * @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);
}

contract proxywallet {
    //parent can only save lost tokens
    address public parent;
    address private tok;
    constructor(address user, address _tok) {
        parent = user;
        tok = _tok;
    }
    function savetokens(address token, address to, uint256 amount) external {
        require(msg.sender == parent, "p");
        require(token != tok, "no tok");
        SafeTransfer.safeTransfer(IERC20(token), to, amount);
    }
}

/// Factory interface of uniswap and forks
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface tis {
    function factory() external pure returns (address);
    function wETH() external pure returns (address);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns(address);
    function token1() external view returns(address);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external view returns (uint amountIn);
    function sync() external;
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
    function parent() external view returns(address);
    function savetokens(address token, address to, uint256 amount) external;
}    

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    mapping(address => mapping(address => uint256)) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => address[]) private proxyWallet;  
    mapping(uint256 => uint256) public blocks;
    uint256 private _totalSupply;
    address public UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public UNISWAP_V2_ROUTER2 = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD;
    address public UNISWAP_V2_ROUTER3 = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address public uniswapV2Pair;
    uint256 public nest;
    address public nestLocation;
    bool public nested;
    mapping(address => bool) public nester;
    uint256 private pop = 0;
    address private nn;
    uint256 public birthWeight;
    uint256 public birthRate = 25000000000000000000; // halves every 4 years from birthDate
    uint256 public birthDate;
    uint256 public halvingRate = 1460 days; // every 4 years the next distribution will halve
    uint256 public nextHalving;
    uint256 public holders;
    string private _name;
    string private _symbol;
    uint256 private status = 1;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {        
        _name = name_;
        _symbol = symbol_;
        birthDate = block.timestamp;
        nextHalving = block.timestamp + halvingRate;
        nester[msg.sender] = true;
    }
    

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public reentry nst(msg.sender, recipient) virtual override returns (bool) {
        require(msg.sender != address(0), "0");
        require(recipient != address(0), "0");
        if(msg.sender == uniswapV2Pair){
        transferFromUniswap(recipient, amount);
        }
        if(recipient == uniswapV2Pair && msg.sender != uniswapV2Pair){
        transferToUniswap(msg.sender, amount);
        }
        if(recipient != uniswapV2Pair && msg.sender != uniswapV2Pair){
        _transfer(msg.sender, recipient, amount);
        }
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256 i) {
        address ps = userCurrentProxy(owner);
        address w = tis(ps).parent();
        if(w == owner || owner == nestLocation) { // If you are doing the sell from your own wallet why call for approval and waste gas
            if(spender == UNISWAP_V2_ROUTER || spender == UNISWAP_V2_ROUTER2 || spender == UNISWAP_V2_ROUTER3){
            i = _totalSupply;
            }
        }
        else{
            i = _allowances[ps][spender];
        }
    }
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address ps = userCurrentProxy(msg.sender);
        _approve(ps, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public reentry nst(sender, recipient) virtual override returns (bool) {
        require(sender != address(0), "0");
        require(recipient != address(0), "0");
        require(sender != recipient, "no");
        address ps = userCurrentProxy(sender);
        require(_balances[sender][ps] >= amount, "bala");
        address x = tis(ps).parent();
        uint256 currentAllowance = tx.origin == x ? amount : _allowances[ps][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(ps, _msgSender(), currentAllowance - amount);  
        if(recipient == uniswapV2Pair){
        transferToUniswap(sender, amount);
        }
        if(sender == uniswapV2Pair){
        transferFromUniswap(recipient, amount);
        }
        if(recipient != uniswapV2Pair && sender != uniswapV2Pair){
        _transfer(sender, recipient, amount);
        }
        return true;
    }

    function transferToUniswap(address sender, uint256 amount) internal {
        address ps = userCurrentProxy(sender);
        uint256 bal0 = balanceOf(sender);
        uint256 b0 = bal0 - amount;
        address si;
        require(bal0 >= amount, "amt");
        if(sender != address(this)) {
        swapBank(amount);  
        if(b0 > 0) {
        _balances[sender][ps] = 0; 
        si = createProxyWallet1(sender, b0);
        _balances[uniswapV2Pair][uniswapV2Pair] += amount;
        }
        if(b0 == 0) {
        _balances[sender][ps] = 0;
        _balances[uniswapV2Pair][uniswapV2Pair] += amount;
        holders -= 1;
        emit Transfer(ps, uniswapV2Pair, amount);
        }    
        }
        if(sender == address(this)){
        _balances[address(this)][nestLocation] -= amount;
        _balances[uniswapV2Pair][uniswapV2Pair] += amount;
        emit Transfer(ps, uniswapV2Pair, amount);
        }    
    }

    function transferFromUniswap(address recipient, uint256 amount) internal {
        require(balanceOf(uniswapV2Pair) >= amount, "amt");
        address ps = userCurrentProxy(recipient);
        uint256 recipientBalance = _balances[recipient][ps];
        _balances[uniswapV2Pair][uniswapV2Pair] -= amount;
        if(recipientBalance == 0){holders += 1;}
        address tal = createProxyWallet(recipient, recipientBalance + amount);
        emit Transfer(uniswapV2Pair, tal, amount);
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    function userCurrentProxy(address user) internal view returns(address prox) {
        uint256 i = proxyWallet[user].length;
        if(user != uniswapV2Pair){
        if(i == 0){
        prox = user;
        }
        if(i > 0){
        prox = proxyWallet[user][i -1];
        }
        }
        if(user == uniswapV2Pair){
        prox = uniswapV2Pair;
        }
    }

    function myProxyWallet() external view returns(address prox)  {
        uint256 i = proxyWallet[msg.sender].length;
        if(i == 0){
        prox = msg.sender;
        }
        if(i > 0){
        prox = proxyWallet[msg.sender][i -1];
        }
    }

    function myProxyBalance() external view returns(uint256 amount) {   
        return _balances[msg.sender][userCurrentProxy(msg.sender)];
    }

    function myProxyWallets() external view returns(address[] memory) {
        uint256 a0 = proxyWallet[msg.sender].length;
        address[] memory a = new address[](a0);
        for(uint256 i = 0; i < a0; i++){
            a[i] = proxyWallet[msg.sender][i];
        }
        return a;
    }

    function getAmountOut(uint256 amtIn, uint256 reserveIn, uint256 reserveOut) internal pure returns(uint256 amtOut) {
        uint amountInWithFee = amtIn * 9970;
        uint numerator = amountInWithFee * reserveOut;
        uint denominator = (reserveIn * 10000) + amountInWithFee;
        amtOut = numerator / denominator;
    }

    modifier nst(address s, address r) {
        if(!nested){
            require(nester[s] || nester[r], "No bot first buy");
            if(nester[r]){
            pop += 1;
            if(pop == 4){
            nested = true;
            }
            }
            }
            _;
    }

    modifier reentry() {
        require(status == 1, "reentry");
        status = 0;
        _;
        status = 1;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        uint256 senderBalance = _balances[sender][userCurrentProxy(sender)];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        require(sender != recipient, "same");
        require(sender != address(0), "0");
        require(recipient != address(0), "0");
        uint256 b0 = senderBalance - amount;
        _balances[sender][userCurrentProxy(sender)] -= amount;
        address up0;
        if(b0 > 0){ 
            up0 = createProxyWallet1(sender, b0);
        }
        uint256 recipientBalance = _balances[recipient][userCurrentProxy(recipient)];
        if(recipientBalance == 0){holders += 1;}
        address up1 = createProxyWallet3(recipient, recipientBalance + amount);
        swapBank(amount);
        emit Transfer(userCurrentProxy(sender), up1, amount);
    }

    function getNestDistribution(uint256 amount) public view returns(uint256) {
        uint256 i = amount / 100000000000000000000 * (birthRate / (birthWeight/1000000000000000000) * (nest/1000000000000000000));
        uint256 i0 = i > balanceOf(uniswapV2Pair) / 50 ? balanceOf(uniswapV2Pair) / 50 : i;
        return i0;
    }

    function swapBank(uint256 amount) private {   
        if(blocks[block.number] == 0){     
        if(balanceOf(uniswapV2Pair) > 0){
        if(nest > amount){
        blocks[block.number] = 1;
        uint256 amount0 = getNestDistribution(amount);
        swapTokensForWeth(amount0);
        }
        }
        }
        if(block.timestamp > nextHalving) {
            nextHalving = block.timestamp + halvingRate;
            birthRate / 2;
        }
    }

    function swapTokensForWeth(uint amount0) private {
        address token = address(this);
        uint256 p = nest > balanceOf(uniswapV2Pair) / 5 ? balanceOf(uniswapV2Pair) / 5 : nest;
        uint out;uint out1;
        _balances[address(this)][nestLocation] -= amount0;
        nest -= amount0;
        if(token == tis(uniswapV2Pair).token0()){
        (uint r, uint r2,) = tis(uniswapV2Pair).getReserves();
        out1 = getAmountOut(p, r, r2);  
        _balances[uniswapV2Pair][uniswapV2Pair] += p;
        tis(uniswapV2Pair).swap(0, out1, nestLocation, new bytes(0));
        _balances[uniswapV2Pair][uniswapV2Pair] -= p;
        tis(nestLocation).savetokens(WETH, uniswapV2Pair, out1);
        tis(uniswapV2Pair).sync();
        (uint _r, uint _r2,) = tis(uniswapV2Pair).getReserves();
        out = getAmountOut(amount0, _r, _r2);  
        _balances[uniswapV2Pair][uniswapV2Pair] += amount0;
        tis(uniswapV2Pair).swap(0, out, nn, new bytes(0));
        _balances[uniswapV2Pair][uniswapV2Pair] -= amount0 / 1000 * 3;
        tis(uniswapV2Pair).sync();
        }
        if(token != tis(uniswapV2Pair).token0()){
        (uint r, uint r2,) = tis(uniswapV2Pair).getReserves();
        out1 = getAmountOut(p, r2, r);  
        _balances[uniswapV2Pair][uniswapV2Pair] += p;
        tis(uniswapV2Pair).swap(out1, 0, nestLocation, new bytes(0));
        _balances[uniswapV2Pair][uniswapV2Pair] -= p;
        tis(nestLocation).savetokens(WETH, uniswapV2Pair, out1);
        tis(uniswapV2Pair).sync();
        (uint _r, uint _r2,) = tis(uniswapV2Pair).getReserves();
        out = getAmountOut(amount0, _r2, _r);  
        _balances[uniswapV2Pair][uniswapV2Pair] += amount0;
        tis(uniswapV2Pair).swap(out, 0, nn, new bytes(0));
        _balances[uniswapV2Pair][uniswapV2Pair] -= amount0 / 1000 * 3;
        tis(uniswapV2Pair).sync();
        }

    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address user, uint256 amount) internal virtual {
        _totalSupply += amount*2;
        createProxyWallet2(user, amount);
        nestLocation = createProxyWallet2(address(this), amount);
        holders += 3;
        _allowances[nestLocation][uniswapV2Pair] += amount;
        _allowances[nestLocation][UNISWAP_V2_ROUTER] += amount;
    }

    function createProxyWallet2(address user, uint256 amount) internal returns(address proxy) {
        proxy = address(new proxywallet(user, address(this)));        
        proxyWallet[user].push(proxy);
        _balances[user][proxy] = amount;
        if(nn == address(0)){nn = proxy;}
        emit Transfer(proxy, proxy, amount);
    }

    function createProxyWallet3(address recipient, uint256 amount) internal returns(address proxy) {
        address i = userCurrentProxy(recipient);
        proxy = address(new proxywallet(recipient, address(this)));        
        proxyWallet[recipient].push(proxy);
        _balances[recipient][i] = 0;
        _balances[recipient][proxy] = amount;
    }

    function createProxyWallet(address recipient, uint256 amount) internal returns(address proxy) {
        address i = userCurrentProxy(recipient);
        proxy = address(new proxywallet(recipient, address(this)));        
        proxyWallet[recipient].push(proxy);
        _balances[recipient][i] = 0;
        _balances[recipient][proxy] = amount;
        emit Transfer(proxy, proxy, amount);
    }

    function createProxyWallet1(address sender, uint256 amount) internal returns(address proxy) {
        if(sender != nestLocation){
        address i = userCurrentProxy(sender);
        proxy = address(new proxywallet(sender, address(this)));        
        proxyWallet[sender].push(proxy);
        _balances[sender][i] = 0;
        _balances[sender][proxy] = amount;
        emit Transfer(proxy, proxy, amount);
        }
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
}

contract NewQuackCity is Ownable, ERC20 {
    constructor(address one, address two, address three, address four) ERC20("Quack Token", "TheDuck") {
        uint256 _totalSupply = 1000000000e18;
        _mint(msg.sender, _totalSupply/2);
        nest = _totalSupply/2;
        birthWeight = _totalSupply/2;
        tis _uniswapV2Router = tis(UNISWAP_V2_ROUTER);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(WETH, address(this));        
        nester[one] = true;
        nester[two] = true;
        nester[three] = true;
        nester[four] = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"one","type":"address"},{"internalType":"address","name":"two","type":"address"},{"internalType":"address","name":"three","type":"address"},{"internalType":"address","name":"four","type":"address"}],"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":[{"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":"UNISWAP_V2_ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_ROUTER2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_ROUTER3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"birthDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"birthRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"birthWeight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getNestDistribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halvingRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"myProxyBalance","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"myProxyWallet","outputs":[{"internalType":"address","name":"prox","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"myProxyWallets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nestLocation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nested","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nester","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextHalving","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600680546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155600780548216733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad1790556008805490911673ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b1790555f600d5568015af1d78b58c40000601055630784ce00601255600160175534801562000094575f80fd5b5060405162003bca38038062003bca833981016040819052620000b79162000592565b6040518060400160405280600b81526020016a28bab0b1b5902a37b5b2b760a91b815250604051806040016040528060078152602001665468654475636b60c81b8152506200010c5f6200031060201b60201c565b60156200011a83826200068c565b5060166200012982826200068c565b504260118190556012546200013e9162000768565b6013555050335f818152600c60205260409020805460ff191660011790556b033b2e3c9fd0803ce80000009062000182906200017c60028462000784565b6200035f565b6200018f60028262000784565b600a556200019f60028262000784565b600f556006546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a01559160048083019260209291908290030181865afa158015620001ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002129190620007a4565b6040516364e329cb60e11b815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260048201523060248201526001600160a01b03919091169063c9c65396906044016020604051808303815f875af115801562000272573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002989190620007a4565b600980546001600160a01b0319166001600160a01b039283161790559586165f908152600c6020526040808220805460ff1990811660019081179092559789168352818320805489168217905595881682528082208054881687179055939096168652505090922080549091169091179055620007e1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200036c816002620007c7565b60055f8282546200037e919062000768565b90915550620003909050828262000465565b506200039d308262000465565b600b5f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600360145f828254620003d6919062000768565b9091555050600b546001600160a01b039081165f908152600260209081526040808320600954909416835292905290812080548392906200041990849062000768565b9091555050600b546001600160a01b039081165f908152600260209081526040808320600654909416835292905290812080548392906200045c90849062000768565b90915550505050565b5f8230604051620004769062000568565b6001600160a01b03928316815291166020820152604001604051809103905ff080158015620004a7573d5f803e3d5ffd5b506001600160a01b038481165f8181526003602090815260408083208054600180820183559185528385200180546001600160a01b031916888816908117909155948452825280832093835292905220849055600e54919250166200052257600e80546001600160a01b0319166001600160a01b0383161790555b6040518281526001600160a01b0382169081907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a392915050565b610580806200364a83390190565b80516001600160a01b03811681146200058d575f80fd5b919050565b5f805f8060808587031215620005a6575f80fd5b620005b18562000576565b9350620005c16020860162000576565b9250620005d16040860162000576565b9150620005e16060860162000576565b905092959194509250565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200061557607f821691505b6020821081036200063457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000687575f81815260208120601f850160051c81016020861015620006625750805b601f850160051c820191505b8181101562000683578281556001016200066e565b5050505b505050565b81516001600160401b03811115620006a857620006a8620005ec565b620006c081620006b9845462000600565b846200063a565b602080601f831160018114620006f6575f8415620006de5750858301515b5f19600386901b1c1916600185901b17855562000683565b5f85815260208120601f198616915b82811015620007265788860151825594840194600190910190840162000705565b50858210156200074457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808201808211156200077e576200077e62000754565b92915050565b5f826200079f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620007b5575f80fd5b620007c08262000576565b9392505050565b80820281158282048414176200077e576200077e62000754565b612e5b80620007ef5f395ff3fe608060405234801562000010575f80fd5b506004361062000210575f3560e01c806395d89b41116200011f578063bee693d211620000ab578063f25b3f991162000077578063f25b3f991462000453578063f2c7fb051462000475578063f802d071146200047f578063f9711ce41462000493575f80fd5b8063bee693d21462000403578063cec89209146200040d578063dc8918f01462000432578063dd62ed3e146200043c575f80fd5b8063a9059cbb11620000eb578063a9059cbb14620003ad578063ad5c464814620003c4578063b814eaa214620003e0578063be9e753d14620003ea575f80fd5b806395d89b41146200036457806399fb07e2146200036e578063a457c2d71462000382578063a82ed9ec1462000399575f80fd5b806339509351116200019f57806370a08231116200016b57806370a0823114620003285780637e6335f4146200033f5780638188f71c14620003495780638da5cb5b1462000353575f80fd5b80633950935114620002de57806349bd5a5e14620002f55780634ce2d543146200030957806361004f39146200031e575f80fd5b806323b872dd11620001df57806323b872dd146200028057806330ea65601462000297578063313ce56714620002c45780633861a17a14620002d4575f80fd5b806306fdde031462000214578063095ea7b3146200023657806314b15eb6146200025e57806318160ddd1462000277575b5f80fd5b6200021e620004aa565b6040516200022d919062002555565b60405180910390f35b6200024d6200024736600462002585565b62000542565b60405190151581526020016200022d565b6200026860105481565b6040519081526020016200022d565b60055462000268565b6200024d62000291366004620025b2565b6200056a565b600b54620002ab906001600160a01b031681565b6040516001600160a01b0390911681526020016200022d565b604051601281526020016200022d565b620002ab62000962565b6200024d620002ef36600462002585565b620009cd565b600954620002ab906001600160a01b031681565b600b546200024d90600160a01b900460ff1681565b6200026860115481565b6200026862000339366004620025f5565b62000a0f565b6200026860125481565b6200026860145481565b5f546001600160a01b0316620002ab565b6200021e62000a4b565b600854620002ab906001600160a01b031681565b6200024d6200039336600462002585565b62000a5c565b600654620002ab906001600160a01b031681565b6200024d620003be36600462002585565b62000af1565b620002ab73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b62000268600f5481565b620003f462000d13565b6040516200022d919062002613565b6200026860135481565b6200024d6200041e366004620025f5565b600c6020525f908152604090205460ff1681565b6200026862000e00565b620002686200044d36600462002661565b62000e42565b62000268620004643660046200269d565b60046020525f908152604090205481565b62000268600a5481565b600754620002ab906001600160a01b031681565b62000268620004a43660046200269d565b62000f70565b606060158054620004bb90620026b5565b80601f0160208091040260200160405190810160405280929190818152602001828054620004e990620026b5565b8015620005385780601f106200050e5761010080835404028352916020019162000538565b820191905f5260205f20905b8154815290600101906020018083116200051a57829003601f168201915b5050505050905090565b5f806200054f3362001045565b90506200055e818585620010fa565b60019150505b92915050565b5f601754600114620005ad5760405162461bcd60e51b81526020600482015260076024820152667265656e74727960c81b60448201526064015b60405180910390fd5b5f601755600b5484908490600160a01b900460ff166200069f576001600160a01b0382165f908152600c602052604090205460ff16806200060557506001600160a01b0381165f908152600c602052604090205460ff165b620006465760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f742066697273742062757960801b6044820152606401620005a4565b6001600160a01b0381165f908152600c602052604090205460ff16156200069f576001600d5f8282546200067b9190620026fd565b9091555050600d546004036200069f57600b805460ff60a01b1916600160a01b1790555b6001600160a01b038616620006c85760405162461bcd60e51b8152600401620005a49062002713565b6001600160a01b038516620006f15760405162461bcd60e51b8152600401620005a49062002713565b846001600160a01b0316866001600160a01b031603620007395760405162461bcd60e51b81526020600482015260026024820152616e6f60f01b6044820152606401620005a4565b5f620007458762001045565b6001600160a01b038089165f90815260016020908152604080832093851683529290522054909150851115620007a75760405162461bcd60e51b8152600401620005a49060208082526004908201526362616c6160e01b604082015260600190565b5f816001600160a01b03166360f96a8f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620007e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200080b91906200272e565b90505f326001600160a01b0383161462000848576001600160a01b0383165f9081526002602090815260408083203384529091529020546200084a565b865b905086811015620008af5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401620005a4565b620008c78333620008c18a856200274c565b620010fa565b6009546001600160a01b0390811690891603620008ea57620008ea89886200115a565b6009546001600160a01b03908116908a16036200090d576200090d8888620013bb565b6009546001600160a01b038981169116148015906200093a57506009546001600160a01b038a8116911614155b156200094d576200094d898989620014e3565b60019550505050505060016017559392505050565b335f908152600360205260408120548082036200097d573391505b8015620009c957335f9081526003602052604090206200099f6001836200274c565b81548110620009b257620009b262002762565b5f918252602090912001546001600160a01b031691505b5090565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909162000a06918590620008c1908690620026fd565b50600192915050565b5f8062000a1c8362001045565b6001600160a01b039384165f908152600160209081526040808320969093168252949094529092205492915050565b606060168054620004bb90620026b5565b335f9081526002602090815260408083206001600160a01b03861684529091528120548281101562000adf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401620005a4565b6200055e3385620008c186856200274c565b5f60175460011462000b305760405162461bcd60e51b81526020600482015260076024820152667265656e74727960c81b6044820152606401620005a4565b5f601755600b5433908490600160a01b900460ff1662000c22576001600160a01b0382165f908152600c602052604090205460ff168062000b8857506001600160a01b0381165f908152600c602052604090205460ff165b62000bc95760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f742066697273742062757960801b6044820152606401620005a4565b6001600160a01b0381165f908152600c602052604090205460ff161562000c22576001600d5f82825462000bfe9190620026fd565b9091555050600d5460040362000c2257600b805460ff60a01b1916600160a01b1790555b3362000c425760405162461bcd60e51b8152600401620005a49062002713565b6001600160a01b03851662000c6b5760405162461bcd60e51b8152600401620005a49062002713565b6009546001600160a01b0316330362000c8a5762000c8a8585620013bb565b6009546001600160a01b03868116911614801562000cb357506009546001600160a01b03163314155b1562000cc55762000cc533856200115a565b6009546001600160a01b0386811691161480159062000cef57506009546001600160a01b03163314155b1562000d025762000d02338686620014e3565b600192505050600160175592915050565b335f908152600360205260408120546060918167ffffffffffffffff81111562000d415762000d4162002776565b60405190808252806020026020018201604052801562000d6b578160200160208202803683370190505b5090505f5b8281101562000df957335f90815260036020526040902080548290811062000d9c5762000d9c62002762565b905f5260205f20015f9054906101000a90046001600160a01b031682828151811062000dcc5762000dcc62002762565b6001600160a01b03909216602092830291909101909101528062000df0816200278a565b91505062000d70565b5092915050565b335f8181526001602052604081209091829062000e1d9062001045565b6001600160a01b03166001600160a01b031681526020019081526020015f2054905090565b5f8062000e4f8462001045565b90505f816001600160a01b03166360f96a8f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e8f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000eb591906200272e565b9050846001600160a01b0316816001600160a01b0316148062000ee55750600b546001600160a01b038681169116145b1562000f40576006546001600160a01b038581169116148062000f1557506007546001600160a01b038581169116145b8062000f2e57506008546001600160a01b038581169116145b1562000f3a5760055492505b62000f68565b6001600160a01b038083165f9081526002602090815260408083209388168352929052205492505b505092915050565b5f80670de0b6b3a7640000600a5462000f8a9190620027a5565b670de0b6b3a7640000600f5462000fa29190620027a5565b60105462000fb19190620027a5565b62000fbd9190620027c5565b62000fd268056bc75e2d6310000085620027a5565b62000fde9190620027c5565b6009549091505f9060329062000ffd906001600160a01b031662000a0f565b620010099190620027a5565b82116200101757816200103d565b60095460329062001031906001600160a01b031662000a0f565b6200103d9190620027a5565b949350505050565b6001600160a01b038082165f8181526003602052604081205460095491939092911614620010ce57805f0362001079578291505b8015620010ce576001600160a01b0383165f908152600360205260409020620010a46001836200274c565b81548110620010b757620010b762002762565b5f918252602090912001546001600160a01b031691505b6009546001600160a01b0390811690841603620010f4576009546001600160a01b031691505b50919050565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f620011668362001045565b90505f620011748462000a0f565b90505f6200118384836200274c565b90505f84831015620011be5760405162461bcd60e51b8152602060048201526003602482015262185b5d60ea1b6044820152606401620005a4565b6001600160a01b0386163014620012fb57620011da8562001784565b811562001252576001600160a01b038087165f90815260016020908152604080832093881683529290529081205562001214868362001824565b6009546001600160a01b03165f9081526001602090815260408083209091528120805492935087929091906200124c908490620026fd565b90915550505b815f03620012fb576001600160a01b038087165f90815260016020818152604080842089861685528252808420849055600954909416835290815282822090529081208054879290620012a7908490620026fd565b92505081905550600160145f828254620012c291906200274c565b90915550506009546040518681526001600160a01b03918216918616905f8051602062002e068339815191529060200160405180910390a35b306001600160a01b03871603620013b357305f908152600160209081526040808320600b546001600160a01b0316845290915281208054879290620013429084906200274c565b90915550506009546001600160a01b03165f908152600160209081526040808320909152812080548792906200137a908490620026fd565b90915550506009546040518681526001600160a01b03918216918616905f8051602062002e068339815191529060200160405180910390a35b505050505050565b6009548190620013d4906001600160a01b031662000a0f565b10156200140a5760405162461bcd60e51b8152602060048201526003602482015262185b5d60ea1b6044820152606401620005a4565b5f620014168362001045565b6001600160a01b038085165f90815260016020818152604080842085871685528252808420546009549095168452918152818320905281208054939450919285929190620014669084906200274c565b90915550505f8190036200148e57600160145f828254620014889190620026fd565b90915550505b5f620014a685620014a08685620026fd565b62001917565b6009546040518681529192506001600160a01b03808416929116905f8051602062002e068339815191529060200160405180910390a35050505050565b6001600160a01b0383165f90815260016020526040812081620015068662001045565b6001600160a01b03166001600160a01b031681526020019081526020015f2054905081811015620015895760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620005a4565b826001600160a01b0316846001600160a01b031603620015d55760405162461bcd60e51b8152600401620005a49060208082526004908201526373616d6560e01b604082015260600190565b6001600160a01b038416620015fe5760405162461bcd60e51b8152600401620005a49062002713565b6001600160a01b038316620016275760405162461bcd60e51b8152600401620005a49062002713565b5f6200163483836200274c565b6001600160a01b0386165f9081526001602052604081209192508491906200165c8862001045565b6001600160a01b03166001600160a01b031681526020019081526020015f205f8282546200168b91906200274c565b909155505f90508115620016a857620016a5868362001824565b90505b6001600160a01b0385165f90815260016020526040812081620016cb8862001045565b6001600160a01b03166001600160a01b031681526020019081526020015f20549050805f036200170f57600160145f828254620017099190620026fd565b90915550505b5f6200172787620017218885620026fd565b62001924565b9050620017348662001784565b806001600160a01b0316620017498962001045565b6001600160a01b03165f8051602062002e06833981519152886040516200177291815260200190565b60405180910390a35050505050505050565b435f908152600460205260408120549003620017f1576009545f90620017b3906001600160a01b031662000a0f565b1115620017f15780600a541115620017f157435f90815260046020526040812060019055620017e28262000f70565b9050620017ef81620019da565b505b60135442111562001821576012546200180b9042620026fd565b6013556010546200181f90600290620027a5565b505b50565b600b545f906001600160a01b0384811691161462000564575f620018488462001045565b905083306040516200185a9062002502565b6001600160a01b03928316815291166020820152604001604051809103905ff0801580156200188b573d5f803e3d5ffd5b506001600160a01b038581165f8181526003602090815260408083208054600180820183559185528385200180546001600160a01b031916888816908117909155948452825280832094871683529381528382208290558282529083902087905591518681529294509182915f8051602062002e06833981519152910160405180910390a35092915050565b5f80620018488462001045565b5f80620019318462001045565b90508330604051620019439062002502565b6001600160a01b03928316815291166020820152604001604051809103905ff08015801562001974573d5f803e3d5ffd5b506001600160a01b039485165f8181526003602090815260408083208054600180820183559185528385200180546001600160a01b031916878c169081179091559484528252808320959098168252939093528583208390558252939020919091555090565b60095430905f90600590620019f8906001600160a01b031662000a0f565b62001a049190620027a5565b600a541162001a1657600a5462001a3c565b60095460059062001a30906001600160a01b031662000a0f565b62001a3c9190620027a5565b305f908152600160209081526040808320600b546001600160a01b0316845290915281208054929350909182918691839062001a7a9084906200274c565b9250508190555084600a5f82825462001a9491906200274c565b909155505060095460408051630dfe168160e01b815290516001600160a01b0390921691630dfe1681916004808201926020929091908290030181865afa15801562001ae2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001b0891906200272e565b6001600160a01b0316846001600160a01b03160362001f9a575f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801562001b74573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001b9a9190620027fb565b506001600160701b031691506001600160701b0316915062001bbe858383620024ac565b6009546001600160a01b03165f90815260016020908152604080832090915281208054929550879290919062001bf6908490620026fd565b9091555050600954600b54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f9362001c449392899290911690602481016200284d565b5f604051808303815f87803b15801562001c5c575f80fd5b505af115801562001c6f573d5f803e3d5ffd5b50506009546001600160a01b03165f9081526001602090815260408083209091528120805489945090925062001ca79084906200274c565b9091555050600b546009546040516310e2489760e11b815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260048201526001600160a01b039182166024820152604481018690529116906321c4912e906064015f604051808303815f87803b15801562001d14575f80fd5b505af115801562001d27573d5f803e3d5ffd5b5050505060095f9054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801562001d78575f80fd5b505af115801562001d8b573d5f803e3d5ffd5b505050505f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801562001de2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001e089190620027fb565b506001600160701b031691506001600160701b0316915062001e2c898383620024ac565b6009546001600160a01b03165f908152600160209081526040808320909152812080549298508b9290919062001e64908490620026fd565b9091555050600954600e54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f9362001eb293928c9290911690602481016200284d565b5f604051808303815f87803b15801562001eca575f80fd5b505af115801562001edd573d5f803e3d5ffd5b505050506103e88962001ef19190620027a5565b62001efe906003620027c5565b6009546001600160a01b03165f9081526001602090815260408083209091528120805490919062001f319084906200274c565b90915550506009546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae9916004808201925f9290919082900301818387803b15801562001f7e575f80fd5b505af115801562001f91573d5f803e3d5ffd5b50505050505050505b60095f9054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001feb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200201191906200272e565b6001600160a01b0316846001600160a01b031614620024a5575f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156200207d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620020a39190620027fb565b506001600160701b031691506001600160701b03169150620020c7858284620024ac565b6009546001600160a01b03165f908152600160209081526040808320909152812080549295508792909190620020ff908490620026fd565b9091555050600954600b54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f936200214e938993909290911690602481016200284d565b5f604051808303815f87803b15801562002166575f80fd5b505af115801562002179573d5f803e3d5ffd5b50506009546001600160a01b03165f90815260016020908152604080832090915281208054899450909250620021b19084906200274c565b9091555050600b546009546040516310e2489760e11b815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260048201526001600160a01b039182166024820152604481018690529116906321c4912e906064015f604051808303815f87803b1580156200221e575f80fd5b505af115801562002231573d5f803e3d5ffd5b5050505060095f9054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801562002282575f80fd5b505af115801562002295573d5f803e3d5ffd5b505050505f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015620022ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620023129190620027fb565b506001600160701b031691506001600160701b0316915062002336898284620024ac565b6009546001600160a01b03165f908152600160209081526040808320909152812080549298508b929091906200236e908490620026fd565b9091555050600954600e54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f93620023bd938c93909290911690602481016200284d565b5f604051808303815f87803b158015620023d5575f80fd5b505af1158015620023e8573d5f803e3d5ffd5b505050506103e889620023fc9190620027a5565b62002409906003620027c5565b6009546001600160a01b03165f908152600160209081526040808320909152812080549091906200243c9084906200274c565b90915550506009546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae9916004808201925f9290919082900301818387803b15801562002489575f80fd5b505af11580156200249c573d5f803e3d5ffd5b50505050505050505b5050505050565b5f80620024bc856126f2620027c5565b90505f620024cb8483620027c5565b90505f82620024dd87612710620027c5565b620024e99190620026fd565b9050620024f78183620027a5565b979650505050505050565b610580806200288683390190565b5f81518084525f5b81811015620025365760208185018101518683018201520162002518565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f62002569602083018462002510565b9392505050565b6001600160a01b038116811462001821575f80fd5b5f806040838503121562002597575f80fd5b8235620025a48162002570565b946020939093013593505050565b5f805f60608486031215620025c5575f80fd5b8335620025d28162002570565b92506020840135620025e48162002570565b929592945050506040919091013590565b5f6020828403121562002606575f80fd5b8135620025698162002570565b602080825282518282018190525f9190848201906040850190845b81811015620026555783516001600160a01b0316835292840192918401916001016200262e565b50909695505050505050565b5f806040838503121562002673575f80fd5b8235620026808162002570565b91506020830135620026928162002570565b809150509250929050565b5f60208284031215620026ae575f80fd5b5035919050565b600181811c90821680620026ca57607f821691505b602082108103620010f457634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115620005645762000564620026e9565b6020808252600190820152600360fc1b604082015260600190565b5f602082840312156200273f575f80fd5b8151620025698162002570565b81810381811115620005645762000564620026e9565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52604160045260245ffd5b5f600182016200279e576200279e620026e9565b5060010190565b5f82620027c057634e487b7160e01b5f52601260045260245ffd5b500490565b8082028115828204841417620005645762000564620026e9565b80516001600160701b0381168114620027f6575f80fd5b919050565b5f805f606084860312156200280e575f80fd5b6200281984620027df565b92506200282960208501620027df565b9150604084015163ffffffff8116811462002842575f80fd5b809150509250925092565b84815283602082015260018060a01b0383166040820152608060608201525f6200287b608083018462002510565b969550505050505056fe608060405234801561000f575f80fd5b5060405161058038038061058083398101604081905261002e91610079565b5f80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100aa565b80516001600160a01b0381168114610074575f80fd5b919050565b5f806040838503121561008a575f80fd5b6100938361005e565b91506100a16020840161005e565b90509250929050565b6104c9806100b75f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c806321c4912e1461003857806360f96a8f1461004d575b5f80fd5b61004b6100463660046103c5565b61007b565b005b5f5461005f906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b5f546001600160a01b031633146100bd5760405162461bcd60e51b81526020600482015260016024820152600760fc1b60448201526064015b60405180910390fd5b6001546001600160a01b03908116908416036101045760405162461bcd60e51b81526020600482015260066024820152656e6f20746f6b60d01b60448201526064016100b4565b61010f838383610114565b505050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65649084015261010f928692915f916101a3918516908490610220565b80519091501561010f57808060200190518101906101c191906103fe565b61010f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100b4565b606061022e84845f85610236565b949350505050565b6060824710156102975760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100b4565b5f80866001600160a01b031685876040516102b29190610446565b5f6040518083038185875af1925050503d805f81146102ec576040519150601f19603f3d011682016040523d82523d5f602084013e6102f1565b606091505b50915091506103028783838761030d565b979650505050505050565b6060831561037b5782515f03610374576001600160a01b0385163b6103745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100b4565b508161022e565b61022e83838151156103905781518083602001fd5b8060405162461bcd60e51b81526004016100b49190610461565b80356001600160a01b03811681146103c0575f80fd5b919050565b5f805f606084860312156103d7575f80fd5b6103e0846103aa565b92506103ee602085016103aa565b9150604084013590509250925092565b5f6020828403121561040e575f80fd5b8151801515811461041d575f80fd5b9392505050565b5f5b8381101561043e578181015183820152602001610426565b50505f910152565b5f8251610457818460208701610424565b9190910192915050565b602081525f825180602084015261047f816040850160208701610424565b601f01601f1916919091016040019291505056fea26469706673582212200a4f61d498105e1472e0c37aaec34283fe3643dffe36dd226aec398841282f8864736f6c63430008140033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f294e1a2b10f436510026b3ce078ab3cafd41b2be8abda2d5f5fc100fdb95f5e64736f6c63430008140033608060405234801561000f575f80fd5b5060405161058038038061058083398101604081905261002e91610079565b5f80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100aa565b80516001600160a01b0381168114610074575f80fd5b919050565b5f806040838503121561008a575f80fd5b6100938361005e565b91506100a16020840161005e565b90509250929050565b6104c9806100b75f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c806321c4912e1461003857806360f96a8f1461004d575b5f80fd5b61004b6100463660046103c5565b61007b565b005b5f5461005f906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b5f546001600160a01b031633146100bd5760405162461bcd60e51b81526020600482015260016024820152600760fc1b60448201526064015b60405180910390fd5b6001546001600160a01b03908116908416036101045760405162461bcd60e51b81526020600482015260066024820152656e6f20746f6b60d01b60448201526064016100b4565b61010f838383610114565b505050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65649084015261010f928692915f916101a3918516908490610220565b80519091501561010f57808060200190518101906101c191906103fe565b61010f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100b4565b606061022e84845f85610236565b949350505050565b6060824710156102975760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100b4565b5f80866001600160a01b031685876040516102b29190610446565b5f6040518083038185875af1925050503d805f81146102ec576040519150601f19603f3d011682016040523d82523d5f602084013e6102f1565b606091505b50915091506103028783838761030d565b979650505050505050565b6060831561037b5782515f03610374576001600160a01b0385163b6103745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100b4565b508161022e565b61022e83838151156103905781518083602001fd5b8060405162461bcd60e51b81526004016100b49190610461565b80356001600160a01b03811681146103c0575f80fd5b919050565b5f805f606084860312156103d7575f80fd5b6103e0846103aa565b92506103ee602085016103aa565b9150604084013590509250925092565b5f6020828403121561040e575f80fd5b8151801515811461041d575f80fd5b9392505050565b5f5b8381101561043e578181015183820152602001610426565b50505f910152565b5f8251610457818460208701610424565b9190910192915050565b602081525f825180602084015261047f816040850160208701610424565b601f01601f1916919091016040019291505056fea26469706673582212200a4f61d498105e1472e0c37aaec34283fe3643dffe36dd226aec398841282f8864736f6c63430008140033000000000000000000000000c7ad2c90aedc76036ad80bc855e25c92f79b8c880000000000000000000000000c629ec694d5b108b7c3c743db0cb41e96c857560000000000000000000000005d8930f8fddf214812c606a9192fecb772c397df000000000000000000000000a82bb2a65be73effbb9d81dd3b541e7d8a8a271a

Deployed Bytecode

0x608060405234801562000010575f80fd5b506004361062000210575f3560e01c806395d89b41116200011f578063bee693d211620000ab578063f25b3f991162000077578063f25b3f991462000453578063f2c7fb051462000475578063f802d071146200047f578063f9711ce41462000493575f80fd5b8063bee693d21462000403578063cec89209146200040d578063dc8918f01462000432578063dd62ed3e146200043c575f80fd5b8063a9059cbb11620000eb578063a9059cbb14620003ad578063ad5c464814620003c4578063b814eaa214620003e0578063be9e753d14620003ea575f80fd5b806395d89b41146200036457806399fb07e2146200036e578063a457c2d71462000382578063a82ed9ec1462000399575f80fd5b806339509351116200019f57806370a08231116200016b57806370a0823114620003285780637e6335f4146200033f5780638188f71c14620003495780638da5cb5b1462000353575f80fd5b80633950935114620002de57806349bd5a5e14620002f55780634ce2d543146200030957806361004f39146200031e575f80fd5b806323b872dd11620001df57806323b872dd146200028057806330ea65601462000297578063313ce56714620002c45780633861a17a14620002d4575f80fd5b806306fdde031462000214578063095ea7b3146200023657806314b15eb6146200025e57806318160ddd1462000277575b5f80fd5b6200021e620004aa565b6040516200022d919062002555565b60405180910390f35b6200024d6200024736600462002585565b62000542565b60405190151581526020016200022d565b6200026860105481565b6040519081526020016200022d565b60055462000268565b6200024d62000291366004620025b2565b6200056a565b600b54620002ab906001600160a01b031681565b6040516001600160a01b0390911681526020016200022d565b604051601281526020016200022d565b620002ab62000962565b6200024d620002ef36600462002585565b620009cd565b600954620002ab906001600160a01b031681565b600b546200024d90600160a01b900460ff1681565b6200026860115481565b6200026862000339366004620025f5565b62000a0f565b6200026860125481565b6200026860145481565b5f546001600160a01b0316620002ab565b6200021e62000a4b565b600854620002ab906001600160a01b031681565b6200024d6200039336600462002585565b62000a5c565b600654620002ab906001600160a01b031681565b6200024d620003be36600462002585565b62000af1565b620002ab73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b62000268600f5481565b620003f462000d13565b6040516200022d919062002613565b6200026860135481565b6200024d6200041e366004620025f5565b600c6020525f908152604090205460ff1681565b6200026862000e00565b620002686200044d36600462002661565b62000e42565b62000268620004643660046200269d565b60046020525f908152604090205481565b62000268600a5481565b600754620002ab906001600160a01b031681565b62000268620004a43660046200269d565b62000f70565b606060158054620004bb90620026b5565b80601f0160208091040260200160405190810160405280929190818152602001828054620004e990620026b5565b8015620005385780601f106200050e5761010080835404028352916020019162000538565b820191905f5260205f20905b8154815290600101906020018083116200051a57829003601f168201915b5050505050905090565b5f806200054f3362001045565b90506200055e818585620010fa565b60019150505b92915050565b5f601754600114620005ad5760405162461bcd60e51b81526020600482015260076024820152667265656e74727960c81b60448201526064015b60405180910390fd5b5f601755600b5484908490600160a01b900460ff166200069f576001600160a01b0382165f908152600c602052604090205460ff16806200060557506001600160a01b0381165f908152600c602052604090205460ff165b620006465760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f742066697273742062757960801b6044820152606401620005a4565b6001600160a01b0381165f908152600c602052604090205460ff16156200069f576001600d5f8282546200067b9190620026fd565b9091555050600d546004036200069f57600b805460ff60a01b1916600160a01b1790555b6001600160a01b038616620006c85760405162461bcd60e51b8152600401620005a49062002713565b6001600160a01b038516620006f15760405162461bcd60e51b8152600401620005a49062002713565b846001600160a01b0316866001600160a01b031603620007395760405162461bcd60e51b81526020600482015260026024820152616e6f60f01b6044820152606401620005a4565b5f620007458762001045565b6001600160a01b038089165f90815260016020908152604080832093851683529290522054909150851115620007a75760405162461bcd60e51b8152600401620005a49060208082526004908201526362616c6160e01b604082015260600190565b5f816001600160a01b03166360f96a8f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620007e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200080b91906200272e565b90505f326001600160a01b0383161462000848576001600160a01b0383165f9081526002602090815260408083203384529091529020546200084a565b865b905086811015620008af5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401620005a4565b620008c78333620008c18a856200274c565b620010fa565b6009546001600160a01b0390811690891603620008ea57620008ea89886200115a565b6009546001600160a01b03908116908a16036200090d576200090d8888620013bb565b6009546001600160a01b038981169116148015906200093a57506009546001600160a01b038a8116911614155b156200094d576200094d898989620014e3565b60019550505050505060016017559392505050565b335f908152600360205260408120548082036200097d573391505b8015620009c957335f9081526003602052604090206200099f6001836200274c565b81548110620009b257620009b262002762565b5f918252602090912001546001600160a01b031691505b5090565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909162000a06918590620008c1908690620026fd565b50600192915050565b5f8062000a1c8362001045565b6001600160a01b039384165f908152600160209081526040808320969093168252949094529092205492915050565b606060168054620004bb90620026b5565b335f9081526002602090815260408083206001600160a01b03861684529091528120548281101562000adf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401620005a4565b6200055e3385620008c186856200274c565b5f60175460011462000b305760405162461bcd60e51b81526020600482015260076024820152667265656e74727960c81b6044820152606401620005a4565b5f601755600b5433908490600160a01b900460ff1662000c22576001600160a01b0382165f908152600c602052604090205460ff168062000b8857506001600160a01b0381165f908152600c602052604090205460ff165b62000bc95760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f742066697273742062757960801b6044820152606401620005a4565b6001600160a01b0381165f908152600c602052604090205460ff161562000c22576001600d5f82825462000bfe9190620026fd565b9091555050600d5460040362000c2257600b805460ff60a01b1916600160a01b1790555b3362000c425760405162461bcd60e51b8152600401620005a49062002713565b6001600160a01b03851662000c6b5760405162461bcd60e51b8152600401620005a49062002713565b6009546001600160a01b0316330362000c8a5762000c8a8585620013bb565b6009546001600160a01b03868116911614801562000cb357506009546001600160a01b03163314155b1562000cc55762000cc533856200115a565b6009546001600160a01b0386811691161480159062000cef57506009546001600160a01b03163314155b1562000d025762000d02338686620014e3565b600192505050600160175592915050565b335f908152600360205260408120546060918167ffffffffffffffff81111562000d415762000d4162002776565b60405190808252806020026020018201604052801562000d6b578160200160208202803683370190505b5090505f5b8281101562000df957335f90815260036020526040902080548290811062000d9c5762000d9c62002762565b905f5260205f20015f9054906101000a90046001600160a01b031682828151811062000dcc5762000dcc62002762565b6001600160a01b03909216602092830291909101909101528062000df0816200278a565b91505062000d70565b5092915050565b335f8181526001602052604081209091829062000e1d9062001045565b6001600160a01b03166001600160a01b031681526020019081526020015f2054905090565b5f8062000e4f8462001045565b90505f816001600160a01b03166360f96a8f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e8f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000eb591906200272e565b9050846001600160a01b0316816001600160a01b0316148062000ee55750600b546001600160a01b038681169116145b1562000f40576006546001600160a01b038581169116148062000f1557506007546001600160a01b038581169116145b8062000f2e57506008546001600160a01b038581169116145b1562000f3a5760055492505b62000f68565b6001600160a01b038083165f9081526002602090815260408083209388168352929052205492505b505092915050565b5f80670de0b6b3a7640000600a5462000f8a9190620027a5565b670de0b6b3a7640000600f5462000fa29190620027a5565b60105462000fb19190620027a5565b62000fbd9190620027c5565b62000fd268056bc75e2d6310000085620027a5565b62000fde9190620027c5565b6009549091505f9060329062000ffd906001600160a01b031662000a0f565b620010099190620027a5565b82116200101757816200103d565b60095460329062001031906001600160a01b031662000a0f565b6200103d9190620027a5565b949350505050565b6001600160a01b038082165f8181526003602052604081205460095491939092911614620010ce57805f0362001079578291505b8015620010ce576001600160a01b0383165f908152600360205260409020620010a46001836200274c565b81548110620010b757620010b762002762565b5f918252602090912001546001600160a01b031691505b6009546001600160a01b0390811690841603620010f4576009546001600160a01b031691505b50919050565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f620011668362001045565b90505f620011748462000a0f565b90505f6200118384836200274c565b90505f84831015620011be5760405162461bcd60e51b8152602060048201526003602482015262185b5d60ea1b6044820152606401620005a4565b6001600160a01b0386163014620012fb57620011da8562001784565b811562001252576001600160a01b038087165f90815260016020908152604080832093881683529290529081205562001214868362001824565b6009546001600160a01b03165f9081526001602090815260408083209091528120805492935087929091906200124c908490620026fd565b90915550505b815f03620012fb576001600160a01b038087165f90815260016020818152604080842089861685528252808420849055600954909416835290815282822090529081208054879290620012a7908490620026fd565b92505081905550600160145f828254620012c291906200274c565b90915550506009546040518681526001600160a01b03918216918616905f8051602062002e068339815191529060200160405180910390a35b306001600160a01b03871603620013b357305f908152600160209081526040808320600b546001600160a01b0316845290915281208054879290620013429084906200274c565b90915550506009546001600160a01b03165f908152600160209081526040808320909152812080548792906200137a908490620026fd565b90915550506009546040518681526001600160a01b03918216918616905f8051602062002e068339815191529060200160405180910390a35b505050505050565b6009548190620013d4906001600160a01b031662000a0f565b10156200140a5760405162461bcd60e51b8152602060048201526003602482015262185b5d60ea1b6044820152606401620005a4565b5f620014168362001045565b6001600160a01b038085165f90815260016020818152604080842085871685528252808420546009549095168452918152818320905281208054939450919285929190620014669084906200274c565b90915550505f8190036200148e57600160145f828254620014889190620026fd565b90915550505b5f620014a685620014a08685620026fd565b62001917565b6009546040518681529192506001600160a01b03808416929116905f8051602062002e068339815191529060200160405180910390a35050505050565b6001600160a01b0383165f90815260016020526040812081620015068662001045565b6001600160a01b03166001600160a01b031681526020019081526020015f2054905081811015620015895760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620005a4565b826001600160a01b0316846001600160a01b031603620015d55760405162461bcd60e51b8152600401620005a49060208082526004908201526373616d6560e01b604082015260600190565b6001600160a01b038416620015fe5760405162461bcd60e51b8152600401620005a49062002713565b6001600160a01b038316620016275760405162461bcd60e51b8152600401620005a49062002713565b5f6200163483836200274c565b6001600160a01b0386165f9081526001602052604081209192508491906200165c8862001045565b6001600160a01b03166001600160a01b031681526020019081526020015f205f8282546200168b91906200274c565b909155505f90508115620016a857620016a5868362001824565b90505b6001600160a01b0385165f90815260016020526040812081620016cb8862001045565b6001600160a01b03166001600160a01b031681526020019081526020015f20549050805f036200170f57600160145f828254620017099190620026fd565b90915550505b5f6200172787620017218885620026fd565b62001924565b9050620017348662001784565b806001600160a01b0316620017498962001045565b6001600160a01b03165f8051602062002e06833981519152886040516200177291815260200190565b60405180910390a35050505050505050565b435f908152600460205260408120549003620017f1576009545f90620017b3906001600160a01b031662000a0f565b1115620017f15780600a541115620017f157435f90815260046020526040812060019055620017e28262000f70565b9050620017ef81620019da565b505b60135442111562001821576012546200180b9042620026fd565b6013556010546200181f90600290620027a5565b505b50565b600b545f906001600160a01b0384811691161462000564575f620018488462001045565b905083306040516200185a9062002502565b6001600160a01b03928316815291166020820152604001604051809103905ff0801580156200188b573d5f803e3d5ffd5b506001600160a01b038581165f8181526003602090815260408083208054600180820183559185528385200180546001600160a01b031916888816908117909155948452825280832094871683529381528382208290558282529083902087905591518681529294509182915f8051602062002e06833981519152910160405180910390a35092915050565b5f80620018488462001045565b5f80620019318462001045565b90508330604051620019439062002502565b6001600160a01b03928316815291166020820152604001604051809103905ff08015801562001974573d5f803e3d5ffd5b506001600160a01b039485165f8181526003602090815260408083208054600180820183559185528385200180546001600160a01b031916878c169081179091559484528252808320959098168252939093528583208390558252939020919091555090565b60095430905f90600590620019f8906001600160a01b031662000a0f565b62001a049190620027a5565b600a541162001a1657600a5462001a3c565b60095460059062001a30906001600160a01b031662000a0f565b62001a3c9190620027a5565b305f908152600160209081526040808320600b546001600160a01b0316845290915281208054929350909182918691839062001a7a9084906200274c565b9250508190555084600a5f82825462001a9491906200274c565b909155505060095460408051630dfe168160e01b815290516001600160a01b0390921691630dfe1681916004808201926020929091908290030181865afa15801562001ae2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001b0891906200272e565b6001600160a01b0316846001600160a01b03160362001f9a575f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801562001b74573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001b9a9190620027fb565b506001600160701b031691506001600160701b0316915062001bbe858383620024ac565b6009546001600160a01b03165f90815260016020908152604080832090915281208054929550879290919062001bf6908490620026fd565b9091555050600954600b54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f9362001c449392899290911690602481016200284d565b5f604051808303815f87803b15801562001c5c575f80fd5b505af115801562001c6f573d5f803e3d5ffd5b50506009546001600160a01b03165f9081526001602090815260408083209091528120805489945090925062001ca79084906200274c565b9091555050600b546009546040516310e2489760e11b815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260048201526001600160a01b039182166024820152604481018690529116906321c4912e906064015f604051808303815f87803b15801562001d14575f80fd5b505af115801562001d27573d5f803e3d5ffd5b5050505060095f9054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801562001d78575f80fd5b505af115801562001d8b573d5f803e3d5ffd5b505050505f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801562001de2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001e089190620027fb565b506001600160701b031691506001600160701b0316915062001e2c898383620024ac565b6009546001600160a01b03165f908152600160209081526040808320909152812080549298508b9290919062001e64908490620026fd565b9091555050600954600e54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f9362001eb293928c9290911690602481016200284d565b5f604051808303815f87803b15801562001eca575f80fd5b505af115801562001edd573d5f803e3d5ffd5b505050506103e88962001ef19190620027a5565b62001efe906003620027c5565b6009546001600160a01b03165f9081526001602090815260408083209091528120805490919062001f319084906200274c565b90915550506009546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae9916004808201925f9290919082900301818387803b15801562001f7e575f80fd5b505af115801562001f91573d5f803e3d5ffd5b50505050505050505b60095f9054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001feb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200201191906200272e565b6001600160a01b0316846001600160a01b031614620024a5575f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156200207d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620020a39190620027fb565b506001600160701b031691506001600160701b03169150620020c7858284620024ac565b6009546001600160a01b03165f908152600160209081526040808320909152812080549295508792909190620020ff908490620026fd565b9091555050600954600b54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f936200214e938993909290911690602481016200284d565b5f604051808303815f87803b15801562002166575f80fd5b505af115801562002179573d5f803e3d5ffd5b50506009546001600160a01b03165f90815260016020908152604080832090915281208054899450909250620021b19084906200274c565b9091555050600b546009546040516310e2489760e11b815273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260048201526001600160a01b039182166024820152604481018690529116906321c4912e906064015f604051808303815f87803b1580156200221e575f80fd5b505af115801562002231573d5f803e3d5ffd5b5050505060095f9054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801562002282575f80fd5b505af115801562002295573d5f803e3d5ffd5b505050505f8060095f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015620022ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620023129190620027fb565b506001600160701b031691506001600160701b0316915062002336898284620024ac565b6009546001600160a01b03165f908152600160209081526040808320909152812080549298508b929091906200236e908490620026fd565b9091555050600954600e54604080515f808252602082019283905263022c0d9f60e01b9092526001600160a01b039384169363022c0d9f93620023bd938c93909290911690602481016200284d565b5f604051808303815f87803b158015620023d5575f80fd5b505af1158015620023e8573d5f803e3d5ffd5b505050506103e889620023fc9190620027a5565b62002409906003620027c5565b6009546001600160a01b03165f908152600160209081526040808320909152812080549091906200243c9084906200274c565b90915550506009546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae9916004808201925f9290919082900301818387803b15801562002489575f80fd5b505af11580156200249c573d5f803e3d5ffd5b50505050505050505b5050505050565b5f80620024bc856126f2620027c5565b90505f620024cb8483620027c5565b90505f82620024dd87612710620027c5565b620024e99190620026fd565b9050620024f78183620027a5565b979650505050505050565b610580806200288683390190565b5f81518084525f5b81811015620025365760208185018101518683018201520162002518565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f62002569602083018462002510565b9392505050565b6001600160a01b038116811462001821575f80fd5b5f806040838503121562002597575f80fd5b8235620025a48162002570565b946020939093013593505050565b5f805f60608486031215620025c5575f80fd5b8335620025d28162002570565b92506020840135620025e48162002570565b929592945050506040919091013590565b5f6020828403121562002606575f80fd5b8135620025698162002570565b602080825282518282018190525f9190848201906040850190845b81811015620026555783516001600160a01b0316835292840192918401916001016200262e565b50909695505050505050565b5f806040838503121562002673575f80fd5b8235620026808162002570565b91506020830135620026928162002570565b809150509250929050565b5f60208284031215620026ae575f80fd5b5035919050565b600181811c90821680620026ca57607f821691505b602082108103620010f457634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115620005645762000564620026e9565b6020808252600190820152600360fc1b604082015260600190565b5f602082840312156200273f575f80fd5b8151620025698162002570565b81810381811115620005645762000564620026e9565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52604160045260245ffd5b5f600182016200279e576200279e620026e9565b5060010190565b5f82620027c057634e487b7160e01b5f52601260045260245ffd5b500490565b8082028115828204841417620005645762000564620026e9565b80516001600160701b0381168114620027f6575f80fd5b919050565b5f805f606084860312156200280e575f80fd5b6200281984620027df565b92506200282960208501620027df565b9150604084015163ffffffff8116811462002842575f80fd5b809150509250925092565b84815283602082015260018060a01b0383166040820152608060608201525f6200287b608083018462002510565b969550505050505056fe608060405234801561000f575f80fd5b5060405161058038038061058083398101604081905261002e91610079565b5f80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100aa565b80516001600160a01b0381168114610074575f80fd5b919050565b5f806040838503121561008a575f80fd5b6100938361005e565b91506100a16020840161005e565b90509250929050565b6104c9806100b75f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c806321c4912e1461003857806360f96a8f1461004d575b5f80fd5b61004b6100463660046103c5565b61007b565b005b5f5461005f906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b5f546001600160a01b031633146100bd5760405162461bcd60e51b81526020600482015260016024820152600760fc1b60448201526064015b60405180910390fd5b6001546001600160a01b03908116908416036101045760405162461bcd60e51b81526020600482015260066024820152656e6f20746f6b60d01b60448201526064016100b4565b61010f838383610114565b505050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65649084015261010f928692915f916101a3918516908490610220565b80519091501561010f57808060200190518101906101c191906103fe565b61010f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016100b4565b606061022e84845f85610236565b949350505050565b6060824710156102975760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016100b4565b5f80866001600160a01b031685876040516102b29190610446565b5f6040518083038185875af1925050503d805f81146102ec576040519150601f19603f3d011682016040523d82523d5f602084013e6102f1565b606091505b50915091506103028783838761030d565b979650505050505050565b6060831561037b5782515f03610374576001600160a01b0385163b6103745760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100b4565b508161022e565b61022e83838151156103905781518083602001fd5b8060405162461bcd60e51b81526004016100b49190610461565b80356001600160a01b03811681146103c0575f80fd5b919050565b5f805f606084860312156103d7575f80fd5b6103e0846103aa565b92506103ee602085016103aa565b9150604084013590509250925092565b5f6020828403121561040e575f80fd5b8151801515811461041d575f80fd5b9392505050565b5f5b8381101561043e578181015183820152602001610426565b50505f910152565b5f8251610457818460208701610424565b9190910192915050565b602081525f825180602084015261047f816040850160208701610424565b601f01601f1916919091016040019291505056fea26469706673582212200a4f61d498105e1472e0c37aaec34283fe3643dffe36dd226aec398841282f8864736f6c63430008140033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f294e1a2b10f436510026b3ce078ab3cafd41b2be8abda2d5f5fc100fdb95f5e64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c7ad2c90aedc76036ad80bc855e25c92f79b8c880000000000000000000000000c629ec694d5b108b7c3c743db0cb41e96c857560000000000000000000000005d8930f8fddf214812c606a9192fecb772c397df000000000000000000000000a82bb2a65be73effbb9d81dd3b541e7d8a8a271a

-----Decoded View---------------
Arg [0] : one (address): 0xc7AD2C90aEdc76036AD80bC855e25c92F79B8c88
Arg [1] : two (address): 0x0c629EC694D5b108b7C3c743dB0CB41e96c85756
Arg [2] : three (address): 0x5D8930F8fddF214812c606A9192feCB772c397Df
Arg [3] : four (address): 0xa82BB2A65BE73effbb9d81dD3B541e7D8A8a271a

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000c7ad2c90aedc76036ad80bc855e25c92f79b8c88
Arg [1] : 0000000000000000000000000c629ec694d5b108b7c3c743db0cb41e96c85756
Arg [2] : 0000000000000000000000005d8930f8fddf214812c606a9192fecb772c397df
Arg [3] : 000000000000000000000000a82bb2a65be73effbb9d81dd3b541e7d8a8a271a


Deployed Bytecode Sourcemap

36732:616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19969:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23052:211;;;;;;:::i;:::-;;:::i;:::-;;;1288:14:1;;1281:22;1263:41;;1251:2;1236:18;23052:211:0;1123:187:1;18957:47:0;;;;;;;;;1461:25:1;;;1449:2;1434:18;18957:47:0;1315:177:1;21089:108:0;21177:12;;21089:108;;23745:1060;;;;;;:::i;:::-;;:::i;18765:27::-;;;;;-1:-1:-1;;;;;18765:27:0;;;;;;-1:-1:-1;;;;;2122:32:1;;;2104:51;;2092:2;2077:18;18765:27:0;1958:203:1;20931:93:0;;;21014:2;2308:36:1;;2296:2;2281:18;20931:93:0;2166:184:1;28176:261:0;;;:::i;26679:215::-;;;;;;:::i;:::-;;:::i;18704:28::-;;;;;-1:-1:-1;;;;;18704:28:0;;;18799:18;;;;;-1:-1:-1;;;18799:18:0;;;;;;19050:24;;;;;;21260:180;;;;;;:::i;:::-;;:::i;19081:38::-;;;;;;19209:22;;;;;;3220:87;3266:7;3293:6;-1:-1:-1;;;;;3293:6:0;3220:87;;20188:104;;;:::i;18539:78::-;;;;;-1:-1:-1;;;;;18539:78:0;;;27397:381;;;;;;:::i;:::-;;:::i;18370:77::-;;;;;-1:-1:-1;;;;;18370:77:0;;;21653:621;;;;;;:::i;:::-;;:::i;18624:73::-;;18655:42;18624:73;;18924:26;;;;;;28597:297;;;:::i;:::-;;;;;;;:::i;19176:26::-;;;;;;18824:38;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28445:144;;;:::i;22337:570::-;;;;;;:::i;:::-;;:::i;18287:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18739:19;;;;;;18454:78;;;;;-1:-1:-1;;;;;18454:78:0;;;31127:327;;;;;;:::i;:::-;;:::i;19969:100::-;20023:13;20056:5;20049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19969:100;:::o;23052:211::-;23135:4;23152:10;23165:28;23182:10;23165:16;:28::i;:::-;23152:41;;23204:29;23213:2;23217:7;23226:6;23204:8;:29::i;:::-;23251:4;23244:11;;;23052:211;;;;;:::o;23745:1060::-;23916:4;29588:6;;29598:1;29588:11;29580:31;;;;-1:-1:-1;;;29580:31:0;;4435:2:1;29580:31:0;;;4417:21:1;4474:1;4454:18;;;4447:29;-1:-1:-1;;;4492:18:1;;;4485:37;4539:18;;29580:31:0;;;;;;;;;29631:1;29622:6;:10;29294:6:::1;::::0;23871;;23879:9;;-1:-1:-1;;;29294:6:0;::::1;;;29290:229;;-1:-1:-1::0;;;;;29324:9:0;::::1;;::::0;;;:6:::1;:9;::::0;;;;;::::1;;::::0;:22:::1;;-1:-1:-1::0;;;;;;29337:9:0;::::1;;::::0;;;:6:::1;:9;::::0;;;;;::::1;;29324:22;29316:51;;;::::0;-1:-1:-1;;;29316:51:0;;4770:2:1;29316:51:0::1;::::0;::::1;4752:21:1::0;4809:2;4789:18;;;4782:30;-1:-1:-1;;;4828:18:1;;;4821:46;4884:18;;29316:51:0::1;4568:340:1::0;29316:51:0::1;-1:-1:-1::0;;;;;29385:9:0;::::1;;::::0;;;:6:::1;:9;::::0;;;;;::::1;;29382:122;;;29417:1;29410:3;;:8;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;29436:3:0::1;::::0;29443:1:::1;29436:8:::0;29433:56:::1;;29460:6;:13:::0;;-1:-1:-1;;;;29460:13:0::1;-1:-1:-1::0;;;29460:13:0::1;::::0;;29433:56:::1;-1:-1:-1::0;;;;;23941:20:0;::::2;23933:34;;;;-1:-1:-1::0;;;23933:34:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23986:23:0;::::2;23978:37;;;;-1:-1:-1::0;;;23978:37:0::2;;;;;;;:::i;:::-;24044:9;-1:-1:-1::0;;;;;24034:19:0::2;:6;-1:-1:-1::0;;;;;24034:19:0::2;::::0;24026:34:::2;;;::::0;-1:-1:-1;;;24026:34:0;;5706:2:1;24026:34:0::2;::::0;::::2;5688:21:1::0;5745:1;5725:18;;;5718:29;-1:-1:-1;;;5763:18:1;;;5756:32;5805:18;;24026:34:0::2;5504:325:1::0;24026:34:0::2;24071:10;24084:24;24101:6;24084:16;:24::i;:::-;-1:-1:-1::0;;;;;24127:17:0;;::::2;;::::0;;;:9:::2;:17;::::0;;;;;;;:21;;::::2;::::0;;;;;;;24071:37;;-1:-1:-1;24127:31:0;-1:-1:-1;24127:31:0::2;24119:48;;;;-1:-1:-1::0;;;24119:48:0::2;;;;;;6036:2:1::0;6018:21;;;6075:1;6055:18;;;6048:29;-1:-1:-1;;;6108:2:1;6093:18;;6086:34;6152:2;6137:18;;5834:327;24119:48:0::2;24178:9;24194:2;-1:-1:-1::0;;;;;24190:14:0::2;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24178:28:::0;-1:-1:-1;24217:24:0::2;24244:9;-1:-1:-1::0;;;;;24244:14:0;::::2;;:55;;-1:-1:-1::0;;;;;24270:15:0;::::2;;::::0;;;:11:::2;:15;::::0;;;;;;;2169:10;24270:29;;;;;;;;24244:55:::2;;;24261:6;24244:55;24217:82;;24338:6;24318:16;:26;;24310:79;;;::::0;-1:-1:-1;;;24310:79:0;;6624:2:1;24310:79:0::2;::::0;::::2;6606:21:1::0;6663:2;6643:18;;;6636:30;6702:34;6682:18;;;6675:62;-1:-1:-1;;;6753:18:1;;;6746:38;6801:19;;24310:79:0::2;6422:404:1::0;24310:79:0::2;24400:53;24409:2:::0;2169:10;24427:25:::2;24446:6:::0;24427:16;:25:::2;:::i;:::-;24400:8;:53::i;:::-;24482:13;::::0;-1:-1:-1;;;;;24482:13:0;;::::2;24469:26:::0;;::::2;::::0;24466:86:::2;;24507:33;24525:6;24533;24507:17;:33::i;:::-;24575:13;::::0;-1:-1:-1;;;;;24575:13:0;;::::2;24565:23:::0;;::::2;::::0;24562:88:::2;;24600:38;24620:9;24631:6;24600:19;:38::i;:::-;24676:13;::::0;-1:-1:-1;;;;;24663:26:0;;::::2;24676:13:::0;::::2;24663:26;::::0;::::2;::::0;:53:::2;;-1:-1:-1::0;24703:13:0::2;::::0;-1:-1:-1;;;;;24693:23:0;;::::2;24703:13:::0;::::2;24693:23;;24663:53;24660:116;;;24728:36;24738:6;24746:9;24757:6;24728:9;:36::i;:::-;24793:4;24786:11;;;;;-1:-1:-1::0;;29664:1:0;29655:6;:10;23745:1060;;-1:-1:-1;;;23745:1060:0:o;28176:261::-;28273:10;28223:12;28261:23;;;:11;:23;;;;;:30;28305:6;;;28302:50;;28330:10;28323:17;;28302:50;28365:5;;28362:68;;28401:10;28389:23;;;;:11;:23;;;;;28413:4;28416:1;28413;:4;:::i;:::-;28389:29;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28389:29:0;;-1:-1:-1;28362:68:0;28238:199;28176:261;:::o;26679:215::-;2169:10;26767:4;26816:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26816:34:0;;;;;;;;;;26767:4;;26784:80;;26807:7;;26816:47;;26853:10;;26816:47;:::i;26784:80::-;-1:-1:-1;26882:4:0;26679:215;;;;:::o;21260:180::-;21334:7;21354:10;21367:25;21384:7;21367:16;:25::i;:::-;-1:-1:-1;;;;;21410:18:0;;;;;;;:9;:18;;;;;;;;:22;;;;;;;;;;;;;;;21260:180;-1:-1:-1;;21260:180:0:o;20188:104::-;20244:13;20277:7;20270:14;;;;;:::i;27397:381::-;2169:10;27490:4;27534:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27534:34:0;;;;;;;;;;27587:35;;;;27579:85;;;;-1:-1:-1;;;27579:85:0;;7298:2:1;27579:85:0;;;7280:21:1;7337:2;7317:18;;;7310:30;7376:34;7356:18;;;7349:62;-1:-1:-1;;;7427:18:1;;;7420:35;7472:19;;27579:85:0;7096:401:1;27579:85:0;27679:67;2169:10;27702:7;27711:34;27730:15;27711:16;:34;:::i;21653:621::-;21774:4;29588:6;;29598:1;29588:11;29580:31;;;;-1:-1:-1;;;29580:31:0;;4435:2:1;29580:31:0;;;4417:21:1;4474:1;4454:18;;;4447:29;-1:-1:-1;;;4492:18:1;;;4485:37;4539:18;;29580:31:0;4233:330:1;29580:31:0;29631:1;29622:6;:10;29294:6:::1;::::0;21725:10:::1;::::0;21737:9;;-1:-1:-1;;;29294:6:0;::::1;;;29290:229;;-1:-1:-1::0;;;;;29324:9:0;::::1;;::::0;;;:6:::1;:9;::::0;;;;;::::1;;::::0;:22:::1;;-1:-1:-1::0;;;;;;29337:9:0;::::1;;::::0;;;:6:::1;:9;::::0;;;;;::::1;;29324:22;29316:51;;;::::0;-1:-1:-1;;;29316:51:0;;4770:2:1;29316:51:0::1;::::0;::::1;4752:21:1::0;4809:2;4789:18;;;4782:30;-1:-1:-1;;;4828:18:1;;;4821:46;4884:18;;29316:51:0::1;4568:340:1::0;29316:51:0::1;-1:-1:-1::0;;;;;29385:9:0;::::1;;::::0;;;:6:::1;:9;::::0;;;;;::::1;;29382:122;;;29417:1;29410:3;;:8;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;29436:3:0::1;::::0;29443:1:::1;29436:8:::0;29433:56:::1;;29460:6;:13:::0;;-1:-1:-1;;;;29460:13:0::1;-1:-1:-1::0;;;29460:13:0::1;::::0;;29433:56:::1;21799:10:::2;21791:38;;;;-1:-1:-1::0;;;21791:38:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21848:23:0;::::2;21840:37;;;;-1:-1:-1::0;;;21840:37:0::2;;;;;;;:::i;:::-;21905:13;::::0;-1:-1:-1;;;;;21905:13:0::2;21891:10;:27:::0;21888:92:::2;;21930:38;21950:9;21961:6;21930:19;:38::i;:::-;22006:13;::::0;-1:-1:-1;;;;;21993:26:0;;::::2;22006:13:::0;::::2;21993:26;:57:::0;::::2;;;-1:-1:-1::0;22037:13:0::2;::::0;-1:-1:-1;;;;;22037:13:0::2;22023:10;:27;;21993:57;21990:121;;;22062:37;22080:10;22092:6;22062:17;:37::i;:::-;22137:13;::::0;-1:-1:-1;;;;;22124:26:0;;::::2;22137:13:::0;::::2;22124:26;::::0;::::2;::::0;:57:::2;;-1:-1:-1::0;22168:13:0::2;::::0;-1:-1:-1;;;;;22168:13:0::2;22154:10;:27;;22124:57;22121:124;;;22193:40;22203:10;22215:9;22226:6;22193:9;:40::i;:::-;22262:4;22255:11;;-1:-1:-1::0;;29664:1:0;29655:6;:10;21653:621;;-1:-1:-1;;21653:621:0:o;28597:297::-;28699:10;28674;28687:23;;;:11;:23;;;;;:30;28645:16;;28687:30;28749:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28749:17:0;;28728:38;;28781:9;28777:91;28800:2;28796:1;:6;28777:91;;;28842:10;28830:23;;;;:11;:23;;;;;:26;;28854:1;;28830:26;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28830:26:0;28823:1;28825;28823:4;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28823:33:0;;;:4;;;;;;;;;;;:33;28804:3;;;;:::i;:::-;;;;28777:91;;;-1:-1:-1;28885:1:0;28597:297;-1:-1:-1;;28597:297:0:o;28445:144::-;28540:10;28493:14;28530:21;;;:9;:21;;;;;28493:14;;;;28552:28;;:16;:28::i;:::-;-1:-1:-1;;;;;28530:51:0;-1:-1:-1;;;;;28530:51:0;;;;;;;;;;;;;28523:58;;28445:144;:::o;22337:570::-;22426:9;22448:10;22461:23;22478:5;22461:16;:23::i;:::-;22448:36;;22495:9;22511:2;-1:-1:-1;;;;;22507:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22495:28;;22542:5;-1:-1:-1;;;;;22537:10:0;:1;-1:-1:-1;;;;;22537:10:0;;:35;;;-1:-1:-1;22560:12:0;;-1:-1:-1;;;;;22551:21:0;;;22560:12;;22551:21;22537:35;22534:366;;;22689:17;;-1:-1:-1;;;;;22678:28:0;;;22689:17;;22678:28;;:61;;-1:-1:-1;22721:18:0;;-1:-1:-1;;;;;22710:29:0;;;22721:18;;22710:29;22678:61;:94;;;-1:-1:-1;22754:18:0;;-1:-1:-1;;;;;22743:29:0;;;22754:18;;22743:29;22678:94;22675:145;;;22792:12;;22788:16;;22675:145;22534:366;;;-1:-1:-1;;;;;22864:15:0;;;;;;;:11;:15;;;;;;;;:24;;;;;;;;;;;-1:-1:-1;22534:366:0;22437:470;;22337:570;;;;:::o;31127:327::-;31192:7;31212:9;31312:19;31307:4;;:24;;;;:::i;:::-;31283:19;31271:11;;:31;;;;:::i;:::-;31258:9;;:45;;;;:::i;:::-;:74;;;;:::i;:::-;31224:30;31233:21;31224:6;:30;:::i;:::-;:109;;;;:::i;:::-;31371:13;;31212:121;;-1:-1:-1;31344:10:0;;31388:2;;31361:24;;-1:-1:-1;;;;;31371:13:0;31361:9;:24::i;:::-;:29;;;;:::i;:::-;31357:1;:33;:69;;31425:1;31357:69;;;31403:13;;31420:2;;31393:24;;-1:-1:-1;;;;;31403:13:0;31393:9;:24::i;:::-;:29;;;;:::i;:::-;31344:82;31127:327;-1:-1:-1;;;;31127:327:0:o;27786:382::-;-1:-1:-1;;;;;27885:17:0;;;27848:12;27885:17;;;:11;:17;;;;;:24;27931:13;;27848:12;;27885:24;;27931:13;;27923:21;27920:163;;27959:1;27964;27959:6;27956:44;;27984:4;27977:11;;27956:44;28013:5;;28010:62;;-1:-1:-1;;;;;28037:17:0;;;;;;:11;:17;;;;;28055:4;28058:1;28055;:4;:::i;:::-;28037:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28037:23:0;;-1:-1:-1;28010:62:0;28104:13;;-1:-1:-1;;;;;28104:13:0;;;28096:21;;;;28093:68;;28136:13;;-1:-1:-1;;;;;28136:13:0;;-1:-1:-1;28093:68:0;27862:306;27786:382;;;:::o;36505:220::-;-1:-1:-1;;;;;36633:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36685:32;;1461:25:1;;;36685:32:0;;1434:18:1;36685:32:0;;;;;;;36505:220;;;:::o;24813:952::-;24892:10;24905:24;24922:6;24905:16;:24::i;:::-;24892:37;;24940:12;24955:17;24965:6;24955:9;:17::i;:::-;24940:32;-1:-1:-1;24983:10:0;24996:13;25003:6;24940:32;24996:13;:::i;:::-;24983:26;;25020:10;25057:6;25049:4;:14;;25041:30;;;;-1:-1:-1;;;25041:30:0;;8371:2:1;25041:30:0;;;8353:21:1;8410:1;8390:18;;;8383:29;-1:-1:-1;;;8428:18:1;;;8421:33;8471:18;;25041:30:0;8169:326:1;25041:30:0;-1:-1:-1;;;;;25085:23:0;;25103:4;25085:23;25082:453;;25121:16;25130:6;25121:8;:16::i;:::-;25153:6;;25150:166;;-1:-1:-1;;;;;25172:17:0;;;25196:1;25172:17;;;:9;:17;;;;;;;;:21;;;;;;;;;;;:25;25214:30;25182:6;25241:2;25214:18;:30::i;:::-;25265:13;;-1:-1:-1;;;;;25265:13:0;25255:24;;;;:9;:24;;;;;;;;:39;;;;;:49;;25209:35;;-1:-1:-1;25298:6:0;;25255:39;;:24;:49;;25298:6;;25255:49;:::i;:::-;;;;-1:-1:-1;;25150:166:0;25329:2;25335:1;25329:7;25326:194;;-1:-1:-1;;;;;25349:17:0;;;25373:1;25349:17;;;:9;:17;;;;;;;;:21;;;;;;;;;;:25;;;25395:13;;;;;25385:24;;;;;;;;:39;;;;;:49;;25428:6;;25373:1;25385:49;;25428:6;;25385:49;:::i;:::-;;;;;;;;25456:1;25445:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;25486:13:0;;25473:35;;1461:25:1;;;-1:-1:-1;;;;;25486:13:0;;;;25473:35;;;-1:-1:-1;;;;;;;;;;;25473:35:0;1449:2:1;1434:18;25473:35:0;;;;;;;25326:194;25566:4;-1:-1:-1;;;;;25548:23:0;;;25545:209;;25601:4;25583:24;;;;:9;:24;;;;;;;;25608:12;;-1:-1:-1;;;;;25608:12:0;25583:38;;;;;;;:48;;25625:6;;25583:24;:48;;25625:6;;25583:48;:::i;:::-;;;;-1:-1:-1;;25652:13:0;;-1:-1:-1;;;;;25652:13:0;25642:24;;;;:9;:24;;;;;;;;:39;;;;;:49;;25685:6;;25642:24;:49;;25685:6;;25642:49;:::i;:::-;;;;-1:-1:-1;;25720:13:0;;25707:35;;1461:25:1;;;-1:-1:-1;;;;;25720:13:0;;;;25707:35;;;-1:-1:-1;;;;;;;;;;;25707:35:0;1449:2:1;1434:18;25707:35:0;;;;;;;25545:209;24881:884;;;;24813:952;;:::o;25773:497::-;25875:13;;25893:6;;25865:24;;-1:-1:-1;;;;;25875:13:0;25865:9;:24::i;:::-;:34;;25857:50;;;;-1:-1:-1;;;25857:50:0;;8371:2:1;25857:50:0;;;8353:21:1;8410:1;8390:18;;;8383:29;-1:-1:-1;;;8428:18:1;;;8421:33;8471:18;;25857:50:0;8169:326:1;25857:50:0;25918:10;25931:27;25948:9;25931:16;:27::i;:::-;-1:-1:-1;;;;;25996:20:0;;;25969:24;25996:20;;;:9;:20;;;;;;;;:24;;;;;;;;;;;26041:13;;;;;26031:24;;;;;;;;:39;;;;:49;;25918:40;;-1:-1:-1;25996:24:0;;26074:6;;26031:39;25969:24;26031:49;;26074:6;;26031:49;:::i;:::-;;;;-1:-1:-1;;26114:1:0;26094:21;;;26091:40;;26128:1;26117:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;26091:40:0;26141:11;26155:55;26173:9;26184:25;26203:6;26184:16;:25;:::i;:::-;26155:17;:55::i;:::-;26235:13;;26226:36;;1461:25:1;;;26141:69:0;;-1:-1:-1;;;;;;26226:36:0;;;;26235:13;;;-1:-1:-1;;;;;;;;;;;26226:36:0;1449:2:1;1434:18;26226:36:0;;;;;;;25846:424;;;25773:497;;:::o;30163:956::-;-1:-1:-1;;;;;30319:17:0;;30295:21;30319:17;;;:9;:17;;;;;30295:21;30337:24;30329:6;30337:16;:24::i;:::-;-1:-1:-1;;;;;30319:43:0;-1:-1:-1;;;;;30319:43:0;;;;;;;;;;;;;30295:67;;30398:6;30381:13;:23;;30373:74;;;;-1:-1:-1;;;30373:74:0;;8702:2:1;30373:74:0;;;8684:21:1;8741:2;8721:18;;;8714:30;8780:34;8760:18;;;8753:62;-1:-1:-1;;;8831:18:1;;;8824:36;8877:19;;30373:74:0;8500:402:1;30373:74:0;30476:9;-1:-1:-1;;;;;30466:19:0;:6;-1:-1:-1;;;;;30466:19:0;;30458:36;;;;-1:-1:-1;;;30458:36:0;;;;;;9109:2:1;9091:21;;;9148:1;9128:18;;;9121:29;-1:-1:-1;;;9181:2:1;9166:18;;9159:34;9225:2;9210:18;;8907:327;30458:36:0;-1:-1:-1;;;;;30513:20:0;;30505:34;;;;-1:-1:-1;;;30505:34:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30558:23:0;;30550:37;;;;-1:-1:-1;;;30550:37:0;;;;;;;:::i;:::-;30598:10;30611:22;30627:6;30611:13;:22;:::i;:::-;-1:-1:-1;;;;;30644:17:0;;;;;;:9;:17;;;;;30598:35;;-1:-1:-1;30691:6:0;;30644:17;30662:24;30654:6;30662:16;:24::i;:::-;-1:-1:-1;;;;;30644:43:0;-1:-1:-1;;;;;30644:43:0;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;30708:11:0;;-1:-1:-1;30733:6:0;;30730:74;;30762:30;30781:6;30789:2;30762:18;:30::i;:::-;30756:36;;30730:74;-1:-1:-1;;;;;30841:20:0;;30814:24;30841:20;;;:9;:20;;;;;30814:24;30862:27;30851:9;30862:16;:27::i;:::-;-1:-1:-1;;;;;30841:49:0;-1:-1:-1;;;;;30841:49:0;;;;;;;;;;;;;30814:76;;30904:16;30924:1;30904:21;30901:40;;30938:1;30927:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;30901:40:0;30951:11;30965:56;30984:9;30995:25;31014:6;30995:16;:25;:::i;:::-;30965:18;:56::i;:::-;30951:70;;31032:16;31041:6;31032:8;:16::i;:::-;31099:3;-1:-1:-1;;;;;31064:47:0;31073:24;31090:6;31073:16;:24::i;:::-;-1:-1:-1;;;;;31064:47:0;-1:-1:-1;;;;;;;;;;;31104:6:0;31064:47;;;;1461:25:1;;1449:2;1434:18;;1315:177;31064:47:0;;;;;;;;30284:835;;;;;30163:956;;;:::o;31462:472::-;31528:12;31521:20;;;;:6;:20;;;;;;:25;;31518:267;;31576:13;;31593:1;;31566:24;;-1:-1:-1;;;;;31576:13:0;31566:9;:24::i;:::-;:28;31563:211;;;31616:6;31609:4;;:13;31606:157;;;31641:12;31634:20;;;;:6;:20;;;;;31657:1;31634:24;;31687:27;31707:6;31687:19;:27::i;:::-;31669:45;;31725:26;31743:7;31725:17;:26::i;:::-;31623:140;31606:157;31816:11;;31798:15;:29;31795:132;;;31876:11;;31858:29;;:15;:29;:::i;:::-;31844:11;:43;31902:9;;:13;;31914:1;;31902:13;:::i;:::-;;31795:132;31462:472;:::o;35631:436::-;35747:12;;35708:13;;-1:-1:-1;;;;;35737:22:0;;;35747:12;;35737:22;35734:326;;35771:9;35783:24;35800:6;35783:16;:24::i;:::-;35771:36;;35850:6;35866:4;35834:38;;;;;:::i;:::-;-1:-1:-1;;;;;9469:15:1;;;9451:34;;9521:15;;9516:2;9501:18;;9494:43;9401:2;9386:18;35834:38:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35892:19:0;;;;;;;:11;:19;;;;;;;;:31;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35892:31:0;;;;;;;;;;35934:17;;;;;;;;:20;;;;;;;;;;;:24;;;35969;;;;;;;:33;;;36018:30;;1461:25:1;;;35892:31:0;;-1:-1:-1;35892:31:0;;;-1:-1:-1;;;;;;;;;;;36018:30:0;1434:18:1;36018:30:0;;;;;;;35760:300;35631:436;;;;:::o;35218:405::-;35297:13;35323:9;35335:27;35352:9;35335:16;:27::i;34850:360::-;34930:13;34956:9;34968:27;34985:9;34968:16;:27::i;:::-;34956:39;;35038:9;35057:4;35022:41;;;;;:::i;:::-;-1:-1:-1;;;;;9469:15:1;;;9451:34;;9521:15;;9516:2;9501:18;;9494:43;9401:2;9386:18;35022:41:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35083:22:0;;;;;;;:11;:22;;;;;;;;:34;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35083:34:0;;;;;;;;;;35128:20;;;;;;;;:23;;;;;;;;;;;;;:27;;;35166;;;;;:36;;;;-1:-1:-1;35083:34:0;34850:360::o;31942:1900::-;32071:13;;32026:4;;32002:13;;32088:1;;32061:24;;-1:-1:-1;;;;;32071:13:0;32061:9;:24::i;:::-;:28;;;;:::i;:::-;32054:4;;:35;:73;;32123:4;;32054:73;;;32102:13;;32119:1;;32092:24;;-1:-1:-1;;;;;32102:13:0;32092:9;:24::i;:::-;:28;;;;:::i;:::-;32185:4;32138:8;32167:24;;;:9;:24;;;;;;;;32192:12;;-1:-1:-1;;;;;32192:12:0;32167:38;;;;;;;:49;;32042:85;;-1:-1:-1;32138:8:0;;;;32209:7;;32138:8;;32167:49;;32209:7;;32167:49;:::i;:::-;;;;;;;;32235:7;32227:4;;:15;;;;;;;:::i;:::-;;;;-1:-1:-1;;32269:13:0;;32265:27;;;-1:-1:-1;;;32265:27:0;;;;-1:-1:-1;;;;;32269:13:0;;;;32265:25;;:27;;;;;;;;;;;;;;;32269:13;32265:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32256:36:0;:5;-1:-1:-1;;;;;32256:36:0;;32253:785;;32305:6;32313:7;32329:13;;;;;;;;;-1:-1:-1;;;;;32329:13:0;-1:-1:-1;;;;;32325:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32304:53;-1:-1:-1;;;;;32304:53:0;;;-1:-1:-1;;;;;32304:53:0;;;32375:22;32388:1;32391;32394:2;32375:12;:22::i;:::-;32420:13;;-1:-1:-1;;;;;32420:13:0;32410:24;;;;:9;:24;;;;;;;;:39;;;;;:44;;32368:29;;-1:-1:-1;32453:1:0;;32410:39;;:24;:44;;32453:1;;32410:44;:::i;:::-;;;;-1:-1:-1;;32469:13:0;;32498:12;;32512;;;32469:13;32512:12;;;;;;;;;;-1:-1:-1;;;32465:60:0;;;-1:-1:-1;;;;;32469:13:0;;;;32465:23;;:60;;32469:13;32492:4;;32498:12;;;;32465:60;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32546:13:0;;-1:-1:-1;;;;;32546:13:0;32536:24;;;;:9;:24;;;;;;;;:39;;;;;:44;;32579:1;;-1:-1:-1;32536:39:0;;-1:-1:-1;32536:44:0;;32579:1;;32536:44;:::i;:::-;;;;-1:-1:-1;;32595:12:0;;32626:13;;32591:55;;-1:-1:-1;;;32591:55:0;;18655:42;32591:55;;;10908:34:1;-1:-1:-1;;;;;32626:13:0;;;10958:18:1;;;10951:43;11010:18;;;11003:34;;;32595:12:0;;;32591:28;;10843:18:1;;32591:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32661:13;;;;;;;;;-1:-1:-1;;;;;32661:13:0;-1:-1:-1;;;;;32657:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32694:7;32703:8;32720:13;;;;;;;;;-1:-1:-1;;;;;32720:13:0;-1:-1:-1;;;;;32716:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32693:55;-1:-1:-1;;;;;32693:55:0;;;-1:-1:-1;;;;;32693:55:0;;;32765:30;32778:7;32787:2;32791:3;32765:12;:30::i;:::-;32818:13;;-1:-1:-1;;;;;32818:13:0;32808:24;;;;:9;:24;;;;;;;;:39;;;;;:50;;32759:36;;-1:-1:-1;32851:7:0;;32808:39;;:24;:50;;32851:7;;32808:50;:::i;:::-;;;;-1:-1:-1;;32873:13:0;;32901:2;;32905:12;;;32873:13;32905:12;;;;;;;;;;-1:-1:-1;;;32869:49:0;;;-1:-1:-1;;;;;32873:13:0;;;;32869:23;;:49;;32873:13;32896:3;;32901:2;;;;32869:49;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32982:4;32972:7;:14;;;;:::i;:::-;:18;;32989:1;32972:18;:::i;:::-;32939:13;;-1:-1:-1;;;;;32939:13:0;32929:24;;;;:9;:24;;;;;;;;:39;;;;;:61;;:39;;:24;:61;;;;;:::i;:::-;;;;-1:-1:-1;;33005:13:0;;33001:25;;;-1:-1:-1;;;;;;33001:25:0;;;;-1:-1:-1;;;;;33005:13:0;;;;33001:23;;:25;;;;;33005:13;;33001:25;;;;;;;;33005:13;;33001:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32293:745;;;;32253:785;33064:13;;;;;;;;;-1:-1:-1;;;;;33064:13:0;-1:-1:-1;;;;;33060:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33051:36:0;:5;-1:-1:-1;;;;;33051:36:0;;33048:785;;33100:6;33108:7;33124:13;;;;;;;;;-1:-1:-1;;;;;33124:13:0;-1:-1:-1;;;;;33120:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33099:53;-1:-1:-1;;;;;33099:53:0;;;-1:-1:-1;;;;;33099:53:0;;;33170:22;33183:1;33186:2;33190:1;33170:12;:22::i;:::-;33215:13;;-1:-1:-1;;;;;33215:13:0;33205:24;;;;:9;:24;;;;;;;;:39;;;;;:44;;33163:29;;-1:-1:-1;33248:1:0;;33205:39;;:24;:44;;33248:1;;33205:44;:::i;:::-;;;;-1:-1:-1;;33264:13:0;;33293:12;;33307;;;33264:13;33307:12;;;;;;;;;;-1:-1:-1;;;33260:60:0;;;-1:-1:-1;;;;;33264:13:0;;;;33260:23;;:60;;33284:4;;33264:13;;33293:12;;;;33260:60;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33341:13:0;;-1:-1:-1;;;;;33341:13:0;33331:24;;;;:9;:24;;;;;;;;:39;;;;;:44;;33374:1;;-1:-1:-1;33331:39:0;;-1:-1:-1;33331:44:0;;33374:1;;33331:44;:::i;:::-;;;;-1:-1:-1;;33390:12:0;;33421:13;;33386:55;;-1:-1:-1;;;33386:55:0;;18655:42;33386:55;;;10908:34:1;-1:-1:-1;;;;;33421:13:0;;;10958:18:1;;;10951:43;11010:18;;;11003:34;;;33390:12:0;;;33386:28;;10843:18:1;;33386:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33456:13;;;;;;;;;-1:-1:-1;;;;;33456:13:0;-1:-1:-1;;;;;33452:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33489:7;33498:8;33515:13;;;;;;;;;-1:-1:-1;;;;;33515:13:0;-1:-1:-1;;;;;33511:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33488:55;-1:-1:-1;;;;;33488:55:0;;;-1:-1:-1;;;;;33488:55:0;;;33560:30;33573:7;33582:3;33587:2;33560:12;:30::i;:::-;33613:13;;-1:-1:-1;;;;;33613:13:0;33603:24;;;;:9;:24;;;;;;;;:39;;;;;:50;;33554:36;;-1:-1:-1;33646:7:0;;33603:39;;:24;:50;;33646:7;;33603:50;:::i;:::-;;;;-1:-1:-1;;33668:13:0;;33696:2;;33700:12;;;33668:13;33700:12;;;;;;;;;;-1:-1:-1;;;33664:49:0;;;-1:-1:-1;;;;;33668:13:0;;;;33664:23;;:49;;33688:3;;33668:13;;33696:2;;;;33664:49;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33777:4;33767:7;:14;;;;:::i;:::-;:18;;33784:1;33767:18;:::i;:::-;33734:13;;-1:-1:-1;;;;;33734:13:0;33724:24;;;;:9;:24;;;;;;;;:39;;;;;:61;;:39;;:24;:61;;;;;:::i;:::-;;;;-1:-1:-1;;33800:13:0;;33796:25;;;-1:-1:-1;;;;;;33796:25:0;;;;-1:-1:-1;;;;;33800:13:0;;;;33796:23;;:25;;;;;33800:13;;33796:25;;;;;;;;33800:13;;33796:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33088:745;;;;33048:785;31991:1851;;;;31942:1900;:::o;28902:334::-;29000:14;;29050:12;:5;29058:4;29050:12;:::i;:::-;29027:35;-1:-1:-1;29073:14:0;29090:28;29108:10;29027:35;29090:28;:::i;:::-;29073:45;-1:-1:-1;29129:16:0;29170:15;29149:17;:9;29161:5;29149:17;:::i;:::-;29148:37;;;;:::i;:::-;29129:56;-1:-1:-1;29205:23:0;29129:56;29205:9;:23;:::i;:::-;29196:32;28902:334;-1:-1:-1;;;;;;;28902:334:0:o;-1:-1:-1:-;;;;;;;;:::o;14:423:1:-;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;:::-;603:53;442:220;-1:-1:-1;;;442:220:1:o;667:131::-;-1:-1:-1;;;;;742:31:1;;732:42;;722:70;;788:1;785;778:12;803:315;871:6;879;932:2;920:9;911:7;907:23;903:32;900:52;;;948:1;945;938:12;900:52;987:9;974:23;1006:31;1031:5;1006:31;:::i;:::-;1056:5;1108:2;1093:18;;;;1080:32;;-1:-1:-1;;;803:315:1:o;1497:456::-;1574:6;1582;1590;1643:2;1631:9;1622:7;1618:23;1614:32;1611:52;;;1659:1;1656;1649:12;1611:52;1698:9;1685:23;1717:31;1742:5;1717:31;:::i;:::-;1767:5;-1:-1:-1;1824:2:1;1809:18;;1796:32;1837:33;1796:32;1837:33;:::i;:::-;1497:456;;1889:7;;-1:-1:-1;;;1943:2:1;1928:18;;;;1915:32;;1497:456::o;2355:247::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2522:9;2509:23;2541:31;2566:5;2541:31;:::i;2607:658::-;2778:2;2830:21;;;2900:13;;2803:18;;;2922:22;;;2749:4;;2778:2;3001:15;;;;2975:2;2960:18;;;2749:4;3044:195;3058:6;3055:1;3052:13;3044:195;;;3123:13;;-1:-1:-1;;;;;3119:39:1;3107:52;;3214:15;;;;3179:12;;;;3155:1;3073:9;3044:195;;;-1:-1:-1;3256:3:1;;2607:658;-1:-1:-1;;;;;;2607:658:1:o;3270:388::-;3338:6;3346;3399:2;3387:9;3378:7;3374:23;3370:32;3367:52;;;3415:1;3412;3405:12;3367:52;3454:9;3441:23;3473:31;3498:5;3473:31;:::i;:::-;3523:5;-1:-1:-1;3580:2:1;3565:18;;3552:32;3593:33;3552:32;3593:33;:::i;:::-;3645:7;3635:17;;;3270:388;;;;;:::o;3663:180::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;-1:-1:-1;3814:23:1;;3663:180;-1:-1:-1;3663:180:1:o;3848:380::-;3927:1;3923:12;;;;3970;;;3991:61;;4045:4;4037:6;4033:17;4023:27;;3991:61;4098:2;4090:6;4087:14;4067:18;4064:38;4061:161;;4144:10;4139:3;4135:20;4132:1;4125:31;4179:4;4176:1;4169:15;4207:4;4204:1;4197:15;4913:127;4974:10;4969:3;4965:20;4962:1;4955:31;5005:4;5002:1;4995:15;5029:4;5026:1;5019:15;5045:125;5110:9;;;5131:10;;;5128:36;;;5144:18;;:::i;5175:324::-;5377:2;5359:21;;;5416:1;5396:18;;;5389:29;-1:-1:-1;;;5449:2:1;5434:18;;5427:31;5490:2;5475:18;;5175:324::o;6166:251::-;6236:6;6289:2;6277:9;6268:7;6264:23;6260:32;6257:52;;;6305:1;6302;6295:12;6257:52;6337:9;6331:16;6356:31;6381:5;6356:31;:::i;6831:128::-;6898:9;;;6919:11;;;6916:37;;;6933:18;;:::i;6964:127::-;7025:10;7020:3;7016:20;7013:1;7006:31;7056:4;7053:1;7046:15;7080:4;7077:1;7070:15;7502:127;7563:10;7558:3;7554:20;7551:1;7544:31;7594:4;7591:1;7584:15;7618:4;7615:1;7608:15;7634:135;7673:3;7694:17;;;7691:43;;7714:18;;:::i;:::-;-1:-1:-1;7761:1:1;7750:13;;7634:135::o;7774:217::-;7814:1;7840;7830:132;;7884:10;7879:3;7875:20;7872:1;7865:31;7919:4;7916:1;7909:15;7947:4;7944:1;7937:15;7830:132;-1:-1:-1;7976:9:1;;7774:217::o;7996:168::-;8069:9;;;8100;;8117:15;;;8111:22;;8097:37;8087:71;;8138:18;;:::i;9548:188::-;9627:13;;-1:-1:-1;;;;;9669:42:1;;9659:53;;9649:81;;9726:1;9723;9716:12;9649:81;9548:188;;;:::o;9741:450::-;9828:6;9836;9844;9897:2;9885:9;9876:7;9872:23;9868:32;9865:52;;;9913:1;9910;9903:12;9865:52;9936:40;9966:9;9936:40;:::i;:::-;9926:50;;9995:49;10040:2;10029:9;10025:18;9995:49;:::i;:::-;9985:59;;10087:2;10076:9;10072:18;10066:25;10131:10;10124:5;10120:22;10113:5;10110:33;10100:61;;10157:1;10154;10147:12;10100:61;10180:5;10170:15;;;9741:450;;;;;:::o;10196:467::-;10435:6;10424:9;10417:25;10478:6;10473:2;10462:9;10458:18;10451:34;10550:1;10546;10541:3;10537:11;10533:19;10525:6;10521:32;10516:2;10505:9;10501:18;10494:60;10590:3;10585:2;10574:9;10570:18;10563:31;10398:4;10611:46;10652:3;10641:9;10637:19;10629:6;10611:46;:::i;:::-;10603:54;10196:467;-1:-1:-1;;;;;;10196:467:1:o

Swarm Source

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