ETH Price: $2,613.37 (-0.44%)

Token

KP1R (KP1R)
 

Overview

Max Total Supply

292,126,144.963378724903470562 KP1R

Holders

87

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9.1 KP1R

Value
$0.00
0x16c32c1fb7ff6eb3fa789df9ecdfdf264c8f5185
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x370941BA...95fe40E00
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20_base

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: ERC20_base.sol
// SPDX-License-Identifier: WHO GIVES A FUCK ANYWAY??

pragma solidity ^0.6.6;
 import "./STVKE_lib.sol";

contract ERC20_base is Context {

    using SafeMath for uint256;
    using Address for address;


    struct FEES {
    uint256  _burnOnTX;
    uint256  _feeOnTX;
    address  _feeDest;
    }
    FEES private Fees;
    

    struct BURNMINT {
    bool  _burnable;
    bool  _mintable;
    uint256 _cappedSupply;
    }
    BURNMINT private BurnMint;

    struct GOV {
    address  _owner;
    bool  _basicGovernance;
    uint256  _noTransferTimeLock;  //transfers KO before this time
    }
    GOV private Gov;
    
    
    
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

//Events

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

    event Log(string log);
    
//ERC20 MODIFIERS
    modifier onlyOwner() {
        require(Gov._owner == msg.sender, "onlyOwner");
        _;
    }


//Constructor
    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol, uint8 decimals, 
                uint256 supply, address mintDest,
                uint256 BurnMintGov, uint256 burnOnTX,
                uint256 cappedSupply,
                uint256 feeOnTX, address feeDest,
                uint256 noTransferTimeLock,
                address owner) public {
        
        
        //ERC20
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
        
        //FEES
              
        Fees._feeOnTX = feeOnTX; //base 10000
        Fees._feeDest = feeDest;
        if(feeOnTX >  0){require(feeDest != address(0), "fee cannot be sent to 0x0");}
        
        
        //BURN-MINT-GOV
        
        //BurnMintGov = 000, 001, 101...
        uint256 _remainder;
        if(BurnMintGov >= 100){ 
            BurnMint._burnable = true;
            _remainder = BurnMintGov.sub(100);
        }

        
        if(BurnMintGov >= 10){ 
            BurnMint._mintable = true;
            _remainder = BurnMintGov.sub(10);
        }

        if(BurnMintGov >= 1){ Gov._basicGovernance = true;}


        Fees._burnOnTX = burnOnTX; //base 10000, 0.01% = 1
        if(!BurnMint._burnable){Fees._burnOnTX = 0;} //avoid users to create non burnable tokens with a burnOnTX
        

        BurnMint._cappedSupply = cappedSupply;
  
        //GOV
        Gov._owner = owner;
        Gov._noTransferTimeLock = noTransferTimeLock.add(block.timestamp);
        
        //mints!!
        if(mintDest == address(0)){mintDest = msg.sender;}
        
        //low level mint for token creation
        require(mintDest != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(supply);
        _balances[mintDest] = _balances[mintDest].add(supply);
        emit Transfer(address(0), mintDest, supply); //minted event.
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view  returns (uint256) {
        return _totalSupply;
    }
    
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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


//Internal Functions
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        require(block.timestamp > Gov._noTransferTimeLock, "Transfers blocked for the moment");
        _beforeTokenTransfer(sender, recipient, amount);
        
        uint256 _fee = 0; uint256 _burnFee = 0;
        
        if(Fees._feeOnTX > 0){
            _fee = amount.mul(Fees._feeOnTX).div(10000);
            _balances[sender] = _balances[sender].sub(_fee, "ERC20: transfer amount exceeds balance");
            _balances[Fees._feeDest] = _balances[Fees._feeDest].add(_fee);
            emit Transfer(sender,Fees._feeDest,_fee);
        }
        if(Fees._burnOnTX > 0){
            _burnFee = amount.mul(Fees._burnOnTX).div(10000);
            _burn(sender, _burnFee); //only if _burnable = true
        }
        
        
        uint256 netAmount = amount.sub(_fee).sub(_burnFee);
        _balances[sender] = _balances[sender].sub(netAmount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(netAmount);
        
        emit Transfer(sender, recipient, netAmount);
    }  


    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     * - cannot exceed 'capped supply'.
     * - token must be 'mintable'.
     * - must be sent by 'owner'.
     */
    function mint(uint256 amount) external virtual onlyOwner {
        require(BurnMint._mintable, "token NOT mintable");
        require(_totalSupply.add(amount) <= BurnMint._cappedSupply || BurnMint._cappedSupply == 0);
        require(_msgSender() != address(0), "ERC20: mint to the zero address");
        
        _mint(_msgSender(), amount);
    }
    
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(BurnMint._mintable, "token NOT mintable");
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(BurnMint._burnable, "token NOT burnable");
        
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual returns(uint256 netAmount) {
    }

//basic Governance & getters

function setBurnFee(uint256 _newFee) public onlyOwner {
    require(_newFee <= 2000, "Max burnFee capped at 20%");
    require(Gov._basicGovernance, "Basic governance not enabled");
    Fees._burnOnTX = _newFee;
}
function viewBurnOnTX() public view returns(uint256){
    return Fees._burnOnTX;
}

function setFee(uint256 _newFee) public onlyOwner{
    require(_newFee <= 2000, "Max Fee capped at 20%");
    require(Gov._basicGovernance, "Basic governance not enabled");
    Fees._feeOnTX = _newFee;
}
function viewFeeOnTX() public view returns(uint256){
    return Fees._feeOnTX;
}

function setFeeDest(address feeDest) external onlyOwner {
    require(Gov._basicGovernance, "Basic governance not enabled");
    Fees._feeDest = feeDest;
}
function viewFeeDest() public view returns(address){
    return Fees._feeDest;
}

function setOwnerShip(address _address) public onlyOwner {
    require(Gov._basicGovernance, "Basic governance not enabled");
    require(Gov._owner != address(0));
    Gov._owner = _address;
}

function revokeOwnerShip() public onlyOwner {
    require(Gov._basicGovernance, "Basic governance not enabled");
    Gov._owner = address(0);
}

function viewIfBurnable() public view returns(bool) {
    return BurnMint._burnable;   
}

function viewIfMintable() public view returns(bool) {
    return BurnMint._mintable;
}

function revokeMinting() public onlyOwner {
    require(BurnMint._mintable, "Minting not enabled");
    BurnMint._mintable = false;
}

function viewCappedSupply() public view returns(uint256) {
    return BurnMint._cappedSupply;
}

function viewOwner() public view returns(address) {
    return Gov._owner;
}
    
} 

File 2 of 2: STVKE_lib.sol
// SPDX-License-Identifier: WHO GIVES A FUCK ANYWAY??

pragma solidity ^0.6.6;

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

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"address","name":"mintDest","type":"address"},{"internalType":"uint256","name":"BurnMintGov","type":"uint256"},{"internalType":"uint256","name":"burnOnTX","type":"uint256"},{"internalType":"uint256","name":"cappedSupply","type":"uint256"},{"internalType":"uint256","name":"feeOnTX","type":"uint256"},{"internalType":"address","name":"feeDest","type":"address"},{"internalType":"uint256","name":"noTransferTimeLock","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"log","type":"string"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOwnerShip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeDest","type":"address"}],"name":"setFeeDest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setOwnerShip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewBurnOnTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewCappedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewFeeDest","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewFeeOnTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewIfBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewIfMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001e6038038062001e6083398181016040526101808110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b9083019060208201858111156200006f57600080fd5b82516401000000008111828201881017156200008a57600080fd5b82525081516020918201929091019080838360005b83811015620000b95781810151838201526020016200009f565b50505050905090810190601f168015620000e75780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010b57600080fd5b9083019060208201858111156200012157600080fd5b82516401000000008111828201881017156200013c57600080fd5b82525081516020918201929091019080838360005b838110156200016b57818101518382015260200162000151565b50505050905090810190601f168015620001995780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608085015160a086015160c087015160e08801516101008901516101208a0151610140909a01518e51999c50969a509498939792969195909493929091620001fc91600a918f0190620005ec565b508a516200021290600b9060208e0190620005ec565b50600c805460ff191660ff8c161790556001849055600280546001600160a01b0319166001600160a01b0385161790558315620002a5576001600160a01b038316620002a5576040805162461bcd60e51b815260206004820152601960248201527f6665652063616e6e6f742062652073656e7420746f2030783000000000000000604482015290519081900360640190fd5b600060648810620002db5760038054600160ff19909116179055620002d8886064620004a5602090811b62000d8217901c565b90505b600a881062000311576003805461010061ff00199091161790556200030e88600a620004a5602090811b62000d8217901c565b90505b600188106200032e576005805460ff60a01b1916600160a01b1790555b600087905560035460ff166200034357600080555b6004869055600580546001600160a01b0319166001600160a01b0384161790556200037b8342620004f6602090811b62000dcb17901c565b6006556001600160a01b03891662000391573398505b6001600160a01b038916620003ed576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004098a600954620004f660201b62000dcb1790919060201c565b6009556001600160a01b0389166000908152600760209081526040909120546200043e918c9062000dcb620004f6821b17901c565b6001600160a01b038a1660008181526007602090815260408083209490945583518e81529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050505050505050505050505062000688565b6000620004ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200055160201b60201c565b9392505050565b600082820183811015620004ef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115620005e45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005a85781810151838201526020016200058e565b50505050905090810190601f168015620005d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200062f57805160ff19168380011785556200065f565b828001600101855582156200065f579182015b828111156200065f57825182559160200191906001019062000642565b506200066d92915062000671565b5090565b5b808211156200066d576000815560010162000672565b6117c880620006986000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063bc677b4611610097578063d65281e211610071578063d65281e214610446578063dd62ed3e1461044e578063e16547ac1461047c578063f65ec74b1461048457610173565b8063bc677b46146103f4578063ce93749914610418578063d55ab4721461043e57610173565b806395d89b411461036757806399b3517f1461036f578063a0712d6814610377578063a457c2d714610394578063a84f1b1a146103c0578063a9059cbb146103c857610173565b8063395093511161013057806339509351146102cb5780634aa0dc40146102f75780634bf2c7c9146102ff57806369fe0e2d1461031c57806370a082311461033957806373a065631461035f57610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f578063313ce5671461028557806339223511146102a3575b600080fd5b61018061048c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610522565b604080519115158252519081900360200190f35b61023d610540565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610546565b61028d6105cd565b6040805160ff9092168252519081900360200190f35b6102c9600480360360208110156102b957600080fd5b50356001600160a01b03166105d6565b005b610221600480360360408110156102e157600080fd5b506001600160a01b0381351690602001356106a4565b61023d6106f2565b6102c96004803603602081101561031557600080fd5b50356106f8565b6102c96004803603602081101561033257600080fd5b50356107eb565b61023d6004803603602081101561034f57600080fd5b50356001600160a01b03166108d6565b61023d6108f1565b6101806108f7565b6102c9610958565b6102c96004803603602081101561038d57600080fd5b5035610a02565b610221600480360360408110156103aa57600080fd5b506001600160a01b038135169060200135610b3e565b6102c9610ba6565b610221600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610c4f565b6103fc610c63565b604080516001600160a01b039092168252519081900360200190f35b6102c96004803603602081101561042e57600080fd5b50356001600160a01b0316610c72565b610221610d2b565b610221610d39565b61023d6004803603604081101561046457600080fd5b506001600160a01b0381358116916020013516610d42565b61023d610d6d565b6103fc610d73565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b820191906000526020600020905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b600061053661052f610e25565b8484610e29565b5060015b92915050565b60095490565b6000610553848484610f15565b6105c38461055f610e25565b6105be856040518060600160405280602881526020016116bc602891396001600160a01b038a1660009081526008602052604081209061059d610e25565b6001600160a01b0316815260208101919091526040016000205491906111e4565b610e29565b5060019392505050565b600c5460ff1690565b6005546001600160a01b03163314610621576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1661066d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b6005546001600160a01b031661068257600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006105366106b1610e25565b846105be85600860006106c2610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dcb565b60005490565b6005546001600160a01b03163314610743576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d081111561079a576040805162461bcd60e51b815260206004820152601960248201527f4d6178206275726e466565206361707065642061742032302500000000000000604482015290519081900360640190fd5b600554600160a01b900460ff166107e6576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600055565b6005546001600160a01b03163314610836576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115610885576040805162461bcd60e51b81526020600482015260156024820152744d617820466565206361707065642061742032302560581b604482015290519081900360640190fd5b600554600160a01b900460ff166108d1576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600155565b6001600160a01b031660009081526007602052604090205490565b60045490565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b6005546001600160a01b031633146109a3576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff166109f5576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015290519081900360640190fd5b6003805461ff0019169055565b6005546001600160a01b03163314610a4d576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff16610a9e576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b600454600954610aae9083610dcb565b111580610abb5750600454155b610ac457600080fd5b6000610ace610e25565b6001600160a01b03161415610b2a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610b3b610b35610e25565b8261127b565b50565b6000610536610b4b610e25565b846105be8560405180606001604052806025815260200161176e6025913960086000610b75610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111e4565b6005546001600160a01b03163314610bf1576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610c3d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600580546001600160a01b0319169055565b6000610536610c5c610e25565b8484610f15565b6005546001600160a01b031690565b6005546001600160a01b03163314610cbd576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610d09576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600354610100900460ff1690565b60035460ff1690565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b60015490565b6002546001600160a01b031690565b6000610dc483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e4565b9392505050565b600082820183811015610dc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610e6e5760405162461bcd60e51b815260040180806020018281038252602481526020018061174a6024913960400191505060405180910390fd5b6001600160a01b038216610eb35760405162461bcd60e51b81526004018080602001828103825260228152602001806116336022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806117256025913960400191505060405180910390fd5b6001600160a01b038216610f9f5760405162461bcd60e51b81526004018080602001828103825260238152602001806115ee6023913960400191505060405180910390fd5b6006544211610ff5576040805162461bcd60e51b815260206004820181905260248201527f5472616e736665727320626c6f636b656420666f7220746865206d6f6d656e74604482015290519081900360640190fd5b6110008383836113ad565b506001546000908190156110e95760015461102a90612710906110249086906113b6565b9061140f565b915061106982604051806060016040528060268152602001611655602691396001600160a01b03881660009081526007602052604090205491906111e4565b6001600160a01b03808716600090815260076020526040808220939093556002549091168152205461109b9083610dcb565b600280546001600160a01b039081166000908152600760209081526040918290209490945591548251868152925190821693918916926000805160206116e483398151915292908290030190a35b600054156111135760005461110790612710906110249086906113b6565b90506111138582611451565b6000611129826111238686610d82565b90610d82565b905061116881604051806060016040528060268152602001611655602691396001600160a01b03891660009081526007602052604090205491906111e4565b6001600160a01b0380881660009081526007602052604080822093909355908716815220546111979082610dcb565b6001600160a01b0380871660008181526007602090815260409182902094909455805185815290519193928a16926000805160206116e483398151915292918290030190a3505050505050565b600081848411156112735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611238578181015183820152602001611220565b50505050905090810190601f1680156112655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600354610100900460ff166112cc576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6001600160a01b038216611327576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611333600083836113ad565b506009546113419082610dcb565b6009556001600160a01b0382166000908152600760205260409020546113679082610dcb565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391926000805160206116e48339815191529281900390910190a35050565b60009392505050565b6000826113c55750600061053a565b828202828482816113d257fe5b0414610dc45760405162461bcd60e51b815260040180806020018281038252602181526020018061169b6021913960400191505060405180910390fd5b6000610dc483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611588565b60035460ff1661149d576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206275726e61626c6560701b604482015290519081900360640190fd5b6001600160a01b0382166114e25760405162461bcd60e51b81526004018080602001828103825260218152602001806117046021913960400191505060405180910390fd5b6114ee826000836113ad565b5061152c81604051806060016040528060228152602001611611602291396001600160a01b03851660009081526007602052604090205491906111e4565b6001600160a01b0383166000908152600760205260409020556009546115529082610d82565b6009556040805182815290516000916001600160a01b038516916000805160206116e48339815191529181900360200190a35050565b600081836115d75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611238578181015183820152602001611220565b5060008385816115e357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426173696320676f7665726e616e6365206e6f7420656e61626c656400000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d324225861473d1e00e26c88c80ed9f2ac23bfec2e80b341e323c79d85873c9264736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000003bd913e6c1df400000000000000000000000000001fa82153a6ec07b89059f331c492d17d62699dc800000000000000000000000000000000000000000000000000000000000000650000000000000000000000000000000000000000000000000000000000001af4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000001fa82153a6ec07b89059f331c492d17d62699dc800000000000000000000000000000000000000000000000000000000000000000000000000000000000000001fa82153a6ec07b89059f331c492d17d62699dc8000000000000000000000000000000000000000000000000000000000000000736495839494e450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023639000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063bc677b4611610097578063d65281e211610071578063d65281e214610446578063dd62ed3e1461044e578063e16547ac1461047c578063f65ec74b1461048457610173565b8063bc677b46146103f4578063ce93749914610418578063d55ab4721461043e57610173565b806395d89b411461036757806399b3517f1461036f578063a0712d6814610377578063a457c2d714610394578063a84f1b1a146103c0578063a9059cbb146103c857610173565b8063395093511161013057806339509351146102cb5780634aa0dc40146102f75780634bf2c7c9146102ff57806369fe0e2d1461031c57806370a082311461033957806373a065631461035f57610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f578063313ce5671461028557806339223511146102a3575b600080fd5b61018061048c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610522565b604080519115158252519081900360200190f35b61023d610540565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610546565b61028d6105cd565b6040805160ff9092168252519081900360200190f35b6102c9600480360360208110156102b957600080fd5b50356001600160a01b03166105d6565b005b610221600480360360408110156102e157600080fd5b506001600160a01b0381351690602001356106a4565b61023d6106f2565b6102c96004803603602081101561031557600080fd5b50356106f8565b6102c96004803603602081101561033257600080fd5b50356107eb565b61023d6004803603602081101561034f57600080fd5b50356001600160a01b03166108d6565b61023d6108f1565b6101806108f7565b6102c9610958565b6102c96004803603602081101561038d57600080fd5b5035610a02565b610221600480360360408110156103aa57600080fd5b506001600160a01b038135169060200135610b3e565b6102c9610ba6565b610221600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610c4f565b6103fc610c63565b604080516001600160a01b039092168252519081900360200190f35b6102c96004803603602081101561042e57600080fd5b50356001600160a01b0316610c72565b610221610d2b565b610221610d39565b61023d6004803603604081101561046457600080fd5b506001600160a01b0381358116916020013516610d42565b61023d610d6d565b6103fc610d73565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b820191906000526020600020905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b600061053661052f610e25565b8484610e29565b5060015b92915050565b60095490565b6000610553848484610f15565b6105c38461055f610e25565b6105be856040518060600160405280602881526020016116bc602891396001600160a01b038a1660009081526008602052604081209061059d610e25565b6001600160a01b0316815260208101919091526040016000205491906111e4565b610e29565b5060019392505050565b600c5460ff1690565b6005546001600160a01b03163314610621576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1661066d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b6005546001600160a01b031661068257600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006105366106b1610e25565b846105be85600860006106c2610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dcb565b60005490565b6005546001600160a01b03163314610743576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d081111561079a576040805162461bcd60e51b815260206004820152601960248201527f4d6178206275726e466565206361707065642061742032302500000000000000604482015290519081900360640190fd5b600554600160a01b900460ff166107e6576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600055565b6005546001600160a01b03163314610836576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115610885576040805162461bcd60e51b81526020600482015260156024820152744d617820466565206361707065642061742032302560581b604482015290519081900360640190fd5b600554600160a01b900460ff166108d1576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600155565b6001600160a01b031660009081526007602052604090205490565b60045490565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b6005546001600160a01b031633146109a3576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff166109f5576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015290519081900360640190fd5b6003805461ff0019169055565b6005546001600160a01b03163314610a4d576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff16610a9e576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b600454600954610aae9083610dcb565b111580610abb5750600454155b610ac457600080fd5b6000610ace610e25565b6001600160a01b03161415610b2a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610b3b610b35610e25565b8261127b565b50565b6000610536610b4b610e25565b846105be8560405180606001604052806025815260200161176e6025913960086000610b75610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111e4565b6005546001600160a01b03163314610bf1576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610c3d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600580546001600160a01b0319169055565b6000610536610c5c610e25565b8484610f15565b6005546001600160a01b031690565b6005546001600160a01b03163314610cbd576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610d09576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600354610100900460ff1690565b60035460ff1690565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b60015490565b6002546001600160a01b031690565b6000610dc483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e4565b9392505050565b600082820183811015610dc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610e6e5760405162461bcd60e51b815260040180806020018281038252602481526020018061174a6024913960400191505060405180910390fd5b6001600160a01b038216610eb35760405162461bcd60e51b81526004018080602001828103825260228152602001806116336022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806117256025913960400191505060405180910390fd5b6001600160a01b038216610f9f5760405162461bcd60e51b81526004018080602001828103825260238152602001806115ee6023913960400191505060405180910390fd5b6006544211610ff5576040805162461bcd60e51b815260206004820181905260248201527f5472616e736665727320626c6f636b656420666f7220746865206d6f6d656e74604482015290519081900360640190fd5b6110008383836113ad565b506001546000908190156110e95760015461102a90612710906110249086906113b6565b9061140f565b915061106982604051806060016040528060268152602001611655602691396001600160a01b03881660009081526007602052604090205491906111e4565b6001600160a01b03808716600090815260076020526040808220939093556002549091168152205461109b9083610dcb565b600280546001600160a01b039081166000908152600760209081526040918290209490945591548251868152925190821693918916926000805160206116e483398151915292908290030190a35b600054156111135760005461110790612710906110249086906113b6565b90506111138582611451565b6000611129826111238686610d82565b90610d82565b905061116881604051806060016040528060268152602001611655602691396001600160a01b03891660009081526007602052604090205491906111e4565b6001600160a01b0380881660009081526007602052604080822093909355908716815220546111979082610dcb565b6001600160a01b0380871660008181526007602090815260409182902094909455805185815290519193928a16926000805160206116e483398151915292918290030190a3505050505050565b600081848411156112735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611238578181015183820152602001611220565b50505050905090810190601f1680156112655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600354610100900460ff166112cc576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6001600160a01b038216611327576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611333600083836113ad565b506009546113419082610dcb565b6009556001600160a01b0382166000908152600760205260409020546113679082610dcb565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391926000805160206116e48339815191529281900390910190a35050565b60009392505050565b6000826113c55750600061053a565b828202828482816113d257fe5b0414610dc45760405162461bcd60e51b815260040180806020018281038252602181526020018061169b6021913960400191505060405180910390fd5b6000610dc483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611588565b60035460ff1661149d576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206275726e61626c6560701b604482015290519081900360640190fd5b6001600160a01b0382166114e25760405162461bcd60e51b81526004018080602001828103825260218152602001806117046021913960400191505060405180910390fd5b6114ee826000836113ad565b5061152c81604051806060016040528060228152602001611611602291396001600160a01b03851660009081526007602052604090205491906111e4565b6001600160a01b0383166000908152600760205260409020556009546115529082610d82565b6009556040805182815290516000916001600160a01b038516916000805160206116e48339815191529181900360200190a35050565b600081836115d75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611238578181015183820152602001611220565b5060008385816115e357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426173696320676f7665726e616e6365206e6f7420656e61626c656400000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d324225861473d1e00e26c88c80ed9f2ac23bfec2e80b341e323c79d85873c9264736f6c634300060c0033

