BNB Price: $635.37 (+0.41%)
 

Overview

Max Total Supply

33,000,000,000KODA

Holders

10,226 (0.00%)

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

$2,567.14

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,881.676346748 KODA

Value
$0.00 ( ~0 BNB) [0.0000%]
0x98e443df47e2612d62525feaa8206577bfb4403e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Koda Cryptocurrency token is the native token on SummitSwap.

Market

Volume (24H):$33.51
Market Capitalization:$0.00
Circulating Supply:0.00 KODA
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
KODA

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2021-10-06
*/

pragma solidity ^0.8.5;
// SPDX-License-Identifier: MIT
// Developed by: jawadklair

interface IBEP20 {

    /**  
     * @dev Returns the total tokens supply  
     */
    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.
 */
 
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(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; // msg.data is used to handle array, bytes, string 
    }
}


/**
 * @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.
     *
     * 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.
     *
     *
     * 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, "Koda Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Koda 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, "Koda 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 BNB 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, "Koda 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, "Koda 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), "Koda 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.
 */
abstract contract Ownable is Context {
    address internal _owner;

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

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

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

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

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

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

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

/**
 * @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 LockOwnable is Ownable {
    address private _previousOwner;
    uint256 private _lockTime;

    function getUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "KODA: You don't have permission to unlock");
        require(block.timestamp > _lockTime , "KODA: Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
        _previousOwner = address(0);
    }
}

interface ISummitSwapFactory {

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

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


contract KODA is Context, IBEP20, LockOwnable { // change contract name
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned; // reflected owned tokens
    mapping (address => uint256) private _tOwned; // total Owned tokens
    mapping (address => mapping (address => uint256)) private _allowances; // allowed allowance for spender

    mapping (address => bool) public _isExcludedFromFee; // excluded address from all fee
    
    mapping (address => bool) public _isExcludedFromReflection; // address excluded from reflection

    address payable public _kodaLiquidityProviderAddress = payable(0x0000000000000000000000000000000000000000); // kapex liquidity address

    string private _name = "Koda Cryptocurrency"; // token name
    string private _symbol = "KODA"; // token symbol
    uint8 private _decimals = 9; // token decimals(1 token can be divided into 1e_decimals parts)

    uint256 private constant MAX = ~uint256(0); // maximum possible number uint256 decimal value
    uint256 private _tTotal = 33000 * 10**6 * 10**_decimals;
    uint256 private _rTotal = (MAX - (MAX % _tTotal)); // maximum _rTotal value after subtracting _tTotal remainder

    uint256 private _tSupply = _tTotal;
    uint256 private _rSupply = _rTotal;

    bool public buyFeeReduced = false; //reduce buy fee to do promotion
    
    uint256 public buyFeeReductionPercentage = 0;
    uint256 public buyFeeReducedEndTime = 0 minutes;
    
    // All fees are with one decimal value. so if you want 0.5 set value to 5, for 10 set 100. so on...

    // Below Fees to be deducted and sent as tokens
    uint256 public _feeReflection = 200; //reflection fee 2%
    uint256 private _previousReflectionFee = _feeReflection; //reflection fee

    // Below Fees to be deducted and sent as BNB/BUSD/or Kapex
    uint256 public _feeTotalBNBDeductible = 800; // 8% all liquidity + dev + marketing fee on each transaction
    uint256 private _previousBNBdeDuctibleFee = _feeTotalBNBDeductible; // restore old deductible fee

    address public summitSwapPair; // for creating WETH pair with our token
    
    constructor () {
        _rOwned[_msgSender()] = _rTotal; // assigning the max reflection token to owner's address  
        
        ISummitSwapRouter01 _summitSwapRouter = ISummitSwapRouter01(0x10ED43C718714eb63d5aA57B78B54704E256024E);
         // Create a summitswap pair for this new token
        summitSwapPair = ISummitSwapFactory(_summitSwapRouter.factory())
            .createPair(address(this), _summitSwapRouter.WETH());    
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()]             = true;
        _isExcludedFromFee[address(this)]       = true;
        _isExcludedFromFee[_kodaLiquidityProviderAddress]   = true;


        //Exclude dead address from reflection
        _isExcludedFromReflection[address(0)] = true;
        _isExcludedFromReflection[0x000000000000000000000000000000000000dEaD] = true;
        
        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 (_isExcludedFromReflection[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];
    }
    
    /**  
     * @dev approves allowance of a spender
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    
    /**  
     * @dev transfers from a sender to recipient with subtracting spenders allowance with each successful transfer
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "KODA: transfer amount exceeds allowance"));
         return true;
    }

    /**  
     * @dev approves allowance of a spender should set it to zero first than increase
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**  
     * @dev decrease allowance of spender that it can spend on behalf of owner
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "KODA: decreased allowance below zero"));
        return true;
    }

    /**  
     * @dev gives reflected tokens to caller
     */
    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcludedFromReflection[sender], "KODA: Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rSupply = _rSupply - rAmount;
    }

    /**  
     * @dev return's reflected amount of an address from given token amount with/without fee deduction
     */
    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "KODA: Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    /**  
     * @dev get's exact total tokens of an address from reflected amount
     */
    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rSupply, "KODA: Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    /**  
     * @dev excludes an address from reflection reward can only be set by owner
     */
    function excludeFromReward(address account) public onlyOwner {
        // require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude summitswap router.');
        require(!_isExcludedFromReflection[account], "KODA: Account is already excluded");
        uint256 rBalance = _rOwned[account];
        if(rBalance > 0) {
            uint256 rTokens = tokenFromReflection(rBalance);
            _tOwned[account] = rTokens;
            _rSupply -= rBalance;
            _tSupply -= rTokens;
        }
        _isExcludedFromReflection[account] = true;
    }

    /**  
     * @dev includes an address for reflection reward which was excluded before
     */
    function includeInReward(address account) external onlyOwner {
        require(_isExcludedFromReflection[account], "KODA: Account is already included");
        uint256 tOwned = _tOwned[account];
        uint256 rAmount = reflectionFromToken(tOwned, false);

        _tSupply += tOwned;
        _rSupply += rAmount;

        _rOwned[account] = rAmount;
        _tOwned[account] = 0;

        _isExcludedFromReflection[account] = false;
    }
    
    /**  
     * @dev exclude an address from fee
     */
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    /**  
     * @dev include an address for fee
     */
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    /**  
     * @dev set's reflection fee percentage
     */
    function setReflectFeePercent(uint256 Fee) external onlyOwner {
        require(_feeTotalBNBDeductible.add(Fee) <= 1000, "KODA: Total Deductable fee should be less then or equal to 10%");
        _feeReflection = Fee;
    }
    
    /**  
     * @dev set's BNB deductible fee percentage
     */
    function setTotalBNBDeductibleFeePercent(uint256 Fee) external onlyOwner {
        require(_feeReflection.add(Fee) <= 1000, "KODA: Total Deductible fee should be less then or equal to 10%");
        _feeTotalBNBDeductible = Fee;
    }

    /**  
     * @dev set's koda liquidity provider address
     */
    function setKodaLiquidityProviderAddress(address payable kodaLiquidityAddress) external onlyOwner {
        _kodaLiquidityProviderAddress = kodaLiquidityAddress;
        _isExcludedFromFee[_kodaLiquidityProviderAddress] = true;
    }

    /**  
     * @dev reduce buy fee for a certain amount of time
     */
    function reduceBuyFee(uint256 reductionDuration, uint256 reductionPercentage) external onlyOwner {
        require(reductionPercentage <= 10000, "Buy fee reduction percentage value should be less than equal to 10000");
        buyFeeReducedEndTime = block.timestamp.add(reductionDuration * 1 minutes);
        buyFeeReductionPercentage = reductionPercentage;
        buyFeeReduced = true;
    }

    /**  
     * @dev reflects to all holders, fee deducted from each transaction
     */
    function _reflectFee(uint256 rFee) private {
        _rSupply    = _rSupply.sub(rFee);
        // _tFeeTotal = _tFeeTotal.add(tFee);
    }

    /**  
     * @dev get/calculates all values e.g taxfee, 
     * liquidity fee, actual transfer amount to receiver, 
     * deduction amount from sender
     * amount with reward to all holders
     * amount without reward to all holders
     */
    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rLiquidity) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, rLiquidity, tTransferAmount, tLiquidity);
    }

    /**  
     * @dev get/calculates taxfee, liquidity fee
     * without reward amount
     */
    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateDeductibleFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    /**  
     * @dev amount with reward, reflection from transaction
     * total deduction amount from sender with reward
     */
    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee, rLiquidity);
    }

    /**  
     * @dev gets current reflection rate
     */
    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    /**  
     * @dev gets total supply with/without deducted 
     * exclude caller's total owned and reflection owned 
     */
    function _getCurrentSupply() private view returns(uint256, uint256) {
        // _tSupply is 0 when every token is held by excluded wallet.
        uint256 tSupply = _tSupply;
        if(tSupply == 0) return (_rTotal, _tTotal);
        return (_rSupply, tSupply);
    }
    
    /**  
     * @dev take's liquidity fee tokens from transaction and send to liquidity provider contract
     */
    function _takeLiquidity(address sender, uint256 tLiquidity, uint256 rLiquidity) private {
        if(_isExcludedFromReflection[_kodaLiquidityProviderAddress]) {
            _tOwned[_kodaLiquidityProviderAddress] = _tOwned[_kodaLiquidityProviderAddress].add(tLiquidity);
            _rSupply -= rLiquidity;
            _tSupply -= tLiquidity;
        } else {
            _rOwned[_kodaLiquidityProviderAddress] = _rOwned[_kodaLiquidityProviderAddress].add(rLiquidity);
        }
        emit Transfer(sender, _kodaLiquidityProviderAddress, tLiquidity);
    }

    /**  
     * @dev calculates reflection fee tokens to be deducted
     */
    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_feeReflection).div(
            10**4
        );
    }

    /**  
     * @dev calculates deductible fee tokens to be deducted
     */
    function calculateDeductibleFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_feeTotalBNBDeductible).div(
            10**4
        );
    }
    
    /**  
     * @dev removes all fee from transaction if takefee is set to false
     */
    function removeAllFee() private {
        if(_feeTotalBNBDeductible == 0 && _feeReflection == 0) return;
        
        _previousReflectionFee = _feeReflection;
        _previousBNBdeDuctibleFee = _feeTotalBNBDeductible;
        
        _feeReflection = 0;
        _feeTotalBNBDeductible = 0;
    }

    /**  
     * @dev removes all fee from transaction if takefee is set to false
     */
    function adjustBuyFee() private {
        _previousReflectionFee = _feeReflection;
        _previousBNBdeDuctibleFee = _feeTotalBNBDeductible;
        
        _feeReflection = _feeReflection.mul(buyFeeReductionPercentage).div(10000);
        _feeTotalBNBDeductible = _feeTotalBNBDeductible.mul(buyFeeReductionPercentage).div(10000);
    }
    
    /**  
     * @dev restores all fee after exclude fee transaction completes
     */
    function restoreAllFee() private {
        _feeReflection = _previousReflectionFee;
        _feeTotalBNBDeductible = _previousBNBdeDuctibleFee;
    }

    /**  
     * @dev approves amount of token spender can spend on behalf of an owner
     */
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "KODA: approve from the zero address");
        require(spender != address(0), "KODA: approve to the zero address");

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

    /**  
     * @dev transfers token from sender to recipient also auto 
     * send collected fee to kodaLiquidityProvider address(contract).
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0) && to != address(0), "KODA: transfer from/to the Zero address");
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        if(buyFeeReduced && block.timestamp >= buyFeeReducedEndTime)
            buyFeeReduced = false;

        bool buyFeeReductionCheck = buyFeeReduced;
        if(buyFeeReductionCheck && from != summitSwapPair)
            buyFeeReductionCheck = false;
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee,buyFeeReductionCheck);
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, bool reducedBuyFee) private {
        if(!takeFee)
            removeAllFee();
        if(reducedBuyFee && takeFee)
            adjustBuyFee();
        
        if (!_isExcludedFromReflection[sender] && !_isExcludedFromReflection[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcludedFromReflection[sender] && !_isExcludedFromReflection[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcludedFromReflection[sender] && _isExcludedFromReflection[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else {
            _transferBothExcluded(sender, recipient, amount);
        }
        
        if(!takeFee || reducedBuyFee)
            restoreAllFee();
    }

    /**  
     * @dev deduct's balance from sender and 
     * add to recipient with reward for recipient only
     */
    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rLiquidity, uint256 tTransferAmount, uint256 tLiquidity) = _getValues(tAmount);
        require(tAmount <=_tOwned[sender],"KODA: transfer amount exceeds Balance");
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _rSupply = _rSupply.add(rAmount);
        _tSupply = _tSupply.add(tAmount);

        _takeLiquidity(sender, tLiquidity, rLiquidity);
        _reflectFee(rFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    /**  
     * @dev deduct's balance from sender and 
     * add to recipient with reward for sender only
     */
    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rLiquidity, uint256 tTransferAmount, uint256 tLiquidity) = _getValues(tAmount);
        require(rAmount <=_rOwned[sender],"KODA: transfer amount exceeds Balance");
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);

        _rSupply = _rSupply.sub(rTransferAmount);
        _tSupply = _tSupply.sub(tTransferAmount);

        _takeLiquidity(sender, tLiquidity, rLiquidity);
        _reflectFee(rFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    /**  
     * @dev deduct's balance from sender and 
     * add to recipient with reward for both addresses
     */
    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rLiquidity, uint256 tTransferAmount, uint256 tLiquidity) = _getValues(tAmount);
        require(rAmount <=_rOwned[sender],"KODA: transfer amount exceeds Balance");
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

        _takeLiquidity(sender, tLiquidity, rLiquidity);
        _reflectFee(rFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    /**  
     * @dev Transfer tokens to sender and receiver address with both excluded from reward
     */
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rLiquidity, uint256 tTransferAmount, uint256 tLiquidity) = _getValues(tAmount);
        require(tAmount <=_tOwned[sender],"KODA: transfer amount exceeds Balance");
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        
        _rSupply = _rSupply.add(rAmount.sub(rTransferAmount));
        _tSupply = _tSupply.add(tAmount.sub(tTransferAmount));

        _takeLiquidity(sender, tLiquidity, rLiquidity);
        _reflectFee(rFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    /**  
     * @dev recovers any tokens stuck in Contract's balance
     * NOTE! if ownership is renounced then it will not work
     * NOTE! Contract's Address and Owner's address MUST NOT
     * be excluded from reflection reward
     */
    function recoverTokens(address tokenAddress, address recipient, uint256 amountToRecover, uint256 recoverFeePercentage) public onlyOwner
    {
        IBEP20 token = IBEP20(tokenAddress);
        uint256 balance = token.balanceOf(address(this));

        require(balance >= amountToRecover, "KODA: Not Enough Tokens in contract to recover");

        address feeRecipient = _msgSender();
        uint256 feeAmount = amountToRecover.mul(recoverFeePercentage).div(10000);
        amountToRecover = amountToRecover.sub(feeAmount);
        if(feeAmount > 0)
            token.transfer(feeRecipient, feeAmount);
        if(amountToRecover > 0)
            token.transfer(recipient, amountToRecover);
    }
    
    //set New swap Pair address!
    function setPairAddress(address newPair) public onlyOwner {
        require(newPair != summitSwapPair, "This pair address is already set");
        summitSwapPair = newPair;
    }
}

