Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 62 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21277312 | 15 days ago | IN | 0 ETH | 0.00035976 | ||||
Approve | 21208331 | 25 days ago | IN | 0 ETH | 0.00041962 | ||||
Approve | 20891802 | 69 days ago | IN | 0 ETH | 0.00020957 | ||||
Approve | 20844135 | 76 days ago | IN | 0 ETH | 0.00146343 | ||||
Approve | 20843776 | 76 days ago | IN | 0 ETH | 0.00058929 | ||||
Approve | 20788383 | 84 days ago | IN | 0 ETH | 0.00024933 | ||||
Approve | 20741264 | 90 days ago | IN | 0 ETH | 0.00009887 | ||||
Approve | 20738405 | 91 days ago | IN | 0 ETH | 0.00008639 | ||||
Approve | 20503039 | 123 days ago | IN | 0 ETH | 0.00004117 | ||||
Approve | 20124664 | 176 days ago | IN | 0 ETH | 0.00027418 | ||||
Approve | 19918134 | 205 days ago | IN | 0 ETH | 0.00092431 | ||||
Approve | 19787500 | 223 days ago | IN | 0 ETH | 0.00036721 | ||||
Approve | 19641715 | 244 days ago | IN | 0 ETH | 0.00347571 | ||||
Approve | 19196714 | 306 days ago | IN | 0 ETH | 0.00128724 | ||||
Approve | 19167914 | 310 days ago | IN | 0 ETH | 0.00183114 | ||||
Approve | 19121149 | 317 days ago | IN | 0 ETH | 0.00135535 | ||||
Approve | 19037936 | 328 days ago | IN | 0 ETH | 0.00130662 | ||||
Approve | 19031498 | 329 days ago | IN | 0 ETH | 0.00084891 | ||||
Approve | 19031143 | 329 days ago | IN | 0 ETH | 0.00080059 | ||||
Approve | 19025703 | 330 days ago | IN | 0 ETH | 0.00133705 | ||||
Approve | 18942906 | 342 days ago | IN | 0 ETH | 0.0008271 | ||||
Approve | 18942801 | 342 days ago | IN | 0 ETH | 0.00091616 | ||||
Approve | 18720128 | 373 days ago | IN | 0 ETH | 0.0022469 | ||||
Approve | 18695318 | 377 days ago | IN | 0 ETH | 0.00157913 | ||||
Approve | 18675557 | 379 days ago | IN | 0 ETH | 0.00131967 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PlearnToken
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./token/BEP20/BEP20.sol"; // PLearnToken with Governance. contract PlearnToken is BEP20("Plearn Token", "PLN") { using SafeMath for uint256; using EnumerableSet for EnumerableSet.AddressSet; EnumerableSet.AddressSet private _minters; /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyMinter returns (bool) { _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); return true; } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @notice A record of each accounts delegate mapping(address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping(address => mapping(uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping(address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256( "EIP712Domain(string name,uint256 chainId,address verifyingContract)" ); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping(address => uint256) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged( address indexed delegator, address indexed fromDelegate, address indexed toDelegate ); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged( address indexed delegate, uint256 previousBalance, uint256 newBalance ); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry) ); bytes32 digest = keccak256( abi.encodePacked("\x19\x01", domainSeparator, structHash) ); address signatory = ecrecover(digest, v, r, s); require( signatory != address(0), "PLEARN::delegateBySig: invalid signature" ); require( nonce == nonces[signatory]++, "PLEARN::delegateBySig: invalid nonce" ); require( block.timestamp <= expiry, "PLEARN::delegateBySig: signature expired" ); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) external view returns (uint256) { require( blockNumber < block.number, "PLEARN::getPriorVotes: not yet determined" ); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying PLEARNs (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates( address srcRep, address dstRep, uint256 amount ) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32( block.number, "PLEARN::_writeCheckpoint: block number exceeds 32 bits" ); if ( nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber ) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint( blockNumber, newVotes ); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal view returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } function addMinter(address _addMinter) public onlyOwner returns (bool) { require( _addMinter != address(0), "PLEARN: _addMinter is the zero address" ); return EnumerableSet.add(_minters, _addMinter); } function delMinter(address _delMinter) public onlyOwner returns (bool) { require( _delMinter != address(0), "PLEARN: _delMinter is the zero address" ); return EnumerableSet.remove(_minters, _delMinter); } function getMinterLength() public view returns (uint256) { return EnumerableSet.length(_minters); } function isMinter(address account) public view returns (bool) { return EnumerableSet.contains(_minters, account); } function getMinter(uint256 _index) public view onlyOwner returns (address) { require(_index <= getMinterLength() - 1, "PLEARN: index out of bounds"); return EnumerableSet.at(_minters, _index); } // modifier for mint function modifier onlyMinter() { require(isMinter(msg.sender), "caller is not the minter"); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./IBEP20.sol"; contract BEP20 is IBEP20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory tokenName, string memory tokenSymbol) { _name = tokenName; _symbol = tokenSymbol; _decimals = 18; } /** * @dev Returns the bep token owner. */ function getOwner() external view override returns (address) { return owner(); } /** * @dev Returns the token name. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the token decimals. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-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 override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * 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 override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "BEP20: 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 {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "BEP20: decreased allowance below zero" ) ); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); 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 { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub( amount, "BEP20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "BEP20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub( amount, "BEP20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub( amount, "BEP20: burn amount exceeds allowance" ) ); } }
// 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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 ); }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","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":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b283632b0b937102a37b5b2b760a11b8152506040518060400160405280600381526020016228262760e91b8152506200006d62000067620000ae60201b60201c565b620000b2565b81516200008290600690602085019062000102565b5080516200009890600590602084019062000102565b50506004805460ff1916601217905550620001e5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011090620001a8565b90600052602060002090601f0160209004810192826200013457600085556200017f565b82601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b5b808211156200018d576000815560010162000192565b600181811c90821680620001bd57607f821691505b60208210811415620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b611ffc80620001f56000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063782d6fe11161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610481578063e7a324dc146104ba578063f1127ed8146104e1578063f2fde38b1461053857600080fd5b8063a9059cbb14610435578063aa271e1a14610448578063b4b5ea571461045b578063c3cda5201461046e57600080fd5b806395d89b41116100de57806395d89b41146103f4578063983b2d56146103fc578063a0712d681461040f578063a457c2d71461042257600080fd5b8063782d6fe1146103b05780637ecebe00146103c3578063893d20e8146103e35780638da5cb5b146103e357600080fd5b806339509351116101875780635c19a95c116101565780635c19a95c1461032f5780636fcfff451461034457806370a082311461037f578063715018a6146103a857600080fd5b806339509351146102b257806340c10f19146102c5578063587cde1e146102d85780635b7121f81461031c57600080fd5b806320606b70116101c357806320606b701461025057806323338b881461027757806323b872dd1461028a578063313ce5671461029d57600080fd5b80630323aac7146101f557806306fdde0314610210578063095ea7b31461022557806318160ddd14610248575b600080fd5b6101fd61054b565b6040519081526020015b60405180910390f35b61021861055c565b6040516102079190611db3565b610238610233366004611cd6565b6105ee565b6040519015158152602001610207565b6003546101fd565b6101fd7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b610238610285366004611c4f565b610605565b610238610298366004611c9b565b6106dd565b60045460405160ff9091168152602001610207565b6102386102c0366004611cd6565b610746565b6102386102d3366004611cd6565b61077c565b6103046102e6366004611c4f565b6001600160a01b039081166000908152600960205260409020541690565b6040516001600160a01b039091168152602001610207565b61030461032a366004611d9b565b610802565b61034261033d366004611c4f565b6108cb565b005b61036a610352366004611c4f565b600b6020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610207565b6101fd61038d366004611c4f565b6001600160a01b031660009081526001602052604090205490565b6103426108d8565b6101fd6103be366004611cd6565b61093e565b6101fd6103d1366004611c4f565b600c6020526000908152604090205481565b6000546001600160a01b0316610304565b610218610bb9565b61023861040a366004611c4f565b610bc8565b61023861041d366004611d9b565b610c93565b610238610430366004611cd6565b610d00565b610238610443366004611cd6565b610d4f565b610238610456366004611c4f565b610d5c565b6101fd610469366004611c4f565b610d69565b61034261047c366004611cff565b610dde565b6101fd61048f366004611c69565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fd7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b61051c6104ef366004611d5d565b600a6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610207565b610342610546366004611c4f565b61110f565b600061055760076111d7565b905090565b60606006805461056b90611eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461059790611eb1565b80156105e45780601f106105b9576101008083540402835291602001916105e4565b820191906000526020600020905b8154815290600101906020018083116105c757829003601f168201915b5050505050905090565b60006105fb3384846111e1565b5060015b92915050565b600080546001600160a01b031633146106655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166106ca5760405162461bcd60e51b815260206004820152602660248201527f504c4541524e3a205f64656c4d696e74657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065c565b6106d560078361133a565b90505b919050565b60006106ea84848461134f565b61073c843361073785604051806060016040528060288152602001611f54602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611507565b6111e1565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916105fb9185906107379086611533565b600061078733610d5c565b6107d35760405162461bcd60e51b815260206004820152601860248201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604482015260640161065c565b6107dd838361153f565b6001600160a01b038084166000908152600960205260408120546105fb921684611625565b600080546001600160a01b0316331461085d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b600161086761054b565b6108719190611e75565b8211156108c05760405162461bcd60e51b815260206004820152601b60248201527f504c4541524e3a20696e646578206f7574206f6620626f756e64730000000000604482015260640161065c565b6106d5600783611789565b6108d53382611795565b50565b6000546001600160a01b031633146109325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b61093c6000611822565b565b60004382106109b55760405162461bcd60e51b815260206004820152602960248201527f504c4541524e3a3a6765745072696f72566f7465733a206e6f7420796574206460448201527f657465726d696e65640000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0383166000908152600b602052604090205463ffffffff16806109e35760009150506105ff565b6001600160a01b0384166000908152600a602052604081208491610a08600185611e8c565b63ffffffff90811682526020820192909252604001600020541611610a71576001600160a01b0384166000908152600a6020526040812090610a4b600184611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101549150506105ff565b6001600160a01b0384166000908152600a6020908152604080832083805290915290205463ffffffff16831015610aac5760009150506105ff565b600080610aba600184611e8c565b90505b8163ffffffff168163ffffffff161115610b825760006002610adf8484611e8c565b610ae99190611e46565b610af39083611e8c565b6001600160a01b0388166000908152600a6020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610b56576020015194506105ff9350505050565b805163ffffffff16871115610b6d57819350610b7b565b610b78600183611e8c565b92505b5050610abd565b506001600160a01b0385166000908152600a6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606005805461056b90611eb1565b600080546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b6001600160a01b038216610c885760405162461bcd60e51b815260206004820152602660248201527f504c4541524e3a205f6164644d696e74657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065c565b6106d560078361187f565b600080546001600160a01b03163314610cee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b610cf8338361153f565b506001919050565b60006105fb338461073785604051806060016040528060258152602001611fa2602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190611507565b60006105fb33848461134f565b60006106d5600783611894565b6001600160a01b0381166000908152600b602052604081205463ffffffff1680610d94576000610dd7565b6001600160a01b0383166000908152600a6020526040812090610db8600184611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610e0961055c565b80519060200120610e174690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401909252815191909301207f1901000000000000000000000000000000000000000000000000000000000000610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610f5e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610fe75760405162461bcd60e51b815260206004820152602860248201527f504c4541524e3a3a64656c656761746542795369673a20696e76616c6964207360448201527f69676e6174757265000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0381166000908152600c6020526040812080549161100b83611eec565b9190505589146110825760405162461bcd60e51b8152602060048201526024808201527f504c4541524e3a3a64656c656761746542795369673a20696e76616c6964206e60448201527f6f6e636500000000000000000000000000000000000000000000000000000000606482015260840161065c565b874211156110f85760405162461bcd60e51b815260206004820152602860248201527f504c4541524e3a3a64656c656761746542795369673a207369676e617475726560448201527f2065787069726564000000000000000000000000000000000000000000000000606482015260840161065c565b611102818b611795565b505050505b505050505050565b6000546001600160a01b031633146111695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b6001600160a01b0381166111ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065c565b6108d581611822565b60006106d5825490565b6001600160a01b03831661125c5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0382166112d85760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610dd7836001600160a01b0384166118b6565b6001600160a01b0383166113cb5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0382166114475760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161065c565b61148481604051806060016040528060268152602001611f7c602691396001600160a01b0386166000908152600160205260409020549190611507565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546114b39082611533565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061132d9085815260200190565b6000818484111561152b5760405162461bcd60e51b815260040161065c9190611db3565b505050900390565b6000610dd78284611e06565b6001600160a01b0382166115955760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161065c565b6003546115a29082611533565b6003556001600160a01b0382166000908152600160205260409020546115c89082611533565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116199085815260200190565b60405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156116475750600081115b15611784576001600160a01b038316156116ea576001600160a01b0383166000908152600b602052604081205463ffffffff1690816116875760006116ca565b6001600160a01b0385166000908152600a60205260408120906116ab600185611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006116d882856119d3565b90506116e6868484846119df565b5050505b6001600160a01b03821615611784576001600160a01b0382166000908152600b602052604081205463ffffffff169081611725576000611768565b6001600160a01b0384166000908152600a6020526040812090611749600185611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006117768285611533565b9050611107858484846119df565b505050565b6000610dd78383611b81565b6001600160a01b038281166000818152600960208181526040808420805460018452828620549490935287871673ffffffffffffffffffffffffffffffffffffffff198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461181c828483611625565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610dd7836001600160a01b038416611bb9565b6001600160a01b03811660009081526001830160205260408120541515610dd7565b600081815260018301602052604081205480156119c95760006118da600183611e75565b85549091506000906118ee90600190611e75565b905081811461196f57600086600001828154811061191c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061194d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061198e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105ff565b60009150506105ff565b6000610dd78284611e75565b6000611a0343604051806060016040528060368152602001611f1e60369139611c08565b905060008463ffffffff16118015611a5d57506001600160a01b0385166000908152600a6020526040812063ffffffff831691611a41600188611e8c565b63ffffffff908116825260208201929092526040016000205416145b15611aa6576001600160a01b0385166000908152600a602052604081208391611a87600188611e8c565b63ffffffff168152602081019190915260400160002060010155611b36565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600a83528581208a851682529092529390209151825463ffffffff191691161781559051600191820155611b05908590611e1e565b6001600160a01b0386166000908152600b60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000826000018281548110611ba657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6000818152600183016020526040812054611c00575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105ff565b5060006105ff565b6000816401000000008410611c305760405162461bcd60e51b815260040161065c9190611db3565b509192915050565b80356001600160a01b03811681146106d857600080fd5b600060208284031215611c60578081fd5b610dd782611c38565b60008060408385031215611c7b578081fd5b611c8483611c38565b9150611c9260208401611c38565b90509250929050565b600080600060608486031215611caf578081fd5b611cb884611c38565b9250611cc660208501611c38565b9150604084013590509250925092565b60008060408385031215611ce8578182fd5b611cf183611c38565b946020939093013593505050565b60008060008060008060c08789031215611d17578182fd5b611d2087611c38565b95506020870135945060408701359350606087013560ff81168114611d43578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611d6f578182fd5b611d7883611c38565b9150602083013563ffffffff81168114611d90578182fd5b809150509250929050565b600060208284031215611dac578081fd5b5035919050565b6000602080835283518082850152825b81811015611ddf57858101830151858201604001528201611dc3565b81811115611df05783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115611e1957611e19611f07565b500190565b600063ffffffff808316818516808303821115611e3d57611e3d611f07565b01949350505050565b600063ffffffff80841680611e6957634e487b7160e01b83526012600452602483fd5b92169190910492915050565b600082821015611e8757611e87611f07565b500390565b600063ffffffff83811690831681811015611ea957611ea9611f07565b039392505050565b600181811c90821680611ec557607f821691505b60208210811415611ee657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0057611f00611f07565b5060010190565b634e487b7160e01b600052601160045260246000fdfe504c4541524e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eeb3736567ae5b6ca1af134c23b8e458ec16c669b1a88fe152c5d78b1a4a3d4d64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063782d6fe11161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610481578063e7a324dc146104ba578063f1127ed8146104e1578063f2fde38b1461053857600080fd5b8063a9059cbb14610435578063aa271e1a14610448578063b4b5ea571461045b578063c3cda5201461046e57600080fd5b806395d89b41116100de57806395d89b41146103f4578063983b2d56146103fc578063a0712d681461040f578063a457c2d71461042257600080fd5b8063782d6fe1146103b05780637ecebe00146103c3578063893d20e8146103e35780638da5cb5b146103e357600080fd5b806339509351116101875780635c19a95c116101565780635c19a95c1461032f5780636fcfff451461034457806370a082311461037f578063715018a6146103a857600080fd5b806339509351146102b257806340c10f19146102c5578063587cde1e146102d85780635b7121f81461031c57600080fd5b806320606b70116101c357806320606b701461025057806323338b881461027757806323b872dd1461028a578063313ce5671461029d57600080fd5b80630323aac7146101f557806306fdde0314610210578063095ea7b31461022557806318160ddd14610248575b600080fd5b6101fd61054b565b6040519081526020015b60405180910390f35b61021861055c565b6040516102079190611db3565b610238610233366004611cd6565b6105ee565b6040519015158152602001610207565b6003546101fd565b6101fd7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b610238610285366004611c4f565b610605565b610238610298366004611c9b565b6106dd565b60045460405160ff9091168152602001610207565b6102386102c0366004611cd6565b610746565b6102386102d3366004611cd6565b61077c565b6103046102e6366004611c4f565b6001600160a01b039081166000908152600960205260409020541690565b6040516001600160a01b039091168152602001610207565b61030461032a366004611d9b565b610802565b61034261033d366004611c4f565b6108cb565b005b61036a610352366004611c4f565b600b6020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610207565b6101fd61038d366004611c4f565b6001600160a01b031660009081526001602052604090205490565b6103426108d8565b6101fd6103be366004611cd6565b61093e565b6101fd6103d1366004611c4f565b600c6020526000908152604090205481565b6000546001600160a01b0316610304565b610218610bb9565b61023861040a366004611c4f565b610bc8565b61023861041d366004611d9b565b610c93565b610238610430366004611cd6565b610d00565b610238610443366004611cd6565b610d4f565b610238610456366004611c4f565b610d5c565b6101fd610469366004611c4f565b610d69565b61034261047c366004611cff565b610dde565b6101fd61048f366004611c69565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101fd7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b61051c6104ef366004611d5d565b600a6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610207565b610342610546366004611c4f565b61110f565b600061055760076111d7565b905090565b60606006805461056b90611eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461059790611eb1565b80156105e45780601f106105b9576101008083540402835291602001916105e4565b820191906000526020600020905b8154815290600101906020018083116105c757829003601f168201915b5050505050905090565b60006105fb3384846111e1565b5060015b92915050565b600080546001600160a01b031633146106655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166106ca5760405162461bcd60e51b815260206004820152602660248201527f504c4541524e3a205f64656c4d696e74657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065c565b6106d560078361133a565b90505b919050565b60006106ea84848461134f565b61073c843361073785604051806060016040528060288152602001611f54602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611507565b6111e1565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916105fb9185906107379086611533565b600061078733610d5c565b6107d35760405162461bcd60e51b815260206004820152601860248201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604482015260640161065c565b6107dd838361153f565b6001600160a01b038084166000908152600960205260408120546105fb921684611625565b600080546001600160a01b0316331461085d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b600161086761054b565b6108719190611e75565b8211156108c05760405162461bcd60e51b815260206004820152601b60248201527f504c4541524e3a20696e646578206f7574206f6620626f756e64730000000000604482015260640161065c565b6106d5600783611789565b6108d53382611795565b50565b6000546001600160a01b031633146109325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b61093c6000611822565b565b60004382106109b55760405162461bcd60e51b815260206004820152602960248201527f504c4541524e3a3a6765745072696f72566f7465733a206e6f7420796574206460448201527f657465726d696e65640000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0383166000908152600b602052604090205463ffffffff16806109e35760009150506105ff565b6001600160a01b0384166000908152600a602052604081208491610a08600185611e8c565b63ffffffff90811682526020820192909252604001600020541611610a71576001600160a01b0384166000908152600a6020526040812090610a4b600184611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101549150506105ff565b6001600160a01b0384166000908152600a6020908152604080832083805290915290205463ffffffff16831015610aac5760009150506105ff565b600080610aba600184611e8c565b90505b8163ffffffff168163ffffffff161115610b825760006002610adf8484611e8c565b610ae99190611e46565b610af39083611e8c565b6001600160a01b0388166000908152600a6020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610b56576020015194506105ff9350505050565b805163ffffffff16871115610b6d57819350610b7b565b610b78600183611e8c565b92505b5050610abd565b506001600160a01b0385166000908152600a6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606005805461056b90611eb1565b600080546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b6001600160a01b038216610c885760405162461bcd60e51b815260206004820152602660248201527f504c4541524e3a205f6164644d696e74657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065c565b6106d560078361187f565b600080546001600160a01b03163314610cee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b610cf8338361153f565b506001919050565b60006105fb338461073785604051806060016040528060258152602001611fa2602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190611507565b60006105fb33848461134f565b60006106d5600783611894565b6001600160a01b0381166000908152600b602052604081205463ffffffff1680610d94576000610dd7565b6001600160a01b0383166000908152600a6020526040812090610db8600184611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610e0961055c565b80519060200120610e174690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401909252815191909301207f1901000000000000000000000000000000000000000000000000000000000000610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610f5e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610fe75760405162461bcd60e51b815260206004820152602860248201527f504c4541524e3a3a64656c656761746542795369673a20696e76616c6964207360448201527f69676e6174757265000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0381166000908152600c6020526040812080549161100b83611eec565b9190505589146110825760405162461bcd60e51b8152602060048201526024808201527f504c4541524e3a3a64656c656761746542795369673a20696e76616c6964206e60448201527f6f6e636500000000000000000000000000000000000000000000000000000000606482015260840161065c565b874211156110f85760405162461bcd60e51b815260206004820152602860248201527f504c4541524e3a3a64656c656761746542795369673a207369676e617475726560448201527f2065787069726564000000000000000000000000000000000000000000000000606482015260840161065c565b611102818b611795565b505050505b505050505050565b6000546001600160a01b031633146111695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161065c565b6001600160a01b0381166111ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065c565b6108d581611822565b60006106d5825490565b6001600160a01b03831661125c5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0382166112d85760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610dd7836001600160a01b0384166118b6565b6001600160a01b0383166113cb5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161065c565b6001600160a01b0382166114475760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161065c565b61148481604051806060016040528060268152602001611f7c602691396001600160a01b0386166000908152600160205260409020549190611507565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546114b39082611533565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061132d9085815260200190565b6000818484111561152b5760405162461bcd60e51b815260040161065c9190611db3565b505050900390565b6000610dd78284611e06565b6001600160a01b0382166115955760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161065c565b6003546115a29082611533565b6003556001600160a01b0382166000908152600160205260409020546115c89082611533565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116199085815260200190565b60405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156116475750600081115b15611784576001600160a01b038316156116ea576001600160a01b0383166000908152600b602052604081205463ffffffff1690816116875760006116ca565b6001600160a01b0385166000908152600a60205260408120906116ab600185611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006116d882856119d3565b90506116e6868484846119df565b5050505b6001600160a01b03821615611784576001600160a01b0382166000908152600b602052604081205463ffffffff169081611725576000611768565b6001600160a01b0384166000908152600a6020526040812090611749600185611e8c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006117768285611533565b9050611107858484846119df565b505050565b6000610dd78383611b81565b6001600160a01b038281166000818152600960208181526040808420805460018452828620549490935287871673ffffffffffffffffffffffffffffffffffffffff198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461181c828483611625565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610dd7836001600160a01b038416611bb9565b6001600160a01b03811660009081526001830160205260408120541515610dd7565b600081815260018301602052604081205480156119c95760006118da600183611e75565b85549091506000906118ee90600190611e75565b905081811461196f57600086600001828154811061191c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061194d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061198e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105ff565b60009150506105ff565b6000610dd78284611e75565b6000611a0343604051806060016040528060368152602001611f1e60369139611c08565b905060008463ffffffff16118015611a5d57506001600160a01b0385166000908152600a6020526040812063ffffffff831691611a41600188611e8c565b63ffffffff908116825260208201929092526040016000205416145b15611aa6576001600160a01b0385166000908152600a602052604081208391611a87600188611e8c565b63ffffffff168152602081019190915260400160002060010155611b36565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600a83528581208a851682529092529390209151825463ffffffff191691161781559051600191820155611b05908590611e1e565b6001600160a01b0386166000908152600b60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000826000018281548110611ba657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6000818152600183016020526040812054611c00575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105ff565b5060006105ff565b6000816401000000008410611c305760405162461bcd60e51b815260040161065c9190611db3565b509192915050565b80356001600160a01b03811681146106d857600080fd5b600060208284031215611c60578081fd5b610dd782611c38565b60008060408385031215611c7b578081fd5b611c8483611c38565b9150611c9260208401611c38565b90509250929050565b600080600060608486031215611caf578081fd5b611cb884611c38565b9250611cc660208501611c38565b9150604084013590509250925092565b60008060408385031215611ce8578182fd5b611cf183611c38565b946020939093013593505050565b60008060008060008060c08789031215611d17578182fd5b611d2087611c38565b95506020870135945060408701359350606087013560ff81168114611d43578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611d6f578182fd5b611d7883611c38565b9150602083013563ffffffff81168114611d90578182fd5b809150509250929050565b600060208284031215611dac578081fd5b5035919050565b6000602080835283518082850152825b81811015611ddf57858101830151858201604001528201611dc3565b81811115611df05783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115611e1957611e19611f07565b500190565b600063ffffffff808316818516808303821115611e3d57611e3d611f07565b01949350505050565b600063ffffffff80841680611e6957634e487b7160e01b83526012600452602483fd5b92169190910492915050565b600082821015611e8757611e87611f07565b500390565b600063ffffffff83811690831681811015611ea957611ea9611f07565b039392505050565b600181811c90821680611ec557607f821691505b60208210811415611ee657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0057611f00611f07565b5060010190565b634e487b7160e01b600052601160045260246000fdfe504c4541524e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eeb3736567ae5b6ca1af134c23b8e458ec16c669b1a88fe152c5d78b1a4a3d4d64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $0.088748 | 64,456.222 | $5,720.36 |
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.