ETH Price: $3,363.89 (-0.10%)

Contract

0xDaab5E695bb0E8Ce8384ee56BA38fA8290618e52
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Approve210918492024-11-01 9:17:5921 days ago1730452679IN
CryptoDaily: CRDT Token
0 ETH0.000252315.42293844
Transfer210507372024-10-26 15:37:5927 days ago1729957079IN
CryptoDaily: CRDT Token
0 ETH0.000316876.44797367
Approve206963742024-09-07 4:36:5977 days ago1725683819IN
CryptoDaily: CRDT Token
0 ETH0.000048571.04404876
Approve204535752024-08-04 7:04:23111 days ago1722755063IN
CryptoDaily: CRDT Token
0 ETH0.000065051.4
Transfer204154222024-07-29 23:10:23116 days ago1722294623IN
CryptoDaily: CRDT Token
0 ETH0.000040621.26741684
Transfer204154182024-07-29 23:09:35116 days ago1722294575IN
CryptoDaily: CRDT Token
0 ETH0.000039761.24154836
Transfer204154172024-07-29 23:09:23116 days ago1722294563IN
CryptoDaily: CRDT Token
0 ETH0.000043681.36396569
Transfer204154132024-07-29 23:08:35116 days ago1722294515IN
CryptoDaily: CRDT Token
0 ETH0.000040941.27813983
Transfer204154112024-07-29 23:08:11116 days ago1722294491IN
CryptoDaily: CRDT Token
0 ETH0.000041391.29225237
Transfer204154102024-07-29 23:07:59116 days ago1722294479IN
CryptoDaily: CRDT Token
0 ETH0.000038931.21560169
Transfer204154072024-07-29 23:07:23116 days ago1722294443IN
CryptoDaily: CRDT Token
0 ETH0.000039911.24623599
Transfer204154062024-07-29 23:07:11116 days ago1722294431IN
CryptoDaily: CRDT Token
0 ETH0.000054331.10597482
Approve200744332024-06-12 8:04:11164 days ago1718179451IN
CryptoDaily: CRDT Token
0 ETH0.0004879710.48786156
Approve198952982024-05-18 7:18:59189 days ago1716016739IN
CryptoDaily: CRDT Token
0 ETH0.000158493.43389827
Approve192523772024-02-18 4:39:11279 days ago1708231151IN
CryptoDaily: CRDT Token
0 ETH0.0006421913.82023272
Transfer188503432023-12-23 18:37:35335 days ago1703356655IN
CryptoDaily: CRDT Token
0 ETH0.0011445623.2847714
Approve186773372023-11-29 12:41:35359 days ago1701261695IN
CryptoDaily: CRDT Token
0 ETH0.0013608529.24814128
Transfer186380362023-11-24 0:35:47365 days ago1700786147IN
CryptoDaily: CRDT Token
0 ETH0.0008773817.84938439
Transfer186379532023-11-24 0:19:11365 days ago1700785151IN
CryptoDaily: CRDT Token
0 ETH0.0022119745
Approve175682772023-06-27 4:16:11515 days ago1687839371IN
CryptoDaily: CRDT Token
0 ETH0.0007206615.5854064
Approve175681492023-06-27 3:50:23515 days ago1687837823IN
CryptoDaily: CRDT Token
0 ETH0.0008303117.95656935
Transfer174593732023-06-11 20:56:35530 days ago1686516995IN
CryptoDaily: CRDT Token
0 ETH0.0029500260
Transfer170476812023-04-14 20:15:35588 days ago1681503335IN
CryptoDaily: CRDT Token
0 ETH0.001206924.55296168
Approve170476032023-04-14 19:58:47588 days ago1681502327IN
CryptoDaily: CRDT Token
0 ETH0.0012225126.46596497
Transfer170475252023-04-14 19:42:47588 days ago1681501367IN
CryptoDaily: CRDT Token
0 ETH0.0014746530
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:
CryptoDailyToken

Compiler Version
v0.6.1+commit.e6f7d5a4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-15
*/

pragma solidity ^0.6.1;