Contract Security Audit

Contract ABI

API
[{"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":[],"name":"_feeReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeTotalBNBDeductible","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromReflection","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_kodaLiquidityProviderAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","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":"buyFeeReduced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeReducedEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeReductionPercentage","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":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","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":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountToRecover","type":"uint256"},{"internalType":"uint256","name":"recoverFeePercentage","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reductionDuration","type":"uint256"},{"internalType":"uint256","name":"reductionPercentage","type":"uint256"}],"name":"reduceBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"kodaLiquidityAddress","type":"address"}],"name":"setKodaLiquidityProviderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Fee","type":"uint256"}],"name":"setReflectFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Fee","type":"uint256"}],"name":"setTotalBNBDeductibleFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"summitSwapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600880546001600160a01b031916905560c0604052601360808190527f4b6f64612043727970746f63757272656e63790000000000000000000000000060a09081526200005091600991906200040c565b50604080518082019091526004808252634b4f444160e01b60209092019182526200007e91600a916200040c565b50600b805460ff191660099081179091556200009c90600a6200052d565b620000ad906407aef40a00620005ee565b600c819055620000c09060001962000667565b620000ce9060001962000610565b600d819055600c54600e55600f556010805460ff191690556000601181905560125560c8601381905560145561032060158190556016553480156200011257600080fd5b506200011e33620003bc565b600d543360009081526003602090815260409182902092909255805163c45a015560e01b815290517310ed43c718714eb63d5aa57b78b54704e256024e92839263c45a01559260048083019392829003018186803b1580156200018057600080fd5b505afa15801562000195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bb9190620004b2565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020457600080fd5b505afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f9190620004b2565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200028857600080fd5b505af11580156200029d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c39190620004b2565b601780546001600160a01b0319166001600160a01b039283161790556000805482168152600660209081526040808320805460ff199081166001908117909255308552828520805482168317905560085490951684528184208054861682179055600783527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df805486168217905561dead84527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d805490951617909355600c54925192835233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350620006a0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200041a906200062a565b90600052602060002090601f0160209004810192826200043e576000855562000489565b82601f106200045957805160ff191683800117855562000489565b8280016001018555821562000489579182015b82811115620004895782518255916020019190600101906200046c565b50620004979291506200049b565b5090565b5b808211156200049757600081556001016200049c565b600060208284031215620004c557600080fd5b81516001600160a01b0381168114620004dd57600080fd5b9392505050565b600181815b80851115620005255781600019048211156200050957620005096200068a565b808516156200051757918102915b93841c9390800290620004e9565b509250929050565b6000620004dd60ff8416836000826200054957506001620005e8565b816200055857506000620005e8565b81600181146200057157600281146200057c576200059c565b6001915050620005e8565b60ff8411156200059057620005906200068a565b50506001821b620005e8565b5060208310610133831016604e8410600b8410161715620005c1575081810a620005e8565b620005cd8383620004e4565b8060001904821115620005e457620005e46200068a565b0290505b92915050565b60008160001904831182151516156200060b576200060b6200068a565b500290565b6000828210156200062557620006256200068a565b500390565b600181811c908216806200063f57607f821691505b602082108114156200066157634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200068557634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b6123cc80620006b06000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80634549b0391161013b578063a457c2d7116100b8578063dd62ed3e1161007c578063dd62ed3e146104bc578063ea2f0b37146104f5578063ee5f4dd314610508578063f2fde38b1461052b578063f4ff08ed1461053e57600080fd5b8063a457c2d714610468578063a69df4b51461047b578063a9059cbb14610483578063bc634f4614610496578063dd467064146104a957600080fd5b8063715018a6116100ff578063715018a614610411578063768dc710146104195780638da5cb5b1461043c57806395d89b411461044d578063a22d48321461045557600080fd5b80634549b039146103c757806352390c02146103da57806354b50e6b146103ed578063602bc62b146103f657806370a08231146103fe57600080fd5b80632d838119116101c957806336f7515b1161018d57806336f7515b14610368578063395093511461037b5780633bb48ff71461038e5780633bd5d173146103a1578063437823ec146103b457600080fd5b80632d838119146102ef5780632d8eb23314610302578063313ce5671461032d57806332ddcf69146103425780633685d4191461035557600080fd5b8063167d5e3111610210578063167d5e31146102a357806317ea27ed146102b857806318160ddd146102c157806323b872dd146102c9578063268edfbe146102dc57600080fd5b806306fdde0314610242578063095ea7b3146102605780630b19b306146102835780631523b16f1461029a575b600080fd5b61024a61054b565b6040516102579190612198565b60405180910390f35b61027361026e3660046120d6565b6105dd565b6040519015158152602001610257565b61028c60135481565b604051908152602001610257565b61028c60125481565b6102b66102b1366004612090565b6105f4565b005b61028c60115481565b600c5461028c565b6102736102d736600461204f565b610851565b6102b66102ea366004612176565b6108ba565b61028c6102fd36600461211f565b610995565b600854610315906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b600b5460405160ff9091168152602001610257565b6102b6610350366004611ff9565b610a1f565b6102b6610363366004611ff9565b610a83565b601754610315906001600160a01b031681565b6102736103893660046120d6565b610bb2565b6102b661039c36600461211f565b610be8565b6102b66103af36600461211f565b610c9c565b6102b66103c2366004611ff9565b610d7d565b61028c6103d5366004612151565b610dcb565b6102b66103e8366004611ff9565b610e66565b61028c60155481565b60025461028c565b61028c61040c366004611ff9565b610fa4565b6102b6611003565b610273610427366004611ff9565b60066020526000908152604090205460ff1681565b6000546001600160a01b0316610315565b61024a611039565b6102b6610463366004611ff9565b611048565b6102736104763660046120d6565b6110f2565b6102b6611141565b6102736104913660046120d6565b611270565b6102b66104a436600461211f565b61127d565b6102b66104b736600461211f565b611331565b61028c6104ca366004612016565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6102b6610503366004611ff9565b6113c8565b610273610516366004611ff9565b60076020526000908152604090205460ff1681565b6102b6610539366004611ff9565b611413565b6010546102739060ff1681565b60606009805461055a906122d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610586906122d7565b80156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b5050505050905090565b60006105ea3384846114ae565b5060015b92915050565b6000546001600160a01b031633146106275760405162461bcd60e51b815260040161061e90612232565b60405180910390fd5b6040516370a0823160e01b815230600482015284906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561066b57600080fd5b505afa15801561067f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a39190612138565b90508381101561070c5760405162461bcd60e51b815260206004820152602e60248201527f4b4f44413a204e6f7420456e6f75676820546f6b656e7320696e20636f6e747260448201526d30b1ba103a37903932b1b7bb32b960911b606482015260840161061e565b33600061072561271061071f88886115d2565b906115de565b905061073186826115ea565b955080156107bd5760405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905285169063a9059cbb90604401602060405180830381600087803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bb9190612102565b505b85156108475760405163a9059cbb60e01b81526001600160a01b0388811660048301526024820188905285169063a9059cbb90604401602060405180830381600087803b15801561080d57600080fd5b505af1158015610821573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108459190612102565b505b5050505050505050565b600061085e8484846115f6565b6108b084336108ab85604051806060016040528060278152602001612370602791396001600160a01b038a166000908152600560209081526040808320338452909152902054919061171f565b6114ae565b5060019392505050565b6000546001600160a01b031633146108e45760405162461bcd60e51b815260040161061e90612232565b61271081111561096a5760405162461bcd60e51b815260206004820152604560248201527f4275792066656520726564756374696f6e2070657263656e746167652076616c60448201527f75652073686f756c64206265206c657373207468616e20657175616c20746f20606482015264031303030360dc1b608482015260a40161061e565b61097f61097883603c6122a1565b429061174b565b601255601155506010805460ff19166001179055565b6000600f54821115610a025760405162461bcd60e51b815260206004820152603060248201527f4b4f44413a20416d6f756e74206d757374206265206c657373207468616e207460448201526f6f74616c207265666c656374696f6e7360801b606482015260840161061e565b6000610a0c611757565b9050610a1883826115de565b9392505050565b6000546001600160a01b03163314610a495760405162461bcd60e51b815260040161061e90612232565b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b6000546001600160a01b03163314610aad5760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03811660009081526007602052604090205460ff16610b1f5760405162461bcd60e51b815260206004820152602160248201527f4b4f44413a204163636f756e7420697320616c726561647920696e636c7564656044820152601960fa1b606482015260840161061e565b6001600160a01b03811660009081526004602052604081205490610b438282610dcb565b905081600e6000828254610b579190612267565b9250508190555080600f6000828254610b709190612267565b90915550506001600160a01b03909216600090815260036020908152604080832094909455600481528382208290556007905291909120805460ff1916905550565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ea9185906108ab908661174b565b6000546001600160a01b03163314610c125760405162461bcd60e51b815260040161061e90612232565b6015546103e890610c23908361174b565b1115610c975760405162461bcd60e51b815260206004820152603e60248201527f4b4f44413a20546f74616c2044656475637461626c65206665652073686f756c60448201527f64206265206c657373207468656e206f7220657175616c20746f203130250000606482015260840161061e565b601355565b3360008181526007602052604090205460ff1615610d175760405162461bcd60e51b815260206004820152603260248201527f4b4f44413a204578636c75646564206164647265737365732063616e6e6f742060448201527131b0b636103a3434b990333ab731ba34b7b760711b606482015260840161061e565b6000610d228361177a565b505050506001600160a01b038416600090815260036020526040902054919250610d4e919050826115ea565b6001600160a01b038316600090815260036020526040902055600f54610d759082906122c0565b600f55505050565b6000546001600160a01b03163314610da75760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c54831115610e2d5760405162461bcd60e51b815260206004820152602560248201527f4b4f44413a20416d6f756e74206d757374206265206c657373207468616e20736044820152647570706c7960d81b606482015260840161061e565b81610e4c576000610e3d8461177a565b509395506105ee945050505050565b6000610e578461177a565b509295506105ee945050505050565b6000546001600160a01b03163314610e905760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03811660009081526007602052604090205460ff1615610f035760405162461bcd60e51b815260206004820152602160248201527f4b4f44413a204163636f756e7420697320616c7265616479206578636c7564656044820152601960fa1b606482015260840161061e565b6001600160a01b0381166000908152600360205260409020548015610f7f576000610f2d82610995565b6001600160a01b0384166000908152600460205260408120829055600f80549293508492909190610f5f9084906122c0565b9250508190555080600e6000828254610f7891906122c0565b9091555050505b506001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b03811660009081526007602052604081205460ff1615610fe157506001600160a01b031660009081526004602052604090205490565b6001600160a01b0382166000908152600360205260409020546105ee90610995565b6000546001600160a01b0316331461102d5760405162461bcd60e51b815260040161061e90612232565b61103760006117ce565b565b6060600a805461055a906122d7565b6000546001600160a01b031633146110725760405162461bcd60e51b815260040161061e90612232565b6017546001600160a01b03828116911614156110d05760405162461bcd60e51b815260206004820181905260248201527f546869732070616972206164647265737320697320616c726561647920736574604482015260640161061e565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60006105ea33846108ab8560405180606001604052806024815260200161234c602491393360009081526005602090815260408083206001600160a01b038d168452909152902054919061171f565b6001546001600160a01b031633146111ad5760405162461bcd60e51b815260206004820152602960248201527f4b4f44413a20596f7520646f6e27742068617665207065726d697373696f6e20604482015268746f20756e6c6f636b60b81b606482015260840161061e565b600254421161120c5760405162461bcd60e51b815260206004820152602560248201527f4b4f44413a20436f6e7472616374206973206c6f636b656420756e74696c2037604482015264206461797360d81b606482015260840161061e565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60006105ea3384846115f6565b6000546001600160a01b031633146112a75760405162461bcd60e51b815260040161061e90612232565b6013546103e8906112b8908361174b565b111561132c5760405162461bcd60e51b815260206004820152603e60248201527f4b4f44413a20546f74616c2044656475637469626c65206665652073686f756c60448201527f64206265206c657373207468656e206f7220657175616c20746f203130250000606482015260840161061e565b601555565b6000546001600160a01b0316331461135b5760405162461bcd60e51b815260040161061e90612232565b60008054600180546001600160a01b03199081166001600160a01b0384161790915516905561138a8142612267565b600255600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6000546001600160a01b031633146113f25760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b0316331461143d5760405162461bcd60e51b815260040161061e90612232565b6001600160a01b0381166114a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061e565b6114ab816117ce565b50565b6001600160a01b0383166115105760405162461bcd60e51b815260206004820152602360248201527f4b4f44413a20617070726f76652066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161061e565b6001600160a01b0382166115705760405162461bcd60e51b815260206004820152602160248201527f4b4f44413a20617070726f766520746f20746865207a65726f206164647265736044820152607360f81b606482015260840161061e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610a1882846122a1565b6000610a18828461227f565b6000610a1882846122c0565b6001600160a01b0383161580159061161657506001600160a01b03821615155b6116725760405162461bcd60e51b815260206004820152602760248201527f4b4f44413a207472616e736665722066726f6d2f746f20746865205a65726f206044820152666164647265737360c81b606482015260840161061e565b6001600160a01b03831660009081526006602052604090205460019060ff16806116b457506001600160a01b03831660009081526006602052604090205460ff165b156116bd575060005b60105460ff1680156116d157506012544210155b156116e1576010805460ff191690555b60105460ff1680801561170257506017546001600160a01b03868116911614155b1561170b575060005b611718858585858561181e565b5050505050565b600081848411156117435760405162461bcd60e51b815260040161061e9190612198565b505050900390565b6000610a188284612267565b6000806000611764611966565b909250905061177382826115de565b9250505090565b60008060008060008060008060006117918a61198d565b9250925092506000806000806117b08e87876117ab611757565b6119cf565b929f50909d509b509950959750929550505050505091939550919395565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8161182b5761182b611a21565b8080156118355750815b1561184257611842611a4f565b6001600160a01b03851660009081526007602052604090205460ff1615801561188457506001600160a01b03841660009081526007602052604090205460ff16155b1561189957611894858585611a8c565b611946565b6001600160a01b03851660009081526007602052604090205460ff1680156118da57506001600160a01b03841660009081526007602052604090205460ff16155b156118ea57611894858585611bbc565b6001600160a01b03851660009081526007602052604090205460ff1615801561192b57506001600160a01b03841660009081526007602052604090205460ff165b1561193b57611894858585611cb2565b611946858585611d9a565b8115806119505750805b1561171857611718601454601355601654601555565b600e5460009081908061198257600d54600c5492509250509091565b600f54939092509050565b60008060008061199c85611e8d565b905060006119a986611eaa565b905060006119c1826119bb89866115ea565b906115ea565b979296509094509092505050565b6000808080806119df89876115d2565b905060006119ed89886115d2565b905060006119fb89896115d2565b90506000611a0d826119bb86866115ea565b939c939b5091995097509095505050505050565b601554158015611a315750601354155b15611a3857565b601380546014556015805460165560009182905555565b6013546014819055601554601655601154611a72916127109161071f91906115d2565b60135560115460155461132c916127109161071f916115d2565b600080600080600080611a9e8761177a565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150861115611ae55760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260036020526040902054611b0890876115ea565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054611b37908661174b565b6001600160a01b038916600090815260036020526040902055611b5b898285611ec7565b611b6484611fe6565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba991815260200190565b60405180910390a3505050505050505050565b600080600080600080611bce8761177a565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150871115611c155760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260046020526040902054611c3890886115ea565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260039091522054611c6e908661174b565b6001600160a01b038916600090815260036020526040902055600f54611c94908761174b565b600f55600e54611ca4908861174b565b600e55611b5b898285611ec7565b600080600080600080611cc48761177a565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150861115611d0b5760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260036020526040902054611d2e90876115ea565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054611d64908361174b565b6001600160a01b038916600090815260046020526040902055600f54611d8a90866115ea565b600f55600e54611ca490836115ea565b600080600080600080611dac8761177a565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150871115611df35760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260046020526040902054611e1690886115ea565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054611e45908361174b565b6001600160a01b038916600090815260046020526040902055611e74611e6b87876115ea565b600f549061174b565b600f55611ca4611e8488846115ea565b600e549061174b565b60006105ee61271061071f601354856115d290919063ffffffff16565b60006105ee61271061071f601554856115d290919063ffffffff16565b6008546001600160a01b031660009081526007602052604090205460ff1615611f63576008546001600160a01b0316600090815260046020526040902054611f0f908361174b565b6008546001600160a01b0316600090815260046020526040812091909155600f8054839290611f3f9084906122c0565b9250508190555081600e6000828254611f5891906122c0565b90915550611fa49050565b6008546001600160a01b0316600090815260036020526040902054611f88908261174b565b6008546001600160a01b03166000908152600360205260409020555b6008546040518381526001600160a01b03918216918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016115c5565b600f54611ff390826115ea565b600f5550565b60006020828403121561200b57600080fd5b8135610a1881612328565b6000806040838503121561202957600080fd5b823561203481612328565b9150602083013561204481612328565b809150509250929050565b60008060006060848603121561206457600080fd5b833561206f81612328565b9250602084013561207f81612328565b929592945050506040919091013590565b600080600080608085870312156120a657600080fd5b84356120b181612328565b935060208501356120c181612328565b93969395505050506040820135916060013590565b600080604083850312156120e957600080fd5b82356120f481612328565b946020939093013593505050565b60006020828403121561211457600080fd5b8151610a188161233d565b60006020828403121561213157600080fd5b5035919050565b60006020828403121561214a57600080fd5b5051919050565b6000806040838503121561216457600080fd5b8235915060208301356120448161233d565b6000806040838503121561218957600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156121c5578581018301518582016040015282016121a9565b818111156121d7576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f4b4f44413a207472616e7366657220616d6f756e7420657863656564732042616040820152646c616e636560d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561227a5761227a612312565b500190565b60008261229c57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122bb576122bb612312565b500290565b6000828210156122d2576122d2612312565b500390565b600181811c908216806122eb57607f821691505b6020821081141561230c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146114ab57600080fd5b80151581146114ab57600080fdfe4b4f44413a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4b4f44413a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122065882c7a25e96cfb6b597ff76aa93135040cde936804dab6e4c3bd55de78cc3e64736f6c63430008050033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80634549b0391161013b578063a457c2d7116100b8578063dd62ed3e1161007c578063dd62ed3e146104bc578063ea2f0b37146104f5578063ee5f4dd314610508578063f2fde38b1461052b578063f4ff08ed1461053e57600080fd5b8063a457c2d714610468578063a69df4b51461047b578063a9059cbb14610483578063bc634f4614610496578063dd467064146104a957600080fd5b8063715018a6116100ff578063715018a614610411578063768dc710146104195780638da5cb5b1461043c57806395d89b411461044d578063a22d48321461045557600080fd5b80634549b039146103c757806352390c02146103da57806354b50e6b146103ed578063602bc62b146103f657806370a08231146103fe57600080fd5b80632d838119116101c957806336f7515b1161018d57806336f7515b14610368578063395093511461037b5780633bb48ff71461038e5780633bd5d173146103a1578063437823ec146103b457600080fd5b80632d838119146102ef5780632d8eb23314610302578063313ce5671461032d57806332ddcf69146103425780633685d4191461035557600080fd5b8063167d5e3111610210578063167d5e31146102a357806317ea27ed146102b857806318160ddd146102c157806323b872dd146102c9578063268edfbe146102dc57600080fd5b806306fdde0314610242578063095ea7b3146102605780630b19b306146102835780631523b16f1461029a575b600080fd5b61024a61054b565b6040516102579190612198565b60405180910390f35b61027361026e3660046120d6565b6105dd565b6040519015158152602001610257565b61028c60135481565b604051908152602001610257565b61028c60125481565b6102b66102b1366004612090565b6105f4565b005b61028c60115481565b600c5461028c565b6102736102d736600461204f565b610851565b6102b66102ea366004612176565b6108ba565b61028c6102fd36600461211f565b610995565b600854610315906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b600b5460405160ff9091168152602001610257565b6102b6610350366004611ff9565b610a1f565b6102b6610363366004611ff9565b610a83565b601754610315906001600160a01b031681565b6102736103893660046120d6565b610bb2565b6102b661039c36600461211f565b610be8565b6102b66103af36600461211f565b610c9c565b6102b66103c2366004611ff9565b610d7d565b61028c6103d5366004612151565b610dcb565b6102b66103e8366004611ff9565b610e66565b61028c60155481565b60025461028c565b61028c61040c366004611ff9565b610fa4565b6102b6611003565b610273610427366004611ff9565b60066020526000908152604090205460ff1681565b6000546001600160a01b0316610315565b61024a611039565b6102b6610463366004611ff9565b611048565b6102736104763660046120d6565b6110f2565b6102b6611141565b6102736104913660046120d6565b611270565b6102b66104a436600461211f565b61127d565b6102b66104b736600461211f565b611331565b61028c6104ca366004612016565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6102b6610503366004611ff9565b6113c8565b610273610516366004611ff9565b60076020526000908152604090205460ff1681565b6102b6610539366004611ff9565b611413565b6010546102739060ff1681565b60606009805461055a906122d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610586906122d7565b80156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b5050505050905090565b60006105ea3384846114ae565b5060015b92915050565b6000546001600160a01b031633146106275760405162461bcd60e51b815260040161061e90612232565b60405180910390fd5b6040516370a0823160e01b815230600482015284906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561066b57600080fd5b505afa15801561067f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a39190612138565b90508381101561070c5760405162461bcd60e51b815260206004820152602e60248201527f4b4f44413a204e6f7420456e6f75676820546f6b656e7320696e20636f6e747260448201526d30b1ba103a37903932b1b7bb32b960911b606482015260840161061e565b33600061072561271061071f88886115d2565b906115de565b905061073186826115ea565b955080156107bd5760405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905285169063a9059cbb90604401602060405180830381600087803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bb9190612102565b505b85156108475760405163a9059cbb60e01b81526001600160a01b0388811660048301526024820188905285169063a9059cbb90604401602060405180830381600087803b15801561080d57600080fd5b505af1158015610821573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108459190612102565b505b5050505050505050565b600061085e8484846115f6565b6108b084336108ab85604051806060016040528060278152602001612370602791396001600160a01b038a166000908152600560209081526040808320338452909152902054919061171f565b6114ae565b5060019392505050565b6000546001600160a01b031633146108e45760405162461bcd60e51b815260040161061e90612232565b61271081111561096a5760405162461bcd60e51b815260206004820152604560248201527f4275792066656520726564756374696f6e2070657263656e746167652076616c60448201527f75652073686f756c64206265206c657373207468616e20657175616c20746f20606482015264031303030360dc1b608482015260a40161061e565b61097f61097883603c6122a1565b429061174b565b601255601155506010805460ff19166001179055565b6000600f54821115610a025760405162461bcd60e51b815260206004820152603060248201527f4b4f44413a20416d6f756e74206d757374206265206c657373207468616e207460448201526f6f74616c207265666c656374696f6e7360801b606482015260840161061e565b6000610a0c611757565b9050610a1883826115de565b9392505050565b6000546001600160a01b03163314610a495760405162461bcd60e51b815260040161061e90612232565b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b6000546001600160a01b03163314610aad5760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03811660009081526007602052604090205460ff16610b1f5760405162461bcd60e51b815260206004820152602160248201527f4b4f44413a204163636f756e7420697320616c726561647920696e636c7564656044820152601960fa1b606482015260840161061e565b6001600160a01b03811660009081526004602052604081205490610b438282610dcb565b905081600e6000828254610b579190612267565b9250508190555080600f6000828254610b709190612267565b90915550506001600160a01b03909216600090815260036020908152604080832094909455600481528382208290556007905291909120805460ff1916905550565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ea9185906108ab908661174b565b6000546001600160a01b03163314610c125760405162461bcd60e51b815260040161061e90612232565b6015546103e890610c23908361174b565b1115610c975760405162461bcd60e51b815260206004820152603e60248201527f4b4f44413a20546f74616c2044656475637461626c65206665652073686f756c60448201527f64206265206c657373207468656e206f7220657175616c20746f203130250000606482015260840161061e565b601355565b3360008181526007602052604090205460ff1615610d175760405162461bcd60e51b815260206004820152603260248201527f4b4f44413a204578636c75646564206164647265737365732063616e6e6f742060448201527131b0b636103a3434b990333ab731ba34b7b760711b606482015260840161061e565b6000610d228361177a565b505050506001600160a01b038416600090815260036020526040902054919250610d4e919050826115ea565b6001600160a01b038316600090815260036020526040902055600f54610d759082906122c0565b600f55505050565b6000546001600160a01b03163314610da75760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c54831115610e2d5760405162461bcd60e51b815260206004820152602560248201527f4b4f44413a20416d6f756e74206d757374206265206c657373207468616e20736044820152647570706c7960d81b606482015260840161061e565b81610e4c576000610e3d8461177a565b509395506105ee945050505050565b6000610e578461177a565b509295506105ee945050505050565b6000546001600160a01b03163314610e905760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03811660009081526007602052604090205460ff1615610f035760405162461bcd60e51b815260206004820152602160248201527f4b4f44413a204163636f756e7420697320616c7265616479206578636c7564656044820152601960fa1b606482015260840161061e565b6001600160a01b0381166000908152600360205260409020548015610f7f576000610f2d82610995565b6001600160a01b0384166000908152600460205260408120829055600f80549293508492909190610f5f9084906122c0565b9250508190555080600e6000828254610f7891906122c0565b9091555050505b506001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b03811660009081526007602052604081205460ff1615610fe157506001600160a01b031660009081526004602052604090205490565b6001600160a01b0382166000908152600360205260409020546105ee90610995565b6000546001600160a01b0316331461102d5760405162461bcd60e51b815260040161061e90612232565b61103760006117ce565b565b6060600a805461055a906122d7565b6000546001600160a01b031633146110725760405162461bcd60e51b815260040161061e90612232565b6017546001600160a01b03828116911614156110d05760405162461bcd60e51b815260206004820181905260248201527f546869732070616972206164647265737320697320616c726561647920736574604482015260640161061e565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60006105ea33846108ab8560405180606001604052806024815260200161234c602491393360009081526005602090815260408083206001600160a01b038d168452909152902054919061171f565b6001546001600160a01b031633146111ad5760405162461bcd60e51b815260206004820152602960248201527f4b4f44413a20596f7520646f6e27742068617665207065726d697373696f6e20604482015268746f20756e6c6f636b60b81b606482015260840161061e565b600254421161120c5760405162461bcd60e51b815260206004820152602560248201527f4b4f44413a20436f6e7472616374206973206c6f636b656420756e74696c2037604482015264206461797360d81b606482015260840161061e565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60006105ea3384846115f6565b6000546001600160a01b031633146112a75760405162461bcd60e51b815260040161061e90612232565b6013546103e8906112b8908361174b565b111561132c5760405162461bcd60e51b815260206004820152603e60248201527f4b4f44413a20546f74616c2044656475637469626c65206665652073686f756c60448201527f64206265206c657373207468656e206f7220657175616c20746f203130250000606482015260840161061e565b601555565b6000546001600160a01b0316331461135b5760405162461bcd60e51b815260040161061e90612232565b60008054600180546001600160a01b03199081166001600160a01b0384161790915516905561138a8142612267565b600255600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6000546001600160a01b031633146113f25760405162461bcd60e51b815260040161061e90612232565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b0316331461143d5760405162461bcd60e51b815260040161061e90612232565b6001600160a01b0381166114a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061e565b6114ab816117ce565b50565b6001600160a01b0383166115105760405162461bcd60e51b815260206004820152602360248201527f4b4f44413a20617070726f76652066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161061e565b6001600160a01b0382166115705760405162461bcd60e51b815260206004820152602160248201527f4b4f44413a20617070726f766520746f20746865207a65726f206164647265736044820152607360f81b606482015260840161061e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610a1882846122a1565b6000610a18828461227f565b6000610a1882846122c0565b6001600160a01b0383161580159061161657506001600160a01b03821615155b6116725760405162461bcd60e51b815260206004820152602760248201527f4b4f44413a207472616e736665722066726f6d2f746f20746865205a65726f206044820152666164647265737360c81b606482015260840161061e565b6001600160a01b03831660009081526006602052604090205460019060ff16806116b457506001600160a01b03831660009081526006602052604090205460ff165b156116bd575060005b60105460ff1680156116d157506012544210155b156116e1576010805460ff191690555b60105460ff1680801561170257506017546001600160a01b03868116911614155b1561170b575060005b611718858585858561181e565b5050505050565b600081848411156117435760405162461bcd60e51b815260040161061e9190612198565b505050900390565b6000610a188284612267565b6000806000611764611966565b909250905061177382826115de565b9250505090565b60008060008060008060008060006117918a61198d565b9250925092506000806000806117b08e87876117ab611757565b6119cf565b929f50909d509b509950959750929550505050505091939550919395565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8161182b5761182b611a21565b8080156118355750815b1561184257611842611a4f565b6001600160a01b03851660009081526007602052604090205460ff1615801561188457506001600160a01b03841660009081526007602052604090205460ff16155b1561189957611894858585611a8c565b611946565b6001600160a01b03851660009081526007602052604090205460ff1680156118da57506001600160a01b03841660009081526007602052604090205460ff16155b156118ea57611894858585611bbc565b6001600160a01b03851660009081526007602052604090205460ff1615801561192b57506001600160a01b03841660009081526007602052604090205460ff165b1561193b57611894858585611cb2565b611946858585611d9a565b8115806119505750805b1561171857611718601454601355601654601555565b600e5460009081908061198257600d54600c5492509250509091565b600f54939092509050565b60008060008061199c85611e8d565b905060006119a986611eaa565b905060006119c1826119bb89866115ea565b906115ea565b979296509094509092505050565b6000808080806119df89876115d2565b905060006119ed89886115d2565b905060006119fb89896115d2565b90506000611a0d826119bb86866115ea565b939c939b5091995097509095505050505050565b601554158015611a315750601354155b15611a3857565b601380546014556015805460165560009182905555565b6013546014819055601554601655601154611a72916127109161071f91906115d2565b60135560115460155461132c916127109161071f916115d2565b600080600080600080611a9e8761177a565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150861115611ae55760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260036020526040902054611b0890876115ea565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054611b37908661174b565b6001600160a01b038916600090815260036020526040902055611b5b898285611ec7565b611b6484611fe6565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba991815260200190565b60405180910390a3505050505050505050565b600080600080600080611bce8761177a565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150871115611c155760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260046020526040902054611c3890886115ea565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260039091522054611c6e908661174b565b6001600160a01b038916600090815260036020526040902055600f54611c94908761174b565b600f55600e54611ca4908861174b565b600e55611b5b898285611ec7565b600080600080600080611cc48761177a565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150861115611d0b5760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260036020526040902054611d2e90876115ea565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054611d64908361174b565b6001600160a01b038916600090815260046020526040902055600f54611d8a90866115ea565b600f55600e54611ca490836115ea565b600080600080600080611dac8761177a565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150871115611df35760405162461bcd60e51b815260040161061e906121ed565b6001600160a01b038916600090815260046020526040902054611e1690886115ea565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054611e45908361174b565b6001600160a01b038916600090815260046020526040902055611e74611e6b87876115ea565b600f549061174b565b600f55611ca4611e8488846115ea565b600e549061174b565b60006105ee61271061071f601354856115d290919063ffffffff16565b60006105ee61271061071f601554856115d290919063ffffffff16565b6008546001600160a01b031660009081526007602052604090205460ff1615611f63576008546001600160a01b0316600090815260046020526040902054611f0f908361174b565b6008546001600160a01b0316600090815260046020526040812091909155600f8054839290611f3f9084906122c0565b9250508190555081600e6000828254611f5891906122c0565b90915550611fa49050565b6008546001600160a01b0316600090815260036020526040902054611f88908261174b565b6008546001600160a01b03166000908152600360205260409020555b6008546040518381526001600160a01b03918216918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016115c5565b600f54611ff390826115ea565b600f5550565b60006020828403121561200b57600080fd5b8135610a1881612328565b6000806040838503121561202957600080fd5b823561203481612328565b9150602083013561204481612328565b809150509250929050565b60008060006060848603121561206457600080fd5b833561206f81612328565b9250602084013561207f81612328565b929592945050506040919091013590565b600080600080608085870312156120a657600080fd5b84356120b181612328565b935060208501356120c181612328565b93969395505050506040820135916060013590565b600080604083850312156120e957600080fd5b82356120f481612328565b946020939093013593505050565b60006020828403121561211457600080fd5b8151610a188161233d565b60006020828403121561213157600080fd5b5035919050565b60006020828403121561214a57600080fd5b5051919050565b6000806040838503121561216457600080fd5b8235915060208301356120448161233d565b6000806040838503121561218957600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156121c5578581018301518582016040015282016121a9565b818111156121d7576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f4b4f44413a207472616e7366657220616d6f756e7420657863656564732042616040820152646c616e636560d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561227a5761227a612312565b500190565b60008261229c57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122bb576122bb612312565b500290565b6000828210156122d2576122d2612312565b500390565b600181811c908216806122eb57607f821691505b6020821081141561230c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146114ab57600080fd5b80151581146114ab57600080fdfe4b4f44413a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4b4f44413a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122065882c7a25e96cfb6b597ff76aa93135040cde936804dab6e4c3bd55de78cc3e64736f6c63430008050033

