ETH Price: $3,310.34 (-2.97%)
Gas: 19 Gwei

Token

DETF token (DETF)
 

Overview

Max Total Supply

100,000,000 DETF

Holders

1,773 ( -0.056%)

Market

Price

$0.03 @ 0.000009 ETH (-2.82%)

Onchain Market Cap

$2,882,107.00

Circulating Supply Market Cap

$2,877,549.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.005290116568460726 DETF

Value
$0.00 ( ~0 Eth) [0.0000%]
0x70d118fb6c2cac091acb70a0ccac1aff47141132
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

D-ETF is positioning itself as a pioneering trading platform. Our vision for D-ETF is expansive. We offer cryptocurrencies, stocks, ETFs, and commodities. Looking ahead, we envision a future where users can effortlessly withdraw their financial products directly into their web3 wallets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Detf

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 9 : Detf.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity >=0.8.4;

import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import "./DetfReflect.sol";


/// @title Detf smart contract
/// @author D-ETF.com
/// @notice DETF ERC20 token contract
/// @dev Deployable smart contract, which includes the governance logic (voting, delegating and etc).
contract Detf is DetfReflect {
    using SafeMath for uint256;

    /// @notice A record of each accounts delegate
    mapping(address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint256 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint256 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint256) public numCheckpoints;

    mapping(address => uint256) public delegatorVotes;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping(address => uint256) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);


    //  --------------------
    //  CONSTRUCTOR
    //  --------------------


    constructor (address uniswapV2Router_, address usdc_) DetfReflect(uniswapV2Router_, usdc_) {
        // Silence
    }

    fallback () external payable {
        // Empty fallback
    }

    receive () external payable {
        // Empty receive
    }


    //  --------------------
    //  SETTERS
    //  --------------------


    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        _moveDelegates(delegates[sender], delegates[recipient], amount, sender, true);
        super._transfer(sender, recipient, amount);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), block.chainid, address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "delegateBySig: Invalid signature!");
        require(nonce == nonces[signatory]++, "delegateBySig: Invalid nonce!");
        require(block.timestamp <= expiry, "delegateBySig: Signature expired!");
        return _delegate(signatory, delegatee);
    }


    //  --------------------
    //  GETTERS
    //  --------------------


    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256) {
        uint256 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "getPriorVotes: Not yet determined!");

        uint256 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint256 lower = 0;
        uint256 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }


    //  --------------------
    //  INTERNAL
    //  --------------------


    /// @dev Delegate votes from the sender to the delegatee.
    /// Users can delegate to 1 address at a time, and the number of votes added to the delegatee’s vote count is equivalent to the balance of DETF in the user’s account.
    /// Votes are delegated from the current block and onward, until the sender delegates again, or transfers their DETF.
    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator);
        delegates[delegator] = delegatee;
        
        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance, delegator, false);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount, address senderVotes, bool isTransfer) internal {
        uint256 delegateVotes = delegatorVotes[senderVotes];
        uint256 delegatorBalance = balanceOf(senderVotes);

        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint256 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew;
                if (isTransfer) {
                    if (amount > delegateVotes) {
                        delegatorVotes[senderVotes] = delegatorBalance.sub(amount);
                        srcRepNew = srcRepOld.add(delegatorVotes[senderVotes]).sub(delegateVotes);
                    } else {
                        delegatorVotes[senderVotes] = delegateVotes - amount;
                        srcRepNew = srcRepOld.sub(amount);
                    }
                } else {
                    if (delegateVotes != amount) {
                        delegatorVotes[senderVotes] = amount;
                        srcRepNew = srcRepOld.sub(delegateVotes);
                    } else {
                        srcRepNew = srcRepOld.sub(amount);
                    }
                }
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            } else {
                delegatorVotes[senderVotes] = amount;
            }

            if (dstRep != address(0)) {
                uint256 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                if (isTransfer) delegatorVotes[dstRep] += amount;
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        } else if (!isTransfer && srcRep == dstRep && amount != delegateVotes) {
            uint256 dstRepNum = numCheckpoints[dstRep];
            uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
            uint256 dstRepNew = dstRepOld.sub(delegateVotes).add(amount);
            delegatorVotes[senderVotes] = amount;
            _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
        }
    }

    function _writeCheckpoint(address delegatee, uint256 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
      uint256 blockNumber = block.number;

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }
}

File 2 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 9 : DetfReflect.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity >=0.8.4;

import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol';
import { IUniswapV2Router02, IUniswapV2Factory, IUniswapV2Pair } from './interfaces/IUniswap.sol';

