Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 266 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24449685 | 25 days ago | IN | 0 ETH | 0.00008426 | ||||
| Approve | 24443407 | 26 days ago | IN | 0 ETH | 0.0001079 | ||||
| Approve | 24438369 | 27 days ago | IN | 0 ETH | 0.00008215 | ||||
| Approve | 24431602 | 28 days ago | IN | 0 ETH | 0.00010785 | ||||
| Approve | 24418296 | 30 days ago | IN | 0 ETH | 0.00010891 | ||||
| Approve | 24412164 | 30 days ago | IN | 0 ETH | 0.0000036 | ||||
| Approve | 24411717 | 31 days ago | IN | 0 ETH | 0.00003129 | ||||
| Approve | 24410513 | 31 days ago | IN | 0 ETH | 0.00010764 | ||||
| Approve | 24401581 | 32 days ago | IN | 0 ETH | 0.00006507 | ||||
| Approve | 24399758 | 32 days ago | IN | 0 ETH | 0.00004086 | ||||
| Approve | 24399700 | 32 days ago | IN | 0 ETH | 0.00019754 | ||||
| Approve | 24392893 | 33 days ago | IN | 0 ETH | 0.0002549 | ||||
| Approve | 24392816 | 33 days ago | IN | 0 ETH | 0.00027577 | ||||
| Approve | 24392634 | 33 days ago | IN | 0 ETH | 0.00027709 | ||||
| Approve | 24392620 | 33 days ago | IN | 0 ETH | 0.00025133 | ||||
| Approve | 24392619 | 33 days ago | IN | 0 ETH | 0.00025315 | ||||
| Approve | 24392618 | 33 days ago | IN | 0 ETH | 0.00025471 | ||||
| Approve | 24392617 | 33 days ago | IN | 0 ETH | 0.00025049 | ||||
| Approve | 24392616 | 33 days ago | IN | 0 ETH | 0.00025063 | ||||
| Approve | 24392615 | 33 days ago | IN | 0 ETH | 0.00025126 | ||||
| Approve | 24392614 | 33 days ago | IN | 0 ETH | 0.00024876 | ||||
| Approve | 24392613 | 33 days ago | IN | 0 ETH | 0.00025159 | ||||
| Approve | 24392612 | 33 days ago | IN | 0 ETH | 0.0002531 | ||||
| Approve | 24392611 | 33 days ago | IN | 0 ETH | 0.00039062 | ||||
| Approve | 24392579 | 33 days ago | IN | 0 ETH | 0.00012961 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GOKUDelegator
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-29
*/
pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// Storage for a GOKU token
contract GOKUTokenStorage {
using SafeMath for uint256;
/**
* @dev Guard variable for re-entrancy checks. Not currently used
*/
bool internal _notEntered;
/**
* @notice EIP-20 token name for this token
*/
string public name;
/**
* @notice EIP-20 token symbol for this token
*/
string public symbol;
/**
* @notice EIP-20 token decimals for this token
*/
uint8 public decimals;
/**
* @notice Governor for this contract
*/
address public gov;
/**
* @notice Pending governance for this contract
*/
address public pendingGov;
/**
* @notice Approved rebaser for this contract
*/
address public rebaser;
/**
* @notice Reserve address of GOKU protocol
*/
address public incentivizer;
/**
* @notice Airdrop address of GOKU protocol
*/
address public airdrop;
/**
* @notice Total supply of GOKUs
*/
uint256 public totalSupply;
/**
* @notice Internal decimals used to handle scaling factor
*/
uint256 public constant internalDecimals = 10**24;
/**
* @notice Used for percentage maths
*/
uint256 public constant BASE = 10**18;
/**
* @notice Scaling factor that adjusts everyone's balances
*/
uint256 public gokusScalingFactor;
mapping (address => uint256) internal _gokuBalances;
mapping (address => mapping (address => uint256)) internal _allowedFragments;
uint256 public initSupply;
}
contract GOKUGovernanceStorage {
/// @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 => uint) public nonces;
}
contract GOKUTokenInterface is GOKUTokenStorage, GOKUGovernanceStorage {
/// @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, uint previousBalance, uint newBalance);
/**
* @notice Event emitted when tokens are rebased
*/
event Rebase(uint256 epoch, uint256 prevGokusScalingFactor, uint256 newGokusScalingFactor);
/*** Gov Events ***/
/**
* @notice Event emitted when pendingGov is changed
*/
event NewPendingGov(address oldPendingGov, address newPendingGov);
/**
* @notice Event emitted when gov is changed
*/
event NewGov(address oldGov, address newGov);
/**
* @notice Sets the rebaser contract
*/
event NewRebaser(address oldRebaser, address newRebaser);
/**
* @notice Sets the incentivizer contract
*/
event NewIncentivizer(address oldIncentivizer, address newIncentivizer);
/**
* @notice Sets the airdrop contract
*/
event NewAirdrop(address oldAirdrop, address newAirdrop);
/* - ERC20 Events - */
/**
* @notice EIP20 Transfer event
*/
event Transfer(address indexed from, address indexed to, uint amount);
/**
* @notice EIP20 Approval event
*/
event Approval(address indexed owner, address indexed spender, uint amount);
/* - Extra Events - */
/**
* @notice Tokens minted event
*/
event Mint(address to, uint256 amount);
// Public functions
function transfer(address to, uint256 value) external returns(bool);
function transferFrom(address from, address to, uint256 value) external returns(bool);
function balanceOf(address who) external view returns(uint256);
function balanceOfUnderlying(address who) external view returns(uint256);
function allowance(address owner_, address spender) external view returns(uint256);
function approve(address spender, uint256 value) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
function maxScalingFactor() external view returns (uint256);
/* - Governance Functions - */
function getPriorVotes(address account, uint blockNumber) external view returns (uint256);
function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) external;
function delegate(address delegatee) external;
function delegates(address delegator) external view returns (address);
function getCurrentVotes(address account) external view returns (uint256);
/* - Permissioned/Governance functions - */
function mint(address to, uint256 amount) external returns (bool);
function rebase(uint256 epoch, uint256 indexDelta, bool positive) external returns (uint256);
function _setRebaser(address rebaser_) external;
function _setIncentivizer(address incentivizer_) external;
function _setAirdrop(address airdrop_) external;
function _setPendingGov(address pendingGov_) external;
function _acceptGov() external;
}
contract GOKUGovernanceToken is GOKUTokenInterface {
/// @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, uint previousBalance, uint 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,
uint nonce,
uint 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), "GOKU::delegateBySig: invalid signature");
require(nonce == nonces[signatory]++, "GOKU::delegateBySig: invalid nonce");
require(now <= expiry, "GOKU::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, uint blockNumber)
external
view
returns (uint256)
{
require(blockNumber < block.number, "GOKU::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 = _gokuBalances[delegator]; // balance of underlying GOKUs (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, "GOKU::_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(uint n, string memory errorMessage) internal pure returns (uint32) {
require(n < 2**32, errorMessage);
return uint32(n);
}
function getChainId() internal pure returns (uint) {
uint256 chainId;
assembly { chainId := chainid() }
return chainId;
}
}
contract GOKUToken is GOKUGovernanceToken {
// Modifiers
modifier onlyGov() {
require(msg.sender == gov);
_;
}
modifier onlyRebaser() {
require(msg.sender == rebaser);
_;
}
modifier onlyMinter() {
require(msg.sender == rebaser || msg.sender == incentivizer || msg.sender == gov || msg.sender == airdrop, "not minter");
_;
}
modifier validRecipient(address to) {
require(to != address(0x0));
require(to != address(this));
_;
}
function initialize(
string memory name_,
string memory symbol_,
uint8 decimals_
)
public
{
require(gokusScalingFactor == 0, "already initialized");
name = name_;
symbol = symbol_;
decimals = decimals_;
}
/**
* @notice Computes the current max scaling factor
*/
function maxScalingFactor()
external
view
returns (uint256)
{
return _maxScalingFactor();
}
function _maxScalingFactor()
internal
view
returns (uint256)
{
// scaling factor can only go up to 2**256-1 = initSupply * gokusScalingFactor
// this is used to check if gokusScalingFactor will be too high to compute balances when rebasing.
return uint256(-1) / initSupply;
}
/**
* @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
* @dev Limited to onlyMinter modifier
*/
function mint(address to, uint256 amount)
external
onlyMinter
returns (bool)
{
_mint(to, amount);
return true;
}
function _mint(address to, uint256 amount)
internal
{
// increase totalSupply
totalSupply = totalSupply.add(amount);
// get underlying value
uint256 gokuValue = amount.mul(internalDecimals).div(gokusScalingFactor);
// increase initSupply
initSupply = initSupply.add(gokuValue);
// make sure the mint didnt push maxScalingFactor too low
require(gokusScalingFactor <= _maxScalingFactor(), "max scaling factor too low");
// add balance
_gokuBalances[to] = _gokuBalances[to].add(gokuValue);
// add delegates to the minter
_moveDelegates(address(0), _delegates[to], gokuValue);
emit Mint(to, amount);
}
/* - ERC20 functionality - */
/**
* @dev Transfer tokens to a specified address.
* @param to The address to transfer to.
* @param value The amount to be transferred.
* @return True on success, false otherwise.
*/
function transfer(address to, uint256 value)
external
validRecipient(to)
returns (bool)
{
// underlying balance is stored in gokus, so divide by current scaling factor
// note, this means as scaling factor grows, dust will be untransferrable.
// minimum transfer value == gokusScalingFactor / 1e24;
// get amount in underlying
uint256 gokuValue = value.mul(internalDecimals).div(gokusScalingFactor);
// sub from balance of sender
_gokuBalances[msg.sender] = _gokuBalances[msg.sender].sub(gokuValue);
// add to balance of receiver
_gokuBalances[to] = _gokuBalances[to].add(gokuValue);
emit Transfer(msg.sender, to, value);
_moveDelegates(_delegates[msg.sender], _delegates[to], gokuValue);
return true;
}
/**
* @dev Transfer tokens from one address to another.
* @param from The address you want to send tokens from.
* @param to The address you want to transfer to.
* @param value The amount of tokens to be transferred.
*/
function transferFrom(address from, address to, uint256 value)
external
validRecipient(to)
returns (bool)
{
// decrease allowance
_allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);
// get value in gokus
uint256 gokuValue = value.mul(internalDecimals).div(gokusScalingFactor);
// sub from from
_gokuBalances[from] = _gokuBalances[from].sub(gokuValue);
_gokuBalances[to] = _gokuBalances[to].add(gokuValue);
emit Transfer(from, to, value);
_moveDelegates(_delegates[from], _delegates[to], gokuValue);
return true;
}
/**
* @param who The address to query.
* @return The balance of the specified address.
*/
function balanceOf(address who)
external
view
returns (uint256)
{
return _gokuBalances[who].mul(gokusScalingFactor).div(internalDecimals);
}
/** @notice Currently returns the internal storage amount
* @param who The address to query.
* @return The underlying balance of the specified address.
*/
function balanceOfUnderlying(address who)
external
view
returns (uint256)
{
return _gokuBalances[who];
}
/**
* @dev Function to check the amount of tokens that an owner has allowed to a spender.
* @param owner_ The address which owns the funds.
* @param spender The address which will spend the funds.
* @return The number of tokens still available for the spender.
*/
function allowance(address owner_, address spender)
external
view
returns (uint256)
{
return _allowedFragments[owner_][spender];
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of
* msg.sender. This method is included for ERC20 compatibility.
* increaseAllowance and decreaseAllowance should be used instead.
* Changing an allowance with this method brings the risk that someone may transfer both
* the old and the new allowance - if they are both greater than zero - if a transfer
* transaction is mined before the later approve() call is mined.
*
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
*/
function approve(address spender, uint256 value)
external
returns (bool)
{
_allowedFragments[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
/**
* @dev Increase the amount of tokens that an owner has allowed to a spender.
* This method should be used instead of approve() to avoid the double approval vulnerability
* described above.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(address spender, uint256 addedValue)
external
returns (bool)
{
_allowedFragments[msg.sender][spender] =
_allowedFragments[msg.sender][spender].add(addedValue);
emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner has allowed to a spender.
*
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(address spender, uint256 subtractedValue)
external
returns (bool)
{
uint256 oldValue = _allowedFragments[msg.sender][spender];
if (subtractedValue >= oldValue) {
_allowedFragments[msg.sender][spender] = 0;
} else {
_allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
}
emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
return true;
}
/* - Governance Functions - */
/** @notice sets the rebaser
* @param rebaser_ The address of the rebaser contract to use for authentication.
*/
function _setRebaser(address rebaser_)
external
onlyGov
{
address oldRebaser = rebaser;
rebaser = rebaser_;
emit NewRebaser(oldRebaser, rebaser_);
}
/** @notice sets the incentivizer
* @param incentivizer_ The address of the rebaser contract to use for authentication.
*/
function _setIncentivizer(address incentivizer_)
external
onlyGov
{
address oldIncentivizer = incentivizer;
incentivizer = incentivizer_;
emit NewIncentivizer(oldIncentivizer, incentivizer_);
}
/** @notice sets the airdrop
* @param airdrop_ The address of the airdrop contract to use for authentication.
*/
function _setAirdrop(address airdrop_)
external
onlyGov
{
address oldAirdrop = airdrop;
airdrop = airdrop_;
emit NewAirdrop(oldAirdrop, airdrop_);
}
/** @notice sets the pendingGov
* @param pendingGov_ The address of the rebaser contract to use for authentication.
*/
function _setPendingGov(address pendingGov_)
external
onlyGov
{
address oldPendingGov = pendingGov;
pendingGov = pendingGov_;
emit NewPendingGov(oldPendingGov, pendingGov_);
}
/** @notice lets msg.sender accept governance
*
*/
function _acceptGov()
external
{
require(msg.sender == pendingGov, "!pending");
address oldGov = gov;
gov = pendingGov;
pendingGov = address(0);
emit NewGov(oldGov, gov);
}
/* - Extras - */
/**
* @notice Initiates a new rebase operation, provided the minimum time period has elapsed.
*
* @dev The supply adjustment equals (totalSupply * DeviationFromTargetRate) / rebaseLag
* Where DeviationFromTargetRate is (MarketOracleRate - targetRate) / targetRate
* and targetRate is CpiOracleRate / baseCpi
*/
function rebase(
uint256 epoch,
uint256 indexDelta,
bool positive
)
external
onlyRebaser
returns (uint256)
{
if (indexDelta == 0) {
emit Rebase(epoch, gokusScalingFactor, gokusScalingFactor);
return totalSupply;
}
uint256 prevGokusScalingFactor = gokusScalingFactor;
if (!positive) {
gokusScalingFactor = gokusScalingFactor.mul(BASE.sub(indexDelta)).div(BASE);
} else {
uint256 newScalingFactor = gokusScalingFactor.mul(BASE.add(indexDelta)).div(BASE);
if (newScalingFactor < _maxScalingFactor()) {
gokusScalingFactor = newScalingFactor;
} else {
gokusScalingFactor = _maxScalingFactor();
}
}
totalSupply = initSupply.mul(gokusScalingFactor);
emit Rebase(epoch, prevGokusScalingFactor, gokusScalingFactor);
return totalSupply;
}
}
contract GOKU is GOKUToken {
/**
* @notice Initialize the new money market
* @param name_ ERC-20 name of this token
* @param symbol_ ERC-20 symbol of this token
* @param decimals_ ERC-20 decimal precision of this token
*/
function initialize(
string memory name_,
string memory symbol_,
uint8 decimals_,
address initial_owner,
uint256 initSupply_
)
public
{
require(initSupply_ > 0, "0 init supply");
super.initialize(name_, symbol_, decimals_);
initSupply = initSupply_.mul(10**24/ (BASE));
totalSupply = initSupply_;
gokusScalingFactor = BASE;
_gokuBalances[initial_owner] = initSupply_.mul(10**24 / (BASE));
// owner renounces ownership after deployment as they need to set
// rebaser and incentivizer, airdrop
// gov = gov_;
}
}
contract GOKUDelegationStorage {
/**
* @notice Implementation address for this contract
*/
address public implementation;
}
contract GOKUDelegatorInterface is GOKUDelegationStorage {
/**
* @notice Emitted when implementation is changed
*/
event NewImplementation(address oldImplementation, address newImplementation);
/**
* @notice Called by the gov to update the implementation of the delegator
* @param implementation_ The address of the new implementation for delegation
* @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
* @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
*/
function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public;
}
contract GOKUDelegateInterface is GOKUDelegationStorage {
/**
* @notice Called by the delegator on a delegate to initialize it for duty
* @dev Should revert if any issues arise which make it unfit for delegation
* @param data The encoded bytes data for any initialization
*/
function _becomeImplementation(bytes memory data) public;
/**
* @notice Called by the delegator on a delegate to forfeit its responsibility
*/
function _resignImplementation() public;
}
contract GOKUDelegate is GOKU, GOKUDelegateInterface {
/**
* @notice Construct an empty delegate
*/
constructor() public {}
/**
* @notice Called by the delegator on a delegate to initialize it for duty
* @param data The encoded bytes data for any initialization
*/
function _becomeImplementation(bytes memory data) public {
// Shh -- currently unused
data;
// Shh -- we don't ever want this hook to be marked pure
if (false) {
implementation = address(0);
}
require(msg.sender == gov, "only the gov may call _becomeImplementation");
}
/**
* @notice Called by the delegator on a delegate to forfeit its responsibility
*/
function _resignImplementation() public {
// Shh -- we don't ever want this hook to be marked pure
if (false) {
implementation = address(0);
}
require(msg.sender == gov, "only the gov may call _resignImplementation");
}
}
contract GOKUDelegator is GOKUTokenInterface, GOKUDelegatorInterface {
/**
* @notice Construct a new GOKU
* @param name_ ERC-20 name of this token
* @param symbol_ ERC-20 symbol of this token
* @param decimals_ ERC-20 decimal precision of this token
* @param initSupply_ Initial token amount
* @param implementation_ The address of the implementation the contract delegates to
* @param becomeImplementationData The encoded args for becomeImplementation
*/
constructor(
string memory name_,
string memory symbol_,
uint8 decimals_,
uint256 initSupply_,
address implementation_,
bytes memory becomeImplementationData
)
public
{
// Creator of the contract is gov during initialization
gov = msg.sender;
// First delegate gets to initialize the delegator (i.e. storage contract)
delegateTo(
implementation_,
abi.encodeWithSignature(
"initialize(string,string,uint8,address,uint256)",
name_,
symbol_,
decimals_,
msg.sender,
initSupply_
)
);
// New implementations always get set via the settor (post-initialize)
_setImplementation(implementation_, false, becomeImplementationData);
}
/**
* @notice Called by the gov to update the implementation of the delegator
* @param implementation_ The address of the new implementation for delegation
* @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
* @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
*/
function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public {
require(msg.sender == gov, "GOKUDelegator::_setImplementation: Caller must be gov");
if (allowResign) {
delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
}
address oldImplementation = implementation;
implementation = implementation_;
delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));
emit NewImplementation(oldImplementation, implementation);
}
/**
* @notice Sender supplies assets into the market and receives cTokens in exchange
* @dev Accrues interest whether or not the operation succeeds, unless reverted
* @param mintAmount The amount of the underlying asset to supply
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
*/
function mint(address to, uint256 mintAmount)
external
returns (bool)
{
to; mintAmount; // Shh
delegateAndReturn();
}
/**
* @notice Transfer `amount` tokens from `msg.sender` to `dst`
* @param dst The address of the destination account
* @param amount The number of tokens to transfer
* @return Whether or not the transfer succeeded
*/
function transfer(address dst, uint256 amount)
external
returns (bool)
{
dst; amount; // Shh
delegateAndReturn();
}
/**
* @notice Transfer `amount` tokens from `src` to `dst`
* @param src The address of the source account
* @param dst The address of the destination account
* @param amount The number of tokens to transfer
* @return Whether or not the transfer succeeded
*/
function transferFrom(
address src,
address dst,
uint256 amount
)
external
returns (bool)
{
src; dst; amount; // Shh
delegateAndReturn();
}
/**
* @notice Approve `spender` to transfer up to `amount` from `src`
* @dev This will overwrite the approval amount for `spender`
* and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
* @param spender The address of the account which may transfer tokens
* @param amount The number of tokens that are approved (-1 means infinite)
* @return Whether or not the approval succeeded
*/
function approve(
address spender,
uint256 amount
)
external
returns (bool)
{
spender; amount; // Shh
delegateAndReturn();
}
/**
* @dev Increase the amount of tokens that an owner has allowed to a spender.
* This method should be used instead of approve() to avoid the double approval vulnerability
* described above.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(
address spender,
uint256 addedValue
)
external
returns (bool)
{
spender; addedValue; // Shh
delegateAndReturn();
}
function maxScalingFactor()
external
view
returns (uint256)
{
delegateToViewAndReturn();
}
function rebase(
uint256 epoch,
uint256 indexDelta,
bool positive
)
external
returns (uint256)
{
epoch; indexDelta; positive;
delegateAndReturn();
}
/**
* @dev Decrease the amount of tokens that an owner has allowed to a spender.
*
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(
address spender,
uint256 subtractedValue
)
external
returns (bool)
{
spender; subtractedValue; // Shh
delegateAndReturn();
}
/**
* @notice Get the current allowance from `owner` for `spender`
* @param owner The address of the account which owns the tokens to be spent
* @param spender The address of the account which may transfer tokens
* @return The number of tokens allowed to be spent (-1 means infinite)
*/
function allowance(
address owner,
address spender
)
external
view
returns (uint256)
{
owner; spender; // Shh
delegateToViewAndReturn();
}
/**
* @notice Get the current allowance from `owner` for `spender`
* @param delegator The address of the account which has designated a delegate
* @return Address of delegatee
*/
function delegates(
address delegator
)
external
view
returns (address)
{
delegator; // Shh
delegateToViewAndReturn();
}
/**
* @notice Get the token balance of the `owner`
* @param owner The address of the account to query
* @return The number of tokens owned by `owner`
*/
function balanceOf(address owner)
external
view
returns (uint256)
{
owner; // Shh
delegateToViewAndReturn();
}
/**
* @notice Currently unused. For future compatability
* @param owner The address of the account to query
* @return The number of underlying tokens owned by `owner`
*/
function balanceOfUnderlying(address owner)
external
view
returns (uint256)
{
owner; // Shh
delegateToViewAndReturn();
}
/*** Gov Functions ***/
/**
* @notice Begins transfer of gov rights. The newPendingGov must call `_acceptGov` to finalize the transfer.
* @dev Gov function to begin change of gov. The newPendingGov must call `_acceptGov` to finalize the transfer.
* @param newPendingGov New pending gov.
*/
function _setPendingGov(address newPendingGov)
external
{
newPendingGov; // Shh
delegateAndReturn();
}
function _setRebaser(address rebaser_)
external
{
rebaser_; // Shh
delegateAndReturn();
}
function _setIncentivizer(address incentivizer_)
external
{
incentivizer_; // Shh
delegateAndReturn();
}
function _setAirdrop(address airdrop_)
external
{
airdrop_; // Shh
delegateAndReturn();
}
/**
* @notice Accepts transfer of gov rights. msg.sender must be pendingGov
* @dev Gov function for pending gov to accept role and update gov
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
*/
function _acceptGov()
external
{
delegateAndReturn();
}
function getPriorVotes(address account, uint blockNumber)
external
view
returns (uint256)
{
account; blockNumber;
delegateToViewAndReturn();
}
function delegateBySig(
address delegatee,
uint nonce,
uint expiry,
uint8 v,
bytes32 r,
bytes32 s
)
external
{
delegatee; nonce; expiry; v; r; s;
delegateAndReturn();
}
function delegate(address delegatee)
external
{
delegatee;
delegateAndReturn();
}
function getCurrentVotes(address account)
external
view
returns (uint256)
{
account;
delegateToViewAndReturn();
}
/**
* @notice Internal method to delegate execution to another contract
* @dev It returns to the external caller whatever the implementation returns or forwards reverts
* @param callee The contract to delegatecall
* @param data The raw data to delegatecall
* @return The returned bytes from the delegatecall
*/
function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returnData) = callee.delegatecall(data);
assembly {
if eq(success, 0) {
revert(add(returnData, 0x20), returndatasize)
}
}
return returnData;
}
/**
* @notice Delegates execution to the implementation contract
* @dev It returns to the external caller whatever the implementation returns or forwards reverts
* @param data The raw data to delegatecall
* @return The returned bytes from the delegatecall
*/
function delegateToImplementation(bytes memory data) public returns (bytes memory) {
return delegateTo(implementation, data);
}
/**
* @notice Delegates execution to an implementation contract
* @dev It returns to the external caller whatever the implementation returns or forwards reverts
* There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
* @param data The raw data to delegatecall
* @return The returned bytes from the delegatecall
*/
function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
(bool success, bytes memory returnData) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", data));
assembly {
if eq(success, 0) {
revert(add(returnData, 0x20), returndatasize)
}
}
return abi.decode(returnData, (bytes));
}
function delegateToViewAndReturn() private view returns (bytes memory) {
(bool success, ) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", msg.data));
assembly {
let free_mem_ptr := mload(0x40)
returndatacopy(free_mem_ptr, 0, returndatasize)
switch success
case 0 { revert(free_mem_ptr, returndatasize) }
default { return(add(free_mem_ptr, 0x40), returndatasize) }
}
}
function delegateAndReturn() private returns (bytes memory) {
(bool success, ) = implementation.delegatecall(msg.data);
assembly {
let free_mem_ptr := mload(0x40)
returndatacopy(free_mem_ptr, 0, returndatasize)
switch success
case 0 { revert(free_mem_ptr, returndatasize) }
default { return(free_mem_ptr, returndatasize) }
}
}
/**
* @notice Delegates execution to an implementation contract
* @dev It returns to the external caller whatever the implementation returns or forwards reverts
*/
function () external payable {
require(msg.value == 0,"GOKUDelegator:fallback: cannot send value to fallback");
// delegate all other functions to current implementation
delegateAndReturn();
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initSupply_","type":"uint256"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAirdrop","type":"address"},{"indexed":false,"internalType":"address","name":"newAirdrop","type":"address"}],"name":"NewAirdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldIncentivizer","type":"address"},{"indexed":false,"internalType":"address","name":"newIncentivizer","type":"address"}],"name":"NewIncentivizer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRebaser","type":"address"},{"indexed":false,"internalType":"address","name":"newRebaser","type":"address"}],"name":"NewRebaser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevGokusScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newGokusScalingFactor","type":"uint256"}],"name":"Rebase","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"_acceptGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"airdrop_","type":"address"}],"name":"_setAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"incentivizer_","type":"address"}],"name":"_setIncentivizer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingGov","type":"address"}],"name":"_setPendingGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"rebaser_","type":"address"}],"name":"_setRebaser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"airdrop","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"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"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gokusScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"incentivizer","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebaser","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001afc38038062001afc833981016040819052620000349162000329565b60038054610100600160a81b03191633610100810291909117909155604051620000a491849162000070918a918a918a918a9060240162000548565b60408051601f198184030181529190526020810180516001600160e01b03908116636c94522160e01b17909152620000c816565b50620000bc826000836001600160e01b036200014a16565b505050505050620006a5565b606060006060846001600160a01b031684604051620000e8919062000501565b600060405180830381855af49150503d806000811462000125576040519150601f19603f3d011682016040523d82523d6000602084013e6200012a565b606091505b5091509150600082141562000140573d60208201fd5b9150505b92915050565b60035461010090046001600160a01b03163314620001855760405162461bcd60e51b81526004016200017c90620005aa565b60405180910390fd5b8115620001c7576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620001c591906200028216565b505b601180546001600160a01b038581166001600160a01b031983161790925560405191169062000234906200020090849060240162000535565b60408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b179091526200028216565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a91620002749184916001600160a01b03169062000516565b60405180910390a150505050565b60115460609062000144906001600160a01b0316836001600160e01b03620000c816565b8051620001448162000675565b600082601f830112620002c557600080fd5b8151620002dc620002d682620005e3565b620005bc565b91508082526020830160208301858383011115620002f957600080fd5b6200030683828462000638565b50505092915050565b805162000144816200068f565b805162000144816200069a565b60008060008060008060c087890312156200034357600080fd5b86516001600160401b038111156200035a57600080fd5b6200036889828a01620002b3565b96505060208701516001600160401b038111156200038557600080fd5b6200039389828a01620002b3565b9550506040620003a689828a016200031c565b9450506060620003b989828a016200030f565b9350506080620003cc89828a01620002a6565b92505060a08701516001600160401b03811115620003e957600080fd5b620003f789828a01620002b3565b9150509295509295509295565b6200040f816200061d565b82525050565b600062000422826200060b565b6200042e81856200060f565b93506200044081856020860162000638565b6200044b816200066b565b9093019392505050565b600062000462826200060b565b6200046e818562000618565b93506200048081856020860162000638565b9290920192915050565b6000620004996035836200060f565b7f474f4b5544656c656761746f723a3a5f736574496d706c656d656e746174696f81527f6e3a2043616c6c6572206d75737420626520676f760000000000000000000000602082015260400192915050565b6200040f816200062f565b6200040f8162000632565b60006200050f828462000455565b9392505050565b6040810162000526828562000404565b6200050f602083018462000404565b602080825281016200050f818462000415565b60a080825281016200055b818862000415565b9050818103602083015262000571818762000415565b9050620005826040830186620004f6565b62000591606083018562000404565b620005a06080830184620004eb565b9695505050505050565b6020808252810162000144816200048a565b6040518181016001600160401b0381118282101715620005db57600080fd5b604052919050565b60006001600160401b03821115620005fa57600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006001600160a01b03821662000144565b90565b60ff1690565b60005b83811015620006555781810151838201526020016200063b565b8381111562000665576000848401525b50505050565b601f01601f191690565b62000680816200061d565b81146200068c57600080fd5b50565b62000680816200062f565b620006808162000632565b61144780620006b56000396000f3fe60806040526004361061025c5760003560e01c806364dd48f51161014457806398dca210116100b6578063dd62ed3e1161007a578063dd62ed3e146105b8578063e244f286146105d3578063e7a324dc146105e8578063ec342ad0146105fd578063f1127ed814610612578063fa8f3455146104875761025c565b806398dca21014610487578063a457c2d7146102d9578063a9059cbb146102d9578063b4b5ea57146103f5578063c3cda520146105985761025c565b8063782d6fe111610108578063782d6fe1146105135780637af548c1146105335780637ecebe001461054e57806380571b571461048757806395d89b411461056e57806397d63f93146105835761025c565b806364dd48f5146104bc5780636fc6407c146104d15780636fcfff45146104e657806370a08231146103f557806373f03dff146104875761025c565b8063313ce567116101dd5780634487152f116101a15780634487152f146104155780634bda2e2014610435578063555bcc401461044c578063587cde1e1461046c5780635c19a95c146104875780635c60da1b146104a75761025c565b8063313ce567146103be5780633884d635146103e057806339509351146102d95780633af9e669146103f557806340c10f19146102d95761025c565b806312d43a511161022457806312d43a511461034a57806318160ddd1461035f57806320606b701461037457806323b872dd1461038957806325240810146103a95761025c565b806306fdde031461028e5780630933c1ed146102b9578063095ea7b3146102d957806311d3e6c41461030657806311fd8a8314610328575b34156102835760405162461bcd60e51b815260040161027a906112a0565b60405180910390fd5b61028b610640565b50005b34801561029a57600080fd5b506102a36106c0565b6040516102b0919061128f565b60405180910390f35b3480156102c557600080fd5b506102a36102d4366004610f37565b61074d565b3480156102e557600080fd5b506102f96102f4366004610e1b565b61076c565b6040516102b09190611261565b34801561031257600080fd5b5061031b61077d565b6040516102b0919061126f565b34801561033457600080fd5b5061033d61078b565b6040516102b09190611238565b34801561035657600080fd5b5061033d61079a565b34801561036b57600080fd5b5061031b6107ae565b34801561038057600080fd5b5061031b6107b4565b34801561039557600080fd5b506102f96103a4366004610d73565b6107cb565b3480156103b557600080fd5b5061033d6107dd565b3480156103ca57600080fd5b506103d36107ec565b6040516102b091906112e9565b3480156103ec57600080fd5b5061033d6107f5565b34801561040157600080fd5b5061031b610410366004610d1b565b610804565b34801561042157600080fd5b506102a3610430366004610f37565b610814565b34801561044157600080fd5b5061044a6108db565b005b34801561045857600080fd5b5061044a610467366004610dc0565b6108e6565b34801561047857600080fd5b5061033d610410366004610d1b565b34801561049357600080fd5b5061044a6104a2366004610d1b565b610a00565b3480156104b357600080fd5b5061033d610a0c565b3480156104c857600080fd5b5061031b610a1b565b3480156104dd57600080fd5b5061033d610a29565b3480156104f257600080fd5b50610506610501366004610d1b565b610a38565b6040516102b091906112c0565b34801561051f57600080fd5b5061031b61052e366004610e1b565b610a50565b34801561053f57600080fd5b5061031b6103a4366004610f6c565b34801561055a57600080fd5b5061031b610569366004610d1b565b610a5a565b34801561057a57600080fd5b506102a3610a6c565b34801561058f57600080fd5b5061031b610ac4565b3480156105a457600080fd5b5061044a6105b3366004610e4b565b610aca565b3480156105c457600080fd5b5061031b61052e366004610d39565b3480156105df57600080fd5b5061031b610adb565b3480156105f457600080fd5b5061031b610ae1565b34801561060957600080fd5b5061031b610aed565b34801561061e57600080fd5b5061063261062d366004610ed2565b610af9565b6040516102b09291906112ce565b6011546040516060916000916001600160a01b03909116906106659083903690611202565b600060405180830381855af49150503d80600081146106a0576040519150601f19603f3d011682016040523d82523d6000602084013e6106a5565b606091505b505090506040513d6000823e8180156106bc573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b505050505081565b601154606090610766906001600160a01b031683610b26565b92915050565b6000610776610640565b5092915050565b6000610787610b99565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60085481565b6040516107c090611222565b604051809103902081565b60006107d5610640565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b6007546001600160a01b031681565b600061080e610b99565b50919050565b606060006060306001600160a01b031684604051602401610835919061128f565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b1790525161086a919061120f565b600060405180830381855afa9150503d80600081146108a5576040519150601f19603f3d011682016040523d82523d6000602084013e6108aa565b606091505b509150915060008214156108bf573d60208201fd5b808060200190516108d39190810190610f02565b949350505050565b6108e3610640565b50565b60035461010090046001600160a01b031633146109155760405162461bcd60e51b815260040161027a906112b0565b811561094f576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261094d9061074d565b505b601180546001600160a01b038581166001600160a01b03198316179092556040519116906109b49061098590849060240161128f565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b17905261074d565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a916109f29184916001600160a01b031690611246565b60405180910390a150505050565b610a08610640565b5050565b6011546001600160a01b031681565b69d3c21bcecceda100000081565b6006546001600160a01b031681565b600f6020526000908152604090205463ffffffff1681565b6000610776610b99565b60106020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b600c5481565b610ad2610640565b50505050505050565b60095481565b6040516107c09061122d565b670de0b6b3a764000081565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b031684604051610b44919061120f565b600060405180830381855af49150503d8060008114610b7f576040519150601f19603f3d011682016040523d82523d6000602084013e610b84565b606091505b509150915060008214156108d3573d60208201fd5b60606000306001600160a01b0316600036604051602401610bbb92919061127d565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610bf0919061120f565b600060405180830381855afa9150503d8060008114610c2b576040519150601f19603f3d011682016040523d82523d6000602084013e610c30565b606091505b505090506040513d6000823e8180156106bc573d60408301f35b8035610766816113cc565b8035610766816113e0565b8035610766816113e9565b600082601f830112610c7c57600080fd5b8151610c8f610c8a8261131e565b6112f7565b91508082526020830160208301858383011115610cab57600080fd5b610cb6838284611392565b50505092915050565b600082601f830112610cd057600080fd5b8135610cde610c8a8261131e565b91508082526020830160208301858383011115610cfa57600080fd5b610cb6838284611386565b8035610766816113f2565b8035610766816113fb565b600060208284031215610d2d57600080fd5b60006108d38484610c4a565b60008060408385031215610d4c57600080fd5b6000610d588585610c4a565b9250506020610d6985828601610c4a565b9150509250929050565b600080600060608486031215610d8857600080fd5b6000610d948686610c4a565b9350506020610da586828701610c4a565b9250506040610db686828701610c60565b9150509250925092565b600080600060608486031215610dd557600080fd5b6000610de18686610c4a565b9350506020610df286828701610c55565b925050604084013567ffffffffffffffff811115610e0f57600080fd5b610db686828701610cbf565b60008060408385031215610e2e57600080fd5b6000610e3a8585610c4a565b9250506020610d6985828601610c60565b60008060008060008060c08789031215610e6457600080fd5b6000610e708989610c4a565b9650506020610e8189828a01610c60565b9550506040610e9289828a01610c60565b9450506060610ea389828a01610d10565b9350506080610eb489828a01610c60565b92505060a0610ec589828a01610c60565b9150509295509295509295565b60008060408385031215610ee557600080fd5b6000610ef18585610c4a565b9250506020610d6985828601610d05565b600060208284031215610f1457600080fd5b815167ffffffffffffffff811115610f2b57600080fd5b6108d384828501610c6b565b600060208284031215610f4957600080fd5b813567ffffffffffffffff811115610f6057600080fd5b6108d384828501610cbf565b600080600060608486031215610f8157600080fd5b6000610f8d8686610c60565b9350506020610f9e86828701610c60565b9250506040610db686828701610c55565b610fb881611358565b82525050565b610fb881611363565b610fb881611368565b6000610fdc838561134a565b9350610fe9838584611386565b610ff2836113c2565b9093019392505050565b60006110088385611353565b9350611015838584611386565b50500190565b600061102682611346565b611030818561134a565b9350611040818560208601611392565b610ff2816113c2565b600061105482611346565b61105e8185611353565b935061106e818560208601611392565b9290920192915050565b600061108560358361134a565b7f474f4b5544656c656761746f723a66616c6c6261636b3a2063616e6e6f742073815274656e642076616c756520746f2066616c6c6261636b60581b602082015260400192915050565b60006110dc604383611353565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611147603a83611353565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006111a660358361134a565b7f474f4b5544656c656761746f723a3a5f736574496d706c656d656e746174696f815274371d1021b0b63632b91036bab9ba1031329033b7bb60591b602082015260400192915050565b610fb881611377565b610fb881611380565b60006108d3828486610ffc565b600061121b8284611049565b9392505050565b6000610766826110cf565b60006107668261113a565b602081016107668284610faf565b604081016112548285610faf565b61121b6020830184610faf565b602081016107668284610fbe565b602081016107668284610fc7565b602080825281016108d3818486610fd0565b6020808252810161121b818461101b565b6020808252810161076681611078565b6020808252810161076681611199565b6020810161076682846111f0565b604081016112dc82856111f0565b61121b6020830184610fc7565b6020810161076682846111f9565b60405181810167ffffffffffffffff8111828210171561131657600080fd5b604052919050565b600067ffffffffffffffff82111561133557600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006107668261136b565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b82818337506000910152565b60005b838110156113ad578181015183820152602001611395565b838111156113bc576000848401525b50505050565b601f01601f191690565b6113d581611358565b81146108e357600080fd5b6113d581611363565b6113d581611368565b6113d581611377565b6113d58161138056fea365627a7a72315820b1c5a3aedd498d9c7b0d776266c9de4d3e9864ab5d18d9035dfed5e5928e71d86c6578706572696d656e74616cf564736f6c6343000511004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000021e19e0c9bab2400000000000000000000000000000865d60395c630282063d26483e3e84af9e43b88f00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000004474f4b55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474f4b55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806364dd48f51161014457806398dca210116100b6578063dd62ed3e1161007a578063dd62ed3e146105b8578063e244f286146105d3578063e7a324dc146105e8578063ec342ad0146105fd578063f1127ed814610612578063fa8f3455146104875761025c565b806398dca21014610487578063a457c2d7146102d9578063a9059cbb146102d9578063b4b5ea57146103f5578063c3cda520146105985761025c565b8063782d6fe111610108578063782d6fe1146105135780637af548c1146105335780637ecebe001461054e57806380571b571461048757806395d89b411461056e57806397d63f93146105835761025c565b806364dd48f5146104bc5780636fc6407c146104d15780636fcfff45146104e657806370a08231146103f557806373f03dff146104875761025c565b8063313ce567116101dd5780634487152f116101a15780634487152f146104155780634bda2e2014610435578063555bcc401461044c578063587cde1e1461046c5780635c19a95c146104875780635c60da1b146104a75761025c565b8063313ce567146103be5780633884d635146103e057806339509351146102d95780633af9e669146103f557806340c10f19146102d95761025c565b806312d43a511161022457806312d43a511461034a57806318160ddd1461035f57806320606b701461037457806323b872dd1461038957806325240810146103a95761025c565b806306fdde031461028e5780630933c1ed146102b9578063095ea7b3146102d957806311d3e6c41461030657806311fd8a8314610328575b34156102835760405162461bcd60e51b815260040161027a906112a0565b60405180910390fd5b61028b610640565b50005b34801561029a57600080fd5b506102a36106c0565b6040516102b0919061128f565b60405180910390f35b3480156102c557600080fd5b506102a36102d4366004610f37565b61074d565b3480156102e557600080fd5b506102f96102f4366004610e1b565b61076c565b6040516102b09190611261565b34801561031257600080fd5b5061031b61077d565b6040516102b0919061126f565b34801561033457600080fd5b5061033d61078b565b6040516102b09190611238565b34801561035657600080fd5b5061033d61079a565b34801561036b57600080fd5b5061031b6107ae565b34801561038057600080fd5b5061031b6107b4565b34801561039557600080fd5b506102f96103a4366004610d73565b6107cb565b3480156103b557600080fd5b5061033d6107dd565b3480156103ca57600080fd5b506103d36107ec565b6040516102b091906112e9565b3480156103ec57600080fd5b5061033d6107f5565b34801561040157600080fd5b5061031b610410366004610d1b565b610804565b34801561042157600080fd5b506102a3610430366004610f37565b610814565b34801561044157600080fd5b5061044a6108db565b005b34801561045857600080fd5b5061044a610467366004610dc0565b6108e6565b34801561047857600080fd5b5061033d610410366004610d1b565b34801561049357600080fd5b5061044a6104a2366004610d1b565b610a00565b3480156104b357600080fd5b5061033d610a0c565b3480156104c857600080fd5b5061031b610a1b565b3480156104dd57600080fd5b5061033d610a29565b3480156104f257600080fd5b50610506610501366004610d1b565b610a38565b6040516102b091906112c0565b34801561051f57600080fd5b5061031b61052e366004610e1b565b610a50565b34801561053f57600080fd5b5061031b6103a4366004610f6c565b34801561055a57600080fd5b5061031b610569366004610d1b565b610a5a565b34801561057a57600080fd5b506102a3610a6c565b34801561058f57600080fd5b5061031b610ac4565b3480156105a457600080fd5b5061044a6105b3366004610e4b565b610aca565b3480156105c457600080fd5b5061031b61052e366004610d39565b3480156105df57600080fd5b5061031b610adb565b3480156105f457600080fd5b5061031b610ae1565b34801561060957600080fd5b5061031b610aed565b34801561061e57600080fd5b5061063261062d366004610ed2565b610af9565b6040516102b09291906112ce565b6011546040516060916000916001600160a01b03909116906106659083903690611202565b600060405180830381855af49150503d80600081146106a0576040519150601f19603f3d011682016040523d82523d6000602084013e6106a5565b606091505b505090506040513d6000823e8180156106bc573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b505050505081565b601154606090610766906001600160a01b031683610b26565b92915050565b6000610776610640565b5092915050565b6000610787610b99565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60085481565b6040516107c090611222565b604051809103902081565b60006107d5610640565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b6007546001600160a01b031681565b600061080e610b99565b50919050565b606060006060306001600160a01b031684604051602401610835919061128f565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b1790525161086a919061120f565b600060405180830381855afa9150503d80600081146108a5576040519150601f19603f3d011682016040523d82523d6000602084013e6108aa565b606091505b509150915060008214156108bf573d60208201fd5b808060200190516108d39190810190610f02565b949350505050565b6108e3610640565b50565b60035461010090046001600160a01b031633146109155760405162461bcd60e51b815260040161027a906112b0565b811561094f576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261094d9061074d565b505b601180546001600160a01b038581166001600160a01b03198316179092556040519116906109b49061098590849060240161128f565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b17905261074d565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a916109f29184916001600160a01b031690611246565b60405180910390a150505050565b610a08610640565b5050565b6011546001600160a01b031681565b69d3c21bcecceda100000081565b6006546001600160a01b031681565b600f6020526000908152604090205463ffffffff1681565b6000610776610b99565b60106020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b600c5481565b610ad2610640565b50505050505050565b60095481565b6040516107c09061122d565b670de0b6b3a764000081565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b031684604051610b44919061120f565b600060405180830381855af49150503d8060008114610b7f576040519150601f19603f3d011682016040523d82523d6000602084013e610b84565b606091505b509150915060008214156108d3573d60208201fd5b60606000306001600160a01b0316600036604051602401610bbb92919061127d565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610bf0919061120f565b600060405180830381855afa9150503d8060008114610c2b576040519150601f19603f3d011682016040523d82523d6000602084013e610c30565b606091505b505090506040513d6000823e8180156106bc573d60408301f35b8035610766816113cc565b8035610766816113e0565b8035610766816113e9565b600082601f830112610c7c57600080fd5b8151610c8f610c8a8261131e565b6112f7565b91508082526020830160208301858383011115610cab57600080fd5b610cb6838284611392565b50505092915050565b600082601f830112610cd057600080fd5b8135610cde610c8a8261131e565b91508082526020830160208301858383011115610cfa57600080fd5b610cb6838284611386565b8035610766816113f2565b8035610766816113fb565b600060208284031215610d2d57600080fd5b60006108d38484610c4a565b60008060408385031215610d4c57600080fd5b6000610d588585610c4a565b9250506020610d6985828601610c4a565b9150509250929050565b600080600060608486031215610d8857600080fd5b6000610d948686610c4a565b9350506020610da586828701610c4a565b9250506040610db686828701610c60565b9150509250925092565b600080600060608486031215610dd557600080fd5b6000610de18686610c4a565b9350506020610df286828701610c55565b925050604084013567ffffffffffffffff811115610e0f57600080fd5b610db686828701610cbf565b60008060408385031215610e2e57600080fd5b6000610e3a8585610c4a565b9250506020610d6985828601610c60565b60008060008060008060c08789031215610e6457600080fd5b6000610e708989610c4a565b9650506020610e8189828a01610c60565b9550506040610e9289828a01610c60565b9450506060610ea389828a01610d10565b9350506080610eb489828a01610c60565b92505060a0610ec589828a01610c60565b9150509295509295509295565b60008060408385031215610ee557600080fd5b6000610ef18585610c4a565b9250506020610d6985828601610d05565b600060208284031215610f1457600080fd5b815167ffffffffffffffff811115610f2b57600080fd5b6108d384828501610c6b565b600060208284031215610f4957600080fd5b813567ffffffffffffffff811115610f6057600080fd5b6108d384828501610cbf565b600080600060608486031215610f8157600080fd5b6000610f8d8686610c60565b9350506020610f9e86828701610c60565b9250506040610db686828701610c55565b610fb881611358565b82525050565b610fb881611363565b610fb881611368565b6000610fdc838561134a565b9350610fe9838584611386565b610ff2836113c2565b9093019392505050565b60006110088385611353565b9350611015838584611386565b50500190565b600061102682611346565b611030818561134a565b9350611040818560208601611392565b610ff2816113c2565b600061105482611346565b61105e8185611353565b935061106e818560208601611392565b9290920192915050565b600061108560358361134a565b7f474f4b5544656c656761746f723a66616c6c6261636b3a2063616e6e6f742073815274656e642076616c756520746f2066616c6c6261636b60581b602082015260400192915050565b60006110dc604383611353565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611147603a83611353565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006111a660358361134a565b7f474f4b5544656c656761746f723a3a5f736574496d706c656d656e746174696f815274371d1021b0b63632b91036bab9ba1031329033b7bb60591b602082015260400192915050565b610fb881611377565b610fb881611380565b60006108d3828486610ffc565b600061121b8284611049565b9392505050565b6000610766826110cf565b60006107668261113a565b602081016107668284610faf565b604081016112548285610faf565b61121b6020830184610faf565b602081016107668284610fbe565b602081016107668284610fc7565b602080825281016108d3818486610fd0565b6020808252810161121b818461101b565b6020808252810161076681611078565b6020808252810161076681611199565b6020810161076682846111f0565b604081016112dc82856111f0565b61121b6020830184610fc7565b6020810161076682846111f9565b60405181810167ffffffffffffffff8111828210171561131657600080fd5b604052919050565b600067ffffffffffffffff82111561133557600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006107668261136b565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b82818337506000910152565b60005b838110156113ad578181015183820152602001611395565b838111156113bc576000848401525b50505050565b601f01601f191690565b6113d581611358565b81146108e357600080fd5b6113d581611363565b6113d581611368565b6113d581611377565b6113d58161138056fea365627a7a72315820b1c5a3aedd498d9c7b0d776266c9de4d3e9864ab5d18d9035dfed5e5928e71d86c6578706572696d656e74616cf564736f6c63430005110040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000021e19e0c9bab2400000000000000000000000000000865d60395c630282063d26483e3e84af9e43b88f00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000004474f4b55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474f4b55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): GOKU
Arg [1] : symbol_ (string): GOKU
Arg [2] : decimals_ (uint8): 18
Arg [3] : initSupply_ (uint256): 10000000000000000000000
Arg [4] : implementation_ (address): 0x865d60395c630282063D26483e3E84AF9e43b88f
Arg [5] : becomeImplementationData (bytes): 0x
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000021e19e0c9bab2400000
Arg [4] : 000000000000000000000000865d60395c630282063d26483e3e84af9e43b88f
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 474f4b5500000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 474f4b5500000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
33373:13129:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46321:9;:14;46313:79;;;;-1:-1:-1;;;46313:79:0;;;;;;;;;;;;;;;;;46472:19;:17;:19::i;:::-;;33373:13129;5655:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5655:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;44132:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44132:141:0;;;;;;;;:::i;37775:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37775:193:0;;;;;;;;:::i;:::-;;;;;;;;38560:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38560:136:0;;;:::i;:::-;;;;;;;;6143:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6143:22:0;;;:::i;:::-;;;;;;;;5942:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5942:18:0;;;:::i;6431:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6431:26:0;;;:::i;7660:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7660:122:0;;;:::i;37088:217::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37088:217:0;;;;;;;;:::i;6040:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6040:25:0;;;:::i;5851:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5851:21:0;;;:::i;:::-;;;;;;;;6344:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6344:22:0;;;:::i;40926:175::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40926:175:0;;;;;;;;:::i;44695:434::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44695:434:0;;;;;;;;:::i;42263:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42263:83:0;;;:::i;:::-;;35199:639;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35199:639:0;;;;;;;;:::i;40175:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40175:189:0;;;;;;42833:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42833:118:0;;;;;;;;:::i;31019:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31019:29:0;;;:::i;6548:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6548:49:0;;;:::i;6241:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6241:27:0;;;:::i;7538:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7538:49:0;;;;;;;;:::i;:::-;;;;;;;;42356:197;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42356:197:0;;;;;;;;:::i;38704:226::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38704:226:0;;;;;;8074:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8074:39:0;;;;;;;;:::i;5751:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5751:20:0;;;:::i;6981:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6981:25:0;;;:::i;42561:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42561:264:0;;;;;;;;:::i;39743:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39743:216:0;;;;;;6794:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6794:33:0;;;:::i;7876:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7876:117:0;;;:::i;6666:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6666:37:0;;;:::i;7399:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7399:70:0;;;;;;;;:::i;:::-;;;;;;;;;45651:427;45741:14;;:37;;45697:12;;45723;;-1:-1:-1;;;;;45741:14:0;;;;:37;;45723:12;;45769:8;;45741:37;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;45722:56:0;;;45841:4;45835:11;45892:14;45889:1;45875:12;45860:47;45930:7;45951:47;;;;46043:14;46029:12;46022:36;45951:47;45981:14;45967:12;45960:36;5655:18;;;;;;;;;;;;;;;-1:-1:-1;;5655:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44132:141::-;44244:14;;44201:12;;44233:32;;-1:-1:-1;;;;;44244:14:0;44260:4;44233:10;:32::i;:::-;44226:39;44132:141;-1:-1:-1;;44132:141:0:o;37775:193::-;37886:4;37941:19;:17;:19::i;:::-;;37775:193;;;;:::o;38560:136::-;38638:7;38663:25;:23;:25::i;:::-;;38560:136;:::o;6143:22::-;;;-1:-1:-1;;;;;6143:22:0;;:::o;5942:18::-;;;;;;-1:-1:-1;;;;;5942:18:0;;:::o;6431:26::-;;;;:::o;7660:122::-;7702:80;;;;;;;;;;;;;;7660:122;:::o;37088:217::-;37222:4;37278:19;:17;:19::i;:::-;;37088:217;;;;;:::o;6040:25::-;;;-1:-1:-1;;;;;6040:25:0;;:::o;5851:21::-;;;;;;:::o;6344:22::-;;;-1:-1:-1;;;;;6344:22:0;;:::o;40926:175::-;41020:7;41068:25;:23;:25::i;:::-;;40926:175;;;:::o;44695:434::-;44773:12;44799;44813:23;44848:4;-1:-1:-1;;;;;44840:24:0;44924:4;44865:64;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;44865:64:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;44840:90:0;;;44865:64;44840:90;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;44798:132:0;;;;44980:1;44971:7;44968:14;44965:2;;;45032:14;45025:4;45013:10;45009:21;45002:45;44965:2;45101:10;45090:31;;;;;;;;;;;;;;45083:38;44695:434;-1:-1:-1;;;;44695:434:0:o;42263:83::-;42319:19;:17;:19::i;:::-;;42263:83::o;35199:639::-;35349:3;;;;;-1:-1:-1;;;;;35349:3:0;35335:10;:17;35327:83;;;;-1:-1:-1;;;35327:83:0;;;;;;;;;35427:11;35423:120;;;35480:50;;;22:32:-1;6:49;;35480:50:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35455:76:0;;:24;:76::i;:::-;;35423:120;35583:14;;;-1:-1:-1;;;;;35608:32:0;;;-1:-1:-1;;;;;;35608:32:0;;;;;;35678:81;;35583:14;;;35653:107;;35678:81;;35734:24;;35678:81;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;35678:81:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35653:24:0;:107::i;:::-;-1:-1:-1;35815:14:0;;35778:52;;;;;;35796:17;;-1:-1:-1;;;;;35815:14:0;;35778:52;;;;;;;;;;35199:639;;;;:::o;42833:118::-;42924:19;:17;:19::i;:::-;;42833:118;:::o;31019:29::-;;;-1:-1:-1;;;;;31019:29:0;;:::o;6548:49::-;6591:6;6548:49;:::o;6241:27::-;;;-1:-1:-1;;;;;6241:27:0;;:::o;7538:49::-;;;;;;;;;;;;;;;:::o;42356:197::-;42464:7;42520:25;:23;:25::i;8074:39::-;;;;;;;;;;;;;:::o;5751:20::-;;;;;;;;;;;;;;-1:-1:-1;;5751:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6981:25;;;;:::o;42561:264::-;42798:19;:17;:19::i;:::-;;42561:264;;;;;;:::o;6794:33::-;;;;:::o;7876:117::-;7922:71;;;;;;6666:37;6697:6;6666:37;:::o;7399:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43487:343::-;43560:12;43586;43600:23;43627:6;-1:-1:-1;;;;;43627:19:0;43647:4;43627:25;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;43585:67:0;;;;43702:1;43693:7;43690:14;43687:2;;;43754:14;43747:4;43735:10;43731:21;43724:45;45137:506;45194:12;45220;45246:4;-1:-1:-1;;;;;45238:24:0;45322:8;;45263:68;;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;45263:68:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;45238:94:0;;;45263:68;45238:94;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;45219:113:0;;;45395:4;45389:11;45446:14;45443:1;45429:12;45414:47;45484:7;45505:47;;;;45608:14;45601:4;45587:12;45583:23;45576:47;5:130:-1;72:20;;97:33;72:20;97:33;;142:124;206:20;;231:30;206:20;231:30;;273:130;340:20;;365:33;340:20;365:33;;411:434;;519:3;512:4;504:6;500:17;496:27;486:2;;537:1;534;527:12;486:2;567:6;561:13;589:60;604:44;641:6;604:44;;;589:60;;;580:69;;669:6;662:5;655:21;705:4;697:6;693:17;738:4;731:5;727:16;773:3;764:6;759:3;755:16;752:25;749:2;;;790:1;787;780:12;749:2;800:39;832:6;827:3;822;800:39;;;479:366;;;;;;;;854:440;;955:3;948:4;940:6;936:17;932:27;922:2;;973:1;970;963:12;922:2;1010:6;997:20;1032:64;1047:48;1088:6;1047:48;;1032:64;1023:73;;1116:6;1109:5;1102:21;1152:4;1144:6;1140:17;1185:4;1178:5;1174:16;1220:3;1211:6;1206:3;1202:16;1199:25;1196:2;;;1237:1;1234;1227:12;1196:2;1247:41;1281:6;1276:3;1271;1247:41;;1439:128;1505:20;;1530:32;1505:20;1530:32;;1574:126;1639:20;;1664:31;1639:20;1664:31;;1707:241;;1811:2;1799:9;1790:7;1786:23;1782:32;1779:2;;;1827:1;1824;1817:12;1779:2;1862:1;1879:53;1924:7;1904:9;1879:53;;1955:366;;;2076:2;2064:9;2055:7;2051:23;2047:32;2044:2;;;2092:1;2089;2082:12;2044:2;2127:1;2144:53;2189:7;2169:9;2144:53;;;2134:63;;2106:97;2234:2;2252:53;2297:7;2288:6;2277:9;2273:22;2252:53;;;2242:63;;2213:98;2038:283;;;;;;2328:491;;;;2466:2;2454:9;2445:7;2441:23;2437:32;2434:2;;;2482:1;2479;2472:12;2434:2;2517:1;2534:53;2579:7;2559:9;2534:53;;;2524:63;;2496:97;2624:2;2642:53;2687:7;2678:6;2667:9;2663:22;2642:53;;;2632:63;;2603:98;2732:2;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;;;2740:63;;2711:98;2428:391;;;;;;2826:589;;;;2970:2;2958:9;2949:7;2945:23;2941:32;2938:2;;;2986:1;2983;2976:12;2938:2;3021:1;3038:53;3083:7;3063:9;3038:53;;;3028:63;;3000:97;3128:2;3146:50;3188:7;3179:6;3168:9;3164:22;3146:50;;;3136:60;;3107:95;3261:2;3250:9;3246:18;3233:32;3285:18;3277:6;3274:30;3271:2;;;3317:1;3314;3307:12;3271:2;3337:62;3391:7;3382:6;3371:9;3367:22;3337:62;;3422:366;;;3543:2;3531:9;3522:7;3518:23;3514:32;3511:2;;;3559:1;3556;3549:12;3511:2;3594:1;3611:53;3656:7;3636:9;3611:53;;;3601:63;;3573:97;3701:2;3719:53;3764:7;3755:6;3744:9;3740:22;3719:53;;3795:865;;;;;;;3982:3;3970:9;3961:7;3957:23;3953:33;3950:2;;;3999:1;3996;3989:12;3950:2;4034:1;4051:53;4096:7;4076:9;4051:53;;;4041:63;;4013:97;4141:2;4159:53;4204:7;4195:6;4184:9;4180:22;4159:53;;;4149:63;;4120:98;4249:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;;;4257:63;;4228:98;4357:2;4375:51;4418:7;4409:6;4398:9;4394:22;4375:51;;;4365:61;;4336:96;4463:3;4482:53;4527:7;4518:6;4507:9;4503:22;4482:53;;;4472:63;;4442:99;4572:3;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;;;4581:63;;4551:99;3944:716;;;;;;;;;4667:364;;;4787:2;4775:9;4766:7;4762:23;4758:32;4755:2;;;4803:1;4800;4793:12;4755:2;4838:1;4855:53;4900:7;4880:9;4855:53;;;4845:63;;4817:97;4945:2;4963:52;5007:7;4998:6;4987:9;4983:22;4963:52;;5038:352;;5158:2;5146:9;5137:7;5133:23;5129:32;5126:2;;;5174:1;5171;5164:12;5126:2;5209:24;;5253:18;5242:30;;5239:2;;;5285:1;5282;5275:12;5239:2;5305:69;5366:7;5357:6;5346:9;5342:22;5305:69;;5397:345;;5510:2;5498:9;5489:7;5485:23;5481:32;5478:2;;;5526:1;5523;5516:12;5478:2;5561:31;;5612:18;5601:30;;5598:2;;;5644:1;5641;5634:12;5598:2;5664:62;5718:7;5709:6;5698:9;5694:22;5664:62;;5749:485;;;;5884:2;5872:9;5863:7;5859:23;5855:32;5852:2;;;5900:1;5897;5890:12;5852:2;5935:1;5952:53;5997:7;5977:9;5952:53;;;5942:63;;5914:97;6042:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;;;6050:63;;6021:98;6150:2;6168:50;6210:7;6201:6;6190:9;6186:22;6168:50;;6241:113;6324:24;6342:5;6324:24;;;6319:3;6312:37;6306:48;;;6361:104;6438:21;6453:5;6438:21;;6472:113;6555:24;6573:5;6555:24;;6615:297;;6729:70;6792:6;6787:3;6729:70;;;6722:77;;6811:43;6847:6;6842:3;6835:5;6811:43;;;6876:29;6898:6;6876:29;;;6867:39;;;;6715:197;-1:-1;;;6715:197;6943:310;;7075:88;7156:6;7151:3;7075:88;;;7068:95;;7175:43;7211:6;7206:3;7199:5;7175:43;;;-1:-1;;7231:16;;7061:192;7261:343;;7371:38;7403:5;7371:38;;;7421:70;7484:6;7479:3;7421:70;;;7414:77;;7496:52;7541:6;7536:3;7529:4;7522:5;7518:16;7496:52;;;7569:29;7591:6;7569:29;;7611:356;;7739:38;7771:5;7739:38;;;7789:88;7870:6;7865:3;7789:88;;;7782:95;;7882:52;7927:6;7922:3;7915:4;7908:5;7904:16;7882:52;;;7946:16;;;;;7719:248;-1:-1;;7719:248;8321:390;;8481:67;8545:2;8540:3;8481:67;;;8581:34;8561:55;;-1:-1;;;8645:2;8636:12;;8629:45;8702:2;8693:12;;8467:244;-1:-1;;8467:244;8720:477;;8898:85;8980:2;8975:3;8898:85;;;9016:34;8996:55;;9085:34;9080:2;9071:12;;9064:56;-1:-1;;;9149:2;9140:12;;9133:27;9188:2;9179:12;;8884:313;-1:-1;;8884:313;9206:431;;9384:85;9466:2;9461:3;9384:85;;;9502:34;9482:55;;9571:28;9566:2;9557:12;;9550:50;9628:2;9619:12;;9370:267;-1:-1;;9370:267;9646:390;;9806:67;9870:2;9865:3;9806:67;;;9906:34;9886:55;;-1:-1;;;9970:2;9961:12;;9954:45;10027:2;10018:12;;9792:244;-1:-1;;9792:244;10164:110;10245:23;10262:5;10245:23;;10281:107;10360:22;10376:5;10360:22;;10395:282;;10549:103;10648:3;10639:6;10631;10549:103;;10684:262;;10828:93;10917:3;10908:6;10828:93;;;10821:100;10809:137;-1:-1;;;10809:137;10953:372;;11152:148;11296:3;11152:148;;11332:372;;11531:148;11675:3;11531:148;;11711:213;11829:2;11814:18;;11843:71;11818:9;11887:6;11843:71;;11931:324;12077:2;12062:18;;12091:71;12066:9;12135:6;12091:71;;;12173:72;12241:2;12230:9;12226:18;12217:6;12173:72;;12262:201;12374:2;12359:18;;12388:65;12363:9;12426:6;12388:65;;12470:213;12588:2;12573:18;;12602:71;12577:9;12646:6;12602:71;;12690:317;12836:2;12850:47;;;12821:18;;12911:86;12821:18;12983:6;12975;12911:86;;13014:297;13150:2;13164:47;;;13135:18;;13225:76;13135:18;13287:6;13225:76;;13618:407;13809:2;13823:47;;;13794:18;;13884:131;13794:18;13884:131;;14032:407;14223:2;14237:47;;;14208:18;;14298:131;14208:18;14298:131;;14666:209;14782:2;14767:18;;14796:69;14771:9;14838:6;14796:69;;14882:320;15026:2;15011:18;;15040:69;15015:9;15082:6;15040:69;;;15120:72;15188:2;15177:9;15173:18;15164:6;15120:72;;15209:205;15323:2;15308:18;;15337:67;15312:9;15377:6;15337:67;;15421:256;15483:2;15477:9;15509:17;;;15584:18;15569:34;;15605:22;;;15566:62;15563:2;;;15641:1;15638;15631:12;15563:2;15657;15650:22;15461:216;;-1:-1;15461:216;15684:317;;15823:18;15815:6;15812:30;15809:2;;;15855:1;15852;15845:12;15809:2;-1:-1;15986:4;15922;15899:17;;;;-1:-1;;15895:33;15976:15;;15746:255;16336:121;16423:12;;16394:63;16590:162;16692:19;;;16741:4;16732:14;;16685:67;16761:144;16896:3;16874:31;-1:-1;16874:31;17239:91;;17301:24;17319:5;17301:24;;17337:85;17403:13;17396:21;;17379:43;17429:72;17491:5;17474:27;17508:121;-1:-1;;;;;17570:54;;17553:76;17715:88;17787:10;17776:22;;17759:44;17810:81;17881:4;17870:16;;17853:38;17899:145;17980:6;17975:3;17970;17957:30;-1:-1;18036:1;18018:16;;18011:27;17950:94;18053:268;18118:1;18125:101;18139:6;18136:1;18133:13;18125:101;;;18206:11;;;18200:18;18187:11;;;18180:39;18161:2;18154:10;18125:101;;;18241:6;18238:1;18235:13;18232:2;;;18306:1;18297:6;18292:3;18288:16;18281:27;18232:2;18102:219;;;;;18329:97;18417:2;18397:14;-1:-1;;18393:28;;18377:49;18434:117;18503:24;18521:5;18503:24;;;18496:5;18493:35;18483:2;;18542:1;18539;18532:12;18558:111;18624:21;18639:5;18624:21;;18676:117;18745:24;18763:5;18745:24;;18924:115;18992:23;19009:5;18992:23;;19046:113;19113:22;19129:5;19113:22;
Swarm Source
bzzr://b1c5a3aedd498d9c7b0d776266c9de4d3e9864ab5d18d9035dfed5e5928e71d8
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.