ETH Price: $2,773.62 (+1.32%)

Token

Yuki Inu (YUKI)
 

Overview

Max Total Supply

977,884,769,509.320472801388524157 YUKI

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,747,661,428.406548910002547637 YUKI

Value
$0.00
0xf282Aa18155415aa383cf0ACF6125E87EF0ce31D
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YukiInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-18
*/

pragma solidity ^0.6.0;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Interface of the BEP20 standard as defined in the EIP.
 */
interface IBEP20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract YukiInu is Context, IBEP20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    string  private constant _NAME = 'Yuki Inu';
    string  private constant _SYMBOL = 'YUKI';
    uint8   private constant _DECIMALS = 18;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 1000000000000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private constant     _TAX_FEE = 200;
    uint256 private constant    _BURN_FEE = 200;
    uint256 private constant _MAX_TX_SIZE = 1000000000 * _DECIMALFACTOR;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

    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, "BEP20: 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, "BEP20: decreased allowance below zero"));
        return true;
    }

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "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, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        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;
            }
        }
    }

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner())
            require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount.");
        
        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);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tTotal = _tTotal.sub(tBurn);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount, _TAX_FEE, _BURN_FEE);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn);
        return (tTransferAmount, tFee, tBurn);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn);
        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);
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","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"}]