/// @title DetfReflect smart contract
/// @author D-ETF.com
/// @notice This contract included in the main Detf smart contract
/// @dev Contains the main logic of re-balancing and fees.
/// The contract was forked from reflect.finance project, and includes changes related to AMM swap fees.
contract DetfReflect is Ownable, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    using Address for address;

    string private constant _NAME = 'DETF token';
    string private constant _SYMBOL = 'DETF';
    uint8 private constant  _DECIMALS = 18;

    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _HOLD_FEE = 150; // 1.5% of tokens goes to existing holders
    uint256 private _holdFee = _HOLD_FEE;
    uint256 private constant _TREASURE_FEE = 150; // 1.5% of tokens goes to treasury contract
    uint256 private _treasureFee = _TREASURE_FEE;
    uint256 private constant _HUNDRED_PERCENT = 10000; // 100%
    uint256 private _withdrawableAmount = 100000 * (10 ** _DECIMALS); // When 100k DEFT collected, it should be swapped to USDC automatically

    uint256 private _tTotal = 100000000 * (10 ** _DECIMALS); // 100 mln tokens
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    uint256 private _tHoldFeeTotal;
    uint256 private _slippage;

    bool private _swapping;
    bool public inSwapAndLiquify;
    address public pool;
    address public uniswapV2UsdcPair;
    IUniswapV2Router02 public uniswapV2Router;
    IERC20 public usdc;

    address[] private _excluded;
    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isAmm;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    event Log(string message);
    event AmmAdded(address target);
    event AmmRemoved(address target);
    event ExcludedAdded(address target);
    event ExcludedRemoved(address target);
    event PoolAddressChanged(address newPool);
    event TreasureWithdraw(address receiver, uint256 amount);
    event TreasureFeeAdded(uint256 totalBalance, uint256 tfee, uint256 rFee);
    event UsdcReceived(address receiver, uint256 detfSwapped, uint256 usdcReceived);

    constructor (address uniswapV2Router_, address usdc_) {
        _rOwned[_msgSender()] = _rTotal;
        usdc = IERC20(usdc_);
        uniswapV2Router = IUniswapV2Router02(uniswapV2Router_);
        uniswapV2UsdcPair = address(IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), address(usdc)));
        excludeAccountFromRewards(msg.sender);
        excludeAccountFromRewards(address(this));
        excludeAccountFromRewards(uniswapV2UsdcPair);
        addToAmmList(uniswapV2UsdcPair);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    //  --------------------
    //  SETTERS (Ownable)
    //  --------------------

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    function excludeAccountFromRewards(address account) public onlyOwner {
        require(!_isExcluded[account], 'excludeAccountFromRewards: Account is already excluded');

        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }

        _isExcluded[account] = true;
        _excluded.push(account);

        emit ExcludedAdded(account);
    }

    function includeAccountForRewards(address account) public onlyOwner {
        require(_isExcluded[account], 'includeAccountForRewards: Account is already excluded');
        require(account != address(this), 'includeAccountForRewards: Can not include token address');

        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }

        emit ExcludedRemoved(account);
    }

    function addToAmmList(address account) public onlyOwner {
        require(account != address(0), 'addToAmmList: Incorrect address!');

        _isAmm[account] = true;

        emit AmmAdded(account);
    }

    function removeFromAmmList(address account) public onlyOwner {
        require(account != address(0), 'removeFromAmmList: Incorrect address!');

        _isAmm[account] = false;

        emit AmmRemoved(account);
    }

    function changeWithdrawLimit(uint256 newLimit) public onlyOwner {
        _withdrawableAmount = newLimit;
    }

    function withdraw(address recipient, uint256 amount) public onlyOwner {
        uint256 balance = balanceOf(address(this));
        require(balance >= _withdrawableAmount, 'withdraw: Balance is less from required limit');
        require(amount <= balance, 'withdraw: Amount is more then balance');

        _transfer(address(this), recipient, amount);

        emit TreasureWithdraw(recipient, amount);
    }

    function setPoolAddress(address pool_) public onlyOwner {
        require(pool_ != address(this), 'setPoolAddress: Zero address not allowed');
        pool = pool_;

        emit PoolAddressChanged(pool);
    }

    function setSlippage(uint256 slippage) public onlyOwner returns (bool) {
        _slippage = slippage;
        return true;
    }

    //  --------------------
    //  SETTERS
    //  --------------------


     function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);

        return true;
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);

        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, 'transferFrom: Transfer amount exceeds allowance'));

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));

        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'decreaseAllowance: decreased allowance below zero'));

        return true;
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], 'reflect: Excluded addresses cannot call this function');

        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tHoldFeeTotal = _tHoldFeeTotal.add(tAmount);
    }


    //  --------------------
    //  GETTERS
    //  --------------------


    function name() public pure override returns (string memory) {
        return _NAME;
    }

    function symbol() public pure override returns (string memory) {
        return _SYMBOL;
    }

    function decimals() public pure override returns (uint8) {
        return _DECIMALS;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (account == address(this) || _isExcluded[account]) return _tOwned[account];
        else return tokenFromReflection(_rOwned[account]);
    }

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

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function isAmmContract(address account) public view returns (bool) {
        return _isAmm[account];
    }

    function totalFees() public view returns (uint256) {
        return _tHoldFeeTotal;
    }

    function getSlippage() public view returns (uint256) {
        return _slippage;
    }

    function getHoldingFee() public pure returns (uint256) {
        return _HOLD_FEE;
    }

    function getTreasureFee() public pure returns (uint256) {
        return _TREASURE_FEE;
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
        require(tAmount <= _tTotal, 'reflectionFromToken: Amount must be less than supply');

        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
        require(rAmount <= _rTotal, 'tokenFromReflection: Amount must be less than total reflections');

        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }


    //  --------------------
    //  INTERNAL
    //  --------------------


    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), '_approve: Approve from the zero address');
        require(spender != address(0), '_approve: Approve to the zero address');

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), '_transfer: Transfer from the zero address');
        require(recipient != address(0), '_transfer: Transfer to the zero address');
        require(amount > 0, '_transfer: Transfer amount must be greater than zero');
        require(balanceOf(sender) >= amount, "_transfer: The balance is insufficient");
        bool cutFee = (_isAmm[recipient] || _isAmm[sender]) && !_swapping;
        if (
            _tOwned[address(this)] >= _withdrawableAmount && 
            msg.sender != uniswapV2UsdcPair && 
            !inSwapAndLiquify
        ) {
            _swapAndSend();
        }
        // Remove all fees, if it is not swap transaction
        if (!cutFee) {
            _disableFee();
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        // Reset the fees back again
        if (!cutFee) {
            _enableFee();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tHoldFee,
            uint256 tTreasureFee
        ) = _getValues(tAmount);

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _claimTreasureFee(tTreasureFee);
        _reflectFee(rFee, tHoldFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tHoldFee,
            uint256 tTreasureFee
        ) = _getValues(tAmount);

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _claimTreasureFee(tTreasureFee);
        _reflectFee(rFee, tHoldFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tHoldFee,
            uint256 tTreasureFee
        ) = _getValues(tAmount);

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _claimTreasureFee(tTreasureFee);
        _reflectFee(rFee, tHoldFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tHoldFee,
            uint256 tTreasureFee
        ) = _getValues(tAmount);

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _claimTreasureFee(tTreasureFee);
        _reflectFee(rFee, tHoldFee);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tHoldFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tHoldFeeTotal = _tHoldFeeTotal.add(tHoldFee);
    }

    function _disableFee() private {
        if (_holdFee == 0 && _treasureFee == 0) return;

        _swapping = true;
        _holdFee = 0;
        _treasureFee = 0;
    }

    function _enableFee() private {
        _swapping = false;
        _holdFee = _HOLD_FEE;
        _treasureFee = _TREASURE_FEE;
    }

    function _claimTreasureFee(uint256 tTreasureFee) private {
        uint256 currentRate = _getRate();
        uint256 rTreasureFee = tTreasureFee.mul(currentRate);

        _rOwned[address(this)] = _rOwned[address(this)].add(rTreasureFee);
        _tOwned[address(this)] = _tOwned[address(this)].add(tTreasureFee);

        emit TreasureFeeAdded(balanceOf(address(this)), tTreasureFee, rTreasureFee);
    }

    function _swapAndSend() private lockTheSwap {
        _swapTokensForUSDC(_withdrawableAmount);
        uint256 usdcBalance = usdc.balanceOf(address(this));
        usdc.transfer(pool, usdcBalance);
        emit UsdcReceived(pool, _withdrawableAmount, usdcBalance);
    }

    function _swapTokensForUSDC(uint256 tokenAmount) private {
        require(pool != address(0), "Pool not found");
        (uint256 reserveIn, uint256 reserveOut,) = IUniswapV2Pair(uniswapV2UsdcPair).getReserves();
        uint256 amountOut; 
        try uniswapV2Router.getAmountOut(tokenAmount, reserveIn, reserveOut) {
            amountOut = uniswapV2Router.getAmountOut(tokenAmount, reserveIn, reserveOut);
        } catch {
            _approve(address(this), address(uniswapV2Router), 0);
            emit Log("DETF->USDC swap failed");
        }
        uint256 minAmountOut = amountOut.sub(amountOut.mul(_slippage).div(_HUNDRED_PERCENT));
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = address(usdc);
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        try uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            minAmountOut,
            path,
            pool,
            block.timestamp
        ) {
            emit Log("DETF->USDC swap success");
        } catch {
            _approve(address(this), address(uniswapV2Router), 0);
            emit Log("DETF->USDC swap failed");
        }
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tHoldFee, uint256 tTreasureFee) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tHoldFee, tTreasureFee);

        return (
            rAmount,
            rTransferAmount,
            rFee,
            tTransferAmount,
            tHoldFee,
            tTreasureFee
        );
    }

    function _getReflectAmount(uint256 tAmount) private view returns (uint256) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount.mul(currentRate);

        return rAmount;
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        // Cut the holding and treasure fees from the main amount (only if swapping)
        uint256 tHoldFee = tAmount.mul(_holdFee).div(_HUNDRED_PERCENT);
        uint256 tTreasureFee = tAmount.mul(_treasureFee).div(_HUNDRED_PERCENT);
        uint256 tTransferAmount = tAmount.sub(tHoldFee).sub(tTreasureFee);

        return (
            tTransferAmount,
            tHoldFee,
            tTreasureFee
        );
    }

    function _getRValues(uint256 tAmount, uint256 tHoldFee, uint256 tTreasureFee) private view returns (uint256, uint256, uint256) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tHoldFee.mul(currentRate);
        uint256 rTreasureFee = tTreasureFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rTreasureFee);

        return (
            rAmount,
            rTransferAmount,
            rFee
        );
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();

        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }

        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);

        return (
            rSupply,
            tSupply
        );
    }
}

File 4 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
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 Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @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-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 9 : IUniswap.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;


interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"uniswapV2Router_","type":"address"},{"internalType":"address","name":"usdc_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"AmmAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"AmmRemoved","type":"event"},{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"ExcludedAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"ExcludedRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"Log","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":false,"internalType":"address","name":"newPool","type":"address"}],"name":"PoolAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tfee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rFee","type":"uint256"}],"name":"TreasureFeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TreasureWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"detfSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdcReceived","type":"uint256"}],"name":"UsdcReceived","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToAmmList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeWithdrawLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"checkpoints","outputs":[{"internalType":"uint256","name":"fromBlock","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegatorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccountFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHoldingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSlippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreasureFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccountForRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAmmContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","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":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromAmmList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool_","type":"address"}],"name":"setPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"slippage","type":"uint256"}],"name":"setSlippage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2UsdcPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdc","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052609660018190556002556200001c6012600a62000979565b6200002b90620186a062000a38565b6003556200003c6012600a62000979565b6200004c906305f5e10062000a38565b60048190556200005f9060001962000a92565b6200006d9060001962000a5a565b6005553480156200007d57600080fd5b506040516200553038038062005530833981016040819052620000a091620008e2565b8181620000ad3362000293565b600554336000908152600f602090815260409182902092909255600b80546001600160a01b038581166001600160a01b031992831617909255600a80549287169290911682179055815163c45a015560e01b81529151909263c45a01559260048082019391829003018186803b1580156200012757600080fd5b505afa1580156200013c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001629190620008c5565b600b546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b158015620001af57600080fd5b505af1158015620001c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ea9190620008c5565b600980546001600160a01b0319166001600160a01b03929092169190911790556200021533620002e3565b6200022030620002e3565b60095462000237906001600160a01b0316620002e3565b6009546200024e906001600160a01b0316620004bd565b60045460405190815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505062000ad5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620003325760405162461bcd60e51b815260206004820181905260248201526000805160206200551083398151915260448201526064015b60405180910390fd5b6001600160a01b0381166000908152600d602052604090205460ff1615620003c35760405162461bcd60e51b815260206004820152603660248201527f6578636c7564654163636f756e7446726f6d526577617264733a204163636f7560448201527f6e7420697320616c7265616479206578636c7564656400000000000000000000606482015260840162000329565b6001600160a01b0381166000908152600f60205260409020541562000420576001600160a01b0381166000908152600f60205260409020546200040690620005b5565b6001600160a01b0382166000908152601060205260409020555b6001600160a01b0381166000818152600d60209081526040808320805460ff19166001908117909155600c805491820181559093527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c790920180546001600160a01b0319168417905590519182527fbe7ec9fb4697d572bc0b093efb44945a63e1f7e5e4f69f086687c5acc583da5591015b60405180910390a150565b6000546001600160a01b03163314620005085760405162461bcd60e51b8152602060048201819052602482015260008051602062005510833981519152604482015260640162000329565b6001600160a01b038116620005605760405162461bcd60e51b815260206004820181905260248201527f616464546f416d6d4c6973743a20496e636f7272656374206164647265737321604482015260640162000329565b6001600160a01b0381166000818152600e6020908152604091829020805460ff1916600117905590519182527f10cdbb821aa416c854add806e1d7e8138afe2a538921cebe99b1351362ae38b29101620004b2565b6000600554821115620006315760405162461bcd60e51b815260206004820152603f60248201527f746f6b656e46726f6d5265666c656374696f6e3a20416d6f756e74206d75737460448201527f206265206c657373207468616e20746f74616c207265666c656374696f6e7300606482015260840162000329565b60006200063d62000660565b90506200065981846200069360201b620026cc1790919060201c565b9392505050565b600080806200066e620006aa565b915091506200068c81836200069360201b620026cc1790919060201c565b9250505090565b6000620006a1828462000919565b90505b92915050565b6005546004546000918291825b600c548110156200085a5782600f6000600c8481548110620006e957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806200076457508160106000600c84815481106200073d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156200077b57600554600454945094505050509091565b620007de600f6000600c8481548110620007a557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548591620026d86200089a821b17901c565b92506200084360106000600c84815481106200080a57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548491620026d86200089a821b17901c565b915080620008518162000a74565b915050620006b7565b50620008796004546005546200069360201b620026cc1790919060201c565b82101562000891576005546004549350935050509091565b90939092509050565b6000620006a1828462000a5a565b80516001600160a01b0381168114620008c057600080fd5b919050565b600060208284031215620008d7578081fd5b620006a182620008a8565b60008060408385031215620008f5578081fd5b6200090083620008a8565b91506200091060208401620008a8565b90509250929050565b6000826200092b576200092b62000abf565b500490565b600181815b808511156200097157816000190482111562000955576200095562000aa9565b808516156200096357918102915b93841c939080029062000935565b509250929050565b6000620006a160ff8416836000826200099557506001620006a4565b81620009a457506000620006a4565b8160018114620009bd5760028114620009c857620009e8565b6001915050620006a4565b60ff841115620009dc57620009dc62000aa9565b50506001821b620006a4565b5060208310610133831016604e8410600b841016171562000a0d575081810a620006a4565b62000a19838362000930565b806000190482111562000a305762000a3062000aa9565b029392505050565b600081600019048311821515161562000a555762000a5562000aa9565b500290565b60008282101562000a6f5762000a6f62000aa9565b500390565b600060001982141562000a8b5762000a8b62000aa9565b5060010190565b60008262000aa45762000aa462000abf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b614a2b8062000ae56000396000f3fe6080604052600436106102dc5760003560e01c8063715018a611610182578063b4b5ea57116100d5578063e8ed48fb11610084578063f2fde38b11610061578063f2fde38b14610a1a578063f3fef3a314610a3a578063fc9cee3c14610a5a57005b8063e8ed48fb146109ba578063e9e15b4f146109da578063f0fa55a9146109fa57005b8063cba0e996116100b2578063cba0e996146108ed578063dd62ed3e14610933578063e7a324dc1461098657005b8063b4b5ea571461088d578063c3cda520146108ad578063ca9c1c94146108cd57005b806395d89b4111610131578063a9059cbb1161010e578063a9059cbb1461084d578063a90c14ef14610768578063b2f3d11c1461086d57005b806395d89b41146107c7578063a457c2d71461080d578063a76e5ab51461082d57005b806381e823921161015f57806381e82392146107685780638da5cb5b1461077c5780638dba085c146107a757005b8063715018a614610706578063782d6fe11461071b5780637ecebe001461073b57005b806323b872dd1161023a578063407e45ae116101e95780635c19a95c116101c65780635c19a95c146106995780636fcfff45146106b957806370a08231146106e657005b8063407e45ae146106095780634549b03914610636578063587cde1e1461065657005b8063313ce56711610217578063313ce567146105a057806339509351146105bc5780633e413bee146105dc57005b806323b872dd1461051a5780632ad549561461053a5780632d8381191461058057005b80631694505e116102965780631f778b2e116102735780631f778b2e1461049a57806320606b70146104c7578063220f6696146104fb57005b80631694505e1461040057806316f0115b1461045257806318160ddd1461048557005b8063095ea7b3116102c4578063095ea7b31461035d5780630cdfebfa1461038d57806313114a9d146103e157005b8063053ab182146102e557806306fdde031461030557005b366102e357005b005b3480156102f157600080fd5b506102e3610300366004614720565b610a6f565b34801561031157600080fd5b5060408051808201909152600a81527f4445544620746f6b656e0000000000000000000000000000000000000000000060208201525b604051610354919061477f565b60405180910390f35b34801561036957600080fd5b5061037d61037836600461462f565b610ba3565b6040519015158152602001610354565b34801561039957600080fd5b506103cc6103a836600461462f565b60136020908152600092835260408084209091529082529020805460019091015482565b60408051928352602083019190915201610354565b3480156103ed57600080fd5b506006545b604051908152602001610354565b34801561040c57600080fd5b50600a5461042d9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610354565b34801561045e57600080fd5b5060085461042d9062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b34801561049157600080fd5b506004546103f2565b3480156104a657600080fd5b5060095461042d9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104d357600080fd5b506103f27f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561050757600080fd5b5060085461037d90610100900460ff1681565b34801561052657600080fd5b5061037d6105353660046145f4565b610bba565b34801561054657600080fd5b5061037d6105553660046145a8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205460ff1690565b34801561058c57600080fd5b506103f261059b366004614720565b610c30565b3480156105ac57600080fd5b5060405160128152602001610354565b3480156105c857600080fd5b5061037d6105d736600461462f565b610ce1565b3480156105e857600080fd5b50600b5461042d9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061557600080fd5b506103f26106243660046145a8565b60156020526000908152604090205481565b34801561064257600080fd5b506103f2610651366004614750565b610d24565b34801561066257600080fd5b5061042d6106713660046145a8565b60126020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b3480156106a557600080fd5b506102e36106b43660046145a8565b610df1565b3480156106c557600080fd5b506103f26106d43660046145a8565b60146020526000908152604090205481565b3480156106f257600080fd5b506103f26107013660046145a8565b610dfe565b34801561071257600080fd5b506102e3610eab565b34801561072757600080fd5b506103f261073636600461462f565b610f38565b34801561074757600080fd5b506103f26107563660046145a8565b60166020526000908152604090205481565b34801561077457600080fd5b5060966103f2565b34801561078857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661042d565b3480156107b357600080fd5b506102e36107c2366004614720565b6111d8565b3480156107d357600080fd5b5060408051808201909152600481527f44455446000000000000000000000000000000000000000000000000000000006020820152610347565b34801561081957600080fd5b5061037d61082836600461462f565b61125e565b34801561083957600080fd5b506102e36108483660046145a8565b6112ba565b34801561085957600080fd5b5061037d61086836600461462f565b611742565b34801561087957600080fd5b506102e36108883660046145a8565b61174f565b34801561089957600080fd5b506103f26108a83660046145a8565b6119e0565b3480156108b957600080fd5b506102e36108c8366004614658565b611a5c565b3480156108d957600080fd5b506102e36108e83660046145a8565b611e42565b3480156108f957600080fd5b5061037d6109083660046145a8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205460ff1690565b34801561093f57600080fd5b506103f261094e3660046145c2565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b34801561099257600080fd5b506103f27fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b3480156109c657600080fd5b506102e36109d53660046145a8565b611fbf565b3480156109e657600080fd5b506102e36109f53660046145a8565b61215f565b348015610a0657600080fd5b5061037d610a15366004614720565b612304565b348015610a2657600080fd5b506102e3610a353660046145a8565b61238f565b348015610a4657600080fd5b506102e3610a5536600461462f565b6124bc565b348015610a6657600080fd5b506007546103f2565b336000818152600d602052604090205460ff1615610b14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f7265666c6563743a204578636c75646564206164647265737365732063616e6e60448201527f6f742063616c6c20746869732066756e6374696f6e000000000000000000000060648201526084015b60405180910390fd5b6000610b1f836126e4565b5050505073ffffffffffffffffffffffffffffffffffffffff84166000908152600f6020526040902054919250610b58919050826126d8565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600f6020526040902055600554610b8b90826126d8565b600555600654610b9b908461272b565b600655505050565b6000610bb0338484612737565b5060015b92915050565b6000610bc78484846128eb565b610c268433610c21856040518060600160405280602f8152602001614996602f913973ffffffffffffffffffffffffffffffffffffffff8a166000908152601160209081526040808320338452909152902054919061293d565b612737565b5060019392505050565b6000600554821115610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f746f6b656e46726f6d5265666c656374696f6e3a20416d6f756e74206d75737460448201527f206265206c657373207468616e20746f74616c207265666c656374696f6e73006064820152608401610b0b565b6000610cce612983565b9050610cda83826126cc565b9392505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610bb0918590610c21908661272b565b6000600454831115610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f7265666c656374696f6e46726f6d546f6b656e3a20416d6f756e74206d75737460448201527f206265206c657373207468616e20737570706c790000000000000000000000006064820152608401610b0b565b81610dd7576000610dc8846126e4565b50939550610bb4945050505050565b6000610de2846126e4565b50929550610bb4945050505050565b610dfb33826129a6565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216301480610e49575073ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff165b15610e77575073ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600f6020526040902054610bb490610c30565b919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b610f366000612a70565b565b6000438210610fc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f6765745072696f72566f7465733a204e6f74207965742064657465726d696e6560448201527f64210000000000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205480610ffe576000915050610bb4565b73ffffffffffffffffffffffffffffffffffffffff841660009081526013602052604081208491611030600185614908565b815260200190815260200160002060000154116110925773ffffffffffffffffffffffffffffffffffffffff8416600090815260136020526040812090611078600184614908565b815260200190815260200160002060010154915050610bb4565b73ffffffffffffffffffffffffffffffffffffffff841660009081526013602090815260408083208380529091529020548310156110d4576000915050610bb4565b6000806110e2600184614908565b90505b8181111561119b57600060026110fb8484614908565b6111059190614892565b61110f9083614908565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260136020908152604080832084845282529182902082518084019093528054808452600190910154918301919091529192509087141561117557602001519450610bb49350505050565b805187111561118657819350611194565b611191600183614908565b92505b50506110e5565b5073ffffffffffffffffffffffffffffffffffffffff85166000908152601360209081526040808320938352929052206001015491505092915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b600355565b6000610bb03384610c21856040518060600160405280603181526020016149c56031913933600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061293d565b60005473ffffffffffffffffffffffffffffffffffffffff16331461133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604090205460ff166113f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f696e636c7564654163636f756e74466f72526577617264733a204163636f756e60448201527f7420697320616c7265616479206578636c7564656400000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8116301415611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f696e636c7564654163636f756e74466f72526577617264733a2043616e206e6f60448201527f7420696e636c75646520746f6b656e20616464726573730000000000000000006064820152608401610b0b565b60005b600c548110156116f4578173ffffffffffffffffffffffffffffffffffffffff16600c82815481106114f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156116e257600c805461152c90600190614908565b81548110611563577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260209091200154600c805473ffffffffffffffffffffffffffffffffffffffff90921691839081106115c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559184168152601082526040808220829055600d9092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600c805480611685577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556116f4565b806116ec8161491f565b915050611499565b5060405173ffffffffffffffffffffffffffffffffffffffff821681527f3a55248ffa7e7ecde8b36985c767e0c28af8ac2be6b33a0834033fd98f5d3cc8906020015b60405180910390a150565b6000610bb03384846128eb565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604090205460ff1615611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f6578636c7564654163636f756e7446726f6d526577617264733a204163636f7560448201527f6e7420697320616c7265616479206578636c75646564000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600f6020526040902054156119075773ffffffffffffffffffffffffffffffffffffffff81166000908152600f60205260409020546118e090610c30565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601060205260409020555b73ffffffffffffffffffffffffffffffffffffffff81166000818152600d6020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600c805491820181559093527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c790920180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905590519182527fbe7ec9fb4697d572bc0b093efb44945a63e1f7e5e4f69f086687c5acc583da559101611737565b73ffffffffffffffffffffffffffffffffffffffff811660009081526014602052604081205480611a12576000610cda565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040812090611a43600184614908565b8152602001908152602001600020600101549392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866611ab960408051808201909152600a81527f4445544620746f6b656e00000000000000000000000000000000000000000000602082015290565b8051602091820120604080518084019490945283810191909152466060840152306080808501919091528151808503909101815260a0840182528051908301207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c085015273ffffffffffffffffffffffffffffffffffffffff8b1660e085015261010084018a90526101208085018a9052825180860390910181526101408501909252815191909201207f190100000000000000000000000000000000000000000000000000000000000061016084015261016283018290526101828301819052909250906000906101a201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611c30573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f64656c656761746542795369673a20496e76616c6964207369676e617475726560448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601660205260408120805491611d2f8361491f565b919050558914611d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f64656c656761746542795369673a20496e76616c6964206e6f6e6365210000006044820152606401610b0b565b87421115611e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f64656c656761746542795369673a205369676e6174757265206578706972656460448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610b0b565b611e35818b6129a6565b505050505b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ec3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8116611f40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f616464546f416d6d4c6973743a20496e636f72726563742061646472657373216044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000818152600e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527f10cdbb821aa416c854add806e1d7e8138afe2a538921cebe99b1351362ae38b29101611737565b60005473ffffffffffffffffffffffffffffffffffffffff163314612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166120e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f72656d6f766546726f6d416d6d4c6973743a20496e636f72726563742061646460448201527f72657373210000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000818152600e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fdaad2af263ebb3abf337a324f20752addc3bf170971ce7b80cc3bfea1fcf30ee9101611737565b60005473ffffffffffffffffffffffffffffffffffffffff1633146121e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8116301415612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f736574506f6f6c416464726573733a205a65726f2061646472657373206e6f7460448201527f20616c6c6f7765640000000000000000000000000000000000000000000000006064820152608401610b0b565b600880547fffffffffffffffffffff0000000000000000000000000000000000000000ffff166201000073ffffffffffffffffffffffffffffffffffffffff8481168202929092179283905560405192041681527f5b36800c27524690807962bd42525a44e68b3f860e8f9e0204f27e777d2f460590602001611737565b6000805473ffffffffffffffffffffffffffffffffffffffff163314612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b50600755600190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166124b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b0b565b610dfb81612a70565b60005473ffffffffffffffffffffffffffffffffffffffff16331461253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b600061254830610dfe565b90506003548110156125dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f77697468647261773a2042616c616e6365206973206c6573732066726f6d207260448201527f65717569726564206c696d6974000000000000000000000000000000000000006064820152608401610b0b565b8082111561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f77697468647261773a20416d6f756e74206973206d6f7265207468656e20626160448201527f6c616e63650000000000000000000000000000000000000000000000000000006064820152608401610b0b565b6126773084846128eb565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018490527f5e16fe28cec1f69bb7a9fc8843733cc745f2427bfc099684d09edbc9922f364591015b60405180910390a1505050565b6000610cda8284614892565b6000610cda8284614908565b60008060008060008060008060006126fb8a612ae5565b92509250925060008060006127118d8686612b51565b919f909e50909c50959a5093985091965092945050505050565b6000610cda828461487a565b73ffffffffffffffffffffffffffffffffffffffff83166127da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f617070726f76653a20417070726f76652066726f6d20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff821661287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5f617070726f76653a20417070726f766520746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526012602052604080822054858416835291205461292d92918216911683866001612bae565b612938838383612fde565b505050565b6000818484111561297b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b919061477f565b505050900390565b6000806000612990613516565b909250905061299f82826126cc565b9250505090565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260126020526040812054909116906129da84610dfe565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526012602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612a6a828483876000612bae565b50505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080600080612b0c612710612b066001548861376890919063ffffffff16565b906126cc565b90506000612b2b612710612b066002548961376890919063ffffffff16565b90506000612b4382612b3d89866126d8565b906126d8565b979296509094509092505050565b600080600080612b5f612983565b90506000612b6d8883613768565b90506000612b7b8884613768565b90506000612b898885613768565b90506000612b9b82612b3d86866126d8565b939b939a50919850919650505050505050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604081205490612bde84610dfe565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015612c1c5750600085115b15612ec65773ffffffffffffffffffffffffffffffffffffffff871615612da45773ffffffffffffffffffffffffffffffffffffffff87166000908152601460205260408120549081612c70576000612cb4565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260136020526040812090612ca1600185614908565b8152602001908152602001600020600101545b905060008515612d4a5784881115612d1057612cd084896126d8565b73ffffffffffffffffffffffffffffffffffffffff88166000908152601560205260409020819055612d09908690612b3d90859061272b565b9050612d90565b612d1a8886614908565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260156020526040902055612d0982896126d8565b878514612d835773ffffffffffffffffffffffffffffffffffffffff87166000908152601560205260409020889055612d0982866126d8565b612d8d82896126d8565b90505b612d9c8a848484613774565b505050612dcd565b73ffffffffffffffffffffffffffffffffffffffff841660009081526015602052604090208590555b73ffffffffffffffffffffffffffffffffffffffff861615612ec15773ffffffffffffffffffffffffffffffffffffffff86166000908152601460205260408120549081612e1c576000612e60565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260136020526040812090612e4d600185614908565b8152602001908152602001600020600101545b90506000612e6e828961272b565b90508515612eb15773ffffffffffffffffffffffffffffffffffffffff8916600090815260156020526040812080548a9290612eab90849061487a565b90915550505b612ebd89848484613774565b5050505b612fd5565b82158015612eff57508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b8015612f0b5750818514155b15612fd55773ffffffffffffffffffffffffffffffffffffffff86166000908152601460205260408120549081612f43576000612f87565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260136020526040812090612f74600185614908565b8152602001908152602001600020600101545b90506000612f9f88612f9984886126d8565b9061272b565b73ffffffffffffffffffffffffffffffffffffffff881660009081526015602052604090208990559050611e3589848484613774565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316613081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5f7472616e736665723a205472616e736665722066726f6d20746865207a657260448201527f6f206164647265737300000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8216613124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f7472616e736665723a205472616e7366657220746f20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610b0b565b600081116131b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610b0b565b806131be84610dfe565b101561324c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5f7472616e736665723a205468652062616c616e636520697320696e7375666660448201527f696369656e7400000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604081205460ff16806132a5575073ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff165b80156132b4575060085460ff16155b60035430600090815260106020526040902054919250118015906132f0575060095473ffffffffffffffffffffffffffffffffffffffff163314155b80156133045750600854610100900460ff16155b15613311576133116138eb565b8061331e5761331e613b0a565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff168015613379575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff16155b1561338e57613389848484613b5a565b6134da565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff161580156133e9575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff165b156133f957613389848484613cce565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff16158015613455575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff16155b1561346557613389848484613d9e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff1680156134bf575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff165b156134cf57613389848484613def565b6134da848484613d9e565b80612a6a57612a6a600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560966001819055600255565b6005546004546000918291825b600c548110156137385782600f6000600c848154811061356c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054118061361857508160106000600c84815481106135e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561362e57600554600454945094505050509091565b6136a8600f6000600c848154811061366f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906126d8565b925061372460106000600c84815481106136eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906126d8565b9150806137308161491f565b915050613523565b50600454600554613748916126cc565b82101561375f576005546004549350935050509091565b90939092509050565b6000610cda82846148cb565b4383158015906137c5575073ffffffffffffffffffffffffffffffffffffffff8516600090815260136020526040812082916137b1600188614908565b815260200190815260200160002060000154145b156138155773ffffffffffffffffffffffffffffffffffffffff8516600090815260136020526040812083916137fc600188614908565b8152602081019190915260400160002060010155613893565b604080518082018252828152602080820185815273ffffffffffffffffffffffffffffffffffffffff891660009081526013835284812089825290925292902090518155905160019182015561386c90859061487a565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601460205260409020555b604080518481526020810184905273ffffffffffffffffffffffffffffffffffffffff8716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1661010017905560035461392390613e7c565b600b546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561398d57600080fd5b505afa1580156139a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139c59190614738565b600b546008546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff620100009092048216600482015260248101849052929350169063a9059cbb90604401602060405180830381600087803b158015613a4357600080fd5b505af1158015613a57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a7b91906146b6565b50600854600354604080516201000090930473ffffffffffffffffffffffffffffffffffffffff168352602083019190915281018290527fceff87c0a6323e333bcfd7219dfd505acc75c2144c7c4760ba13411fdeb114e19060600160405180910390a150600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055565b600154158015613b1a5750600254155b15613b2157565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600090819055600255565b600080600080600080613b6c876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260106020526040902054959b50939950919750955093509150613bab90886126d8565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260106020908152604080832093909355600f90522054613be790876126d8565b73ffffffffffffffffffffffffffffffffffffffff808b166000908152600f602052604080822093909355908a1681522054613c23908661272b565b73ffffffffffffffffffffffffffffffffffffffff89166000908152600f6020526040902055613c528161448e565b613c5c8483614542565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613cbb91815260200190565b60405180910390a3505050505050505050565b600080600080600080613ce0876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f166000908152600f6020526040902054959b50939950919750955093509150613d1f90876126d8565b73ffffffffffffffffffffffffffffffffffffffff808b166000908152600f6020908152604080832094909455918b16815260109091522054613d62908461272b565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260106020908152604080832093909355600f90522054613c23908661272b565b600080600080600080613db0876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f166000908152600f6020526040902054959b50939950919750955093509150613be790876126d8565b600080600080600080613e01876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260106020526040902054959b50939950919750955093509150613e4090886126d8565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260106020908152604080832093909355600f90522054613d1f90876126d8565b60085462010000900473ffffffffffffffffffffffffffffffffffffffff16613f01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f506f6f6c206e6f7420666f756e640000000000000000000000000000000000006044820152606401610b0b565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015613f6c57600080fd5b505afa158015613f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fa491906146d2565b50600a546040517f054d50d4000000000000000000000000000000000000000000000000000000008152600481018790526dffffffffffffffffffffffffffff93841660248201819052929093166044840181905291945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169063054d50d49060640160206040518083038186803b15801561403c57600080fd5b505afa92505050801561408a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261408791810190614738565b60015b61412057600a546140b490309073ffffffffffffffffffffffffffffffffffffffff166000612737565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab6040516141139060208082526016908201527f444554462d3e555344432073776170206661696c656400000000000000000000604082015260600190565b60405180910390a16141d4565b50600a546040517f054d50d400000000000000000000000000000000000000000000000000000000815260048101869052602481018590526044810184905273ffffffffffffffffffffffffffffffffffffffff9091169063054d50d49060640160206040518083038186803b15801561419957600080fd5b505afa1580156141ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141d19190614738565b90505b60006141fb6141f4612710612b066007548661376890919063ffffffff16565b83906126d8565b6040805160028082526060820183529293506000929091602083019080368337019050509050308160008151811061425c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b548251911690829060019081106142c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546142f49130911688612737565b600a546008546040517f5c11d79500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92831692635c11d7959261435e928b9288928892620100009091049091169042906004016147f0565b600060405180830381600087803b15801561437857600080fd5b505af1925050508015614389575060015b61441f57600a546143b390309073ffffffffffffffffffffffffffffffffffffffff166000612737565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab6040516144129060208082526016908201527f444554462d3e555344432073776170206661696c656400000000000000000000604082015260600190565b60405180910390a1611e3a565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab60405161447e9060208082526017908201527f444554462d3e5553444320737761702073756363657373000000000000000000604082015260600190565b60405180910390a1505050505050565b6000614498612983565b905060006144a68383613768565b306000908152600f60205260409020549091506144c3908261272b565b306000908152600f60209081526040808320939093556010905220546144e9908461272b565b306000818152601060205260409020919091557f10d6a3429f06aac9b917d5131ee6acab36f63e2fe61f98fb7a86ee2ca5e6e65f9061452790610dfe565b604080519182526020820186905281018390526060016126bf565b60055461454f90836126d8565b60055560065461455f908261272b565b6006555050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ea657600080fd5b80516dffffffffffffffffffffffffffff81168114610ea657600080fd5b6000602082840312156145b9578081fd5b610cda82614566565b600080604083850312156145d4578081fd5b6145dd83614566565b91506145eb60208401614566565b90509250929050565b600080600060608486031215614608578081fd5b61461184614566565b925061461f60208501614566565b9150604084013590509250925092565b60008060408385031215614641578182fd5b61464a83614566565b946020939093013593505050565b60008060008060008060c08789031215614670578182fd5b61467987614566565b95506020870135945060408701359350606087013560ff8116811461469c578283fd5b9598949750929560808101359460a0909101359350915050565b6000602082840312156146c7578081fd5b8151610cda81614987565b6000806000606084860312156146e6578283fd5b6146ef8461458a565b92506146fd6020850161458a565b9150604084015163ffffffff81168114614715578182fd5b809150509250925092565b600060208284031215614731578081fd5b5035919050565b600060208284031215614749578081fd5b5051919050565b60008060408385031215614762578182fd5b82359150602083013561477481614987565b809150509250929050565b6000602080835283518082850152825b818110156147ab5785810183015185820160400152820161478f565b818111156147bc5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561484c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161481a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000821982111561488d5761488d614958565b500190565b6000826148c6577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561490357614903614958565b500290565b60008282101561491a5761491a614958565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495157614951614958565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8015158114610dfb57600080fdfe7472616e7366657246726f6d3a205472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63656465637265617365416c6c6f77616e63653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dc8f41f90d69b78ab08c653a588ce3b55e6ad2940e1c72336f64079503d131fb64736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48

