ETH Price: $3,105.60 (+5.41%)
Gas: 3 Gwei

Contract

0xc13F4F0F865bAc08F62654B57E38669EbC4747a3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve198931692024-05-18 0:09:354 hrs ago1715990975IN
Creds: CREDS Token
0 ETH0.000198344.2
Approve198737832024-05-15 7:07:472 days ago1715756867IN
Creds: CREDS Token
0 ETH0.000123664.96290638
Approve198664232024-05-14 6:20:113 days ago1715667611IN
Creds: CREDS Token
0 ETH0.0004757410.07918454
Approve198616802024-05-13 14:25:594 days ago1715610359IN
Creds: CREDS Token
0 ETH0.0007747416.39296664
Approve198615472024-05-13 13:59:234 days ago1715608763IN
Creds: CREDS Token
0 ETH0.0009007119.05825415
Approve198418342024-05-10 19:50:117 days ago1715370611IN
Creds: CREDS Token
0 ETH0.000282435.97598135
Claim198119852024-05-06 15:38:4711 days ago1715009927IN
Creds: CREDS Token
0 ETH0.006974459.02776594
Approve198106332024-05-06 11:05:5911 days ago1714993559IN
Creds: CREDS Token
0 ETH0.000432539.21528522
Approve197649042024-04-30 1:41:1118 days ago1714441271IN
Creds: CREDS Token
0 ETH0.000326956.9179944
Claim197502472024-04-28 0:29:1120 days ago1714264151IN
Creds: CREDS Token
0 ETH0.000572464.90870769
Approve197348192024-04-25 20:38:2322 days ago1714077503IN
Creds: CREDS Token
0 ETH0.000393988.4004505
Claim197348162024-04-25 20:37:4722 days ago1714077467IN
Creds: CREDS Token
0 ETH0.000528388.56426022
Claim197229252024-04-24 4:41:4724 days ago1713933707IN
Creds: CREDS Token
0 ETH0.001530888.7388747
Approve197125552024-04-22 17:53:5925 days ago1713808439IN
Creds: CREDS Token
0 ETH0.0002960210.84314191
Approve197125552024-04-22 17:53:5925 days ago1713808439IN
Creds: CREDS Token
0 ETH0.000511810.84314191
Approve197058192024-04-21 19:18:3526 days ago1713727115IN
Creds: CREDS Token
0 ETH0.00045249.62634171
Claim197026812024-04-21 8:46:5926 days ago1713689219IN
Creds: CREDS Token
0 ETH0.000615038.27722288
Approve197000102024-04-20 23:49:3527 days ago1713656975IN
Creds: CREDS Token
0 ETH0.000308756.53302455
Approve196847012024-04-18 20:23:4729 days ago1713471827IN
Creds: CREDS Token
0 ETH0.000489810.37695061
Approve196841172024-04-18 18:26:1129 days ago1713464771IN
Creds: CREDS Token
0 ETH0.000635213.45735209
Approve196638432024-04-15 22:20:2332 days ago1713219623IN
Creds: CREDS Token
0 ETH0.0004953410.49429223
Claim196573492024-04-15 0:30:1133 days ago1713141011IN
Creds: CREDS Token
0 ETH0.000583849.463244
Claim196290492024-04-11 1:16:4737 days ago1712798207IN
Creds: CREDS Token
0 ETH0.0021174713.02481886
Approve196237422024-04-10 7:28:2337 days ago1712734103IN
Creds: CREDS Token
0 ETH0.0006129513.04907614
Claim196237322024-04-10 7:26:2337 days ago1712733983IN
Creds: CREDS Token
0 ETH0.0020911315.16413939
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CREDS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Creds.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface DystoPunks {
    function tokensOfOwner(address ownwer) external view returns (uint256[] memory);

}