6080604052601260ff16600a0a64e8d4a5100002600655600654600019816200002457fe5b06600019036007553480156200003957600080fd5b5060006200004c620001bc60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506007546001600062000101620001bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200014f620001bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a3620001c4565b600033905090565b6135f480620001d46000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb146105cc578063cba0e99614610630578063dd62ed3e1461068a578063f2cc0c1814610702578063f2fde38b14610746578063f84354f11461078a57610142565b806370a082311461044f578063715018a6146104a75780638da5cb5b146104b157806395d89b41146104e5578063a457c2d71461056857610142565b80632d8381191161010a5780632d838119146102ee578063313ce5671461033057806339509351146103515780633bd5d173146103b55780633c9f861d146103e35780634549b0391461040157610142565b806306fdde0314610147578063095ea7b3146101ca57806313114a9d1461022e57806318160ddd1461024c57806323b872dd1461026a575b600080fd5b61014f6107ce565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561018f578082015181840152602081019050610174565b50505050905090810190601f1680156101bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061080b565b60405180821515815260200191505060405180910390f35b610236610829565b6040518082815260200191505060405180910390f35b610254610833565b6040518082815260200191505060405180910390f35b6102d66004803603606081101561028057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061083d565b60405180821515815260200191505060405180910390f35b61031a6004803603602081101561030457600080fd5b8101908080359060200190929190505050610916565b6040518082815260200191505060405180910390f35b61033861099a565b604051808260ff16815260200191505060405180910390f35b61039d6004803603604081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109a3565b60405180821515815260200191505060405180910390f35b6103e1600480360360208110156103cb57600080fd5b8101908080359060200190929190505050610a56565b005b6103eb610be7565b6040518082815260200191505060405180910390f35b6104396004803603604081101561041757600080fd5b8101908080359060200190929190803515159060200190929190505050610bf1565b6040518082815260200191505060405180910390f35b6104916004803603602081101561046557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca8565b6040518082815260200191505060405180910390f35b6104af610d93565b005b6104b9610f19565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ed610f42565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052d578082015181840152602081019050610512565b50505050905090810190601f16801561055a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105b46004803603604081101561057e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7f565b60405180821515815260200191505060405180910390f35b610618600480360360408110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061104c565b60405180821515815260200191505060405180910390f35b6106726004803603602081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061106a565b60405180821515815260200191505060405180910390f35b6106ec600480360360408110156106a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c0565b6040518082815260200191505060405180910390f35b6107446004803603602081101561071857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611147565b005b6107886004803603602081101561075c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114fa565b005b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611705565b005b60606040518060400160405280600881526020017f59756b6920496e75000000000000000000000000000000000000000000000000815250905090565b600061081f610818611a8f565b8484611a97565b6001905092915050565b6000600854905090565b6000600654905090565b600061084a848484611c8e565b61090b84610856611a8f565b6109068560405180606001604052806028815260200161346d60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108bc611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b600190509392505050565b6000600754821115610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061341d602a913960400191505060405180910390fd5b600061097d612289565b905061099281846122b490919063ffffffff16565b915050919050565b60006012905090565b6000610a4c6109b0611a8f565b84610a4785600360006109c1611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b611a97565b6001905092915050565b6000610a60611a8f565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613571602c913960400191505060405180910390fd5b6000610b1083612386565b50505050509050610b6981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bc1816007546123eb90919063ffffffff16565b600781905550610bdc836008546122fe90919063ffffffff16565b600881905550505050565b6000600954905090565b6000600654831115610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c8b576000610c7b84612386565b5050505050905080915050610ca2565b6000610c9684612386565b50505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d4357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d8e565b610d8b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b90505b919050565b610d9b611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f59554b4900000000000000000000000000000000000000000000000000000000815250905090565b6000611042610f8c611a8f565b8461103d8560405180606001604052806025815260200161352a6025913960036000610fb6611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b6001905092915050565b6000611060611059611a8f565b8484611c8e565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114f611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061354f6022913960400191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561143c576113f8600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611502611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134476026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61170d611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611a8b578173ffffffffffffffffffffffffffffffffffffffff16600582815481106118c057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a7e5760056001600580549050038154811061191c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005828154811061195457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611a4457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611a8b565b808060010191505061188f565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133f96024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061359d6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133d46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135076023913960400191505060405180910390fd5b60008111611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806134de6029913960400191505060405180910390fd5b611dfb610f19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e695750611e39610f19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611ed557601260ff16600a0a633b9aca0002811115611ed4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134956028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f785750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f8d57611f88838383612435565b6121c4565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120305750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612045576120408383836126b3565b6121c3565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120e95750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fe576120f9838383612931565b6121c2565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121a05750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121b5576121b0838383612b1a565b6121c1565b6121c0838383612931565b5b5b5b5b505050565b6000838311158290612276576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561223b578082015181840152602081019050612220565b50505050905090810190601f1680156122685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000612296612e2d565b915091506122ad81836122b490919063ffffffff16565b9250505090565b60006122f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130be565b905092915050565b60008082840190508381101561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006123a08a60c880613184565b92509250925060006123b0612289565b905060008060006123c38e878787613240565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b600061242d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c9565b905092915050565b600061243f612289565b905060008060008060008061245388612386565b955095509550955095509550600061247488836132c990919063ffffffff16565b90506124c889600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061255d87600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125f286600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126418582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006126bd612289565b90506000806000806000806126d188612386565b95509550955095509550955060006126f288836132c990919063ffffffff16565b905061274687600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127db84600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061287086600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128bf8582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061293b612289565b905060008060008060008061294f88612386565b955095509550955095509550600061297088836132c990919063ffffffff16565b90506129c487600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a5986600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612aa88582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000612b24612289565b9050600080600080600080612b3888612386565b9550955095509550955095506000612b5988836132c990919063ffffffff16565b9050612bad89600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c4287600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cd784600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d6c86600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dbb8582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600080600060075490506000600654905060005b60058054905081101561308157826001600060058481548110612e6057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612f475750816002600060058481548110612edf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612f5e57600754600654945094505050506130ba565b612fe76001600060058481548110612f7257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846123eb90919063ffffffff16565b92506130726002600060058481548110612ffd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123eb90919063ffffffff16565b91508080600101915050612e41565b506130996006546007546122b490919063ffffffff16565b8210156130b1576007546006549350935050506130ba565b81819350935050505b9091565b6000808311829061316a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561312f578082015181840152602081019050613114565b50505050905090810190601f16801561315c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161317657fe5b049050809150509392505050565b6000806000806131c360646131b560646131a78a8c6132c990919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b9050600061320060646131f260646131e48a8d6132c990919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b905060006132298261321b858c6123eb90919063ffffffff16565b6123eb90919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061325985896132c990919063ffffffff16565b9050600061327086896132c990919063ffffffff16565b9050600061328787896132c990919063ffffffff16565b905060006132b0826132a285876123eb90919063ffffffff16565b6123eb90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000808314156132dc5760009050613349565b60008284029050828482816132ed57fe5b0414613344576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134bd6021913960400191505060405180910390fd5b809150505b92915050565b61337683613368866007546123eb90919063ffffffff16565b6123eb90919063ffffffff16565b600781905550613391826008546122fe90919063ffffffff16565b6008819055506133ac816009546122fe90919063ffffffff16565b6009819055506133c7816006546123eb90919063ffffffff16565b6006819055505050505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f57652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e42455032303a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212209cf6ac511ed895e4150802bcfcc4890f4e7bc42481aaa4371ec1ab57b744dddd64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb146105cc578063cba0e99614610630578063dd62ed3e1461068a578063f2cc0c1814610702578063f2fde38b14610746578063f84354f11461078a57610142565b806370a082311461044f578063715018a6146104a75780638da5cb5b146104b157806395d89b41146104e5578063a457c2d71461056857610142565b80632d8381191161010a5780632d838119146102ee578063313ce5671461033057806339509351146103515780633bd5d173146103b55780633c9f861d146103e35780634549b0391461040157610142565b806306fdde0314610147578063095ea7b3146101ca57806313114a9d1461022e57806318160ddd1461024c57806323b872dd1461026a575b600080fd5b61014f6107ce565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561018f578082015181840152602081019050610174565b50505050905090810190601f1680156101bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061080b565b60405180821515815260200191505060405180910390f35b610236610829565b6040518082815260200191505060405180910390f35b610254610833565b6040518082815260200191505060405180910390f35b6102d66004803603606081101561028057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061083d565b60405180821515815260200191505060405180910390f35b61031a6004803603602081101561030457600080fd5b8101908080359060200190929190505050610916565b6040518082815260200191505060405180910390f35b61033861099a565b604051808260ff16815260200191505060405180910390f35b61039d6004803603604081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109a3565b60405180821515815260200191505060405180910390f35b6103e1600480360360208110156103cb57600080fd5b8101908080359060200190929190505050610a56565b005b6103eb610be7565b6040518082815260200191505060405180910390f35b6104396004803603604081101561041757600080fd5b8101908080359060200190929190803515159060200190929190505050610bf1565b6040518082815260200191505060405180910390f35b6104916004803603602081101561046557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca8565b6040518082815260200191505060405180910390f35b6104af610d93565b005b6104b9610f19565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ed610f42565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052d578082015181840152602081019050610512565b50505050905090810190601f16801561055a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105b46004803603604081101561057e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7f565b60405180821515815260200191505060405180910390f35b610618600480360360408110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061104c565b60405180821515815260200191505060405180910390f35b6106726004803603602081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061106a565b60405180821515815260200191505060405180910390f35b6106ec600480360360408110156106a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c0565b6040518082815260200191505060405180910390f35b6107446004803603602081101561071857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611147565b005b6107886004803603602081101561075c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114fa565b005b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611705565b005b60606040518060400160405280600881526020017f59756b6920496e75000000000000000000000000000000000000000000000000815250905090565b600061081f610818611a8f565b8484611a97565b6001905092915050565b6000600854905090565b6000600654905090565b600061084a848484611c8e565b61090b84610856611a8f565b6109068560405180606001604052806028815260200161346d60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108bc611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b600190509392505050565b6000600754821115610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061341d602a913960400191505060405180910390fd5b600061097d612289565b905061099281846122b490919063ffffffff16565b915050919050565b60006012905090565b6000610a4c6109b0611a8f565b84610a4785600360006109c1611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b611a97565b6001905092915050565b6000610a60611a8f565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613571602c913960400191505060405180910390fd5b6000610b1083612386565b50505050509050610b6981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bc1816007546123eb90919063ffffffff16565b600781905550610bdc836008546122fe90919063ffffffff16565b600881905550505050565b6000600954905090565b6000600654831115610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c8b576000610c7b84612386565b5050505050905080915050610ca2565b6000610c9684612386565b50505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d4357600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d8e565b610d8b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b90505b919050565b610d9b611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f59554b4900000000000000000000000000000000000000000000000000000000815250905090565b6000611042610f8c611a8f565b8461103d8560405180606001604052806025815260200161352a6025913960036000610fb6611a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c99092919063ffffffff16565b611a97565b6001905092915050565b6000611060611059611a8f565b8484611c8e565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114f611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061354f6022913960400191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561143c576113f8600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610916565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611502611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134476026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61170d611a8f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611a8b578173ffffffffffffffffffffffffffffffffffffffff16600582815481106118c057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a7e5760056001600580549050038154811061191c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005828154811061195457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611a4457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611a8b565b808060010191505061188f565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133f96024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061359d6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133d46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135076023913960400191505060405180910390fd5b60008111611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806134de6029913960400191505060405180910390fd5b611dfb610f19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e695750611e39610f19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611ed557601260ff16600a0a633b9aca0002811115611ed4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134956028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f785750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f8d57611f88838383612435565b6121c4565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120305750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612045576120408383836126b3565b6121c3565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120e95750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fe576120f9838383612931565b6121c2565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121a05750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121b5576121b0838383612b1a565b6121c1565b6121c0838383612931565b5b5b5b5b505050565b6000838311158290612276576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561223b578082015181840152602081019050612220565b50505050905090810190601f1680156122685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000612296612e2d565b915091506122ad81836122b490919063ffffffff16565b9250505090565b60006122f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130be565b905092915050565b60008082840190508381101561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006123a08a60c880613184565b92509250925060006123b0612289565b905060008060006123c38e878787613240565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b600061242d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c9565b905092915050565b600061243f612289565b905060008060008060008061245388612386565b955095509550955095509550600061247488836132c990919063ffffffff16565b90506124c889600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061255d87600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125f286600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126418582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006126bd612289565b90506000806000806000806126d188612386565b95509550955095509550955060006126f288836132c990919063ffffffff16565b905061274687600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127db84600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061287086600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128bf8582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061293b612289565b905060008060008060008061294f88612386565b955095509550955095509550600061297088836132c990919063ffffffff16565b90506129c487600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a5986600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612aa88582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000612b24612289565b9050600080600080600080612b3888612386565b9550955095509550955095506000612b5988836132c990919063ffffffff16565b9050612bad89600260008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c4287600160008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123eb90919063ffffffff16565b600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612cd784600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d6c86600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122fe90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dbb8582858561334f565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600080600060075490506000600654905060005b60058054905081101561308157826001600060058481548110612e6057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612f475750816002600060058481548110612edf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612f5e57600754600654945094505050506130ba565b612fe76001600060058481548110612f7257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846123eb90919063ffffffff16565b92506130726002600060058481548110612ffd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123eb90919063ffffffff16565b91508080600101915050612e41565b506130996006546007546122b490919063ffffffff16565b8210156130b1576007546006549350935050506130ba565b81819350935050505b9091565b6000808311829061316a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561312f578082015181840152602081019050613114565b50505050905090810190601f16801561315c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161317657fe5b049050809150509392505050565b6000806000806131c360646131b560646131a78a8c6132c990919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b9050600061320060646131f260646131e48a8d6132c990919063ffffffff16565b6122b490919063ffffffff16565b6122b490919063ffffffff16565b905060006132298261321b858c6123eb90919063ffffffff16565b6123eb90919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061325985896132c990919063ffffffff16565b9050600061327086896132c990919063ffffffff16565b9050600061328787896132c990919063ffffffff16565b905060006132b0826132a285876123eb90919063ffffffff16565b6123eb90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000808314156132dc5760009050613349565b60008284029050828482816132ed57fe5b0414613344576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134bd6021913960400191505060405180910390fd5b809150505b92915050565b61337683613368866007546123eb90919063ffffffff16565b6123eb90919063ffffffff16565b600781905550613391826008546122fe90919063ffffffff16565b6008819055506133ac816009546122fe90919063ffffffff16565b6009819055506133c7816006546123eb90919063ffffffff16565b6006819055505050505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f57652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e42455032303a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212209cf6ac511ed895e4150802bcfcc4890f4e7bc42481aaa4371ec1ab57b744dddd64736f6c634300060c0033