Deployed Bytecode

0x6080604052600436106102dc5760003560e01c8063715018a611610182578063b4b5ea57116100d5578063e8ed48fb11610084578063f2fde38b11610061578063f2fde38b14610a1a578063f3fef3a314610a3a578063fc9cee3c14610a5a57005b8063e8ed48fb146109ba578063e9e15b4f146109da578063f0fa55a9146109fa57005b8063cba0e996116100b2578063cba0e996146108ed578063dd62ed3e14610933578063e7a324dc1461098657005b8063b4b5ea571461088d578063c3cda520146108ad578063ca9c1c94146108cd57005b806395d89b4111610131578063a9059cbb1161010e578063a9059cbb1461084d578063a90c14ef14610768578063b2f3d11c1461086d57005b806395d89b41146107c7578063a457c2d71461080d578063a76e5ab51461082d57005b806381e823921161015f57806381e82392146107685780638da5cb5b1461077c5780638dba085c146107a757005b8063715018a614610706578063782d6fe11461071b5780637ecebe001461073b57005b806323b872dd1161023a578063407e45ae116101e95780635c19a95c116101c65780635c19a95c146106995780636fcfff45146106b957806370a08231146106e657005b8063407e45ae146106095780634549b03914610636578063587cde1e1461065657005b8063313ce56711610217578063313ce567146105a057806339509351146105bc5780633e413bee146105dc57005b806323b872dd1461051a5780632ad549561461053a5780632d8381191461058057005b80631694505e116102965780631f778b2e116102735780631f778b2e1461049a57806320606b70146104c7578063220f6696146104fb57005b80631694505e1461040057806316f0115b1461045257806318160ddd1461048557005b8063095ea7b3116102c4578063095ea7b31461035d5780630cdfebfa1461038d57806313114a9d146103e157005b8063053ab182146102e557806306fdde031461030557005b366102e357005b005b3480156102f157600080fd5b506102e3610300366004614720565b610a6f565b34801561031157600080fd5b5060408051808201909152600a81527f4445544620746f6b656e0000000000000000000000000000000000000000000060208201525b604051610354919061477f565b60405180910390f35b34801561036957600080fd5b5061037d61037836600461462f565b610ba3565b6040519015158152602001610354565b34801561039957600080fd5b506103cc6103a836600461462f565b60136020908152600092835260408084209091529082529020805460019091015482565b60408051928352602083019190915201610354565b3480156103ed57600080fd5b506006545b604051908152602001610354565b34801561040c57600080fd5b50600a5461042d9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610354565b34801561045e57600080fd5b5060085461042d9062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b34801561049157600080fd5b506004546103f2565b3480156104a657600080fd5b5060095461042d9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104d357600080fd5b506103f27f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561050757600080fd5b5060085461037d90610100900460ff1681565b34801561052657600080fd5b5061037d6105353660046145f4565b610bba565b34801561054657600080fd5b5061037d6105553660046145a8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205460ff1690565b34801561058c57600080fd5b506103f261059b366004614720565b610c30565b3480156105ac57600080fd5b5060405160128152602001610354565b3480156105c857600080fd5b5061037d6105d736600461462f565b610ce1565b3480156105e857600080fd5b50600b5461042d9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061557600080fd5b506103f26106243660046145a8565b60156020526000908152604090205481565b34801561064257600080fd5b506103f2610651366004614750565b610d24565b34801561066257600080fd5b5061042d6106713660046145a8565b60126020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b3480156106a557600080fd5b506102e36106b43660046145a8565b610df1565b3480156106c557600080fd5b506103f26106d43660046145a8565b60146020526000908152604090205481565b3480156106f257600080fd5b506103f26107013660046145a8565b610dfe565b34801561071257600080fd5b506102e3610eab565b34801561072757600080fd5b506103f261073636600461462f565b610f38565b34801561074757600080fd5b506103f26107563660046145a8565b60166020526000908152604090205481565b34801561077457600080fd5b5060966103f2565b34801561078857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661042d565b3480156107b357600080fd5b506102e36107c2366004614720565b6111d8565b3480156107d357600080fd5b5060408051808201909152600481527f44455446000000000000000000000000000000000000000000000000000000006020820152610347565b34801561081957600080fd5b5061037d61082836600461462f565b61125e565b34801561083957600080fd5b506102e36108483660046145a8565b6112ba565b34801561085957600080fd5b5061037d61086836600461462f565b611742565b34801561087957600080fd5b506102e36108883660046145a8565b61174f565b34801561089957600080fd5b506103f26108a83660046145a8565b6119e0565b3480156108b957600080fd5b506102e36108c8366004614658565b611a5c565b3480156108d957600080fd5b506102e36108e83660046145a8565b611e42565b3480156108f957600080fd5b5061037d6109083660046145a8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205460ff1690565b34801561093f57600080fd5b506103f261094e3660046145c2565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b34801561099257600080fd5b506103f27fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b3480156109c657600080fd5b506102e36109d53660046145a8565b611fbf565b3480156109e657600080fd5b506102e36109f53660046145a8565b61215f565b348015610a0657600080fd5b5061037d610a15366004614720565b612304565b348015610a2657600080fd5b506102e3610a353660046145a8565b61238f565b348015610a4657600080fd5b506102e3610a5536600461462f565b6124bc565b348015610a6657600080fd5b506007546103f2565b336000818152600d602052604090205460ff1615610b14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f7265666c6563743a204578636c75646564206164647265737365732063616e6e60448201527f6f742063616c6c20746869732066756e6374696f6e000000000000000000000060648201526084015b60405180910390fd5b6000610b1f836126e4565b5050505073ffffffffffffffffffffffffffffffffffffffff84166000908152600f6020526040902054919250610b58919050826126d8565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600f6020526040902055600554610b8b90826126d8565b600555600654610b9b908461272b565b600655505050565b6000610bb0338484612737565b5060015b92915050565b6000610bc78484846128eb565b610c268433610c21856040518060600160405280602f8152602001614996602f913973ffffffffffffffffffffffffffffffffffffffff8a166000908152601160209081526040808320338452909152902054919061293d565b612737565b5060019392505050565b6000600554821115610cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f746f6b656e46726f6d5265666c656374696f6e3a20416d6f756e74206d75737460448201527f206265206c657373207468616e20746f74616c207265666c656374696f6e73006064820152608401610b0b565b6000610cce612983565b9050610cda83826126cc565b9392505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610bb0918590610c21908661272b565b6000600454831115610db8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f7265666c656374696f6e46726f6d546f6b656e3a20416d6f756e74206d75737460448201527f206265206c657373207468616e20737570706c790000000000000000000000006064820152608401610b0b565b81610dd7576000610dc8846126e4565b50939550610bb4945050505050565b6000610de2846126e4565b50929550610bb4945050505050565b610dfb33826129a6565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216301480610e49575073ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff165b15610e77575073ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600f6020526040902054610bb490610c30565b919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b610f366000612a70565b565b6000438210610fc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f6765745072696f72566f7465733a204e6f74207965742064657465726d696e6560448201527f64210000000000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205480610ffe576000915050610bb4565b73ffffffffffffffffffffffffffffffffffffffff841660009081526013602052604081208491611030600185614908565b815260200190815260200160002060000154116110925773ffffffffffffffffffffffffffffffffffffffff8416600090815260136020526040812090611078600184614908565b815260200190815260200160002060010154915050610bb4565b73ffffffffffffffffffffffffffffffffffffffff841660009081526013602090815260408083208380529091529020548310156110d4576000915050610bb4565b6000806110e2600184614908565b90505b8181111561119b57600060026110fb8484614908565b6111059190614892565b61110f9083614908565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260136020908152604080832084845282529182902082518084019093528054808452600190910154918301919091529192509087141561117557602001519450610bb49350505050565b805187111561118657819350611194565b611191600183614908565b92505b50506110e5565b5073ffffffffffffffffffffffffffffffffffffffff85166000908152601360209081526040808320938352929052206001015491505092915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b600355565b6000610bb03384610c21856040518060600160405280603181526020016149c56031913933600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061293d565b60005473ffffffffffffffffffffffffffffffffffffffff16331461133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604090205460ff166113f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f696e636c7564654163636f756e74466f72526577617264733a204163636f756e60448201527f7420697320616c7265616479206578636c7564656400000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8116301415611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f696e636c7564654163636f756e74466f72526577617264733a2043616e206e6f60448201527f7420696e636c75646520746f6b656e20616464726573730000000000000000006064820152608401610b0b565b60005b600c548110156116f4578173ffffffffffffffffffffffffffffffffffffffff16600c82815481106114f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156116e257600c805461152c90600190614908565b81548110611563577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260209091200154600c805473ffffffffffffffffffffffffffffffffffffffff90921691839081106115c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559184168152601082526040808220829055600d9092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600c805480611685577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556116f4565b806116ec8161491f565b915050611499565b5060405173ffffffffffffffffffffffffffffffffffffffff821681527f3a55248ffa7e7ecde8b36985c767e0c28af8ac2be6b33a0834033fd98f5d3cc8906020015b60405180910390a150565b6000610bb03384846128eb565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604090205460ff1615611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f6578636c7564654163636f756e7446726f6d526577617264733a204163636f7560448201527f6e7420697320616c7265616479206578636c75646564000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600f6020526040902054156119075773ffffffffffffffffffffffffffffffffffffffff81166000908152600f60205260409020546118e090610c30565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601060205260409020555b73ffffffffffffffffffffffffffffffffffffffff81166000818152600d6020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600c805491820181559093527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c790920180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905590519182527fbe7ec9fb4697d572bc0b093efb44945a63e1f7e5e4f69f086687c5acc583da559101611737565b73ffffffffffffffffffffffffffffffffffffffff811660009081526014602052604081205480611a12576000610cda565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040812090611a43600184614908565b8152602001908152602001600020600101549392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866611ab960408051808201909152600a81527f4445544620746f6b656e00000000000000000000000000000000000000000000602082015290565b8051602091820120604080518084019490945283810191909152466060840152306080808501919091528151808503909101815260a0840182528051908301207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c085015273ffffffffffffffffffffffffffffffffffffffff8b1660e085015261010084018a90526101208085018a9052825180860390910181526101408501909252815191909201207f190100000000000000000000000000000000000000000000000000000000000061016084015261016283018290526101828301819052909250906000906101a201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611c30573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f64656c656761746542795369673a20496e76616c6964207369676e617475726560448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601660205260408120805491611d2f8361491f565b919050558914611d9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f64656c656761746542795369673a20496e76616c6964206e6f6e6365210000006044820152606401610b0b565b87421115611e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f64656c656761746542795369673a205369676e6174757265206578706972656460448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610b0b565b611e35818b6129a6565b505050505b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ec3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8116611f40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f616464546f416d6d4c6973743a20496e636f72726563742061646472657373216044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000818152600e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527f10cdbb821aa416c854add806e1d7e8138afe2a538921cebe99b1351362ae38b29101611737565b60005473ffffffffffffffffffffffffffffffffffffffff163314612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166120e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f72656d6f766546726f6d416d6d4c6973743a20496e636f72726563742061646460448201527f72657373210000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166000818152600e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fdaad2af263ebb3abf337a324f20752addc3bf170971ce7b80cc3bfea1fcf30ee9101611737565b60005473ffffffffffffffffffffffffffffffffffffffff1633146121e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8116301415612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f736574506f6f6c416464726573733a205a65726f2061646472657373206e6f7460448201527f20616c6c6f7765640000000000000000000000000000000000000000000000006064820152608401610b0b565b600880547fffffffffffffffffffff0000000000000000000000000000000000000000ffff166201000073ffffffffffffffffffffffffffffffffffffffff8481168202929092179283905560405192041681527f5b36800c27524690807962bd42525a44e68b3f860e8f9e0204f27e777d2f460590602001611737565b6000805473ffffffffffffffffffffffffffffffffffffffff163314612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b50600755600190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b73ffffffffffffffffffffffffffffffffffffffff81166124b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b0b565b610dfb81612a70565b60005473ffffffffffffffffffffffffffffffffffffffff16331461253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b0b565b600061254830610dfe565b90506003548110156125dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f77697468647261773a2042616c616e6365206973206c6573732066726f6d207260448201527f65717569726564206c696d6974000000000000000000000000000000000000006064820152608401610b0b565b8082111561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f77697468647261773a20416d6f756e74206973206d6f7265207468656e20626160448201527f6c616e63650000000000000000000000000000000000000000000000000000006064820152608401610b0b565b6126773084846128eb565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018490527f5e16fe28cec1f69bb7a9fc8843733cc745f2427bfc099684d09edbc9922f364591015b60405180910390a1505050565b6000610cda8284614892565b6000610cda8284614908565b60008060008060008060008060006126fb8a612ae5565b92509250925060008060006127118d8686612b51565b919f909e50909c50959a5093985091965092945050505050565b6000610cda828461487a565b73ffffffffffffffffffffffffffffffffffffffff83166127da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f617070726f76653a20417070726f76652066726f6d20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff821661287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5f617070726f76653a20417070726f766520746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff80841660009081526012602052604080822054858416835291205461292d92918216911683866001612bae565b612938838383612fde565b505050565b6000818484111561297b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b919061477f565b505050900390565b6000806000612990613516565b909250905061299f82826126cc565b9250505090565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260126020526040812054909116906129da84610dfe565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526012602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612a6a828483876000612bae565b50505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080600080612b0c612710612b066001548861376890919063ffffffff16565b906126cc565b90506000612b2b612710612b066002548961376890919063ffffffff16565b90506000612b4382612b3d89866126d8565b906126d8565b979296509094509092505050565b600080600080612b5f612983565b90506000612b6d8883613768565b90506000612b7b8884613768565b90506000612b898885613768565b90506000612b9b82612b3d86866126d8565b939b939a50919850919650505050505050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604081205490612bde84610dfe565b90508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015612c1c5750600085115b15612ec65773ffffffffffffffffffffffffffffffffffffffff871615612da45773ffffffffffffffffffffffffffffffffffffffff87166000908152601460205260408120549081612c70576000612cb4565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260136020526040812090612ca1600185614908565b8152602001908152602001600020600101545b905060008515612d4a5784881115612d1057612cd084896126d8565b73ffffffffffffffffffffffffffffffffffffffff88166000908152601560205260409020819055612d09908690612b3d90859061272b565b9050612d90565b612d1a8886614908565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260156020526040902055612d0982896126d8565b878514612d835773ffffffffffffffffffffffffffffffffffffffff87166000908152601560205260409020889055612d0982866126d8565b612d8d82896126d8565b90505b612d9c8a848484613774565b505050612dcd565b73ffffffffffffffffffffffffffffffffffffffff841660009081526015602052604090208590555b73ffffffffffffffffffffffffffffffffffffffff861615612ec15773ffffffffffffffffffffffffffffffffffffffff86166000908152601460205260408120549081612e1c576000612e60565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260136020526040812090612e4d600185614908565b8152602001908152602001600020600101545b90506000612e6e828961272b565b90508515612eb15773ffffffffffffffffffffffffffffffffffffffff8916600090815260156020526040812080548a9290612eab90849061487a565b90915550505b612ebd89848484613774565b5050505b612fd5565b82158015612eff57508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b8015612f0b5750818514155b15612fd55773ffffffffffffffffffffffffffffffffffffffff86166000908152601460205260408120549081612f43576000612f87565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260136020526040812090612f74600185614908565b8152602001908152602001600020600101545b90506000612f9f88612f9984886126d8565b9061272b565b73ffffffffffffffffffffffffffffffffffffffff881660009081526015602052604090208990559050611e3589848484613774565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316613081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5f7472616e736665723a205472616e736665722066726f6d20746865207a657260448201527f6f206164647265737300000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff8216613124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f7472616e736665723a205472616e7366657220746f20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610b0b565b600081116131b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527f62652067726561746572207468616e207a65726f0000000000000000000000006064820152608401610b0b565b806131be84610dfe565b101561324c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5f7472616e736665723a205468652062616c616e636520697320696e7375666660448201527f696369656e7400000000000000000000000000000000000000000000000000006064820152608401610b0b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604081205460ff16806132a5575073ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff165b80156132b4575060085460ff16155b60035430600090815260106020526040902054919250118015906132f0575060095473ffffffffffffffffffffffffffffffffffffffff163314155b80156133045750600854610100900460ff16155b15613311576133116138eb565b8061331e5761331e613b0a565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff168015613379575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff16155b1561338e57613389848484613b5a565b6134da565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff161580156133e9575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff165b156133f957613389848484613cce565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff16158015613455575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff16155b1561346557613389848484613d9e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff1680156134bf575073ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff165b156134cf57613389848484613def565b6134da848484613d9e565b80612a6a57612a6a600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560966001819055600255565b6005546004546000918291825b600c548110156137385782600f6000600c848154811061356c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054118061361857508160106000600c84815481106135e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561362e57600554600454945094505050509091565b6136a8600f6000600c848154811061366f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906126d8565b925061372460106000600c84815481106136eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906126d8565b9150806137308161491f565b915050613523565b50600454600554613748916126cc565b82101561375f576005546004549350935050509091565b90939092509050565b6000610cda82846148cb565b4383158015906137c5575073ffffffffffffffffffffffffffffffffffffffff8516600090815260136020526040812082916137b1600188614908565b815260200190815260200160002060000154145b156138155773ffffffffffffffffffffffffffffffffffffffff8516600090815260136020526040812083916137fc600188614908565b8152602081019190915260400160002060010155613893565b604080518082018252828152602080820185815273ffffffffffffffffffffffffffffffffffffffff891660009081526013835284812089825290925292902090518155905160019182015561386c90859061487a565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601460205260409020555b604080518481526020810184905273ffffffffffffffffffffffffffffffffffffffff8716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1661010017905560035461392390613e7c565b600b546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561398d57600080fd5b505afa1580156139a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139c59190614738565b600b546008546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff620100009092048216600482015260248101849052929350169063a9059cbb90604401602060405180830381600087803b158015613a4357600080fd5b505af1158015613a57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a7b91906146b6565b50600854600354604080516201000090930473ffffffffffffffffffffffffffffffffffffffff168352602083019190915281018290527fceff87c0a6323e333bcfd7219dfd505acc75c2144c7c4760ba13411fdeb114e19060600160405180910390a150600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055565b600154158015613b1a5750600254155b15613b2157565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600090819055600255565b600080600080600080613b6c876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260106020526040902054959b50939950919750955093509150613bab90886126d8565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260106020908152604080832093909355600f90522054613be790876126d8565b73ffffffffffffffffffffffffffffffffffffffff808b166000908152600f602052604080822093909355908a1681522054613c23908661272b565b73ffffffffffffffffffffffffffffffffffffffff89166000908152600f6020526040902055613c528161448e565b613c5c8483614542565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613cbb91815260200190565b60405180910390a3505050505050505050565b600080600080600080613ce0876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f166000908152600f6020526040902054959b50939950919750955093509150613d1f90876126d8565b73ffffffffffffffffffffffffffffffffffffffff808b166000908152600f6020908152604080832094909455918b16815260109091522054613d62908461272b565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260106020908152604080832093909355600f90522054613c23908661272b565b600080600080600080613db0876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f166000908152600f6020526040902054959b50939950919750955093509150613be790876126d8565b600080600080600080613e01876126e4565b73ffffffffffffffffffffffffffffffffffffffff8f16600090815260106020526040902054959b50939950919750955093509150613e4090886126d8565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260106020908152604080832093909355600f90522054613d1f90876126d8565b60085462010000900473ffffffffffffffffffffffffffffffffffffffff16613f01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f506f6f6c206e6f7420666f756e640000000000000000000000000000000000006044820152606401610b0b565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015613f6c57600080fd5b505afa158015613f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fa491906146d2565b50600a546040517f054d50d4000000000000000000000000000000000000000000000000000000008152600481018790526dffffffffffffffffffffffffffff93841660248201819052929093166044840181905291945090925060009173ffffffffffffffffffffffffffffffffffffffff9091169063054d50d49060640160206040518083038186803b15801561403c57600080fd5b505afa92505050801561408a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261408791810190614738565b60015b61412057600a546140b490309073ffffffffffffffffffffffffffffffffffffffff166000612737565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab6040516141139060208082526016908201527f444554462d3e555344432073776170206661696c656400000000000000000000604082015260600190565b60405180910390a16141d4565b50600a546040517f054d50d400000000000000000000000000000000000000000000000000000000815260048101869052602481018590526044810184905273ffffffffffffffffffffffffffffffffffffffff9091169063054d50d49060640160206040518083038186803b15801561419957600080fd5b505afa1580156141ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141d19190614738565b90505b60006141fb6141f4612710612b066007548661376890919063ffffffff16565b83906126d8565b6040805160028082526060820183529293506000929091602083019080368337019050509050308160008151811061425c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b548251911690829060019081106142c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546142f49130911688612737565b600a546008546040517f5c11d79500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92831692635c11d7959261435e928b9288928892620100009091049091169042906004016147f0565b600060405180830381600087803b15801561437857600080fd5b505af1925050508015614389575060015b61441f57600a546143b390309073ffffffffffffffffffffffffffffffffffffffff166000612737565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab6040516144129060208082526016908201527f444554462d3e555344432073776170206661696c656400000000000000000000604082015260600190565b60405180910390a1611e3a565b7fcf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab60405161447e9060208082526017908201527f444554462d3e5553444320737761702073756363657373000000000000000000604082015260600190565b60405180910390a1505050505050565b6000614498612983565b905060006144a68383613768565b306000908152600f60205260409020549091506144c3908261272b565b306000908152600f60209081526040808320939093556010905220546144e9908461272b565b306000818152601060205260409020919091557f10d6a3429f06aac9b917d5131ee6acab36f63e2fe61f98fb7a86ee2ca5e6e65f9061452790610dfe565b604080519182526020820186905281018390526060016126bf565b60055461454f90836126d8565b60055560065461455f908261272b565b6006555050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610ea657600080fd5b80516dffffffffffffffffffffffffffff81168114610ea657600080fd5b6000602082840312156145b9578081fd5b610cda82614566565b600080604083850312156145d4578081fd5b6145dd83614566565b91506145eb60208401614566565b90509250929050565b600080600060608486031215614608578081fd5b61461184614566565b925061461f60208501614566565b9150604084013590509250925092565b60008060408385031215614641578182fd5b61464a83614566565b946020939093013593505050565b60008060008060008060c08789031215614670578182fd5b61467987614566565b95506020870135945060408701359350606087013560ff8116811461469c578283fd5b9598949750929560808101359460a0909101359350915050565b6000602082840312156146c7578081fd5b8151610cda81614987565b6000806000606084860312156146e6578283fd5b6146ef8461458a565b92506146fd6020850161458a565b9150604084015163ffffffff81168114614715578182fd5b809150509250925092565b600060208284031215614731578081fd5b5035919050565b600060208284031215614749578081fd5b5051919050565b60008060408385031215614762578182fd5b82359150602083013561477481614987565b809150509250929050565b6000602080835283518082850152825b818110156147ab5785810183015185820160400152820161478f565b818111156147bc5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561484c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161481a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000821982111561488d5761488d614958565b500190565b6000826148c6577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561490357614903614958565b500290565b60008282101561491a5761491a614958565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495157614951614958565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8015158114610dfb57600080fdfe7472616e7366657246726f6d3a205472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63656465637265617365416c6c6f77616e63653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dc8f41f90d69b78ab08c653a588ce3b55e6ad2940e1c72336f64079503d131fb64736f6c63430008040033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48

-----Decoded View---------------
Arg [0] : uniswapV2Router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : usdc_ (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48


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.