Deployed Bytecode Sourcemap

112:16007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5969:160;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5969:160:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5024:92;;;:::i;:::-;;;;;;;;;;;;;;;;6603:312;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6603:312:0;;;;;;;;;;;;;;;;;:::i;4876:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15253:197;;;;;;;;;;;;;;;;-1:-1:-1;15253:197:0;-1:-1:-1;;;;;15253:197:0;;:::i;:::-;;7324:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7324:218:0;;;;;;;;:::i;14624:84::-;;;:::i;14405:217::-;;;;;;;;;;;;;;;;-1:-1:-1;14405:217:0;;:::i;14712:207::-;;;;;;;;;;;;;;;;-1:-1:-1;14712:207:0;;:::i;5128:110::-;;;;;;;;;;;;;;;;-1:-1:-1;5128:110:0;-1:-1:-1;;;;;5128:110:0;;:::i;15931:97::-;;;:::i;4144:87::-;;;:::i;15791:136::-;;;:::i;10536:355::-;;;;;;;;;;;;;;;;-1:-1:-1;10536:355:0;;:::i;8045:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8045:269:0;;;;;;;;:::i;15454:146::-;;;:::i;5451:166::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5451:166:0;;;;;;;;:::i;16032:78::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16032:78:0;;;;;;;;;;;;;;15007:158;;;;;;;;;;;;;;;;-1:-1:-1;15007:158:0;-1:-1:-1;;;;;15007:158:0;;:::i;15699:88::-;;;:::i;15604:91::-;;;:::i;5680:142::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5680:142:0;;;;;;;;;;:::i;14921:82::-;;;:::i;15167:::-;;;:::i;3942:83::-;4012:5;4005:12;;;;;;;;-1:-1:-1;;4005:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3979:13;;4005:12;;4012:5;;4005:12;;4012:5;4005:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942:83;:::o;5969:160::-;6043:4;6060:39;6069:12;:10;:12::i;:::-;6083:7;6092:6;6060:8;:39::i;:::-;-1:-1:-1;6117:4:0;5969:160;;;;;:::o;5024:92::-;5096:12;;5024:92;:::o;6603:312::-;6700:4;6717:36;6727:6;6735:9;6746:6;6717:9;:36::i;:::-;6764:121;6773:6;6781:12;:10;:12::i;:::-;6795:89;6833:6;6795:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6795:19:0;;;;;;:11;:19;;;;;;6815:12;:10;:12::i;:::-;-1:-1:-1;;;;;6795:33:0;;;;;;;;;;;;-1:-1:-1;6795:33:0;;;:89;:37;:89::i;:::-;6764:8;:121::i;:::-;-1:-1:-1;6903:4:0;6603:312;;;;;:::o;4876:83::-;4942:9;;;;4876:83;:::o;15253:197::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15325:3:::1;:20:::0;-1:-1:-1;;;15325:20:0;::::1;;;15317:61;;;::::0;;-1:-1:-1;;;15317:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;15317:61:0;;;;;;;;;;;;;::::1;;15393:3;:10:::0;-1:-1:-1;;;;;15393:10:0::1;15385:33;;;::::0;::::1;;15425:3;:21:::0;;-1:-1:-1;;;;;;15425:21:0::1;-1:-1:-1::0;;;;;15425:21:0;;;::::1;::::0;;;::::1;::::0;;15253:197::o;7324:218::-;7412:4;7429:83;7438:12;:10;:12::i;:::-;7452:7;7461:50;7500:10;7461:11;:25;7473:12;:10;:12::i;:::-;-1:-1:-1;;;;;7461:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;7461:25:0;;;:34;;;;;;;;;;;:38;:50::i;14624:84::-;14668:7;14690:14;14624:84;:::o;14405:217::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;14485:4:::1;14474:7;:15;;14466:53;;;::::0;;-1:-1:-1;;;14466:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;14534:3;:20:::0;-1:-1:-1;;;14534:20:0;::::1;;;14526:61;;;::::0;;-1:-1:-1;;;14526:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;14526:61:0;;;;;;;;;;;;;::::1;;14594:4;:24:::0;14405:217::o;14712:207::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;14787:4:::1;14776:7;:15;;14768:49;;;::::0;;-1:-1:-1;;;14768:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;14768:49:0;;;;;;;;;;;;;::::1;;14832:3;:20:::0;-1:-1:-1;;;14832:20:0;::::1;;;14824:61;;;::::0;;-1:-1:-1;;;14824:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;14824:61:0;;;;;;;;;;;;;::::1;;14892:13;:23:::0;14712:207::o;5128:110::-;-1:-1:-1;;;;;5212:18:0;5185:7;5212:18;;;:9;:18;;;;;;;5128:110::o;15931:97::-;16002:22;;15931:97;:::o;4144:87::-;4216:7;4209:14;;;;;;;;-1:-1:-1;;4209:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4183:13;;4209:14;;4216:7;;4209:14;;4216:7;4209:14;;;;;;;;;;;;;;;;;;;;;;;;15791:136;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15848:8:::1;:18:::0;::::1;::::0;::::1;;;15840:50;;;::::0;;-1:-1:-1;;;15840:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;15840:50:0;;;;;;;;;;;;;::::1;;15897:8;:26:::0;;-1:-1:-1;;15897:26:0::1;::::0;;15791:136::o;10536:355::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;10612:8:::1;:18:::0;::::1;::::0;::::1;;;10604:49;;;::::0;;-1:-1:-1;;;10604:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;10604:49:0;;;;;;;;;;;;;::::1;;10700:22:::0;;10672:12:::1;::::0;:24:::1;::::0;10689:6;10672:16:::1;:24::i;:::-;:50;;:81;;;-1:-1:-1::0;10726:22:0;;:27;10672:81:::1;10664:90;;;::::0;::::1;;10797:1;10773:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;10773:26:0::1;;;10765:70;;;::::0;;-1:-1:-1;;;10765:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;10856:27;10862:12;:10;:12::i;:::-;10876:6;10856:5;:27::i;:::-;10536:355:::0;:::o;8045:269::-;8138:4;8155:129;8164:12;:10;:12::i;:::-;8178:7;8187:96;8226:15;8187:96;;;;;;;;;;;;;;;;;:11;:25;8199:12;:10;:12::i;:::-;-1:-1:-1;;;;;8187:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;8187:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15454:146::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15513:3:::1;:20:::0;-1:-1:-1;;;15513:20:0;::::1;;;15505:61;;;::::0;;-1:-1:-1;;;15505:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;15505:61:0;;;;;;;;;;;;;::::1;;15573:3;:23:::0;;-1:-1:-1;;;;;;15573:23:0::1;::::0;;15454:146::o;5451:166::-;5528:4;5545:42;5555:12;:10;:12::i;:::-;5569:9;5580:6;5545:9;:42::i;16032:78::-;16096:3;:10;-1:-1:-1;;;;;16096:10:0;16032:78;:::o;15007:158::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15078:3:::1;:20:::0;-1:-1:-1;;;15078:20:0;::::1;;;15070:61;;;::::0;;-1:-1:-1;;;15070:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;15070:61:0;;;;;;;;;;;;;::::1;;15138:13;:23:::0;;-1:-1:-1;;;;;;15138:23:0::1;-1:-1:-1::0;;;;;15138:23:0;;;::::1;::::0;;;::::1;::::0;;15007:158::o;15699:88::-;15765:8;:18;;;;;;;15699:88::o;15604:91::-;15670:8;:18;;;15604:91;:::o;5680:142::-;-1:-1:-1;;;;;5787:18:0;;;5760:7;5787:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5680:142::o;14921:82::-;14986:13;;14921:82;:::o;15167:::-;15232:13;;-1:-1:-1;;;;;15232:13:0;15167:82;:::o;2276:136:1:-;2334:7;2361:43;2365:1;2368;2361:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2354:50;2276:136;-1:-1:-1;;;2276:136:1:o;1812:181::-;1870:7;1902:5;;;1926:6;;;;1918:46;;;;;-1:-1:-1;;;1918:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;618:106;706:10;618:106;:::o;12874:346:0:-;-1:-1:-1;;;;;12976:19:0;;12968:68;;;;-1:-1:-1;;;12968:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13055:21:0;;13047:68;;;;-1:-1:-1;;;13047:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13128:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13180:32;;;;;;;;;;;;;;;;;12874:346;;;:::o;8828:1311::-;-1:-1:-1;;;;;8934:20:0;;8926:70;;;;-1:-1:-1;;;8926:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9015:23:0;;9007:71;;;;-1:-1:-1;;;9007:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9117:23;;9099:15;:41;9091:86;;;;;-1:-1:-1;;;9091:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9188:47;9209:6;9217:9;9228:6;9188:20;:47::i;:::-;-1:-1:-1;9318:13:0;;9256:12;;;;9318:17;9315:326;;9369:13;;9358:36;;9388:5;;9358:25;;:6;;:10;:25::i;:::-;:29;;:36::i;:::-;9351:43;;9429:69;9451:4;9429:69;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9429:17:0;;;;;;:9;:17;;;;;;;:69;:21;:69::i;:::-;-1:-1:-1;;;;;9409:17:0;;;;;;;:9;:17;;;;;;:89;;;;9550:13;;;;;9540:24;;;;:34;;9569:4;9540:28;:34::i;:::-;9523:13;;;-1:-1:-1;;;;;9523:13:0;;;9513:24;;;;:9;:24;;;;;;;;;:61;;;;9610:13;;9594:35;;;;;;;9610:13;;;;9594:35;;;;-1:-1:-1;;;;;;;;;;;9594:35:0;;;;;;;;9315:326;9671:1;9654:14;:18;9651:162;;9710:4;:14;9699:37;;9730:5;;9699:26;;:6;;:10;:26::i;:37::-;9688:48;;9751:23;9757:6;9765:8;9751:5;:23::i;:::-;9843:17;9863:30;9884:8;9863:16;:6;9874:4;9863:10;:16::i;:::-;:20;;:30::i;:::-;9843:50;;9924:74;9946:9;9924:74;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9924:17:0;;;;;;:9;:17;;;;;;;:74;:21;:74::i;:::-;-1:-1:-1;;;;;9904:17:0;;;;;;;:9;:17;;;;;;:94;;;;10032:20;;;;;;;:35;;10057:9;10032:24;:35::i;:::-;-1:-1:-1;;;;;10009:20:0;;;;;;;:9;:20;;;;;;;;;:58;;;;10093:38;;;;;;;10009:20;;10093:38;;;;-1:-1:-1;;;;;;;;;;;10093:38:0;;;;;;;;8828:1311;;;;;;:::o;2715:192:1:-;2801:7;2837:12;2829:6;;;;2821:29;;;;-1:-1:-1;;;2821:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2873:5:1;;;2715:192::o;11176:438:0:-;11260:8;:18;;;;;;11252:49;;;;;-1:-1:-1;;;11252:49:0;;;;;;;;;;;;-1:-1:-1;;;11252:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11320:21:0;;11312:65;;;;;-1:-1:-1;;;11312:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11390:49;11419:1;11423:7;11432:6;11390:20;:49::i;:::-;-1:-1:-1;11467:12:0;;:24;;11484:6;11467:16;:24::i;:::-;11452:12;:39;-1:-1:-1;;;;;11523:18:0;;;;;;:9;:18;;;;;;:30;;11546:6;11523:22;:30::i;:::-;-1:-1:-1;;;;;11502:18:0;;;;;;:9;:18;;;;;;;;:51;;;;11569:37;;;;;;;11502:18;;;;-1:-1:-1;;;;;;;;;;;11569:37:0;;;;;;;;;11176:438;;:::o;14245:124::-;14342:17;14245:124;;;;;:::o;3166:471:1:-;3224:7;3469:6;3465:47;;-1:-1:-1;3499:1:1;3492:8;;3465:47;3536:5;;;3540:1;3536;:5;:1;3560:5;;;;;:10;3552:56;;;;-1:-1:-1;;;3552:56:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4113:132;4171:7;4198:39;4202:1;4205;4198:39;;;;;;;;;;;;;;;;;:3;:39::i;11946:488:0:-;12030:8;:18;;;12022:49;;;;;-1:-1:-1;;;12022:49:0;;;;;;;;;;;;-1:-1:-1;;;12022:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;12100:21:0;;12092:67;;;;-1:-1:-1;;;12092:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12172:49;12193:7;12210:1;12214:6;12172:20;:49::i;:::-;;12255:68;12278:6;12255:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12255:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;12234:18:0;;;;;;:9;:18;;;;;:89;12349:12;;:24;;12366:6;12349:16;:24::i;:::-;12334:12;:39;12389:37;;;;;;;;12415:1;;-1:-1:-1;;;;;12389:37:0;;;-1:-1:-1;;;;;;;;;;;12389:37:0;;;;;;;;11946:488;;:::o;4741:278:1:-;4827:7;4862:12;4855:5;4847:28;;;;-1:-1:-1;;;4847:28:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886:9;4902:1;4898;:5;;;;;;;4741:278;-1:-1:-1;;;;;4741:278:1:o

Swarm Source

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