Deployed Bytecode Sourcemap

16825:12043:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18059:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18971:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20082:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18336:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19140:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21106:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18245:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19461:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20277:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20181:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20662:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18439:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16271:148;;;:::i;:::-;;15629:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18150:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19687:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18645:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19964:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18820:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21367:443;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16574:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21818:478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18059:83;18096:13;18129:5;;;;;;;;;;;;;;;;;18122:12;;18059:83;:::o;18971:161::-;19046:4;19063:39;19072:12;:10;:12::i;:::-;19086:7;19095:6;19063:8;:39::i;:::-;19120:4;19113:11;;18971:161;;;;:::o;20082:87::-;20124:7;20151:10;;20144:17;;20082:87;:::o;18336:95::-;18389:7;18416;;18409:14;;18336:95;:::o;19140:313::-;19238:4;19255:36;19265:6;19273:9;19284:6;19255:9;:36::i;:::-;19302:121;19311:6;19319:12;:10;:12::i;:::-;19333:89;19371:6;19333:89;;;;;;;;;;;;;;;;;:11;:19;19345:6;19333:19;;;;;;;;;;;;;;;:33;19353:12;:10;:12::i;:::-;19333:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;19302:8;:121::i;:::-;19441:4;19434:11;;19140:313;;;;;:::o;21106:253::-;21172:7;21211;;21200;:18;;21192:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21276:19;21299:10;:8;:10::i;:::-;21276:33;;21327:24;21339:11;21327:7;:11;;:24;;;;:::i;:::-;21320:31;;;21106:253;;;:::o;18245:83::-;18286:5;17351:2;18304:16;;18245:83;:::o;19461:218::-;19549:4;19566:83;19575:12;:10;:12::i;:::-;19589:7;19598:50;19637:10;19598:11;:25;19610:12;:10;:12::i;:::-;19598:25;;;;;;;;;;;;;;;:34;19624:7;19598:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19566:8;:83::i;:::-;19667:4;19660:11;;19461:218;;;;:::o;20277:377::-;20329:14;20346:12;:10;:12::i;:::-;20329:29;;20378:11;:19;20390:6;20378:19;;;;;;;;;;;;;;;;;;;;;;;;;20377:20;20369:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20458:15;20482:19;20493:7;20482:10;:19::i;:::-;20457:44;;;;;;;20530:28;20550:7;20530;:15;20538:6;20530:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;20512:7;:15;20520:6;20512:15;;;;;;;;;;;;;;;:46;;;;20579:20;20591:7;20579;;:11;;:20;;;;:::i;:::-;20569:7;:30;;;;20623:23;20638:7;20623:10;;:14;;:23;;;;:::i;:::-;20610:10;:36;;;;20277:377;;;:::o;20181:88::-;20223:7;20250:11;;20243:18;;20181:88;:::o;20662:436::-;20752:7;20791;;20780;:18;;20772:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20850:17;20845:246;;20885:15;20909:19;20920:7;20909:10;:19::i;:::-;20884:44;;;;;;;20950:7;20943:14;;;;;20845:246;20992:23;21023:19;21034:7;21023:10;:19::i;:::-;20990:52;;;;;;;21064:15;21057:22;;;20662:436;;;;;:::o;18439:198::-;18505:7;18529:11;:20;18541:7;18529:20;;;;;;;;;;;;;;;;;;;;;;;;;18525:49;;;18558:7;:16;18566:7;18558:16;;;;;;;;;;;;;;;;18551:23;;;;18525:49;18592:37;18612:7;:16;18620:7;18612:16;;;;;;;;;;;;;;;;18592:19;:37::i;:::-;18585:44;;18439:198;;;;:::o;16271:148::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16378:1:::1;16341:40;;16362:6;::::0;::::1;;;;;;;;16341:40;;;;;;;;;;;;16409:1;16392:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16271:148::o:0;15629:79::-;15667:7;15694:6;;;;;;;;;;;15687:13;;15629:79;:::o;18150:87::-;18189:13;18222:7;;;;;;;;;;;;;;;;;18215:14;;18150:87;:::o;19687:269::-;19780:4;19797:129;19806:12;:10;:12::i;:::-;19820:7;19829:96;19868:15;19829:96;;;;;;;;;;;;;;;;;:11;:25;19841:12;:10;:12::i;:::-;19829:25;;;;;;;;;;;;;;;:34;19855:7;19829:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19797:8;:129::i;:::-;19944:4;19937:11;;19687:269;;;;:::o;18645:167::-;18723:4;18740:42;18750:12;:10;:12::i;:::-;18764:9;18775:6;18740:9;:42::i;:::-;18800:4;18793:11;;18645:167;;;;:::o;19964:110::-;20022:4;20046:11;:20;20058:7;20046:20;;;;;;;;;;;;;;;;;;;;;;;;;20039:27;;19964:110;;;:::o;18820:143::-;18901:7;18928:11;:18;18940:5;18928:18;;;;;;;;;;;;;;;:27;18947:7;18928:27;;;;;;;;;;;;;;;;18921:34;;18820:143;;;;:::o;21367:443::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21459:42:::1;21448:53;;:7;:53;;;;21440:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21560:11;:20;21572:7;21560:20;;;;;;;;;;;;;;;;;;;;;;;;;21559:21;21551:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;21645:1;21626:7;:16;21634:7;21626:16;;;;;;;;;;;;;;;;:20;21623:108;;;21682:37;21702:7;:16;21710:7;21702:16;;;;;;;;;;;;;;;;21682:19;:37::i;:::-;21663:7;:16;21671:7;21663:16;;;;;;;;;;;;;;;:56;;;;21623:108;21764:4;21741:11;:20;21753:7;21741:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;21779:9;21794:7;21779:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21367:443:::0;:::o;16574:244::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16683:1:::1;16663:22;;:8;:22;;;;16655:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16773:8;16744:38;;16765:6;::::0;::::1;;;;;;;;16744:38;;;;;;;;;;;;16802:8;16793:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16574:244:::0;:::o;21818:478::-;15851:12;:10;:12::i;:::-;15841:22;;:6;;;;;;;;;;:22;;;15833:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21899:11:::1;:20;21911:7;21899:20;;;;;;;;;;;;;;;;;;;;;;;;;21891:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;21967:9;21962:327;21986:9;:16;;;;21982:1;:20;21962:327;;;22044:7;22028:23;;:9;22038:1;22028:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;22024:254;;;22087:9;22116:1;22097:9;:16;;;;:20;22087:31;;;;;;;;;;;;;;;;;;;;;;;;;22072:9;22082:1;22072:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;22156:1;22137:7;:16;22145:7;22137:16;;;;;;;;;;;;;;;:20;;;;22199:5;22176:11;:20;22188:7;22176:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;22223:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22257:5;;22024:254;22004:3;;;;;;;21962:327;;;;21818:478:::0;:::o;95:106::-;148:15;183:10;176:17;;95:106;:::o;22304:337::-;22414:1;22397:19;;:5;:19;;;;22389:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22495:1;22476:21;;:7;:21;;;;22468:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22579:6;22549:11;:18;22561:5;22549:18;;;;;;;;;;;;;;;:27;22568:7;22549:27;;;;;;;;;;;;;;;:36;;;;22617:7;22601:32;;22610:5;22601:32;;;22626:6;22601:32;;;;;;;;;;;;;;;;;;22304:337;;;:::o;22649:1096::-;22764:1;22746:20;;:6;:20;;;;22738:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22848:1;22827:23;;:9;:23;;;;22819:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22918:1;22909:6;:10;22901:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22999:7;:5;:7::i;:::-;22989:17;;:6;:17;;;;:41;;;;;23023:7;:5;:7::i;:::-;23010:20;;:9;:20;;;;22989:41;22986:134;;;17351:2;17463:18;;17457:2;:24;17884:10;:27;23053:6;:22;;23045:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22986:134;23145:11;:19;23157:6;23145:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;23169:11;:22;23181:9;23169:22;;;;;;;;;;;;;;;;;;;;;;;;;23168:23;23145:46;23141:597;;;23208:48;23230:6;23238:9;23249:6;23208:21;:48::i;:::-;23141:597;;;23279:11;:19;23291:6;23279:19;;;;;;;;;;;;;;;;;;;;;;;;;23278:20;:46;;;;;23302:11;:22;23314:9;23302:22;;;;;;;;;;;;;;;;;;;;;;;;;23278:46;23274:464;;;23341:46;23361:6;23369:9;23380:6;23341:19;:46::i;:::-;23274:464;;;23410:11;:19;23422:6;23410:19;;;;;;;;;;;;;;;;;;;;;;;;;23409:20;:47;;;;;23434:11;:22;23446:9;23434:22;;;;;;;;;;;;;;;;;;;;;;;;;23433:23;23409:47;23405:333;;;23473:44;23491:6;23499:9;23510:6;23473:17;:44::i;:::-;23405:333;;;23539:11;:19;23551:6;23539:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;23562:11;:22;23574:9;23562:22;;;;;;;;;;;;;;;;;;;;;;;;;23539:45;23535:203;;;23601:48;23623:6;23631:9;23642:6;23601:21;:48::i;:::-;23535:203;;;23682:44;23700:6;23708:9;23719:6;23682:17;:44::i;:::-;23535:203;23405:333;23274:464;23141:597;22649:1096;;;:::o;4905:192::-;4991:7;5024:1;5019;:6;;5027:12;5011:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5051:9;5067:1;5063;:5;5051:17;;5088:1;5081:8;;;4905:192;;;;;:::o;27932:163::-;27973:7;27994:15;28011;28030:19;:17;:19::i;:::-;27993:56;;;;28067:20;28079:7;28067;:11;;:20;;;;:::i;:::-;28060:27;;;;27932:163;:::o;6303:132::-;6361:7;6388:39;6392:1;6395;6388:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6381:46;;6303:132;;;;:::o;4002:181::-;4060:7;4080:9;4096:1;4092;:5;4080:17;;4121:1;4116;:6;;4108:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4174:1;4167:8;;;4002:181;;;;:::o;26634:470::-;26693:7;26702;26711;26720;26729;26738;26759:23;26784:12;26798:13;26815:41;26827:7;17784:3;17834;26815:11;:41::i;:::-;26758:98;;;;;;26867:19;26890:10;:8;:10::i;:::-;26867:33;;26912:15;26929:23;26954:12;26970:46;26982:7;26991:4;26997:5;27004:11;26970;:46::i;:::-;26911:105;;;;;;27035:7;27044:15;27061:4;27067:15;27084:4;27090:5;27027:69;;;;;;;;;;;;;;;;;;;26634:470;;;;;;;:::o;4466:136::-;4524:7;4551:43;4555:1;4558;4551:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4544:50;;4466:136;;;;:::o;24996:632::-;25098:19;25121:10;:8;:10::i;:::-;25098:33;;25143:15;25160:23;25185:12;25199:23;25224:12;25238:13;25255:19;25266:7;25255:10;:19::i;:::-;25142:132;;;;;;;;;;;;25285:13;25302:22;25312:11;25302:5;:9;;:22;;;;:::i;:::-;25285:39;;25353:28;25373:7;25353;:15;25361:6;25353:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25335:7;:15;25343:6;25335:15;;;;;;;;;;;;;;;:46;;;;25410:28;25430:7;25410;:15;25418:6;25410:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25392:7;:15;25400:6;25392:15;;;;;;;;;;;;;;;:46;;;;25470:39;25493:15;25470:7;:18;25478:9;25470:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;25449:7;:18;25457:9;25449:18;;;;;;;;;;;;;;;:60;;;;25523:37;25535:4;25541:5;25548:4;25554:5;25523:11;:37::i;:::-;25593:9;25576:44;;25585:6;25576:44;;;25604:15;25576:44;;;;;;;;;;;;;;;;;;24996:632;;;;;;;;;;;:::o;24336:652::-;24436:19;24459:10;:8;:10::i;:::-;24436:33;;24481:15;24498:23;24523:12;24537:23;24562:12;24576:13;24593:19;24604:7;24593:10;:19::i;:::-;24480:132;;;;;;;;;;;;24623:13;24640:22;24650:11;24640:5;:9;;:22;;;;:::i;:::-;24623:39;;24691:28;24711:7;24691;:15;24699:6;24691:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24673:7;:15;24681:6;24673:15;;;;;;;;;;;;;;;:46;;;;24751:39;24774:15;24751:7;:18;24759:9;24751:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24730:7;:18;24738:9;24730:18;;;;;;;;;;;;;;;:60;;;;24822:39;24845:15;24822:7;:18;24830:9;24822:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24801:7;:18;24809:9;24801:18;;;;;;;;;;;;;;;:60;;;;24883:37;24895:4;24901:5;24908:4;24914:5;24883:11;:37::i;:::-;24953:9;24936:44;;24945:6;24936:44;;;24964:15;24936:44;;;;;;;;;;;;;;;;;;24336:652;;;;;;;;;;;:::o;23753:575::-;23851:19;23874:10;:8;:10::i;:::-;23851:33;;23896:15;23913:23;23938:12;23952:23;23977:12;23991:13;24008:19;24019:7;24008:10;:19::i;:::-;23895:132;;;;;;;;;;;;24038:13;24055:22;24065:11;24055:5;:9;;:22;;;;:::i;:::-;24038:39;;24106:28;24126:7;24106;:15;24114:6;24106:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24088:7;:15;24096:6;24088:15;;;;;;;;;;;;;;;:46;;;;24166:39;24189:15;24166:7;:18;24174:9;24166:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24145:7;:18;24153:9;24145:18;;;;;;;;;;;;;;;:60;;;;24223:37;24235:4;24241:5;24248:4;24254:5;24223:11;:37::i;:::-;24293:9;24276:44;;24285:6;24276:44;;;24304:15;24276:44;;;;;;;;;;;;;;;;;;23753:575;;;;;;;;;;;:::o;25636:708::-;25738:19;25761:10;:8;:10::i;:::-;25738:33;;25783:15;25800:23;25825:12;25839:23;25864:12;25878:13;25895:19;25906:7;25895:10;:19::i;:::-;25782:132;;;;;;;;;;;;25925:13;25942:22;25952:11;25942:5;:9;;:22;;;;:::i;:::-;25925:39;;25993:28;26013:7;25993;:15;26001:6;25993:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25975:7;:15;25983:6;25975:15;;;;;;;;;;;;;;;:46;;;;26050:28;26070:7;26050;:15;26058:6;26050:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;26032:7;:15;26040:6;26032:15;;;;;;;;;;;;;;;:46;;;;26110:39;26133:15;26110:7;:18;26118:9;26110:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26089:7;:18;26097:9;26089:18;;;;;;;;;;;;;;;:60;;;;26181:39;26204:15;26181:7;:18;26189:9;26181:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26160:7;:18;26168:9;26160:18;;;;;;;;;;;;;;;:60;;;;26239:37;26251:4;26257:5;26264:4;26270:5;26239:11;:37::i;:::-;26309:9;26292:44;;26301:6;26292:44;;;26320:15;26292:44;;;;;;;;;;;;;;;;;;25636:708;;;;;;;;;;;:::o;28103:561::-;28153:7;28162;28182:15;28200:7;;28182:25;;28218:15;28236:7;;28218:25;;28265:9;28260:289;28284:9;:16;;;;28280:1;:20;28260:289;;;28350:7;28326;:21;28334:9;28344:1;28334:12;;;;;;;;;;;;;;;;;;;;;;;;;28326:21;;;;;;;;;;;;;;;;:31;:66;;;;28385:7;28361;:21;28369:9;28379:1;28369:12;;;;;;;;;;;;;;;;;;;;;;;;;28361:21;;;;;;;;;;;;;;;;:31;28326:66;28322:97;;;28402:7;;28411;;28394:25;;;;;;;;;28322:97;28444:34;28456:7;:21;28464:9;28474:1;28464:12;;;;;;;;;;;;;;;;;;;;;;;;;28456:21;;;;;;;;;;;;;;;;28444:7;:11;;:34;;;;:::i;:::-;28434:44;;28503:34;28515:7;:21;28523:9;28533:1;28523:12;;;;;;;;;;;;;;;;;;;;;;;;;28515:21;;;;;;;;;;;;;;;;28503:7;:11;;:34;;;;:::i;:::-;28493:44;;28302:3;;;;;;;28260:289;;;;28573:20;28585:7;;28573;;:11;;:20;;;;:::i;:::-;28563:7;:30;28559:61;;;28603:7;;28612;;28595:25;;;;;;;;28559:61;28639:7;28648;28631:25;;;;;;28103:561;;;:::o;6931:278::-;7017:7;7049:1;7045;:5;7052:12;7037:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7076:9;7092:1;7088;:5;;;;;;7076:17;;7200:1;7193:8;;;6931:278;;;;;:::o;27112:395::-;27205:7;27214;27223;27243:12;27258:50;27304:3;27259:39;17528:3;27260:19;27272:6;27260:7;:11;;:19;;;;:::i;:::-;27259:25;;:39;;;;:::i;:::-;27258:45;;:50;;;;:::i;:::-;27243:65;;27319:13;27335:51;27382:3;27336:40;17528:3;27337:20;27349:7;27337;:11;;:20;;;;:::i;:::-;27336:26;;:40;;;;:::i;:::-;27335:46;;:51;;;;:::i;:::-;27319:67;;27397:23;27423:28;27445:5;27423:17;27435:4;27423:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;27397:54;;27470:15;27487:4;27493:5;27462:37;;;;;;;;;27112:395;;;;;;;:::o;27515:409::-;27625:7;27634;27643;27663:15;27681:24;27693:11;27681:7;:11;;:24;;;;:::i;:::-;27663:42;;27716:12;27731:21;27740:11;27731:4;:8;;:21;;;;:::i;:::-;27716:36;;27763:13;27779:22;27789:11;27779:5;:9;;:22;;;;:::i;:::-;27763:38;;27812:23;27838:28;27860:5;27838:17;27850:4;27838:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;27812:54;;27885:7;27894:15;27911:4;27877:39;;;;;;;;;;27515:409;;;;;;;;:::o;5356:471::-;5414:7;5664:1;5659;:6;5655:47;;;5689:1;5682:8;;;;5655:47;5714:9;5730:1;5726;:5;5714:17;;5759:1;5754;5750;:5;;;;;;:10;5742:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5818:1;5811:8;;;5356:471;;;;;:::o;26352:274::-;26460:28;26482:5;26460:17;26472:4;26460:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;26450:7;:38;;;;26512:20;26527:4;26512:10;;:14;;:20;;;;:::i;:::-;26499:10;:33;;;;26557:22;26573:5;26557:11;;:15;;:22;;;;:::i;:::-;26543:11;:36;;;;26600:18;26612:5;26600:7;;:11;;:18;;;;:::i;:::-;26590:7;:28;;;;26352:274;;;;:::o

Swarm Source

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