contract CREDS is ERC20, ERC20Burnable, Ownable {

    address constant public DystoAddress = 0xbEA8123277142dE42571f1fAc045225a1D347977;
    mapping(uint => uint256) public lastUpdate;
    uint256 constant public BASE_RATE = 7 ether;
	uint256 constant public INITIAL_ISSUANCE = 300 ether;
	uint256 constant public START = 1634349600;
	uint256 constant public END = 1855274400;
	uint256 constant public MAX_CLAIM = 777000 ether;
	uint256 private claimed = 0;
	bool public saleIsActive = false;


    constructor() ERC20("Creds", "CREDS") {}

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

     function totalAvailable(address ownwer) public view returns (uint256) {
        uint[] memory punks = DystoPunks(DystoAddress).tokensOfOwner(ownwer);
        uint arrayLength = punks.length;
        uint256 rewards = 0;
        uint256 time = block.timestamp;
        for (uint i=0; i<arrayLength; i++) {
              uint256 punkid = punks[i];
              uint256 lastTime = lastUpdate[punkid];
              if (lastTime > 0){
                  rewards = rewards+(BASE_RATE*((time-lastTime)/86400));
              } else {
                  rewards = rewards+(BASE_RATE*((time-START)/86400))+INITIAL_ISSUANCE;
              }

        }
        return rewards;

    }

    function updateTime(address ownwer) private {
        uint[] memory punks = DystoPunks(DystoAddress).tokensOfOwner(ownwer);
        uint arrayLength = punks.length;
        uint256 time = block.timestamp;
        for (uint i=0; i<arrayLength; i++) {
              uint256 punkid = punks[i];
              lastUpdate[punkid]=time;

        }

    }

    function claim() public payable  {
        require(saleIsActive, "Sale must be active to mint Tokens");
        uint256 time = block.timestamp;
        require(time <= END, "Date exceeds the max limit");
        uint[] memory punks = DystoPunks(DystoAddress).tokensOfOwner(msg.sender);
        uint arrayLength = punks.length;
        require(arrayLength > 0, "Not owner");
        uint256 amount = totalAvailable(msg.sender);
        require(amount > 0, "Nothing to claim");
        updateTime(msg.sender);
        _mint(msg.sender, amount);
    }

    function reservedCreds(address to, uint256 amount) public onlyOwner {
         require(claimed + amount <= MAX_CLAIM, "Value exceeds the max limit");
         _mint(to, amount);
         claimed += amount;
    }

    function unclaimedCreds() public view onlyOwner returns(uint256) {
         uint256 unclaimed = MAX_CLAIM - claimed;
         return unclaimed;
    }

    function punkCreds(uint punkid) public view returns(uint256) {
         uint256 rewards = 0;
         uint256 time = block.timestamp;
         uint256 lastTime = lastUpdate[punkid];
         if (lastTime > 0){
             rewards = rewards+(BASE_RATE*((time-lastTime)/86400));
         } else {
             rewards = rewards+(BASE_RATE*((time-START)/86400))+INITIAL_ISSUANCE;
         }
         return rewards;
    }

}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override 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 override 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 override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 5 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 8 of 7 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DystoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_ISSUANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CLAIM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","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":"","type":"uint256"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"punkid","type":"uint256"}],"name":"punkCreds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reservedCreds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownwer","type":"address"}],"name":"totalAvailable","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":"unclaimedCreds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006007556000600860006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040518060400160405280600581526020017f43726564730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43524544530000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b6929190620001c6565b508060049080519060200190620000cf929190620001c6565b505050620000f2620000e6620000f860201b60201c565b6200010060201b60201c565b620002db565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d49062000276565b90600052602060002090601f016020900481019282620001f8576000855562000244565b82601f106200021357805160ff191683800117855562000244565b8280016001018555821562000244579182015b828111156200024357825182559160200191906001019062000226565b5b50905062000253919062000257565b5090565b5b808211156200027257600081600090555060010162000258565b5090565b600060028204905060018216806200028f57607f821691505b60208210811415620002a657620002a5620002ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61301d80620002eb6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063bcabce5511610095578063eb8d244411610064578063eb8d2444146106a7578063efe7a504146106d2578063f2fde38b146106fd578063fc3facca14610726576101cd565b8063bcabce55146105db578063c4e3709514610618578063d3f3e24814610641578063dd62ed3e1461066a576101cd565b8063a457c2d7116100d1578063a457c2d7146104f9578063a9059cbb14610536578063b683674f14610573578063ba9a061a146105b0576101cd565b80638da5cb5b1461047857806395d89b41146104a3578063993cb902146104ce576101cd565b8063395093511161016f5780634e71d92d1161013e5780634e71d92d146103f157806370a08231146103fb578063715018a61461043857806379cc67901461044f576101cd565b8063395093511461033557806341910f901461037257806342966c681461039d57806344a6b86c146103c6576101cd565b80630bc5dec4116101ab5780630bc5dec41461026557806318160ddd146102a257806323b872dd146102cd578063313ce5671461030a576101cd565b806301b65b71146101d257806306fdde03146101fd578063095ea7b314610228575b600080fd5b3480156101de57600080fd5b506101e7610751565b6040516101f491906126fc565b60405180910390f35b34801561020957600080fd5b5061021261075f565b60405161021f919061249a565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a9190612096565b6107f1565b60405161025c919061247f565b60405180910390f35b34801561027157600080fd5b5061028c6004803603810190610287919061214c565b61080f565b60405161029991906126fc565b60405180910390f35b3480156102ae57600080fd5b506102b7610827565b6040516102c491906126fc565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190612043565b610831565b604051610301919061247f565b60405180910390f35b34801561031657600080fd5b5061031f610929565b60405161032c9190612717565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612096565b610932565b604051610369919061247f565b60405180910390f35b34801561037e57600080fd5b506103876109de565b60405161039491906126fc565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061214c565b6109ea565b005b3480156103d257600080fd5b506103db6109fe565b6040516103e891906126fc565b60405180910390f35b6103f9610a0b565b005b34801561040757600080fd5b50610422600480360381019061041d9190611fd6565b610bfe565b60405161042f91906126fc565b60405180910390f35b34801561044457600080fd5b5061044d610c46565b005b34801561045b57600080fd5b5061047660048036038101906104719190612096565b610cce565b005b34801561048457600080fd5b5061048d610d49565b60405161049a9190612464565b60405180910390f35b3480156104af57600080fd5b506104b8610d73565b6040516104c5919061249a565b60405180910390f35b3480156104da57600080fd5b506104e3610e05565b6040516104f09190612464565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612096565b610e1d565b60405161052d919061247f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612096565b610f08565b60405161056a919061247f565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190611fd6565b610f26565b6040516105a791906126fc565b60405180910390f35b3480156105bc57600080fd5b506105c56110d8565b6040516105d291906126fc565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd919061214c565b6110e0565b60405161060f91906126fc565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a919061211f565b6111aa565b005b34801561064d57600080fd5b5061066860048036038101906106639190612096565b611243565b005b34801561067657600080fd5b50610691600480360381019061068c9190612003565b611340565b60405161069e91906126fc565b60405180910390f35b3480156106b357600080fd5b506106bc6113c7565b6040516106c9919061247f565b60405180910390f35b3480156106de57600080fd5b506106e76113da565b6040516106f491906126fc565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190611fd6565b6113e2565b005b34801561073257600080fd5b5061073b6114da565b60405161074891906126fc565b60405180910390f35b69a48941206d90b3a0000081565b60606003805461076e9061293c565b80601f016020809104026020016040519081016040528092919081815260200182805461079a9061293c565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b5050505050905090565b60006108056107fe61157b565b8484611583565b6001905092915050565b60066020528060005260406000206000915090505481565b6000600254905090565b600061083e84848461174e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061088961157b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610900906125bc565b60405180910390fd5b61091d8561091561157b565b858403611583565b60019150509392505050565b60006012905090565b60006109d461093f61157b565b84846001600061094d61157b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109cf919061279f565b611583565b6001905092915050565b676124fee993bc000081565b6109fb6109f561157b565b826119cf565b50565b681043561a882930000081565b600860009054906101000a900460ff16610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a519061257c565b60405180910390fd5b6000429050636e953da0811115610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d9061259c565b60405180910390fd5b600073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff16638462151c336040518263ffffffff1660e01b8152600401610af59190612464565b60006040518083038186803b158015610b0d57600080fd5b505afa158015610b21573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610b4a91906120d6565b905060008151905060008111610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c9061267c565b60405180910390fd5b6000610ba033610f26565b905060008111610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc906124fc565b60405180910390fd5b610bee33611ba6565b610bf83382611cb4565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4e61157b565b73ffffffffffffffffffffffffffffffffffffffff16610c6c610d49565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb9906125dc565b60405180910390fd5b610ccc6000611e14565b565b6000610ce183610cdc61157b565b611340565b905081811015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906125fc565b60405180910390fd5b610d3a83610d3261157b565b848403611583565b610d4483836119cf565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d829061293c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae9061293c565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b5050505050905090565b73bea8123277142de42571f1fac045225a1d34797781565b60008060016000610e2c61157b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906126bc565b60405180910390fd5b610efd610ef461157b565b85858403611583565b600191505092915050565b6000610f1c610f1561157b565b848461174e565b6001905092915050565b60008073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff16638462151c846040518263ffffffff1660e01b8152600401610f769190612464565b60006040518083038186803b158015610f8e57600080fd5b505afa158015610fa2573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610fcb91906120d6565b905060008151905060008042905060005b838110156110cb576000858281518110610ff957610ff8612a75565b5b602002602001015190506000600660008381526020019081526020016000205490506000811115611063576201518081856110349190612880565b61103e91906127f5565b676124fee993bc00006110519190612826565b8561105c919061279f565b94506110b6565b681043561a88293000006201518063616a3220866110819190612880565b61108b91906127f5565b676124fee993bc000061109e9190612826565b866110a9919061279f565b6110b3919061279f565b94505b505080806110c39061299f565b915050610fdc565b5081945050505050919050565b63616a322081565b600080600090506000429050600060066000868152602001908152602001600020549050600081111561114c5762015180818361111d9190612880565b61112791906127f5565b676124fee993bc000061113a9190612826565b83611145919061279f565b925061119f565b681043561a88293000006201518063616a32208461116a9190612880565b61117491906127f5565b676124fee993bc00006111879190612826565b84611192919061279f565b61119c919061279f565b92505b829350505050919050565b6111b261157b565b73ffffffffffffffffffffffffffffffffffffffff166111d0610d49565b73ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906125dc565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b61124b61157b565b73ffffffffffffffffffffffffffffffffffffffff16611269610d49565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906125dc565b60405180910390fd5b69a48941206d90b3a00000816007546112d8919061279f565b1115611319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113109061265c565b60405180910390fd5b6113238282611cb4565b8060076000828254611335919061279f565b925050819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900460ff1681565b636e953da081565b6113ea61157b565b73ffffffffffffffffffffffffffffffffffffffff16611408610d49565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906125dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c59061251c565b60405180910390fd5b6114d781611e14565b50565b60006114e461157b565b73ffffffffffffffffffffffffffffffffffffffff16611502610d49565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906125dc565b60405180910390fd5b600060075469a48941206d90b3a000006115729190612880565b90508091505090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea9061269c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a9061253c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161174191906126fc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061263c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906124bc565b60405180910390fd5b611839838383611eda565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b69061255c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611952919061279f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b691906126fc565b60405180910390a36119c9848484611edf565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a369061261c565b60405180910390fd5b611a4b82600083611eda565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906124dc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611b289190612880565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8d91906126fc565b60405180910390a3611ba183600084611edf565b505050565b600073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff16638462151c836040518263ffffffff1660e01b8152600401611bf59190612464565b60006040518083038186803b158015611c0d57600080fd5b505afa158015611c21573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611c4a91906120d6565b9050600081519050600042905060005b82811015611cad576000848281518110611c7757611c76612a75565b5b60200260200101519050826006600083815260200190815260200160002081905550508080611ca59061299f565b915050611c5a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b906126dc565b60405180910390fd5b611d3060008383611eda565b8060026000828254611d42919061279f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d97919061279f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dfc91906126fc565b60405180910390a3611e1060008383611edf565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000611ef7611ef284612757565b612732565b90508083825260208201905082856020860282011115611f1a57611f19612ad8565b5b60005b85811015611f4a5781611f308882611fc1565b845260208401935060208301925050600181019050611f1d565b5050509392505050565b600081359050611f6381612fa2565b92915050565b600082601f830112611f7e57611f7d612ad3565b5b8151611f8e848260208601611ee4565b91505092915050565b600081359050611fa681612fb9565b92915050565b600081359050611fbb81612fd0565b92915050565b600081519050611fd081612fd0565b92915050565b600060208284031215611fec57611feb612ae2565b5b6000611ffa84828501611f54565b91505092915050565b6000806040838503121561201a57612019612ae2565b5b600061202885828601611f54565b925050602061203985828601611f54565b9150509250929050565b60008060006060848603121561205c5761205b612ae2565b5b600061206a86828701611f54565b935050602061207b86828701611f54565b925050604061208c86828701611fac565b9150509250925092565b600080604083850312156120ad576120ac612ae2565b5b60006120bb85828601611f54565b92505060206120cc85828601611fac565b9150509250929050565b6000602082840312156120ec576120eb612ae2565b5b600082015167ffffffffffffffff81111561210a57612109612add565b5b61211684828501611f69565b91505092915050565b60006020828403121561213557612134612ae2565b5b600061214384828501611f97565b91505092915050565b60006020828403121561216257612161612ae2565b5b600061217084828501611fac565b91505092915050565b612182816128b4565b82525050565b612191816128c6565b82525050565b60006121a282612783565b6121ac818561278e565b93506121bc818560208601612909565b6121c581612ae7565b840191505092915050565b60006121dd60238361278e565b91506121e882612af8565b604082019050919050565b600061220060228361278e565b915061220b82612b47565b604082019050919050565b600061222360108361278e565b915061222e82612b96565b602082019050919050565b600061224660268361278e565b915061225182612bbf565b604082019050919050565b600061226960228361278e565b915061227482612c0e565b604082019050919050565b600061228c60268361278e565b915061229782612c5d565b604082019050919050565b60006122af60228361278e565b91506122ba82612cac565b604082019050919050565b60006122d2601a8361278e565b91506122dd82612cfb565b602082019050919050565b60006122f560288361278e565b915061230082612d24565b604082019050919050565b600061231860208361278e565b915061232382612d73565b602082019050919050565b600061233b60248361278e565b915061234682612d9c565b604082019050919050565b600061235e60218361278e565b915061236982612deb565b604082019050919050565b600061238160258361278e565b915061238c82612e3a565b604082019050919050565b60006123a4601b8361278e565b91506123af82612e89565b602082019050919050565b60006123c760098361278e565b91506123d282612eb2565b602082019050919050565b60006123ea60248361278e565b91506123f582612edb565b604082019050919050565b600061240d60258361278e565b915061241882612f2a565b604082019050919050565b6000612430601f8361278e565b915061243b82612f79565b602082019050919050565b61244f816128f2565b82525050565b61245e816128fc565b82525050565b60006020820190506124796000830184612179565b92915050565b60006020820190506124946000830184612188565b92915050565b600060208201905081810360008301526124b48184612197565b905092915050565b600060208201905081810360008301526124d5816121d0565b9050919050565b600060208201905081810360008301526124f5816121f3565b9050919050565b6000602082019050818103600083015261251581612216565b9050919050565b6000602082019050818103600083015261253581612239565b9050919050565b600060208201905081810360008301526125558161225c565b9050919050565b600060208201905081810360008301526125758161227f565b9050919050565b60006020820190508181036000830152612595816122a2565b9050919050565b600060208201905081810360008301526125b5816122c5565b9050919050565b600060208201905081810360008301526125d5816122e8565b9050919050565b600060208201905081810360008301526125f58161230b565b9050919050565b600060208201905081810360008301526126158161232e565b9050919050565b6000602082019050818103600083015261263581612351565b9050919050565b6000602082019050818103600083015261265581612374565b9050919050565b6000602082019050818103600083015261267581612397565b9050919050565b60006020820190508181036000830152612695816123ba565b9050919050565b600060208201905081810360008301526126b5816123dd565b9050919050565b600060208201905081810360008301526126d581612400565b9050919050565b600060208201905081810360008301526126f581612423565b9050919050565b60006020820190506127116000830184612446565b92915050565b600060208201905061272c6000830184612455565b92915050565b600061273c61274d565b9050612748828261296e565b919050565b6000604051905090565b600067ffffffffffffffff82111561277257612771612aa4565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006127aa826128f2565b91506127b5836128f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127ea576127e96129e8565b5b828201905092915050565b6000612800826128f2565b915061280b836128f2565b92508261281b5761281a612a17565b5b828204905092915050565b6000612831826128f2565b915061283c836128f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612875576128746129e8565b5b828202905092915050565b600061288b826128f2565b9150612896836128f2565b9250828210156128a9576128a86129e8565b5b828203905092915050565b60006128bf826128d2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561292757808201518184015260208101905061290c565b83811115612936576000848401525b50505050565b6000600282049050600182168061295457607f821691505b6020821081141561296857612967612a46565b5b50919050565b61297782612ae7565b810181811067ffffffffffffffff8211171561299657612995612aa4565b5b80604052505050565b60006129aa826128f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129dd576129dc6129e8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f44617465206578636565647320746865206d6178206c696d6974000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f56616c7565206578636565647320746865206d6178206c696d69740000000000600082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612fab816128b4565b8114612fb657600080fd5b50565b612fc2816128c6565b8114612fcd57600080fd5b50565b612fd9816128f2565b8114612fe457600080fd5b5056fea2646970667358221220f431d8fbb89c1784292e92e9460d9f18081606102852186747054aab9cb3032764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063bcabce5511610095578063eb8d244411610064578063eb8d2444146106a7578063efe7a504146106d2578063f2fde38b146106fd578063fc3facca14610726576101cd565b8063bcabce55146105db578063c4e3709514610618578063d3f3e24814610641578063dd62ed3e1461066a576101cd565b8063a457c2d7116100d1578063a457c2d7146104f9578063a9059cbb14610536578063b683674f14610573578063ba9a061a146105b0576101cd565b80638da5cb5b1461047857806395d89b41146104a3578063993cb902146104ce576101cd565b8063395093511161016f5780634e71d92d1161013e5780634e71d92d146103f157806370a08231146103fb578063715018a61461043857806379cc67901461044f576101cd565b8063395093511461033557806341910f901461037257806342966c681461039d57806344a6b86c146103c6576101cd565b80630bc5dec4116101ab5780630bc5dec41461026557806318160ddd146102a257806323b872dd146102cd578063313ce5671461030a576101cd565b806301b65b71146101d257806306fdde03146101fd578063095ea7b314610228575b600080fd5b3480156101de57600080fd5b506101e7610751565b6040516101f491906126fc565b60405180910390f35b34801561020957600080fd5b5061021261075f565b60405161021f919061249a565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a9190612096565b6107f1565b60405161025c919061247f565b60405180910390f35b34801561027157600080fd5b5061028c6004803603810190610287919061214c565b61080f565b60405161029991906126fc565b60405180910390f35b3480156102ae57600080fd5b506102b7610827565b6040516102c491906126fc565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190612043565b610831565b604051610301919061247f565b60405180910390f35b34801561031657600080fd5b5061031f610929565b60405161032c9190612717565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612096565b610932565b604051610369919061247f565b60405180910390f35b34801561037e57600080fd5b506103876109de565b60405161039491906126fc565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061214c565b6109ea565b005b3480156103d257600080fd5b506103db6109fe565b6040516103e891906126fc565b60405180910390f35b6103f9610a0b565b005b34801561040757600080fd5b50610422600480360381019061041d9190611fd6565b610bfe565b60405161042f91906126fc565b60405180910390f35b34801561044457600080fd5b5061044d610c46565b005b34801561045b57600080fd5b5061047660048036038101906104719190612096565b610cce565b005b34801561048457600080fd5b5061048d610d49565b60405161049a9190612464565b60405180910390f35b3480156104af57600080fd5b506104b8610d73565b6040516104c5919061249a565b60405180910390f35b3480156104da57600080fd5b506104e3610e05565b6040516104f09190612464565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612096565b610e1d565b60405161052d919061247f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612096565b610f08565b60405161056a919061247f565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190611fd6565b610f26565b6040516105a791906126fc565b60405180910390f35b3480156105bc57600080fd5b506105c56110d8565b6040516105d291906126fc565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd919061214c565b6110e0565b60405161060f91906126fc565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a919061211f565b6111aa565b005b34801561064d57600080fd5b5061066860048036038101906106639190612096565b611243565b005b34801561067657600080fd5b50610691600480360381019061068c9190612003565b611340565b60405161069e91906126fc565b60405180910390f35b3480156106b357600080fd5b506106bc6113c7565b6040516106c9919061247f565b60405180910390f35b3480156106de57600080fd5b506106e76113da565b6040516106f491906126fc565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190611fd6565b6113e2565b005b34801561073257600080fd5b5061073b6114da565b60405161074891906126fc565b60405180910390f35b69a48941206d90b3a0000081565b60606003805461076e9061293c565b80601f016020809104026020016040519081016040528092919081815260200182805461079a9061293c565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b5050505050905090565b60006108056107fe61157b565b8484611583565b6001905092915050565b60066020528060005260406000206000915090505481565b6000600254905090565b600061083e84848461174e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061088961157b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610900906125bc565b60405180910390fd5b61091d8561091561157b565b858403611583565b60019150509392505050565b60006012905090565b60006109d461093f61157b565b84846001600061094d61157b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109cf919061279f565b611583565b6001905092915050565b676124fee993bc000081565b6109fb6109f561157b565b826119cf565b50565b681043561a882930000081565b600860009054906101000a900460ff16610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a519061257c565b60405180910390fd5b6000429050636e953da0811115610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d9061259c565b60405180910390fd5b600073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff16638462151c336040518263ffffffff1660e01b8152600401610af59190612464565b60006040518083038186803b158015610b0d57600080fd5b505afa158015610b21573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610b4a91906120d6565b905060008151905060008111610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c9061267c565b60405180910390fd5b6000610ba033610f26565b905060008111610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc906124fc565b60405180910390fd5b610bee33611ba6565b610bf83382611cb4565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4e61157b565b73ffffffffffffffffffffffffffffffffffffffff16610c6c610d49565b73ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb9906125dc565b60405180910390fd5b610ccc6000611e14565b565b6000610ce183610cdc61157b565b611340565b905081811015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d906125fc565b60405180910390fd5b610d3a83610d3261157b565b848403611583565b610d4483836119cf565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d829061293c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae9061293c565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b5050505050905090565b73bea8123277142de42571f1fac045225a1d34797781565b60008060016000610e2c61157b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906126bc565b60405180910390fd5b610efd610ef461157b565b85858403611583565b600191505092915050565b6000610f1c610f1561157b565b848461174e565b6001905092915050565b60008073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff16638462151c846040518263ffffffff1660e01b8152600401610f769190612464565b60006040518083038186803b158015610f8e57600080fd5b505afa158015610fa2573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610fcb91906120d6565b905060008151905060008042905060005b838110156110cb576000858281518110610ff957610ff8612a75565b5b602002602001015190506000600660008381526020019081526020016000205490506000811115611063576201518081856110349190612880565b61103e91906127f5565b676124fee993bc00006110519190612826565b8561105c919061279f565b94506110b6565b681043561a88293000006201518063616a3220866110819190612880565b61108b91906127f5565b676124fee993bc000061109e9190612826565b866110a9919061279f565b6110b3919061279f565b94505b505080806110c39061299f565b915050610fdc565b5081945050505050919050565b63616a322081565b600080600090506000429050600060066000868152602001908152602001600020549050600081111561114c5762015180818361111d9190612880565b61112791906127f5565b676124fee993bc000061113a9190612826565b83611145919061279f565b925061119f565b681043561a88293000006201518063616a32208461116a9190612880565b61117491906127f5565b676124fee993bc00006111879190612826565b84611192919061279f565b61119c919061279f565b92505b829350505050919050565b6111b261157b565b73ffffffffffffffffffffffffffffffffffffffff166111d0610d49565b73ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906125dc565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b61124b61157b565b73ffffffffffffffffffffffffffffffffffffffff16611269610d49565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906125dc565b60405180910390fd5b69a48941206d90b3a00000816007546112d8919061279f565b1115611319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113109061265c565b60405180910390fd5b6113238282611cb4565b8060076000828254611335919061279f565b925050819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900460ff1681565b636e953da081565b6113ea61157b565b73ffffffffffffffffffffffffffffffffffffffff16611408610d49565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906125dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c59061251c565b60405180910390fd5b6114d781611e14565b50565b60006114e461157b565b73ffffffffffffffffffffffffffffffffffffffff16611502610d49565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906125dc565b60405180910390fd5b600060075469a48941206d90b3a000006115729190612880565b90508091505090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea9061269c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a9061253c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161174191906126fc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061263c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906124bc565b60405180910390fd5b611839838383611eda565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b69061255c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611952919061279f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b691906126fc565b60405180910390a36119c9848484611edf565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a369061261c565b60405180910390fd5b611a4b82600083611eda565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906124dc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611b289190612880565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8d91906126fc565b60405180910390a3611ba183600084611edf565b505050565b600073bea8123277142de42571f1fac045225a1d34797773ffffffffffffffffffffffffffffffffffffffff16638462151c836040518263ffffffff1660e01b8152600401611bf59190612464565b60006040518083038186803b158015611c0d57600080fd5b505afa158015611c21573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611c4a91906120d6565b9050600081519050600042905060005b82811015611cad576000848281518110611c7757611c76612a75565b5b60200260200101519050826006600083815260200190815260200160002081905550508080611ca59061299f565b915050611c5a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b906126dc565b60405180910390fd5b611d3060008383611eda565b8060026000828254611d42919061279f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d97919061279f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dfc91906126fc565b60405180910390a3611e1060008383611edf565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000611ef7611ef284612757565b612732565b90508083825260208201905082856020860282011115611f1a57611f19612ad8565b5b60005b85811015611f4a5781611f308882611fc1565b845260208401935060208301925050600181019050611f1d565b5050509392505050565b600081359050611f6381612fa2565b92915050565b600082601f830112611f7e57611f7d612ad3565b5b8151611f8e848260208601611ee4565b91505092915050565b600081359050611fa681612fb9565b92915050565b600081359050611fbb81612fd0565b92915050565b600081519050611fd081612fd0565b92915050565b600060208284031215611fec57611feb612ae2565b5b6000611ffa84828501611f54565b91505092915050565b6000806040838503121561201a57612019612ae2565b5b600061202885828601611f54565b925050602061203985828601611f54565b9150509250929050565b60008060006060848603121561205c5761205b612ae2565b5b600061206a86828701611f54565b935050602061207b86828701611f54565b925050604061208c86828701611fac565b9150509250925092565b600080604083850312156120ad576120ac612ae2565b5b60006120bb85828601611f54565b92505060206120cc85828601611fac565b9150509250929050565b6000602082840312156120ec576120eb612ae2565b5b600082015167ffffffffffffffff81111561210a57612109612add565b5b61211684828501611f69565b91505092915050565b60006020828403121561213557612134612ae2565b5b600061214384828501611f97565b91505092915050565b60006020828403121561216257612161612ae2565b5b600061217084828501611fac565b91505092915050565b612182816128b4565b82525050565b612191816128c6565b82525050565b60006121a282612783565b6121ac818561278e565b93506121bc818560208601612909565b6121c581612ae7565b840191505092915050565b60006121dd60238361278e565b91506121e882612af8565b604082019050919050565b600061220060228361278e565b915061220b82612b47565b604082019050919050565b600061222360108361278e565b915061222e82612b96565b602082019050919050565b600061224660268361278e565b915061225182612bbf565b604082019050919050565b600061226960228361278e565b915061227482612c0e565b604082019050919050565b600061228c60268361278e565b915061229782612c5d565b604082019050919050565b60006122af60228361278e565b91506122ba82612cac565b604082019050919050565b60006122d2601a8361278e565b91506122dd82612cfb565b602082019050919050565b60006122f560288361278e565b915061230082612d24565b604082019050919050565b600061231860208361278e565b915061232382612d73565b602082019050919050565b600061233b60248361278e565b915061234682612d9c565b604082019050919050565b600061235e60218361278e565b915061236982612deb565b604082019050919050565b600061238160258361278e565b915061238c82612e3a565b604082019050919050565b60006123a4601b8361278e565b91506123af82612e89565b602082019050919050565b60006123c760098361278e565b91506123d282612eb2565b602082019050919050565b60006123ea60248361278e565b91506123f582612edb565b604082019050919050565b600061240d60258361278e565b915061241882612f2a565b604082019050919050565b6000612430601f8361278e565b915061243b82612f79565b602082019050919050565b61244f816128f2565b82525050565b61245e816128fc565b82525050565b60006020820190506124796000830184612179565b92915050565b60006020820190506124946000830184612188565b92915050565b600060208201905081810360008301526124b48184612197565b905092915050565b600060208201905081810360008301526124d5816121d0565b9050919050565b600060208201905081810360008301526124f5816121f3565b9050919050565b6000602082019050818103600083015261251581612216565b9050919050565b6000602082019050818103600083015261253581612239565b9050919050565b600060208201905081810360008301526125558161225c565b9050919050565b600060208201905081810360008301526125758161227f565b9050919050565b60006020820190508181036000830152612595816122a2565b9050919050565b600060208201905081810360008301526125b5816122c5565b9050919050565b600060208201905081810360008301526125d5816122e8565b9050919050565b600060208201905081810360008301526125f58161230b565b9050919050565b600060208201905081810360008301526126158161232e565b9050919050565b6000602082019050818103600083015261263581612351565b9050919050565b6000602082019050818103600083015261265581612374565b9050919050565b6000602082019050818103600083015261267581612397565b9050919050565b60006020820190508181036000830152612695816123ba565b9050919050565b600060208201905081810360008301526126b5816123dd565b9050919050565b600060208201905081810360008301526126d581612400565b9050919050565b600060208201905081810360008301526126f581612423565b9050919050565b60006020820190506127116000830184612446565b92915050565b600060208201905061272c6000830184612455565b92915050565b600061273c61274d565b9050612748828261296e565b919050565b6000604051905090565b600067ffffffffffffffff82111561277257612771612aa4565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006127aa826128f2565b91506127b5836128f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127ea576127e96129e8565b5b828201905092915050565b6000612800826128f2565b915061280b836128f2565b92508261281b5761281a612a17565b5b828204905092915050565b6000612831826128f2565b915061283c836128f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612875576128746129e8565b5b828202905092915050565b600061288b826128f2565b9150612896836128f2565b9250828210156128a9576128a86129e8565b5b828203905092915050565b60006128bf826128d2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561292757808201518184015260208101905061290c565b83811115612936576000848401525b50505050565b6000600282049050600182168061295457607f821691505b6020821081141561296857612967612a46565b5b50919050565b61297782612ae7565b810181811067ffffffffffffffff8211171561299657612995612aa4565b5b80604052505050565b60006129aa826128f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129dd576129dc6129e8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f44617465206578636565647320746865206d6178206c696d6974000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f56616c7565206578636565647320746865206d6178206c696d69740000000000600082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612fab816128b4565b8114612fb657600080fd5b50565b612fc2816128c6565b8114612fcd57600080fd5b50565b612fd9816128f2565b8114612fe457600080fd5b5056fea2646970667358221220f431d8fbb89c1784292e92e9460d9f18081606102852186747054aab9cb3032764736f6c63430008070033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

$CREDS are the utility token of the DystoPunks metaverse, called Dystoverse. DystoPunks is a utility-focused Cyberpunk-themed NFT project that allows holders to generate a utility token called $CREDS, mint Dystolab Crates and use it in the Dystoverse.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.