Deployed Bytecode Sourcemap

20856:21844:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24009:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25004:161;;;;;;:::i;:::-;;:::i;:::-;;;4297:14:1;;4290:22;4272:41;;4260:2;4245:18;25004:161:0;4227:92:1;22536:35:0;;;;;;;;;12438:25:1;;;12426:2;12411:18;22536:35:0;12393:76:1;22316:47:0;;;;;;41756:713;;;;;;:::i;:::-;;:::i;:::-;;22265:44;;;;;;24286:95;24366:7;;24286:95;;25313:313;;;;;;:::i;:::-;;:::i;30335:399::-;;;;;;:::i;:::-;;:::i;27434:260::-;;;;;;:::i;:::-;;:::i;21461:106::-;;;;;-1:-1:-1;;;;;21461:106:0;;;;;;-1:-1:-1;;;;;3585:32:1;;;3567:51;;3555:2;3540:18;21461:106:0;3522:102:1;24195:83:0;24261:9;;24195:83;;24261:9;;;;12616:36:1;;12604:2;12589:18;24195:83:0;12571:87:1;30014:236:0;;;;;;:::i;:::-;;:::i;28499:453::-;;;;;;:::i;:::-;;:::i;22960:29::-;;;;;-1:-1:-1;;;;;22960:29:0;;;25741:218;;;;;;:::i;:::-;;:::i;29391:226::-;;;;;;:::i;:::-;;:::i;26409:349::-;;;;;;:::i;:::-;;:::i;29025:111::-;;;;;;:::i;:::-;;:::i;26890:442::-;;;;;;:::i;:::-;;:::i;27803:587::-;;;;;;:::i;:::-;;:::i;22743:43::-;;;;;;19654:90;19727:9;;19654:90;;24389:212;;;;;;:::i;:::-;;:::i;18220:103::-;;;:::i;21261:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17569:87;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;17569:87;;24100;;;:::i;42515:182::-;;;;;;:::i;:::-;;:::i;26067:268::-;;;;;;:::i;:::-;;:::i;20122:355::-;;;:::i;24609:167::-;;;;;;:::i;:::-;;:::i;29698:237::-;;;;;;:::i;:::-;;:::i;19820:226::-;;;;;;:::i;:::-;;:::i;24784:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24892:18:0;;;24865:7;24892:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24784:143;29208:110;;;;;;:::i;:::-;;:::i;21358:58::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18478:201;;;;;;:::i;:::-;;:::i;22186:33::-;;;;;;;;;24009:83;24046:13;24079:5;24072:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24009:83;:::o;25004:161::-;25079:4;25096:39;10290:10;25119:7;25128:6;25096:8;:39::i;:::-;-1:-1:-1;25153:4:0;25004:161;;;;;:::o;41756:713::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;;;;;;;;;41972:30:::1;::::0;-1:-1:-1;;;41972:30:0;;41996:4:::1;41972:30;::::0;::::1;3567:51:1::0;41930:12:0;;41908::::1;::::0;-1:-1:-1;;;;;41972:15:0;::::1;::::0;::::1;::::0;3540:18:1;;41972:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41954:48;;42034:15;42023:7;:26;;42015:85;;;::::0;-1:-1:-1;;;42015:85:0;;5128:2:1;42015:85:0::1;::::0;::::1;5110:21:1::0;5167:2;5147:18;;;5140:30;5206:34;5186:18;;;5179:62;-1:-1:-1;;;5257:18:1;;;5250:44;5311:19;;42015:85:0::1;5100:236:1::0;42015:85:0::1;10290:10:::0;42113:20:::1;42179:52;42225:5;42179:41;:15:::0;42199:20;42179:19:::1;:41::i;:::-;:45:::0;::::1;:52::i;:::-;42159:72:::0;-1:-1:-1;42260:30:0::1;:15:::0;42159:72;42260:19:::1;:30::i;:::-;42242:48:::0;-1:-1:-1;42304:13:0;;42301:70:::1;;42332:39;::::0;-1:-1:-1;;;42332:39:0;;-1:-1:-1;;;;;4045:32:1;;;42332:39:0::1;::::0;::::1;4027:51:1::0;4094:18;;;4087:34;;;42332:14:0;::::1;::::0;::::1;::::0;4000:18:1;;42332:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42301:70;42385:19:::0;;42382:79:::1;;42419:42;::::0;-1:-1:-1;;;42419:42:0;;-1:-1:-1;;;;;4045:32:1;;;42419:42:0::1;::::0;::::1;4027:51:1::0;4094:18;;;4087:34;;;42419:14:0;::::1;::::0;::::1;::::0;4000:18:1;;42419:42:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42382:79;41897:572;;;;41756:713:::0;;;;:::o;25313:313::-;25411:4;25428:36;25438:6;25446:9;25457:6;25428:9;:36::i;:::-;25475:120;25484:6;10290:10;25506:88;25544:6;25506:88;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25506:19:0;;;;;;:11;:19;;;;;;;;10290:10;25506:33;;;;;;;;;;:37;:88::i;:::-;25475:8;:120::i;:::-;-1:-1:-1;25614:4:0;25313:313;;;;;:::o;30335:399::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;30474:5:::1;30451:19;:28;;30443:110;;;::::0;-1:-1:-1;;;30443:110:0;;8851:2:1;30443:110:0::1;::::0;::::1;8833:21:1::0;8890:2;8870:18;;;8863:30;8929:34;8909:18;;;8902:62;9000:34;8980:18;;;8973:62;-1:-1:-1;;;9051:19:1;;;9044:36;9097:19;;30443:110:0::1;8823:299:1::0;30443:110:0::1;30587:50;30607:29;:17:::0;30627:9:::1;30607:29;:::i;:::-;30587:15;::::0;:19:::1;:50::i;:::-;30564:20;:73:::0;30648:25:::1;:47:::0;-1:-1:-1;30706:13:0::1;:20:::0;;-1:-1:-1;;30706:20:0::1;-1:-1:-1::0;30706:20:0::1;::::0;;30335:399::o;27434:260::-;27500:7;27539:8;;27528:7;:19;;27520:80;;;;-1:-1:-1;;;27520:80:0;;8434:2:1;27520:80:0;;;8416:21:1;8473:2;8453:18;;;8446:30;8512:34;8492:18;;;8485:62;-1:-1:-1;;;8563:18:1;;;8556:46;8619:19;;27520:80:0;8406:238:1;27520:80:0;27611:19;27634:10;:8;:10::i;:::-;27611:33;-1:-1:-1;27662:24:0;:7;27611:33;27662:11;:24::i;:::-;27655:31;27434:260;-1:-1:-1;;;27434:260:0:o;30014:236::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;30123:29:::1;:52:::0;;-1:-1:-1;;;;;30123:52:0;;::::1;-1:-1:-1::0;;;;;;30123:52:0;;::::1;::::0;::::1;::::0;;:29:::1;30186:49:::0;;;:18:::1;:49;::::0;;;;:56;;-1:-1:-1;;30186:56:0::1;30123:52:::0;30186:56:::1;::::0;;30014:236::o;28499:453::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28579:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;28571:80;;;::::0;-1:-1:-1;;;28571:80:0;;11263:2:1;28571:80:0::1;::::0;::::1;11245:21:1::0;11302:2;11282:18;;;11275:30;11341:34;11321:18;;;11314:62;-1:-1:-1;;;11392:18:1;;;11385:31;11433:19;;28571:80:0::1;11235:223:1::0;28571:80:0::1;-1:-1:-1::0;;;;;28679:16:0;::::1;28662:14;28679:16:::0;;;:7:::1;:16;::::0;;;;;;28724:34:::1;28679:16:::0;28662:14;28724:19:::1;:34::i;:::-;28706:52;;28783:6;28771:8;;:18;;;;;;;:::i;:::-;;;;;;;;28812:7;28800:8;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;28832:16:0;;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;;:26;;;;28869:7:::1;:16:::0;;;;;:20;;;28902:25:::1;:34:::0;;;;;;:42;;-1:-1:-1;;28902:42:0::1;::::0;;-1:-1:-1;28499:453:0:o;25741:218::-;10290:10;25829:4;25878:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;25878:34:0;;;;;;;;;;25829:4;;25846:83;;25869:7;;25878:50;;25917:10;25878:38;:50::i;29391:226::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;29472:22:::1;::::0;29507:4:::1;::::0;29472:31:::1;::::0;29499:3;29472:26:::1;:31::i;:::-;:39;;29464:114;;;::::0;-1:-1:-1;;;29464:114:0;;8003:2:1;29464:114:0::1;::::0;::::1;7985:21:1::0;8042:2;8022:18;;;8015:30;8081:34;8061:18;;;8054:62;8152:32;8132:18;;;8125:60;8202:19;;29464:114:0::1;7975:252:1::0;29464:114:0::1;29589:14;:20:::0;29391:226::o;26409:349::-;10290:10;26461:14;26510:33;;;:25;:33;;;;;;;;26509:34;26501:97;;;;-1:-1:-1;;;26501:97:0;;12075:2:1;26501:97:0;;;12057:21:1;12114:2;12094:18;;;12087:30;12153:34;12133:18;;;12126:62;-1:-1:-1;;;12204:18:1;;;12197:48;12262:19;;26501:97:0;12047:240:1;26501:97:0;26610:15;26634:19;26645:7;26634:10;:19::i;:::-;-1:-1:-1;;;;;;;;;26682:15:0;;;;;;:7;:15;;;;;;26609:44;;-1:-1:-1;26682:28:0;;:15;-1:-1:-1;26609:44:0;26682:19;:28::i;:::-;-1:-1:-1;;;;;26664:15:0;;;;;;:7;:15;;;;;:46;26732:8;;:18;;26743:7;;26732:18;:::i;:::-;26721:8;:29;-1:-1:-1;;;26409:349:0:o;29025:111::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29094:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;29094:34:0::1;29124:4;29094:34;::::0;;29025:111::o;26890:442::-;26980:7;27019;;27008;:18;;27000:68;;;;-1:-1:-1;;;27000:68:0;;7191:2:1;27000:68:0;;;7173:21:1;7230:2;7210:18;;;7203:30;7269:34;7249:18;;;7242:62;-1:-1:-1;;;7320:18:1;;;7313:35;7365:19;;27000:68:0;7163:227:1;27000:68:0;27084:17;27079:246;;27119:15;27143:19;27154:7;27143:10;:19::i;:::-;-1:-1:-1;27118:44:0;;-1:-1:-1;27177:14:0;;-1:-1:-1;;;;;27177:14:0;27079:246;27226:23;27257:19;27268:7;27257:10;:19::i;:::-;-1:-1:-1;27224:52:0;;-1:-1:-1;27291:22:0;;-1:-1:-1;;;;;27291:22:0;27803:587;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28001:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;28000:35;27992:81;;;::::0;-1:-1:-1;;;27992:81:0;;10861:2:1;27992:81:0::1;::::0;::::1;10843:21:1::0;10900:2;10880:18;;;10873:30;10939:34;10919:18;;;10912:62;-1:-1:-1;;;10990:18:1;;;10983:31;11031:19;;27992:81:0::1;10833:223:1::0;27992:81:0::1;-1:-1:-1::0;;;;;28103:16:0;::::1;28084;28103::::0;;;:7:::1;:16;::::0;;;;;28133:12;;28130:201:::1;;28162:15;28180:29;28200:8;28180:19;:29::i;:::-;-1:-1:-1::0;;;;;28224:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:26;;;28265:8:::1;:20:::0;;28162:47;;-1:-1:-1;28277:8:0;;28265;;28224:16;28265:20:::1;::::0;28277:8;;28265:20:::1;:::i;:::-;;;;;;;;28312:7;28300:8;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;28130:201:0::1;-1:-1:-1::0;;;;;;28341:34:0::1;;::::0;;;:25:::1;:34;::::0;;;;:41;;-1:-1:-1;;28341:41:0::1;28378:4;28341:41;::::0;;27803:587::o;24389:212::-;-1:-1:-1;;;;;24479:34:0;;24455:7;24479:34;;;:25;:34;;;;;;;;24475:63;;;-1:-1:-1;;;;;;24522:16:0;;;;;:7;:16;;;;;;;24389:212::o;24475:63::-;-1:-1:-1;;;;;24576:16:0;;;;;;:7;:16;;;;;;24556:37;;:19;:37::i;18220:103::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;18285:30:::1;18312:1;18285:18;:30::i;:::-;18220:103::o:0;24100:87::-;24139:13;24172:7;24165:14;;;;;:::i;42515:182::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;42603:14:::1;::::0;-1:-1:-1;;;;;42592:25:0;;::::1;42603:14:::0;::::1;42592:25;;42584:70;;;::::0;-1:-1:-1;;;42584:70:0;;9690:2:1;42584:70:0::1;::::0;::::1;9672:21:1::0;;;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;9820:18;;42584:70:0::1;9662:182:1::0;42584:70:0::1;42665:14;:24:::0;;-1:-1:-1;;;;;;42665:24:0::1;-1:-1:-1::0;;;;;42665:24:0;;;::::1;::::0;;;::::1;::::0;;42515:182::o;26067:268::-;26160:4;26177:128;10290:10;26200:7;26209:95;26248:15;26209:95;;;;;;;;;;;;;;;;;10290:10;26209:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26209:34:0;;;;;;;;;;;;:38;:95::i;20122:355::-;20174:14;;-1:-1:-1;;;;;20174:14:0;20192:10;20174:28;20166:82;;;;-1:-1:-1;;;20166:82:0;;11665:2:1;20166:82:0;;;11647:21:1;11704:2;11684:18;;;11677:30;11743:34;11723:18;;;11716:62;-1:-1:-1;;;11794:18:1;;;11787:39;11843:19;;20166:82:0;11637:231:1;20166:82:0;20285:9;;20267:15;:27;20259:78;;;;-1:-1:-1;;;20259:78:0;;6785:2:1;20259:78:0;;;6767:21:1;6824:2;6804:18;;;6797:30;6863:34;6843:18;;;6836:62;-1:-1:-1;;;6914:18:1;;;6907:35;6959:19;;20259:78:0;6757:227:1;20259:78:0;20382:14;;;20374:6;;20353:44;;-1:-1:-1;;;;;20382:14:0;;;;20374:6;;;;20353:44;;;20417:14;;;;20408:23;;-1:-1:-1;;;;;;20408:23:0;;;-1:-1:-1;;;;;20417:14:0;;20408:23;;;;20442:27;;;20122:355::o;24609:167::-;24687:4;24704:42;10290:10;24728:9;24739:6;24704:9;:42::i;29698:237::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;29790:14:::1;::::0;29817:4:::1;::::0;29790:23:::1;::::0;29809:3;29790:18:::1;:23::i;:::-;:31;;29782:106;;;::::0;-1:-1:-1;;;29782:106:0;;5543:2:1;29782:106:0::1;::::0;::::1;5525:21:1::0;5582:2;5562:18;;;5555:30;5621:34;5601:18;;;5594:62;5692:32;5672:18;;;5665:60;5742:19;;29782:106:0::1;5515:252:1::0;29782:106:0::1;29899:22;:28:::0;29698:237::o;19820:226::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;19901:6:::1;::::0;;;19884:23;;-1:-1:-1;;;;;;19884:23:0;;::::1;-1:-1:-1::0;;;;;19901:6:0;::::1;19884:23;::::0;;;19918:19:::1;::::0;;19960:22:::1;19978:4:::0;19960:15:::1;:22;:::i;:::-;19948:9;:34:::0;20035:1:::1;20019:6:::0;;19998:40:::1;::::0;-1:-1:-1;;;;;20019:6:0;;::::1;::::0;19998:40:::1;::::0;20035:1;;19998:40:::1;19820:226:::0;:::o;29208:110::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29275:27:0::1;29305:5;29275:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;29275:35:0::1;::::0;;29208:110::o;18478:201::-;17615:7;17642:6;-1:-1:-1;;;;;17642:6:0;10290:10;17789:23;17781:68;;;;-1:-1:-1;;;17781:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18567:22:0;::::1;18559:73;;;::::0;-1:-1:-1;;;18559:73:0;;5974:2:1;18559:73:0::1;::::0;::::1;5956:21:1::0;6013:2;5993:18;;;5986:30;6052:34;6032:18;;;6025:62;-1:-1:-1;;;6103:18:1;;;6096:36;6149:19;;18559:73:0::1;5946:228:1::0;18559:73:0::1;18643:28;18662:8;18643:18;:28::i;:::-;18478:201:::0;:::o;35811:335::-;-1:-1:-1;;;;;35904:19:0;;35896:67;;;;-1:-1:-1;;;35896:67:0;;6381:2:1;35896:67:0;;;6363:21:1;6420:2;6400:18;;;6393:30;6459:34;6439:18;;;6432:62;-1:-1:-1;;;6510:18:1;;;6503:33;6553:19;;35896:67:0;6353:225:1;35896:67:0;-1:-1:-1;;;;;35982:21:0;;35974:67;;;;-1:-1:-1;;;35974:67:0;;10459:2:1;35974:67:0;;;10441:21:1;10498:2;10478:18;;;10471:30;10537:34;10517:18;;;10510:62;-1:-1:-1;;;10588:18:1;;;10581:31;10629:19;;35974:67:0;10431:223:1;35974:67:0;-1:-1:-1;;;;;36054:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36106:32;;12438:25:1;;;36106:32:0;;12411:18:1;36106:32:0;;;;;;;;35811:335;;;:::o;6734:98::-;6792:7;6819:5;6823:1;6819;:5;:::i;7133:98::-;7191:7;7218:5;7222:1;7218;:5;:::i;6377:98::-;6435:7;6462:5;6466:1;6462;:5;:::i;36310:925::-;-1:-1:-1;;;;;36432:18:0;;;;;;:38;;-1:-1:-1;;;;;;36454:16:0;;;;36432:38;36424:90;;;;-1:-1:-1;;;36424:90:0;;10051:2:1;36424:90:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:37;10227:19;;36424:90:0;10023:229:1;36424:90:0;-1:-1:-1;;;;;36723:24:0;;36596:12;36723:24;;;:18;:24;;;;;;36611:4;;36723:24;;;:50;;-1:-1:-1;;;;;;36751:22:0;;;;;;:18;:22;;;;;;;;36723:50;36720:97;;;-1:-1:-1;36800:5:0;36720:97;36832:13;;;;:56;;;;;36868:20;;36849:15;:39;;36832:56;36829:95;;;36903:13;:21;;-1:-1:-1;;36903:21:0;;;36829:95;36965:13;;;;;36992:46;;;;-1:-1:-1;37024:14:0;;-1:-1:-1;;;;;37016:22:0;;;37024:14;;37016:22;;36992:46;36989:92;;;-1:-1:-1;37076:5:0;36989:92;37168:59;37183:4;37188:2;37191:6;37198:7;37206:20;37168:14;:59::i;:::-;36413:822;;36310:925;;;:::o;8275:240::-;8395:7;8456:12;8448:6;;;;8440:29;;;;-1:-1:-1;;;8440:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8491:5:0;;;8275:240::o;5996:98::-;6054:7;6081:5;6085:1;6081;:5;:::i;32795:163::-;32836:7;32857:15;32874;32893:19;:17;:19::i;:::-;32856:56;;-1:-1:-1;32856:56:0;-1:-1:-1;32930:20:0;32856:56;;32930:11;:20::i;:::-;32923:27;;;;32795:163;:::o;31240:445::-;31299:7;31308;31317;31326;31335;31344;31365:23;31390:12;31404:18;31426:20;31438:7;31426:11;:20::i;:::-;31364:82;;;;;;31458:15;31475:23;31500:12;31514:18;31536:50;31548:7;31557:4;31563:10;31575;:8;:10::i;:::-;31536:11;:50::i;:::-;31457:129;;-1:-1:-1;31457:129:0;;-1:-1:-1;31457:129:0;-1:-1:-1;31457:129:0;-1:-1:-1;31649:15:0;;-1:-1:-1;31666:10:0;;-1:-1:-1;;;;;;31240:445:0;;;;;;;:::o;18839:191::-;18913:16;18932:6;;-1:-1:-1;;;;;18949:17:0;;;-1:-1:-1;;;;;;18949:17:0;;;;;;18982:40;;18932:6;;;;;;;18982:40;;18913:16;18982:40;18902:128;18839:191;:::o;37316:895::-;37448:7;37444:40;;37470:14;:12;:14::i;:::-;37498:13;:24;;;;;37515:7;37498:24;37495:56;;;37537:14;:12;:14::i;:::-;-1:-1:-1;;;;;37577:33:0;;;;;;:25;:33;;;;;;;;37576:34;:75;;;;-1:-1:-1;;;;;;37615:36:0;;;;;;:25;:36;;;;;;;;37614:37;37576:75;37572:553;;;37668:44;37686:6;37694:9;37705:6;37668:17;:44::i;:::-;37572:553;;;-1:-1:-1;;;;;37734:33:0;;;;;;:25;:33;;;;;;;;:74;;;;-1:-1:-1;;;;;;37772:36:0;;;;;;:25;:36;;;;;;;;37771:37;37734:74;37730:395;;;37825:48;37847:6;37855:9;37866:6;37825:21;:48::i;37730:395::-;-1:-1:-1;;;;;37896:33:0;;;;;;:25;:33;;;;;;;;37895:34;:74;;;;-1:-1:-1;;;;;;37933:36:0;;;;;;:25;:36;;;;;;;;37895:74;37891:234;;;37986:46;38006:6;38014:9;38025:6;37986:19;:46::i;37891:234::-;38065:48;38087:6;38095:9;38106:6;38065:21;:48::i;:::-;38149:7;38148:8;:25;;;;38160:13;38148:25;38145:58;;;38188:15;35614:22;;35597:14;:39;35672:25;;35647:22;:50;35553:152;33099:274;33267:8;;33149:7;;;;33289:12;33286:42;;33311:7;;33320;;33303:25;;;;;33099:274;;:::o;33286:42::-;33347:8;;;33357:7;;-1:-1:-1;33099:274:0;-1:-1:-1;33099:274:0:o;31793:338::-;31853:7;31862;31871;31891:12;31906:31;31929:7;31906:22;:31::i;:::-;31891:46;;31948:18;31969:31;31992:7;31969:22;:31::i;:::-;31948:52;-1:-1:-1;32011:23:0;32037:33;31948:52;32037:17;:7;32049:4;32037:11;:17::i;:::-;:21;;:33::i;:::-;32011:59;32106:4;;-1:-1:-1;32112:10:0;;-1:-1:-1;31793:338:0;;-1:-1:-1;;;31793:338:0:o;32275:450::-;32390:7;;;;;32455:24;:7;32467:11;32455;:24::i;:::-;32437:42;-1:-1:-1;32490:12:0;32505:21;:4;32514:11;32505:8;:21::i;:::-;32490:36;-1:-1:-1;32537:18:0;32558:27;:10;32573:11;32558:14;:27::i;:::-;32537:48;-1:-1:-1;32596:23:0;32622:33;32537:48;32622:17;:7;32634:4;32622:11;:17::i;:33::-;32674:7;;;;-1:-1:-1;32700:4:0;;-1:-1:-1;32700:4:0;-1:-1:-1;32275:450:0;;-1:-1:-1;;;;;;32275:450:0:o;34696:309::-;34742:22;;:27;:50;;;;-1:-1:-1;34773:14:0;;:19;34742:50;34739:62;;;34696:309::o;34739:62::-;34846:14;;;34821:22;:39;34899:22;;;34871:25;:50;-1:-1:-1;34942:18:0;;;;34971:26;34696:309::o;35106:345::-;35174:14;;35149:22;:39;;;35227:22;;35199:25;:50;35306:25;;35287:56;;35337:5;;35287:45;;35174:14;35287:18;:45::i;:56::-;35270:14;:73;35406:25;;35379:22;;:64;;35437:5;;35379:53;;:26;:53::i;40017:609::-;40116:15;40133:23;40158:12;40172:18;40192:23;40217:18;40239:19;40250:7;40239:10;:19::i;:::-;-1:-1:-1;;;;;40287:15:0;;;;;;:7;:15;;;;;;40115:143;;-1:-1:-1;40115:143:0;;-1:-1:-1;40115:143:0;;-1:-1:-1;40115:143:0;-1:-1:-1;40115:143:0;-1:-1:-1;40115:143:0;-1:-1:-1;40277:25:0;;;40269:74;;;;-1:-1:-1;;;40269:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40372:15:0;;;;;;:7;:15;;;;;;:28;;40392:7;40372:19;:28::i;:::-;-1:-1:-1;;;;;40354:15:0;;;;;;;:7;:15;;;;;;:46;;;;40432:18;;;;;;;:39;;40455:15;40432:22;:39::i;:::-;-1:-1:-1;;;;;40411:18:0;;;;;;:7;:18;;;;;:60;40484:46;40499:6;40507:10;40519;40484:14;:46::i;:::-;40541:17;40553:4;40541:11;:17::i;:::-;40591:9;-1:-1:-1;;;;;40574:44:0;40583:6;-1:-1:-1;;;;;40574:44:0;;40602:15;40574:44;;;;12438:25:1;;12426:2;12411:18;;12393:76;40574:44:0;;;;;;;;40104:522;;;;;;40017:609;;;:::o;38342:701::-;38445:15;38462:23;38487:12;38501:18;38521:23;38546:18;38568:19;38579:7;38568:10;:19::i;:::-;-1:-1:-1;;;;;38616:15:0;;;;;;:7;:15;;;;;;38444:143;;-1:-1:-1;38444:143:0;;-1:-1:-1;38444:143:0;;-1:-1:-1;38444:143:0;-1:-1:-1;38444:143:0;-1:-1:-1;38444:143:0;-1:-1:-1;38606:25:0;;;38598:74;;;;-1:-1:-1;;;38598:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38701:15:0;;;;;;:7;:15;;;;;;:28;;38721:7;38701:19;:28::i;:::-;-1:-1:-1;;;;;38683:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;38761:18;;;;;:7;:18;;;;;:39;;38784:15;38761:22;:39::i;:::-;-1:-1:-1;;;;;38740:18:0;;;;;;:7;:18;;;;;:60;38824:8;;:21;;38837:7;38824:12;:21::i;:::-;38813:8;:32;38867:8;;:21;;38880:7;38867:12;:21::i;:::-;38856:8;:32;38901:46;38916:6;38924:10;38936;38901:14;:46::i;39171:715::-;39272:15;39289:23;39314:12;39328:18;39348:23;39373:18;39395:19;39406:7;39395:10;:19::i;:::-;-1:-1:-1;;;;;39443:15:0;;;;;;:7;:15;;;;;;39271:143;;-1:-1:-1;39271:143:0;;-1:-1:-1;39271:143:0;;-1:-1:-1;39271:143:0;-1:-1:-1;39271:143:0;-1:-1:-1;39271:143:0;-1:-1:-1;39433:25:0;;;39425:74;;;;-1:-1:-1;;;39425:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39528:15:0;;;;;;:7;:15;;;;;;:28;;39548:7;39528:19;:28::i;:::-;-1:-1:-1;;;;;39510:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;39588:18;;;;;:7;:18;;;;;:39;;39611:15;39588:22;:39::i;:::-;-1:-1:-1;;;;;39567:18:0;;;;;;:7;:18;;;;;:60;39651:8;;:29;;39664:15;39651:12;:29::i;:::-;39640:8;:40;39702:8;;:29;;39715:15;39702:12;:29::i;40749:751::-;40852:15;40869:23;40894:12;40908:18;40928:23;40953:18;40975:19;40986:7;40975:10;:19::i;:::-;-1:-1:-1;;;;;41023:15:0;;;;;;:7;:15;;;;;;40851:143;;-1:-1:-1;40851:143:0;;-1:-1:-1;40851:143:0;;-1:-1:-1;40851:143:0;-1:-1:-1;40851:143:0;-1:-1:-1;40851:143:0;-1:-1:-1;41013:25:0;;;41005:74;;;;-1:-1:-1;;;41005:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41108:15:0;;;;;;:7;:15;;;;;;:28;;41128:7;41108:19;:28::i;:::-;-1:-1:-1;;;;;41090:15:0;;;;;;;:7;:15;;;;;;:46;;;;41168:18;;;;;;;:39;;41191:15;41168:22;:39::i;:::-;-1:-1:-1;;;;;41147:18:0;;;;;;:7;:18;;;;;:60;41239:42;41252:28;:7;41264:15;41252:11;:28::i;:::-;41239:8;;;:12;:42::i;:::-;41228:8;:53;41303:42;41316:28;:7;41328:15;41316:11;:28::i;:::-;41303:8;;;:12;:42::i;34158:168::-;34229:7;34256:62;34302:5;34256:27;34268:14;;34256:7;:11;;:27;;;;:::i;34415:176::-;34486:7;34513:70;34567:5;34513:35;34525:22;;34513:7;:11;;:35;;;;:::i;33503:566::-;33631:29;;-1:-1:-1;;;;;33631:29:0;33605:56;;;;:25;:56;;;;;;;;33602:385;;;33727:29;;-1:-1:-1;;;;;33727:29:0;33719:38;;;;:7;:38;;;;;;:54;;33762:10;33719:42;:54::i;:::-;33686:29;;-1:-1:-1;;;;;33686:29:0;33678:38;;;;:7;:38;;;;;:95;;;;33788:8;:22;;33800:10;;33678:38;33788:22;;33800:10;;33788:22;:::i;:::-;;;;;;;;33837:10;33825:8;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;33602:385:0;;-1:-1:-1;33602:385:0;;33929:29;;-1:-1:-1;;;;;33929:29:0;33921:38;;;;:7;:38;;;;;;:54;;33964:10;33921:42;:54::i;:::-;33888:29;;-1:-1:-1;;;;;33888:29:0;33880:38;;;;:7;:38;;;;;:95;33602:385;34019:29;;34002:59;;12438:25:1;;;-1:-1:-1;;;;;34019:29:0;;;;34002:59;;;;;12426:2:1;12411:18;34002:59:0;12393:76:1;30835:141:0;30903:8;;:18;;30916:4;30903:12;:18::i;:::-;30889:8;:32;-1:-1:-1;30835:141:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;526:388::-;594:6;602;655:2;643:9;634:7;630:23;626:32;623:2;;;671:1;668;661:12;623:2;710:9;697:23;729:31;754:5;729:31;:::i;:::-;779:5;-1:-1:-1;836:2:1;821:18;;808:32;849:33;808:32;849:33;:::i;:::-;901:7;891:17;;;613:301;;;;;:::o;919:456::-;996:6;1004;1012;1065:2;1053:9;1044:7;1040:23;1036:32;1033:2;;;1081:1;1078;1071:12;1033:2;1120:9;1107:23;1139:31;1164:5;1139:31;:::i;:::-;1189:5;-1:-1:-1;1246:2:1;1231:18;;1218:32;1259:33;1218:32;1259:33;:::i;:::-;1023:352;;1311:7;;-1:-1:-1;;;1365:2:1;1350:18;;;;1337:32;;1023:352::o;1380:525::-;1466:6;1474;1482;1490;1543:3;1531:9;1522:7;1518:23;1514:33;1511:2;;;1560:1;1557;1550:12;1511:2;1599:9;1586:23;1618:31;1643:5;1618:31;:::i;:::-;1668:5;-1:-1:-1;1725:2:1;1710:18;;1697:32;1738:33;1697:32;1738:33;:::i;:::-;1501:404;;1790:7;;-1:-1:-1;;;;1844:2:1;1829:18;;1816:32;;1895:2;1880:18;1867:32;;1501:404::o;1910:315::-;1978:6;1986;2039:2;2027:9;2018:7;2014:23;2010:32;2007:2;;;2055:1;2052;2045:12;2007:2;2094:9;2081:23;2113:31;2138:5;2113:31;:::i;:::-;2163:5;2215:2;2200:18;;;;2187:32;;-1:-1:-1;;;1997:228:1:o;2230:245::-;2297:6;2350:2;2338:9;2329:7;2325:23;2321:32;2318:2;;;2366:1;2363;2356:12;2318:2;2398:9;2392:16;2417:28;2439:5;2417:28;:::i;2480:180::-;2539:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:2;;;2608:1;2605;2598:12;2560:2;-1:-1:-1;2631:23:1;;2550:110;-1:-1:-1;2550:110:1:o;2665:184::-;2735:6;2788:2;2776:9;2767:7;2763:23;2759:32;2756:2;;;2804:1;2801;2794:12;2756:2;-1:-1:-1;2827:16:1;;2746:103;-1:-1:-1;2746:103:1:o;2854:309::-;2919:6;2927;2980:2;2968:9;2959:7;2955:23;2951:32;2948:2;;;2996:1;2993;2986:12;2948:2;3032:9;3019:23;3009:33;;3092:2;3081:9;3077:18;3064:32;3105:28;3127:5;3105:28;:::i;3168:248::-;3236:6;3244;3297:2;3285:9;3276:7;3272:23;3268:32;3265:2;;;3313:1;3310;3303:12;3265:2;-1:-1:-1;;3336:23:1;;;3406:2;3391:18;;;3378:32;;-1:-1:-1;3255:161:1:o;4324:597::-;4436:4;4465:2;4494;4483:9;4476:21;4526:6;4520:13;4569:6;4564:2;4553:9;4549:18;4542:34;4594:1;4604:140;4618:6;4615:1;4612:13;4604:140;;;4713:14;;;4709:23;;4703:30;4679:17;;;4698:2;4675:26;4668:66;4633:10;;4604:140;;;4762:6;4759:1;4756:13;4753:2;;;4832:1;4827:2;4818:6;4807:9;4803:22;4799:31;4792:42;4753:2;-1:-1:-1;4905:2:1;4884:15;-1:-1:-1;;4880:29:1;4865:45;;;;4912:2;4861:54;;4445:476;-1:-1:-1;;;4445:476:1:o;7395:401::-;7597:2;7579:21;;;7636:2;7616:18;;;7609:30;7675:34;7670:2;7655:18;;7648:62;-1:-1:-1;;;7741:2:1;7726:18;;7719:35;7786:3;7771:19;;7569:227::o;9127:356::-;9329:2;9311:21;;;9348:18;;;9341:30;9407:34;9402:2;9387:18;;9380:62;9474:2;9459:18;;9301:182::o;12663:128::-;12703:3;12734:1;12730:6;12727:1;12724:13;12721:2;;;12740:18;;:::i;:::-;-1:-1:-1;12776:9:1;;12711:80::o;12796:217::-;12836:1;12862;12852:2;;12906:10;12901:3;12897:20;12894:1;12887:31;12941:4;12938:1;12931:15;12969:4;12966:1;12959:15;12852:2;-1:-1:-1;12998:9:1;;12842:171::o;13018:168::-;13058:7;13124:1;13120;13116:6;13112:14;13109:1;13106:21;13101:1;13094:9;13087:17;13083:45;13080:2;;;13131:18;;:::i;:::-;-1:-1:-1;13171:9:1;;13070:116::o;13191:125::-;13231:4;13259:1;13256;13253:8;13250:2;;;13264:18;;:::i;:::-;-1:-1:-1;13301:9:1;;13240:76::o;13321:380::-;13400:1;13396:12;;;;13443;;;13464:2;;13518:4;13510:6;13506:17;13496:27;;13464:2;13571;13563:6;13560:14;13540:18;13537:38;13534:2;;;13617:10;13612:3;13608:20;13605:1;13598:31;13652:4;13649:1;13642:15;13680:4;13677:1;13670:15;13534:2;;13376:325;;;:::o;13706:127::-;13767:10;13762:3;13758:20;13755:1;13748:31;13798:4;13795:1;13788:15;13822:4;13819:1;13812:15;13838:131;-1:-1:-1;;;;;13913:31:1;;13903:42;;13893:2;;13959:1;13956;13949:12;13974:118;14060:5;14053:13;14046:21;14039:5;14036:32;14026:2;;14082:1;14079;14072:12

Swarm Source

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