/**
 * @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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    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.
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

/*
 * @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 {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}


/**
 * @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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }


    /**
     * @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 {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal virtual {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract PauserRole is Context, Ownable {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyOwner {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

contract ExchangeRole is Context, Ownable {
    using Roles for Roles.Role;

    event ExchangeAdded(address indexed account);
    event ExchangeRemoved(address indexed account);

    Roles.Role private _exchanges;

    constructor () internal {
        _addExchange(_msgSender());
    }

    modifier onlyExchange() {
        require(isExchange(_msgSender()), "ExchangeRole: caller does not have the Exchange role");
        _;
    }

    function isExchange(address account) public view returns (bool) {
        return _exchanges.has(account);
    }

    function addExchange(address account) public onlyOwner {
        _addExchange(account);
    }

    function renounceExchange() public {
        _removeExchange(_msgSender());
    }

    function _addExchange(address account) internal {
        _exchanges.add(account);
        emit ExchangeAdded(account);
    }

    function _removeExchange(address account) internal {
        _exchanges.remove(account);
        emit ExchangeRemoved(account);
    }
}

contract LockedWallets is Context {
    
    address internal constant lockedWallet = 0xf8Fab9fa6C154bd2A59035283AD508705aa49641; 
    uint256 internal constant _releaseTime = 1619827200;
    
    
    modifier notLockedWallet() {
        require(_msgSender() != lockedWallet || _releaseTime < block.timestamp, "This wallet is locked");
        _;
    }
    
    function unlockTime() public pure returns (uint256) {
        return _releaseTime;
    }
    
} 

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context, PauserRole, ExchangeRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused || isExchange(_msgSender()), "Pausable: paused");
        //require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }
    

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

/**
 * @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 {ERC20Mintable}.
 *
 * 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 guidelines: functions revert instead
 * of 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 IERC20, Pausable, LockedWallets  {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    
    constructor() internal {
        uint256 crowdsaleSupply = 186000000 * 10 ** uint256(18);
        uint256 lockedSupply = 114000000 * 10 ** uint256(18);
        _totalSupply = crowdsaleSupply + lockedSupply;
        _balances[lockedWallet] = lockedSupply;
        _balances[_msgSender()] = crowdsaleSupply;
    }
    
  

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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) whenNotPaused notLockedWallet public 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) whenNotPaused notLockedWallet public virtual override 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;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 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:using-hooks.adoc[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract CryptoDailyToken is ERC20 {
    string private _name = "Crypto Daily Token";
    string private _symbol = "CRDT";
    uint8 private _decimals = 18;
    
    
    /**
     * @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.
     *
     * 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;
    }
}

Contract Security Audit

Contract ABI

[{"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":"account","type":"address"}],"name":"ExchangeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExchangeRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"account","type":"address"}],"name":"isExchange","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renouncePauser","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601260808190527121b93cb83a37902230b4b63c902a37b5b2b760711b60a09081526200003591600791906200036c565b506040805180820190915260048082526310d4911560e21b602090920191825262000063916008916200036c565b506009805460ff191660121790556000620000866001600160e01b03620001cd16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000f6620000e76001600160e01b03620001cd16565b6001600160e01b03620001d216565b6200011c6200010d6001600160e01b03620001cd16565b6001600160e01b036200022416565b6003805460ff191690556af8277896582678ac00000060065573f8fab9fa6c154bd2a59035283ad508705aa496416000908152600460208190526a5e4c70621741d1b20000007f9e870df2e669ae6d16b9b342c021a18dda35bee08973a0b12b79b9ddc38941198190556a99db083440e4a6fa0000009290918391620001aa6001600160e01b03620001cd16565b6001600160a01b03168152602081019190915260400160002055506200040e9050565b335b90565b620001ed8160016200027660201b6200126c1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200023f8160026200027660201b6200126c1790919060201c565b6040516001600160a01b038216907f3e535d1ab441ef41c268fd9b52b478aee02d693c5ca2a84b5d26b89e0922e5e190600090a250565b6200028b82826001600160e01b036200030316565b15620002de576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200034c5760405162461bcd60e51b8152600401808060200182810382526022815260200180620018db6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003af57805160ff1916838001178555620003df565b82800160010185558215620003df579182015b82811115620003df578251825591602001919060010190620003c2565b50620003ed929150620003f1565b5090565b620001cf91905b80821115620003ed5760008155600101620003f8565b6114bd806200041e6000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80636ef8d66d116100c357806395d89b411161007c57806395d89b41146103a9578063a457c2d7146103b1578063a9059cbb146103dd578063aa10ce2214610409578063dd62ed3e1461042f578063f2fde38b1461045d57610157565b80636ef8d66d1461032157806370a082311461032957806382dc1ec41461034f5780638456cb59146103755780638da5cb5b1461037d5780638f32d59b146103a157610157565b8063251c1aa311610115578063251c1aa314610299578063313ce567146102a157806339509351146102bf5780633f4ba83a146102eb57806346fbf68e146102f35780635c975abb1461031957610157565b806236d2d31461015c57806306fdde0314610196578063095ea7b31461021357806318160ddd1461023f5780631a6a6e821461025957806323b872dd14610263575b600080fd5b6101826004803603602081101561017257600080fd5b50356001600160a01b0316610483565b604080519115158252519081900360200190f35b61019e61049c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d85781810151838201526020016101c0565b50505050905090810190601f1680156102055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101826004803603604081101561022957600080fd5b506001600160a01b038135169060200135610532565b61024761054f565b60408051918252519081900360200190f35b610261610555565b005b6101826004803603606081101561027957600080fd5b506001600160a01b03813581169160208101359091169060400135610567565b6102476106d5565b6102a96106dd565b6040805160ff9092168252519081900360200190f35b610182600480360360408110156102d557600080fd5b506001600160a01b0381351690602001356106e6565b61026161073a565b6101826004803603602081101561030957600080fd5b50356001600160a01b0316610823565b610182610836565b61026161083f565b6102476004803603602081101561033f57600080fd5b50356001600160a01b031661084f565b6102616004803603602081101561036557600080fd5b50356001600160a01b031661086a565b6102616108cf565b6103856109a7565b604080516001600160a01b039092168252519081900360200190f35b6101826109b6565b61019e6109da565b610182600480360360408110156103c757600080fd5b506001600160a01b038135169060200135610a3b565b610182600480360360408110156103f357600080fd5b506001600160a01b038135169060200135610aa9565b6102616004803603602081101561041f57600080fd5b50356001600160a01b0316610b99565b6102476004803603604081101561044557600080fd5b506001600160a01b0381358116916020013516610bfb565b6102616004803603602081101561047357600080fd5b50356001600160a01b0316610c26565b600061049660028363ffffffff610c8816565b92915050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105285780601f106104fd57610100808354040283529160200191610528565b820191906000526020600020905b81548152906001019060200180831161050b57829003601f168201915b5050505050905090565b600061054661053f610cef565b8484610cf3565b50600192915050565b60065490565b610565610560610cef565b610ddf565b565b60035460009060ff1615806105875750610587610582610cef565b610483565b6105cb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b73f8fab9fa6c154bd2a59035283ad508705aa496416105e8610cef565b6001600160a01b031614158061060157504263608c9a00105b61064a576040805162461bcd60e51b8152602060048201526015602482015274151a1a5cc81dd85b1b195d081a5cc81b1bd8dad959605a1b604482015290519081900360640190fd5b610655848484610e27565b6106cb84610661610cef565b6106c6856040518060600160405280602881526020016113d0602891396001600160a01b038a1660009081526005602052604081209061069f610cef565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610f9016565b610cf3565b5060019392505050565b63608c9a0090565b60095460ff1690565b60006105466106f3610cef565b846106c68560056000610704610cef565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61102716565b61074a610745610cef565b610823565b6107855760405162461bcd60e51b81526004018080602001828103825260308152602001806113116030913960400191505060405180910390fd5b60035460ff166107d3576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610806610cef565b604080516001600160a01b039092168252519081900360200190a1565b600061049660018363ffffffff610c8816565b60035460ff1690565b61056561084a610cef565b611088565b6001600160a01b031660009081526004602052604090205490565b6108726109b6565b6108c3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108cc816110d0565b50565b6108da610745610cef565b6109155760405162461bcd60e51b81526004018080602001828103825260308152602001806113116030913960400191505060405180910390fd5b60035460ff16158061092d575061092d610582610cef565b610971576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610806610cef565b6000546001600160a01b031690565b600080546001600160a01b03166109cb610cef565b6001600160a01b031614905090565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105285780601f106104fd57610100808354040283529160200191610528565b6000610546610a48610cef565b846106c6856040518060600160405280602581526020016114636025913960056000610a72610cef565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f9016565b60035460009060ff161580610ac45750610ac4610582610cef565b610b08576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b73f8fab9fa6c154bd2a59035283ad508705aa49641610b25610cef565b6001600160a01b0316141580610b3e57504263608c9a00105b610b87576040805162461bcd60e51b8152602060048201526015602482015274151a1a5cc81dd85b1b195d081a5cc81b1bd8dad959605a1b604482015290519081900360640190fd5b610546610b92610cef565b8484610e27565b610ba16109b6565b610bf2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108cc81611118565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b610c2e6109b6565b610c7f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108cc81611160565b60006001600160a01b038216610ccf5760405162461bcd60e51b81526004018080602001828103825260228152602001806113f86022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b3390565b6001600160a01b038316610d385760405162461bcd60e51b815260040180806020018281038252602481526020018061143f6024913960400191505060405180910390fd5b6001600160a01b038216610d7d5760405162461bcd60e51b81526004018080602001828103825260228152602001806113676022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610df060028263ffffffff61120016565b6040516001600160a01b038216907ff50d0d312d501878616eb5e78ebf3ed6dcd3955aaef8165af9c6b057cc4832fb90600090a250565b6001600160a01b038316610e6c5760405162461bcd60e51b815260040180806020018281038252602581526020018061141a6025913960400191505060405180910390fd5b6001600160a01b038216610eb15760405162461bcd60e51b81526004018080602001828103825260238152602001806112ee6023913960400191505060405180910390fd5b610ebc838383611267565b610eff81604051806060016040528060268152602001611389602691396001600160a01b038616600090815260046020526040902054919063ffffffff610f9016565b6001600160a01b038085166000908152600460205260408082209390935590841681522054610f34908263ffffffff61102716565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561101f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fe4578181015183820152602001610fcc565b50505050905090810190601f1680156110115780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611081576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61109960018263ffffffff61120016565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6110e160018263ffffffff61126c16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61112960028263ffffffff61126c16565b6040516001600160a01b038216907f3e535d1ab441ef41c268fd9b52b478aee02d693c5ca2a84b5d26b89e0922e5e190600090a250565b6001600160a01b0381166111a55760405162461bcd60e51b81526004018080602001828103825260268152602001806113416026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61120a8282610c88565b6112455760405162461bcd60e51b81526004018080602001828103825260218152602001806113af6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b505050565b6112768282610c88565b156112c8576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006f5208fb3d5050891ae2d228339fda815714c4ba31db37fac68c3e07a7abc9c64736f6c63430006010033526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c80636ef8d66d116100c357806395d89b411161007c57806395d89b41146103a9578063a457c2d7146103b1578063a9059cbb146103dd578063aa10ce2214610409578063dd62ed3e1461042f578063f2fde38b1461045d57610157565b80636ef8d66d1461032157806370a082311461032957806382dc1ec41461034f5780638456cb59146103755780638da5cb5b1461037d5780638f32d59b146103a157610157565b8063251c1aa311610115578063251c1aa314610299578063313ce567146102a157806339509351146102bf5780633f4ba83a146102eb57806346fbf68e146102f35780635c975abb1461031957610157565b806236d2d31461015c57806306fdde0314610196578063095ea7b31461021357806318160ddd1461023f5780631a6a6e821461025957806323b872dd14610263575b600080fd5b6101826004803603602081101561017257600080fd5b50356001600160a01b0316610483565b604080519115158252519081900360200190f35b61019e61049c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d85781810151838201526020016101c0565b50505050905090810190601f1680156102055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101826004803603604081101561022957600080fd5b506001600160a01b038135169060200135610532565b61024761054f565b60408051918252519081900360200190f35b610261610555565b005b6101826004803603606081101561027957600080fd5b506001600160a01b03813581169160208101359091169060400135610567565b6102476106d5565b6102a96106dd565b6040805160ff9092168252519081900360200190f35b610182600480360360408110156102d557600080fd5b506001600160a01b0381351690602001356106e6565b61026161073a565b6101826004803603602081101561030957600080fd5b50356001600160a01b0316610823565b610182610836565b61026161083f565b6102476004803603602081101561033f57600080fd5b50356001600160a01b031661084f565b6102616004803603602081101561036557600080fd5b50356001600160a01b031661086a565b6102616108cf565b6103856109a7565b604080516001600160a01b039092168252519081900360200190f35b6101826109b6565b61019e6109da565b610182600480360360408110156103c757600080fd5b506001600160a01b038135169060200135610a3b565b610182600480360360408110156103f357600080fd5b506001600160a01b038135169060200135610aa9565b6102616004803603602081101561041f57600080fd5b50356001600160a01b0316610b99565b6102476004803603604081101561044557600080fd5b506001600160a01b0381358116916020013516610bfb565b6102616004803603602081101561047357600080fd5b50356001600160a01b0316610c26565b600061049660028363ffffffff610c8816565b92915050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105285780601f106104fd57610100808354040283529160200191610528565b820191906000526020600020905b81548152906001019060200180831161050b57829003601f168201915b5050505050905090565b600061054661053f610cef565b8484610cf3565b50600192915050565b60065490565b610565610560610cef565b610ddf565b565b60035460009060ff1615806105875750610587610582610cef565b610483565b6105cb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b73f8fab9fa6c154bd2a59035283ad508705aa496416105e8610cef565b6001600160a01b031614158061060157504263608c9a00105b61064a576040805162461bcd60e51b8152602060048201526015602482015274151a1a5cc81dd85b1b195d081a5cc81b1bd8dad959605a1b604482015290519081900360640190fd5b610655848484610e27565b6106cb84610661610cef565b6106c6856040518060600160405280602881526020016113d0602891396001600160a01b038a1660009081526005602052604081209061069f610cef565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610f9016565b610cf3565b5060019392505050565b63608c9a0090565b60095460ff1690565b60006105466106f3610cef565b846106c68560056000610704610cef565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61102716565b61074a610745610cef565b610823565b6107855760405162461bcd60e51b81526004018080602001828103825260308152602001806113116030913960400191505060405180910390fd5b60035460ff166107d3576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610806610cef565b604080516001600160a01b039092168252519081900360200190a1565b600061049660018363ffffffff610c8816565b60035460ff1690565b61056561084a610cef565b611088565b6001600160a01b031660009081526004602052604090205490565b6108726109b6565b6108c3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108cc816110d0565b50565b6108da610745610cef565b6109155760405162461bcd60e51b81526004018080602001828103825260308152602001806113116030913960400191505060405180910390fd5b60035460ff16158061092d575061092d610582610cef565b610971576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610806610cef565b6000546001600160a01b031690565b600080546001600160a01b03166109cb610cef565b6001600160a01b031614905090565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105285780601f106104fd57610100808354040283529160200191610528565b6000610546610a48610cef565b846106c6856040518060600160405280602581526020016114636025913960056000610a72610cef565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f9016565b60035460009060ff161580610ac45750610ac4610582610cef565b610b08576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b73f8fab9fa6c154bd2a59035283ad508705aa49641610b25610cef565b6001600160a01b0316141580610b3e57504263608c9a00105b610b87576040805162461bcd60e51b8152602060048201526015602482015274151a1a5cc81dd85b1b195d081a5cc81b1bd8dad959605a1b604482015290519081900360640190fd5b610546610b92610cef565b8484610e27565b610ba16109b6565b610bf2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108cc81611118565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b610c2e6109b6565b610c7f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108cc81611160565b60006001600160a01b038216610ccf5760405162461bcd60e51b81526004018080602001828103825260228152602001806113f86022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b3390565b6001600160a01b038316610d385760405162461bcd60e51b815260040180806020018281038252602481526020018061143f6024913960400191505060405180910390fd5b6001600160a01b038216610d7d5760405162461bcd60e51b81526004018080602001828103825260228152602001806113676022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610df060028263ffffffff61120016565b6040516001600160a01b038216907ff50d0d312d501878616eb5e78ebf3ed6dcd3955aaef8165af9c6b057cc4832fb90600090a250565b6001600160a01b038316610e6c5760405162461bcd60e51b815260040180806020018281038252602581526020018061141a6025913960400191505060405180910390fd5b6001600160a01b038216610eb15760405162461bcd60e51b81526004018080602001828103825260238152602001806112ee6023913960400191505060405180910390fd5b610ebc838383611267565b610eff81604051806060016040528060268152602001611389602691396001600160a01b038616600090815260046020526040902054919063ffffffff610f9016565b6001600160a01b038085166000908152600460205260408082209390935590841681522054610f34908263ffffffff61102716565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561101f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fe4578181015183820152602001610fcc565b50505050905090810190601f1680156110115780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611081576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61109960018263ffffffff61120016565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6110e160018263ffffffff61126c16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61112960028263ffffffff61126c16565b6040516001600160a01b038216907f3e535d1ab441ef41c268fd9b52b478aee02d693c5ca2a84b5d26b89e0922e5e190600090a250565b6001600160a01b0381166111a55760405162461bcd60e51b81526004018080602001828103825260268152602001806113416026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61120a8282610c88565b6112455760405162461bcd60e51b81526004018080602001828103825260218152602001806113af6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b505050565b6112768282610c88565b156112c8576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006f5208fb3d5050891ae2d228339fda815714c4ba31db37fac68c3e07a7abc9c64736f6c63430006010033

Deployed Bytecode Sourcemap

25021:1177:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25021:1177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14027:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14027:113:0;-1:-1:-1;;;;;14027:113:0;;:::i;:::-;;;;;;;;;;;;;;;;;;25260:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25260:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20072:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20072:169:0;;;;;;;;:::i;19020:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;14251:83;;;:::i;:::-;;20713:351;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20713:351:0;;;;;;;;;;;;;;;;;:::i;14995:90::-;;;:::i;26112:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21473:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21473:218:0;;;;;;;;:::i;17057:120::-;;;:::i;13000:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13000:109:0;-1:-1:-1;;;;;13000:109:0;;:::i;16180:78::-;;;:::i;13216:79::-;;;:::i;19183:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19183:119:0;-1:-1:-1;;;;;19183:119:0;;:::i;13117:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13117:91:0;-1:-1:-1;;;;;13117:91:0;;:::i;16844:118::-;;;:::i;11477:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;11477:79:0;;;;;;;;;;;;;;11843:94;;;:::i;25462:87::-;;;:::i;22194:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22194:269:0;;;;;;;;:::i;19515:197::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19515:197:0;;;;;;;;:::i;14148:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14148:95:0;-1:-1:-1;;;;;14148:95:0;;:::i;19774:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19774:151:0;;;;;;;;;;:::i;12094:117::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12094:117:0;-1:-1:-1;;;;;12094:117:0;;:::i;14027:113::-;14085:4;14109:23;:10;14124:7;14109:23;:14;:23;:::i;:::-;14102:30;14027:113;-1:-1:-1;;14027:113:0:o;25260:83::-;25330:5;25323:12;;;;;;;;-1:-1:-1;;25323:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25297:13;;25323:12;;25330:5;;25323:12;;25330:5;25323:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25260:83;:::o;20072:169::-;20155:4;20172:39;20181:12;:10;:12::i;:::-;20195:7;20204:6;20172:8;:39::i;:::-;-1:-1:-1;20229:4:0;20072:169;;;;:::o;19020:100::-;19100:12;;19020:100;:::o;14251:83::-;14297:29;14313:12;:10;:12::i;:::-;14297:15;:29::i;:::-;14251:83::o;20713:351::-;16417:7;;20849:4;;16417:7;;16416:8;;:36;;;16428:24;16439:12;:10;:12::i;:::-;16428:10;:24::i;:::-;16408:65;;;;;-1:-1:-1;;;16408:65:0;;;;;;;;;;;;-1:-1:-1;;;16408:65:0;;;;;;;;;;;;;;;14709:42:::1;14875:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;14875:28:0::1;;;:62;;;;14922:15;14800:10;14907:30;14875:62;14867:96;;;::::0;;-1:-1:-1;;;14867:96:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;14867:96:0;;;;;;;;;;;;;::::1;;20866:36:::2;20876:6;20884:9;20895:6;20866:9;:36::i;:::-;20913:121;20922:6;20930:12;:10;:12::i;:::-;20944:89;20982:6;20944:89;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;20944:19:0;::::2;;::::0;;;:11:::2;:19;::::0;;;;;20964:12:::2;:10;:12::i;:::-;-1:-1:-1::0;;;;;20944:33:0::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;20944:33:0;;;:89;::::2;:37;:89;:::i;:::-;20913:8;:121::i;:::-;-1:-1:-1::0;21052:4:0::2;20713:351:::0;;;;;:::o;14995:90::-;14800:10;14995:90;:::o;26112:83::-;26178:9;;;;26112:83;:::o;21473:218::-;21561:4;21578:83;21587:12;:10;:12::i;:::-;21601:7;21610:50;21649:10;21610:11;:25;21622:12;:10;:12::i;:::-;-1:-1:-1;;;;;21610:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21610:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;17057:120::-;12897:22;12906:12;:10;:12::i;:::-;12897:8;:22::i;:::-;12889:83;;;;-1:-1:-1;;;12889:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16694:7:::1;::::0;::::1;;16686:40;;;::::0;;-1:-1:-1;;;16686:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;16686:40:0;;;;;;;;;;;;;::::1;;17116:7:::2;:15:::0;;-1:-1:-1;;17116:15:0::2;::::0;;17147:22:::2;17156:12;:10;:12::i;:::-;17147:22;::::0;;-1:-1:-1;;;;;17147:22:0;;::::2;::::0;;;;;;;::::2;::::0;;::::2;17057:120::o:0;13000:109::-;13056:4;13080:21;:8;13093:7;13080:21;:12;:21;:::i;16180:78::-;16243:7;;;;16180:78;:::o;13216:79::-;13260:27;13274:12;:10;:12::i;:::-;13260:13;:27::i;19183:119::-;-1:-1:-1;;;;;19276:18:0;19249:7;19276:18;;;:9;:18;;;;;;;19183:119::o;13117:91::-;11689:9;:7;:9::i;:::-;11681:54;;;;;-1:-1:-1;;;11681:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13181:19:::1;13192:7;13181:10;:19::i;:::-;13117:91:::0;:::o;16844:118::-;12897:22;12906:12;:10;:12::i;12897:22::-;12889:83;;;;-1:-1:-1;;;12889:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16417:7:::1;::::0;::::1;;16416:8;::::0;:36:::1;;;16428:24;16439:12;:10;:12::i;16428:24::-;16408:65;;;::::0;;-1:-1:-1;;;16408:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;16408:65:0;;;;;;;;;;;;;::::1;;16904:7:::2;:14:::0;;-1:-1:-1;;16904:14:0::2;16914:4;16904:14;::::0;;16934:20:::2;16941:12;:10;:12::i;11477:79::-:0;11515:7;11542:6;-1:-1:-1;;;;;11542:6:0;11477:79;:::o;11843:94::-;11883:4;11923:6;;-1:-1:-1;;;;;11923:6:0;11907:12;:10;:12::i;:::-;-1:-1:-1;;;;;11907:22:0;;11900:29;;11843:94;:::o;25462:87::-;25534:7;25527:14;;;;;;;;-1:-1:-1;;25527:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25501:13;;25527:14;;25534:7;;25527:14;;25534:7;25527:14;;;;;;;;;;;;;;;;;;;;;;;;22194:269;22287:4;22304:129;22313:12;:10;:12::i;:::-;22327:7;22336:96;22375:15;22336:96;;;;;;;;;;;;;;;;;:11;:25;22348:12;:10;:12::i;:::-;-1:-1:-1;;;;;22336:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22336:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19515:197::-;16417:7;;19623:4;;16417:7;;16416:8;;:36;;;16428:24;16439:12;:10;:12::i;16428:24::-;16408:65;;;;;-1:-1:-1;;;16408:65:0;;;;;;;;;;;;-1:-1:-1;;;16408:65:0;;;;;;;;;;;;;;;14709:42:::1;14875:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;14875:28:0::1;;;:62;;;;14922:15;14800:10;14907:30;14875:62;14867:96;;;::::0;;-1:-1:-1;;;14867:96:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;14867:96:0;;;;;;;;;;;;;::::1;;19640:42:::2;19650:12;:10;:12::i;:::-;19664:9;19675:6;19640:9;:42::i;14148:95::-:0;11689:9;:7;:9::i;:::-;11681:54;;;;;-1:-1:-1;;;11681:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14214:21:::1;14227:7;14214:12;:21::i;19774:151::-:0;-1:-1:-1;;;;;19890:18:0;;;19863:7;19890:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19774:151::o;12094:117::-;11689:9;:7;:9::i;:::-;11681:54;;;;;-1:-1:-1;;;11681:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12175:28:::1;12194:8;12175:18;:28::i;6483:203::-:0;6555:4;-1:-1:-1;;;;;6580:21:0;;6572:68;;;;-1:-1:-1;;;6572:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6658:20:0;:11;:20;;;;;;;;;;;;;;;6483:203::o;7472:98::-;7552:10;7472:98;:::o;23934:346::-;-1:-1:-1;;;;;24036:19:0;;24028:68;;;;-1:-1:-1;;;24028:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24115:21:0;;24107:68;;;;-1:-1:-1;;;24107:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24188:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24240:32;;;;;;;;;;;;;;;;;23934:346;;;:::o;14478:136::-;14540:26;:10;14558:7;14540:26;:17;:26;:::i;:::-;14582:24;;-1:-1:-1;;;;;14582:24:0;;;;;;;;14478:136;:::o;22953:539::-;-1:-1:-1;;;;;23059:20:0;;23051:70;;;;-1:-1:-1;;;23051:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23140:23:0;;23132:71;;;;-1:-1:-1;;;23132:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23216:47;23237:6;23245:9;23256:6;23216:20;:47::i;:::-;23296:71;23318:6;23296:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23296:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23276:17:0;;;;;;;:9;:17;;;;;;:91;;;;23401:20;;;;;;;:32;;23426:6;23401:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23378:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23449:35;;;;;;;23378:20;;23449:35;;;;;;;;;;;;;22953:539;;;:::o;1901:192::-;1987:7;2023:12;2015:6;;;;2007:29;;;;-1:-1:-1;;;2007:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2007:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2059:5:0;;;1901:192::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;859:181;-1:-1:-1;;;859:181:0:o;13433:130::-;13493:24;:8;13509:7;13493:24;:15;:24;:::i;:::-;13533:22;;-1:-1:-1;;;;;13533:22:0;;;;;;;;13433:130;:::o;13303:122::-;13360:21;:8;13373:7;13360:21;:12;:21;:::i;:::-;13397:20;;-1:-1:-1;;;;;13397:20:0;;;;;;;;13303:122;:::o;14342:128::-;14401:23;:10;14416:7;14401:23;:14;:23;:::i;:::-;14440:22;;-1:-1:-1;;;;;14440:22:0;;;;;;;;14342:128;:::o;12317:237::-;-1:-1:-1;;;;;12399:22:0;;12391:73;;;;-1:-1:-1;;;12391:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12501:6;;;12480:38;;-1:-1:-1;;;;;12480:38:0;;;;12501:6;;;12480:38;;;12529:6;:17;;-1:-1:-1;;;;;;12529:17:0;-1:-1:-1;;;;;12529:17:0;;;;;;;;;;12317:237::o;6205:183::-;6285:18;6289:4;6295:7;6285:3;:18::i;:::-;6277:64;;;;-1:-1:-1;;;6277:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6352:20:0;6375:5;6352:20;;;;;;;;;;;:28;;-1:-1:-1;;6352:28:0;;;6205:183::o;24859:92::-;;;;:::o;5947:178::-;6025:18;6029:4;6035:7;6025:3;:18::i;:::-;6024:19;6016:63;;;;;-1:-1:-1;;;6016:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6090:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;6090:27:0;6113:4;6090:27;;;5947:178::o

Swarm Source

ipfs://06f5208fb3d5050891ae2d228339fda815714c4ba31db37fac68c3e07a7abc9c

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

A successful media outlet that reports on and chronicles the blockchain economy and cryptocurrency markets.

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.