Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
66,753,278.623842333701523492 DONDI
Holders
912
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
DONDIDelegator
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-15 */ 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 DONDI token contract DONDITokenStorage { 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; mapping(address => bool) public minter; /** * @notice Reserve address of DONDI protocol */ address public incentivizer; /** * @notice Total supply of DONDIs */ 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 dondisScalingFactor; mapping (address => uint256) internal _dondiBalances; mapping (address => mapping (address => uint256)) internal _allowedFragments; uint256 public initSupply; } contract DONDIGovernanceStorage { /// @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 DONDITokenInterface is DONDITokenStorage, DONDIGovernanceStorage { /// @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 prevDondisScalingFactor, uint256 newDondisScalingFactor); /*** 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); event NewMinter(address newMinter); event RemoveMinter(address removeMinter); /* - 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 _setMinter(address minter_) external; function _setPendingGov(address pendingGov_) external; function _acceptGov() external; } contract DONDIGovernanceToken is DONDITokenInterface { /// @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), "DONDI::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "DONDI::delegateBySig: invalid nonce"); require(now <= expiry, "DONDI::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, "DONDI::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 = _dondiBalances[delegator]; // balance of underlying DONDIs (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, "DONDI::_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 DONDIToken is DONDIGovernanceToken { // 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 || minter[msg.sender] == true, "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(dondisScalingFactor == 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 * dondisScalingFactor // this is used to check if dondisScalingFactor 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 dondiValue = amount.mul(internalDecimals).div(dondisScalingFactor); // increase initSupply initSupply = initSupply.add(dondiValue); // make sure the mint didnt push maxScalingFactor too low require(dondisScalingFactor <= _maxScalingFactor(), "max scaling factor too low"); // add balance _dondiBalances[to] = _dondiBalances[to].add(dondiValue); // add delegates to the minter _moveDelegates(address(0), _delegates[to], dondiValue); 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 dondis, so divide by current scaling factor // note, this means as scaling factor grows, dust will be untransferrable. // minimum transfer value == dondisScalingFactor / 1e24; // get amount in underlying uint256 dondiValue = value.mul(internalDecimals).div(dondisScalingFactor); // sub from balance of sender _dondiBalances[msg.sender] = _dondiBalances[msg.sender].sub(dondiValue); // add to balance of receiver _dondiBalances[to] = _dondiBalances[to].add(dondiValue); emit Transfer(msg.sender, to, value); _moveDelegates(_delegates[msg.sender], _delegates[to], dondiValue); 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 dondis uint256 dondiValue = value.mul(internalDecimals).div(dondisScalingFactor); // sub from from _dondiBalances[from] = _dondiBalances[from].sub(dondiValue); _dondiBalances[to] = _dondiBalances[to].add(dondiValue); emit Transfer(from, to, value); _moveDelegates(_delegates[from], _delegates[to], dondiValue); return true; } /** * @param who The address to query. * @return The balance of the specified address. */ function balanceOf(address who) external view returns (uint256) { return _dondiBalances[who].mul(dondisScalingFactor).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 _dondiBalances[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_); } function _setMinter(address minter_) external onlyGov { minter[minter_] = true; emit NewMinter(minter_); } function _removeMinter(address minter_) external onlyGov { minter[minter_] = false; emit RemoveMinter(minter_); } /** @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, dondisScalingFactor, dondisScalingFactor); return totalSupply; } uint256 prevDondisScalingFactor = dondisScalingFactor; if (!positive) { dondisScalingFactor = dondisScalingFactor.mul(BASE.sub(indexDelta)).div(BASE); } else { uint256 newScalingFactor = dondisScalingFactor.mul(BASE.add(indexDelta)).div(BASE); if (newScalingFactor < _maxScalingFactor()) { dondisScalingFactor = newScalingFactor; } else { dondisScalingFactor = _maxScalingFactor(); } } totalSupply = initSupply.mul(dondisScalingFactor); emit Rebase(epoch, prevDondisScalingFactor, dondisScalingFactor); return totalSupply; } } contract DONDI is DONDIToken { /** * @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_; dondisScalingFactor = BASE; _dondiBalances[initial_owner] = initSupply_.mul(10**24 / (BASE)); // owner renounces ownership after deployment as they need to set // rebaser and incentivizer // gov = gov_; } } contract DONDIDelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } contract DONDIDelegatorInterface is DONDIDelegationStorage { /** * @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 DONDIDelegateInterface is DONDIDelegationStorage { /** * @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 DONDIDelegate is DONDI, DONDIDelegateInterface { /** * @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 DONDIDelegator is DONDITokenInterface, DONDIDelegatorInterface { /** * @notice Construct a new DONDI * @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, "DONDIDelegator::_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 _setMinter(address minter_) external { minter_; 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,"DONDIDelegator: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
[{"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":"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":"newMinter","type":"address"}],"name":"NewMinter","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":"prevDondisScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDondisScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"removeMinter","type":"address"}],"name":"RemoveMinter","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":"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":"minter_","type":"address"}],"name":"_setMinter","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":[{"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":[],"name":"dondisScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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
60806040523480156200001157600080fd5b5060405162001b0f38038062001b0f833981016040819052620000349162000329565b60038054610100600160a81b03191633610100810291909117909155604051620000a491849162000070918a918a918a918a9060240162000548565b60408051601f198184030181529190526020810180516001600160e01b03908116636c94522160e01b17909152620000c816565b50620000bc826000836001600160e01b036200014a16565b505050505050620006a5565b606060006060846001600160a01b031684604051620000e8919062000501565b600060405180830381855af49150503d806000811462000125576040519150601f19603f3d011682016040523d82523d6000602084013e6200012a565b606091505b5091509150600082141562000140573d60208201fd5b9150505b92915050565b60035461010090046001600160a01b03163314620001855760405162461bcd60e51b81526004016200017c90620005aa565b60405180910390fd5b8115620001c7576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620001c591906200028216565b505b601180546001600160a01b038581166001600160a01b031983161790925560405191169062000234906200020090849060240162000535565b60408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b179091526200028216565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a91620002749184916001600160a01b03169062000516565b60405180910390a150505050565b60115460609062000144906001600160a01b0316836001600160e01b03620000c816565b8051620001448162000675565b600082601f830112620002c557600080fd5b8151620002dc620002d682620005e3565b620005bc565b91508082526020830160208301858383011115620002f957600080fd5b6200030683828462000638565b50505092915050565b805162000144816200068f565b805162000144816200069a565b60008060008060008060c087890312156200034357600080fd5b86516001600160401b038111156200035a57600080fd5b6200036889828a01620002b3565b96505060208701516001600160401b038111156200038557600080fd5b6200039389828a01620002b3565b9550506040620003a689828a016200031c565b9450506060620003b989828a016200030f565b9350506080620003cc89828a01620002a6565b92505060a08701516001600160401b03811115620003e957600080fd5b620003f789828a01620002b3565b9150509295509295509295565b6200040f816200061d565b82525050565b600062000422826200060b565b6200042e81856200060f565b93506200044081856020860162000638565b6200044b816200066b565b9093019392505050565b600062000462826200060b565b6200046e818562000618565b93506200048081856020860162000638565b9290920192915050565b6000620004996036836200060f565b7f444f4e444944656c656761746f723a3a5f736574496d706c656d656e7461746981527f6f6e3a2043616c6c6572206d75737420626520676f7600000000000000000000602082015260400192915050565b6200040f816200062f565b6200040f8162000632565b60006200050f828462000455565b9392505050565b6040810162000526828562000404565b6200050f602083018462000404565b602080825281016200050f818462000415565b60a080825281016200055b818862000415565b9050818103602083015262000571818762000415565b9050620005826040830186620004f6565b62000591606083018562000404565b620005a06080830184620004eb565b9695505050505050565b6020808252810162000144816200048a565b6040518181016001600160401b0381118282101715620005db57600080fd5b604052919050565b60006001600160401b03821115620005fa57600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006001600160a01b03821662000144565b90565b60ff1690565b60005b83811015620006555781810151838201526020016200063b565b8381111562000665576000848401525b50505050565b601f01601f191690565b62000680816200061d565b81146200068c57600080fd5b50565b62000680816200062f565b620006808162000632565b61145a80620006b56000396000f3fe60806040526004361061025c5760003560e01c80635c60da1b1161014457806398dca210116100b6578063c3cda5201161007a578063c3cda520146105b8578063dd62ed3e146105d8578063e7a324dc146105f3578063ec342ad014610608578063f1127ed81461061d578063fa8f3455146103895761025c565b806398dca21014610389578063a1a88ff7146105a3578063a457c2d7146102d9578063a9059cbb146102d9578063b4b5ea57146104025761025c565b806373f03dff1161010857806373f03dff14610389578063782d6fe11461051e5780637af548c11461053e5780637ecebe001461055957806395d89b411461057957806397d63f931461058e5761025c565b80635c60da1b146104b257806364dd48f5146104c75780636fc6407c146104dc5780636fcfff45146104f157806370a08231146104025761025c565b806325240810116101dd57806340c10f19116101a157806340c10f19146102d95780634487152f146104425780634bda2e2014610462578063555bcc4014610477578063587cde1e146104975780635c19a95c146103895761025c565b806325240810146103cb578063313ce567146103e057806339509351146102d95780633af9e669146104025780633dd08c38146104225761025c565b806312d43a511161022457806312d43a511461034a57806318160ddd1461035f57806320606b70146103745780632373f0911461038957806323b872dd146103ab5761025c565b806306fdde031461028e5780630933c1ed146102b9578063095ea7b3146102d957806311d3e6c41461030657806311fd8a8314610328575b34156102835760405162461bcd60e51b815260040161027a906112b3565b60405180910390fd5b61028b61064b565b50005b34801561029a57600080fd5b506102a36106cb565b6040516102b091906112a2565b60405180910390f35b3480156102c557600080fd5b506102a36102d4366004610f48565b610758565b3480156102e557600080fd5b506102f96102f4366004610e2c565b610777565b6040516102b09190611274565b34801561031257600080fd5b5061031b610788565b6040516102b09190611282565b34801561033457600080fd5b5061033d610796565b6040516102b0919061124b565b34801561035657600080fd5b5061033d6107a5565b34801561036b57600080fd5b5061031b6107b9565b34801561038057600080fd5b5061031b6107bf565b34801561039557600080fd5b506103a96103a4366004610d2c565b6107d6565b005b3480156103b757600080fd5b506102f96103c6366004610d84565b6107e2565b3480156103d757600080fd5b5061033d6107f4565b3480156103ec57600080fd5b506103f5610803565b6040516102b091906112fc565b34801561040e57600080fd5b5061031b61041d366004610d2c565b61080c565b34801561042e57600080fd5b506102f961043d366004610d2c565b61081c565b34801561044e57600080fd5b506102a361045d366004610f48565b610831565b34801561046e57600080fd5b506103a96108f8565b34801561048357600080fd5b506103a9610492366004610dd1565b610903565b3480156104a357600080fd5b5061033d61041d366004610d2c565b3480156104be57600080fd5b5061033d610a1d565b3480156104d357600080fd5b5061031b610a2c565b3480156104e857600080fd5b5061033d610a3a565b3480156104fd57600080fd5b5061051161050c366004610d2c565b610a49565b6040516102b091906112d3565b34801561052a57600080fd5b5061031b610539366004610e2c565b610a61565b34801561054a57600080fd5b5061031b6103c6366004610f7d565b34801561056557600080fd5b5061031b610574366004610d2c565b610a6b565b34801561058557600080fd5b506102a3610a7d565b34801561059a57600080fd5b5061031b610ad5565b3480156105af57600080fd5b5061031b610adb565b3480156105c457600080fd5b506103a96105d3366004610e5c565b610ae1565b3480156105e457600080fd5b5061031b610539366004610d4a565b3480156105ff57600080fd5b5061031b610af2565b34801561061457600080fd5b5061031b610afe565b34801561062957600080fd5b5061063d610638366004610ee3565b610b0a565b6040516102b09291906112e1565b6011546040516060916000916001600160a01b03909116906106709083903690611215565b600060405180830381855af49150503d80600081146106ab576040519150601f19603f3d011682016040523d82523d6000602084013e6106b0565b606091505b505090506040513d6000823e8180156106c7573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b505050505081565b601154606090610771906001600160a01b031683610b37565b92915050565b600061078161064b565b5092915050565b6000610792610baa565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60085481565b6040516107cb90611235565b604051809103902081565b6107de61064b565b5050565b60006107ec61064b565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b6000610816610baa565b50919050565b60066020526000908152604090205460ff1681565b606060006060306001600160a01b03168460405160240161085291906112a2565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b179052516108879190611222565b600060405180830381855afa9150503d80600081146108c2576040519150601f19603f3d011682016040523d82523d6000602084013e6108c7565b606091505b509150915060008214156108dc573d60208201fd5b808060200190516108f09190810190610f13565b949350505050565b61090061064b565b50565b60035461010090046001600160a01b031633146109325760405162461bcd60e51b815260040161027a906112c3565b811561096c576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261096a90610758565b505b601180546001600160a01b038581166001600160a01b03198316179092556040519116906109d1906109a29084906024016112a2565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b179052610758565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a91610a0f9184916001600160a01b031690611259565b60405180910390a150505050565b6011546001600160a01b031681565b69d3c21bcecceda100000081565b6007546001600160a01b031681565b600f6020526000908152604090205463ffffffff1681565b6000610781610baa565b60106020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107505780601f1061072557610100808354040283529160200191610750565b600c5481565b60095481565b610ae961064b565b50505050505050565b6040516107cb90611240565b670de0b6b3a764000081565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b031684604051610b559190611222565b600060405180830381855af49150503d8060008114610b90576040519150601f19603f3d011682016040523d82523d6000602084013e610b95565b606091505b509150915060008214156108f0573d60208201fd5b60606000306001600160a01b0316600036604051602401610bcc929190611290565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610c019190611222565b600060405180830381855afa9150503d8060008114610c3c576040519150601f19603f3d011682016040523d82523d6000602084013e610c41565b606091505b505090506040513d6000823e8180156106c7573d60408301f35b8035610771816113df565b8035610771816113f3565b8035610771816113fc565b600082601f830112610c8d57600080fd5b8151610ca0610c9b82611331565b61130a565b91508082526020830160208301858383011115610cbc57600080fd5b610cc78382846113a5565b50505092915050565b600082601f830112610ce157600080fd5b8135610cef610c9b82611331565b91508082526020830160208301858383011115610d0b57600080fd5b610cc7838284611399565b803561077181611405565b80356107718161140e565b600060208284031215610d3e57600080fd5b60006108f08484610c5b565b60008060408385031215610d5d57600080fd5b6000610d698585610c5b565b9250506020610d7a85828601610c5b565b9150509250929050565b600080600060608486031215610d9957600080fd5b6000610da58686610c5b565b9350506020610db686828701610c5b565b9250506040610dc786828701610c71565b9150509250925092565b600080600060608486031215610de657600080fd5b6000610df28686610c5b565b9350506020610e0386828701610c66565b925050604084013567ffffffffffffffff811115610e2057600080fd5b610dc786828701610cd0565b60008060408385031215610e3f57600080fd5b6000610e4b8585610c5b565b9250506020610d7a85828601610c71565b60008060008060008060c08789031215610e7557600080fd5b6000610e818989610c5b565b9650506020610e9289828a01610c71565b9550506040610ea389828a01610c71565b9450506060610eb489828a01610d21565b9350506080610ec589828a01610c71565b92505060a0610ed689828a01610c71565b9150509295509295509295565b60008060408385031215610ef657600080fd5b6000610f028585610c5b565b9250506020610d7a85828601610d16565b600060208284031215610f2557600080fd5b815167ffffffffffffffff811115610f3c57600080fd5b6108f084828501610c7c565b600060208284031215610f5a57600080fd5b813567ffffffffffffffff811115610f7157600080fd5b6108f084828501610cd0565b600080600060608486031215610f9257600080fd5b6000610f9e8686610c71565b9350506020610faf86828701610c71565b9250506040610dc786828701610c66565b610fc98161136b565b82525050565b610fc981611376565b610fc98161137b565b6000610fed838561135d565b9350610ffa838584611399565b611003836113d5565b9093019392505050565b60006110198385611366565b9350611026838584611399565b50500190565b600061103782611359565b611041818561135d565b93506110518185602086016113a5565b611003816113d5565b600061106582611359565b61106f8185611366565b935061107f8185602086016113a5565b9290920192915050565b600061109660368361135d565b7f444f4e444944656c656761746f723a66616c6c6261636b3a2063616e6e6f742081527573656e642076616c756520746f2066616c6c6261636b60501b602082015260400192915050565b60006110ee604383611366565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611159603a83611366565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006111b860368361135d565b7f444f4e444944656c656761746f723a3a5f736574496d706c656d656e7461746981527537b71d1021b0b63632b91036bab9ba1031329033b7bb60511b602082015260400192915050565b610fc98161138a565b610fc981611393565b60006108f082848661100d565b600061122e828461105a565b9392505050565b6000610771826110e1565b60006107718261114c565b602081016107718284610fc0565b604081016112678285610fc0565b61122e6020830184610fc0565b602081016107718284610fcf565b602081016107718284610fd8565b602080825281016108f0818486610fe1565b6020808252810161122e818461102c565b6020808252810161077181611089565b60208082528101610771816111ab565b602081016107718284611203565b604081016112ef8285611203565b61122e6020830184610fd8565b60208101610771828461120c565b60405181810167ffffffffffffffff8111828210171561132957600080fd5b604052919050565b600067ffffffffffffffff82111561134857600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006107718261137e565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b82818337506000910152565b60005b838110156113c05781810151838201526020016113a8565b838111156113cf576000848401525b50505050565b601f01601f191690565b6113e88161136b565b811461090057600080fd5b6113e881611376565b6113e88161137b565b6113e88161138a565b6113e88161139356fea365627a7a72315820964e3a5e5143a8ee03a8a4afa65ed17854a9b8c45db089d61e22d9d623f38fb26c6578706572696d656e74616cf564736f6c6343000511004000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000003a6d08f8131fee10f139edb8e27df2827bdf95a800000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000005446f6e64690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444f4e44490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80635c60da1b1161014457806398dca210116100b6578063c3cda5201161007a578063c3cda520146105b8578063dd62ed3e146105d8578063e7a324dc146105f3578063ec342ad014610608578063f1127ed81461061d578063fa8f3455146103895761025c565b806398dca21014610389578063a1a88ff7146105a3578063a457c2d7146102d9578063a9059cbb146102d9578063b4b5ea57146104025761025c565b806373f03dff1161010857806373f03dff14610389578063782d6fe11461051e5780637af548c11461053e5780637ecebe001461055957806395d89b411461057957806397d63f931461058e5761025c565b80635c60da1b146104b257806364dd48f5146104c75780636fc6407c146104dc5780636fcfff45146104f157806370a08231146104025761025c565b806325240810116101dd57806340c10f19116101a157806340c10f19146102d95780634487152f146104425780634bda2e2014610462578063555bcc4014610477578063587cde1e146104975780635c19a95c146103895761025c565b806325240810146103cb578063313ce567146103e057806339509351146102d95780633af9e669146104025780633dd08c38146104225761025c565b806312d43a511161022457806312d43a511461034a57806318160ddd1461035f57806320606b70146103745780632373f0911461038957806323b872dd146103ab5761025c565b806306fdde031461028e5780630933c1ed146102b9578063095ea7b3146102d957806311d3e6c41461030657806311fd8a8314610328575b34156102835760405162461bcd60e51b815260040161027a906112b3565b60405180910390fd5b61028b61064b565b50005b34801561029a57600080fd5b506102a36106cb565b6040516102b091906112a2565b60405180910390f35b3480156102c557600080fd5b506102a36102d4366004610f48565b610758565b3480156102e557600080fd5b506102f96102f4366004610e2c565b610777565b6040516102b09190611274565b34801561031257600080fd5b5061031b610788565b6040516102b09190611282565b34801561033457600080fd5b5061033d610796565b6040516102b0919061124b565b34801561035657600080fd5b5061033d6107a5565b34801561036b57600080fd5b5061031b6107b9565b34801561038057600080fd5b5061031b6107bf565b34801561039557600080fd5b506103a96103a4366004610d2c565b6107d6565b005b3480156103b757600080fd5b506102f96103c6366004610d84565b6107e2565b3480156103d757600080fd5b5061033d6107f4565b3480156103ec57600080fd5b506103f5610803565b6040516102b091906112fc565b34801561040e57600080fd5b5061031b61041d366004610d2c565b61080c565b34801561042e57600080fd5b506102f961043d366004610d2c565b61081c565b34801561044e57600080fd5b506102a361045d366004610f48565b610831565b34801561046e57600080fd5b506103a96108f8565b34801561048357600080fd5b506103a9610492366004610dd1565b610903565b3480156104a357600080fd5b5061033d61041d366004610d2c565b3480156104be57600080fd5b5061033d610a1d565b3480156104d357600080fd5b5061031b610a2c565b3480156104e857600080fd5b5061033d610a3a565b3480156104fd57600080fd5b5061051161050c366004610d2c565b610a49565b6040516102b091906112d3565b34801561052a57600080fd5b5061031b610539366004610e2c565b610a61565b34801561054a57600080fd5b5061031b6103c6366004610f7d565b34801561056557600080fd5b5061031b610574366004610d2c565b610a6b565b34801561058557600080fd5b506102a3610a7d565b34801561059a57600080fd5b5061031b610ad5565b3480156105af57600080fd5b5061031b610adb565b3480156105c457600080fd5b506103a96105d3366004610e5c565b610ae1565b3480156105e457600080fd5b5061031b610539366004610d4a565b3480156105ff57600080fd5b5061031b610af2565b34801561061457600080fd5b5061031b610afe565b34801561062957600080fd5b5061063d610638366004610ee3565b610b0a565b6040516102b09291906112e1565b6011546040516060916000916001600160a01b03909116906106709083903690611215565b600060405180830381855af49150503d80600081146106ab576040519150601f19603f3d011682016040523d82523d6000602084013e6106b0565b606091505b505090506040513d6000823e8180156106c7573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b505050505081565b601154606090610771906001600160a01b031683610b37565b92915050565b600061078161064b565b5092915050565b6000610792610baa565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60085481565b6040516107cb90611235565b604051809103902081565b6107de61064b565b5050565b60006107ec61064b565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b6000610816610baa565b50919050565b60066020526000908152604090205460ff1681565b606060006060306001600160a01b03168460405160240161085291906112a2565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b179052516108879190611222565b600060405180830381855afa9150503d80600081146108c2576040519150601f19603f3d011682016040523d82523d6000602084013e6108c7565b606091505b509150915060008214156108dc573d60208201fd5b808060200190516108f09190810190610f13565b949350505050565b61090061064b565b50565b60035461010090046001600160a01b031633146109325760405162461bcd60e51b815260040161027a906112c3565b811561096c576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261096a90610758565b505b601180546001600160a01b038581166001600160a01b03198316179092556040519116906109d1906109a29084906024016112a2565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b179052610758565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a91610a0f9184916001600160a01b031690611259565b60405180910390a150505050565b6011546001600160a01b031681565b69d3c21bcecceda100000081565b6007546001600160a01b031681565b600f6020526000908152604090205463ffffffff1681565b6000610781610baa565b60106020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107505780601f1061072557610100808354040283529160200191610750565b600c5481565b60095481565b610ae961064b565b50505050505050565b6040516107cb90611240565b670de0b6b3a764000081565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b031684604051610b559190611222565b600060405180830381855af49150503d8060008114610b90576040519150601f19603f3d011682016040523d82523d6000602084013e610b95565b606091505b509150915060008214156108f0573d60208201fd5b60606000306001600160a01b0316600036604051602401610bcc929190611290565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610c019190611222565b600060405180830381855afa9150503d8060008114610c3c576040519150601f19603f3d011682016040523d82523d6000602084013e610c41565b606091505b505090506040513d6000823e8180156106c7573d60408301f35b8035610771816113df565b8035610771816113f3565b8035610771816113fc565b600082601f830112610c8d57600080fd5b8151610ca0610c9b82611331565b61130a565b91508082526020830160208301858383011115610cbc57600080fd5b610cc78382846113a5565b50505092915050565b600082601f830112610ce157600080fd5b8135610cef610c9b82611331565b91508082526020830160208301858383011115610d0b57600080fd5b610cc7838284611399565b803561077181611405565b80356107718161140e565b600060208284031215610d3e57600080fd5b60006108f08484610c5b565b60008060408385031215610d5d57600080fd5b6000610d698585610c5b565b9250506020610d7a85828601610c5b565b9150509250929050565b600080600060608486031215610d9957600080fd5b6000610da58686610c5b565b9350506020610db686828701610c5b565b9250506040610dc786828701610c71565b9150509250925092565b600080600060608486031215610de657600080fd5b6000610df28686610c5b565b9350506020610e0386828701610c66565b925050604084013567ffffffffffffffff811115610e2057600080fd5b610dc786828701610cd0565b60008060408385031215610e3f57600080fd5b6000610e4b8585610c5b565b9250506020610d7a85828601610c71565b60008060008060008060c08789031215610e7557600080fd5b6000610e818989610c5b565b9650506020610e9289828a01610c71565b9550506040610ea389828a01610c71565b9450506060610eb489828a01610d21565b9350506080610ec589828a01610c71565b92505060a0610ed689828a01610c71565b9150509295509295509295565b60008060408385031215610ef657600080fd5b6000610f028585610c5b565b9250506020610d7a85828601610d16565b600060208284031215610f2557600080fd5b815167ffffffffffffffff811115610f3c57600080fd5b6108f084828501610c7c565b600060208284031215610f5a57600080fd5b813567ffffffffffffffff811115610f7157600080fd5b6108f084828501610cd0565b600080600060608486031215610f9257600080fd5b6000610f9e8686610c71565b9350506020610faf86828701610c71565b9250506040610dc786828701610c66565b610fc98161136b565b82525050565b610fc981611376565b610fc98161137b565b6000610fed838561135d565b9350610ffa838584611399565b611003836113d5565b9093019392505050565b60006110198385611366565b9350611026838584611399565b50500190565b600061103782611359565b611041818561135d565b93506110518185602086016113a5565b611003816113d5565b600061106582611359565b61106f8185611366565b935061107f8185602086016113a5565b9290920192915050565b600061109660368361135d565b7f444f4e444944656c656761746f723a66616c6c6261636b3a2063616e6e6f742081527573656e642076616c756520746f2066616c6c6261636b60501b602082015260400192915050565b60006110ee604383611366565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611159603a83611366565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006111b860368361135d565b7f444f4e444944656c656761746f723a3a5f736574496d706c656d656e7461746981527537b71d1021b0b63632b91036bab9ba1031329033b7bb60511b602082015260400192915050565b610fc98161138a565b610fc981611393565b60006108f082848661100d565b600061122e828461105a565b9392505050565b6000610771826110e1565b60006107718261114c565b602081016107718284610fc0565b604081016112678285610fc0565b61122e6020830184610fc0565b602081016107718284610fcf565b602081016107718284610fd8565b602080825281016108f0818486610fe1565b6020808252810161122e818461102c565b6020808252810161077181611089565b60208082528101610771816111ab565b602081016107718284611203565b604081016112ef8285611203565b61122e6020830184610fd8565b60208101610771828461120c565b60405181810167ffffffffffffffff8111828210171561132957600080fd5b604052919050565b600067ffffffffffffffff82111561134857600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006107718261137e565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b82818337506000910152565b60005b838110156113c05781810151838201526020016113a8565b838111156113cf576000848401525b50505050565b601f01601f191690565b6113e88161136b565b811461090057600080fd5b6113e881611376565b6113e88161137b565b6113e88161138a565b6113e88161139356fea365627a7a72315820964e3a5e5143a8ee03a8a4afa65ed17854a9b8c45db089d61e22d9d623f38fb26c6578706572696d656e74616cf564736f6c63430005110040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000003a6d08f8131fee10f139edb8e27df2827bdf95a800000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000005446f6e64690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444f4e44490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Dondi
Arg [1] : symbol_ (string): DONDI
Arg [2] : decimals_ (uint8): 18
Arg [3] : initSupply_ (uint256): 50000000000000000000000000
Arg [4] : implementation_ (address): 0x3a6D08F8131feE10f139EDb8e27DF2827bDf95a8
Arg [5] : becomeImplementationData (bytes): 0x
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [4] : 0000000000000000000000003a6d08f8131fee10f139edb8e27df2827bdf95a8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 446f6e6469000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 444f4e4449000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
33351:13125:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46294:9;:14;46286:80;;;;-1:-1:-1;;;46286:80:0;;;;;;;;;;;;;;;;;46446:19;:17;:19::i;:::-;;33351:13125;5657:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5657:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;44105:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44105:141:0;;;;;;;;:::i;37758:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37758:193:0;;;;;;;;:::i;:::-;;;;;;;;38543:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38543:136:0;;;:::i;:::-;;;;;;;;6145:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6145:22:0;;;:::i;:::-;;;;;;;;5944:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5944:18:0;;;:::i;6384:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6384:26:0;;;:::i;7616:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7616:122:0;;;:::i;41852:116::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;41852:116:0;;;;;;;;:::i;:::-;;37071:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37071:217:0;;;;;;;;:::i;6042:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6042:25:0;;;:::i;5853:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5853:21:0;;;:::i;:::-;;;;;;;;40909:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40909:175:0;;;;;;;;:::i;6176:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6176:38:0;;;;;;;;:::i;44668:434::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44668:434:0;;;;;;;;:::i;42236:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42236:83:0;;;:::i;35181:640::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35181:640:0;;;;;;;;:::i;40158:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40158:189:0;;;;;;30990:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30990:29:0;;;:::i;6501:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6501:49:0;;;:::i;6291:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6291:27:0;;;:::i;7494:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7494:49:0;;;;;;;;:::i;:::-;;;;;;;;42329:197;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42329:197:0;;;;;;;;:::i;38687:226::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38687:226:0;;;;;;8030:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8030:39:0;;;;;;;;:::i;5753:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5753:20:0;;;:::i;6936:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6936:25:0;;;:::i;6747:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6747:34:0;;;:::i;42534:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42534:264:0;;;;;;;;:::i;39726:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39726:216:0;;;;;;7832:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7832:117:0;;;:::i;6619:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6619:37:0;;;:::i;7355:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7355:70:0;;;;;;;;:::i;:::-;;;;;;;;;45624:427;45714:14;;:37;;45670:12;;45696;;-1:-1:-1;;;;;45714:14:0;;;;:37;;45696:12;;45742:8;;45714: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;;45695:56:0;;;45814:4;45808:11;45865:14;45862:1;45848:12;45833:47;45903:7;45924:47;;;;46016:14;46002:12;45995:36;45924:47;45954:14;45940:12;45933:36;5657:18;;;;;;;;;;;;;;;-1:-1:-1;;5657:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44105:141::-;44217:14;;44174:12;;44206:32;;-1:-1:-1;;;;;44217:14:0;44233:4;44206:10;:32::i;:::-;44199:39;44105:141;-1:-1:-1;;44105:141:0:o;37758:193::-;37869:4;37924:19;:17;:19::i;:::-;;37758:193;;;;:::o;38543:136::-;38621:7;38646:25;:23;:25::i;:::-;;38543:136;:::o;6145:22::-;;;-1:-1:-1;;;;;6145:22:0;;:::o;5944:18::-;;;;;;-1:-1:-1;;;;;5944:18:0;;:::o;6384:26::-;;;;:::o;7616:122::-;7658:80;;;;;;;;;;;;;;7616:122;:::o;41852:116::-;41941:19;:17;:19::i;:::-;;41852:116;:::o;37071:217::-;37205:4;37261:19;:17;:19::i;:::-;;37071:217;;;;;:::o;6042:25::-;;;-1:-1:-1;;;;;6042:25:0;;:::o;5853:21::-;;;;;;:::o;40909:175::-;41003:7;41051:25;:23;:25::i;:::-;;40909:175;;;:::o;6176:38::-;;;;;;;;;;;;;;;:::o;44668:434::-;44746:12;44772;44786:23;44821:4;-1:-1:-1;;;;;44813:24:0;44897:4;44838:64;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;44838:64:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;44813:90:0;;;44838:64;44813: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;;44771:132:0;;;;44953:1;44944:7;44941:14;44938:2;;;45005:14;44998:4;44986:10;44982:21;44975:45;44938:2;45074:10;45063:31;;;;;;;;;;;;;;45056:38;44668:434;-1:-1:-1;;;;44668:434:0:o;42236:83::-;42292:19;:17;:19::i;:::-;;42236:83::o;35181:640::-;35331:3;;;;;-1:-1:-1;;;;;35331:3:0;35317:10;:17;35309:84;;;;-1:-1:-1;;;35309:84:0;;;;;;;;;35410:11;35406:120;;;35463:50;;;22:32:-1;6:49;;35463:50:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35438:76:0;;:24;:76::i;:::-;;35406:120;35566:14;;;-1:-1:-1;;;;;35591:32:0;;;-1:-1:-1;;;;;;35591:32:0;;;;;;35661:81;;35566:14;;;35636:107;;35661:81;;35717:24;;35661:81;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;35661:81:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35636:24:0;:107::i;:::-;-1:-1:-1;35798:14:0;;35761:52;;;;;;35779:17;;-1:-1:-1;;;;;35798:14:0;;35761:52;;;;;;;;;;35181:640;;;;:::o;30990:29::-;;;-1:-1:-1;;;;;30990:29:0;;:::o;6501:49::-;6544:6;6501:49;:::o;6291:27::-;;;-1:-1:-1;;;;;6291:27:0;;:::o;7494:49::-;;;;;;;;;;;;;;;:::o;42329:197::-;42437:7;42493:25;:23;:25::i;8030:39::-;;;;;;;;;;;;;:::o;5753:20::-;;;;;;;;;;;;;;-1:-1:-1;;5753:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6936:25;;;;:::o;6747:34::-;;;;:::o;42534:264::-;42771:19;:17;:19::i;:::-;;42534:264;;;;;;:::o;7832:117::-;7878:71;;;;;;6619:37;6650:6;6619:37;:::o;7355:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43460:343::-;43533:12;43559;43573:23;43600:6;-1:-1:-1;;;;;43600:19:0;43620:4;43600: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;;43558:67:0;;;;43675:1;43666:7;43663:14;43660:2;;;43727:14;43720:4;43708:10;43704:21;43697:45;45110:506;45167:12;45193;45219:4;-1:-1:-1;;;;;45211:24:0;45295:8;;45236:68;;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;45236:68:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;45211:94:0;;;45236:68;45211: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;;45192:113:0;;;45368:4;45362:11;45419:14;45416:1;45402:12;45387:47;45457:7;45478:47;;;;45581:14;45574:4;45560:12;45556:23;45549: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:391;;8481:67;8545:2;8540:3;8481:67;;;8581:34;8561:55;;-1:-1;;;8645:2;8636:12;;8629:46;8703:2;8694:12;;8467:245;-1:-1;;8467:245;8721:477;;8899:85;8981:2;8976:3;8899:85;;;9017:34;8997:55;;9086:34;9081:2;9072:12;;9065:56;-1:-1;;;9150:2;9141:12;;9134:27;9189:2;9180:12;;8885:313;-1:-1;;8885:313;9207:431;;9385:85;9467:2;9462:3;9385:85;;;9503:34;9483:55;;9572:28;9567:2;9558:12;;9551:50;9629:2;9620:12;;9371:267;-1:-1;;9371:267;9647:391;;9807:67;9871:2;9866:3;9807:67;;;9907:34;9887:55;;-1:-1;;;9971:2;9962:12;;9955:46;10029:2;10020:12;;9793:245;-1:-1;;9793:245;10166:110;10247:23;10264:5;10247:23;;10283:107;10362:22;10378:5;10362:22;;10397:282;;10551:103;10650:3;10641:6;10633;10551:103;;10686:262;;10830:93;10919:3;10910:6;10830:93;;;10823:100;10811:137;-1:-1;;;10811:137;10955:372;;11154:148;11298:3;11154:148;;11334:372;;11533:148;11677:3;11533:148;;11713:213;11831:2;11816:18;;11845:71;11820:9;11889:6;11845:71;;11933:324;12079:2;12064:18;;12093:71;12068:9;12137:6;12093:71;;;12175:72;12243:2;12232:9;12228:18;12219:6;12175:72;;12264:201;12376:2;12361:18;;12390:65;12365:9;12428:6;12390:65;;12472:213;12590:2;12575:18;;12604:71;12579:9;12648:6;12604:71;;12692:317;12838:2;12852:47;;;12823:18;;12913:86;12823:18;12985:6;12977;12913:86;;13016:297;13152:2;13166:47;;;13137:18;;13227:76;13137:18;13289:6;13227:76;;13620:407;13811:2;13825:47;;;13796:18;;13886:131;13796:18;13886:131;;14034:407;14225:2;14239:47;;;14210:18;;14300:131;14210:18;14300:131;;14668:209;14784:2;14769:18;;14798:69;14773:9;14840:6;14798:69;;14884:320;15028:2;15013:18;;15042:69;15017:9;15084:6;15042:69;;;15122:72;15190:2;15179:9;15175:18;15166:6;15122:72;;15211:205;15325:2;15310:18;;15339:67;15314:9;15379:6;15339:67;;15423:256;15485:2;15479:9;15511:17;;;15586:18;15571:34;;15607:22;;;15568:62;15565:2;;;15643:1;15640;15633:12;15565:2;15659;15652:22;15463:216;;-1:-1;15463:216;15686:317;;15825:18;15817:6;15814:30;15811:2;;;15857:1;15854;15847:12;15811:2;-1:-1;15988:4;15924;15901:17;;;;-1:-1;;15897:33;15978:15;;15748:255;16338:121;16425:12;;16396:63;16592:162;16694:19;;;16743:4;16734:14;;16687:67;16763:144;16898:3;16876:31;-1:-1;16876:31;17241:91;;17303:24;17321:5;17303:24;;17339:85;17405:13;17398:21;;17381:43;17431:72;17493:5;17476:27;17510:121;-1:-1;;;;;17572:54;;17555:76;17717:88;17789:10;17778:22;;17761:44;17812:81;17883:4;17872:16;;17855:38;17901:145;17982:6;17977:3;17972;17959:30;-1:-1;18038:1;18020:16;;18013:27;17952:94;18055:268;18120:1;18127:101;18141:6;18138:1;18135:13;18127:101;;;18208:11;;;18202:18;18189:11;;;18182:39;18163:2;18156:10;18127:101;;;18243:6;18240:1;18237:13;18234:2;;;18308:1;18299:6;18294:3;18290:16;18283:27;18234:2;18104:219;;;;;18331:97;18419:2;18399:14;-1:-1;;18395:28;;18379:49;18436:117;18505:24;18523:5;18505:24;;;18498:5;18495:35;18485:2;;18544:1;18541;18534:12;18560:111;18626:21;18641:5;18626:21;;18678:117;18747:24;18765:5;18747:24;;18926:115;18994:23;19011:5;18994:23;;19048:113;19115:22;19131:5;19115:22;
Swarm Source
bzzr://964e3a5e5143a8ee03a8a4afa65ed17854a9b8c45db089d61e22d9d623f38fb2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.