Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 986 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20633620 | 92 days ago | IN | 0 ETH | 0.00003859 | ||||
Approve | 20633606 | 92 days ago | IN | 0 ETH | 0.00003881 | ||||
Approve | 20633605 | 92 days ago | IN | 0 ETH | 0.00003794 | ||||
Approve | 20633603 | 92 days ago | IN | 0 ETH | 0.00003786 | ||||
Approve | 20479465 | 114 days ago | IN | 0 ETH | 0.00008915 | ||||
Approve | 20479465 | 114 days ago | IN | 0 ETH | 0.00008911 | ||||
Approve | 19251484 | 286 days ago | IN | 0 ETH | 0.00039435 | ||||
Approve | 19251439 | 286 days ago | IN | 0 ETH | 0.00037298 | ||||
Approve | 19251429 | 286 days ago | IN | 0 ETH | 0.00042929 | ||||
Approve | 19185485 | 295 days ago | IN | 0 ETH | 0.00125513 | ||||
Approve | 19160434 | 299 days ago | IN | 0 ETH | 0.00036391 | ||||
Approve | 17892161 | 476 days ago | IN | 0 ETH | 0.00134913 | ||||
Approve | 17881658 | 478 days ago | IN | 0 ETH | 0.00040103 | ||||
Approve | 17881462 | 478 days ago | IN | 0 ETH | 0.00035818 | ||||
Approve | 17881460 | 478 days ago | IN | 0 ETH | 0.00037959 | ||||
Approve | 17301655 | 559 days ago | IN | 0 ETH | 0.00191213 | ||||
Approve | 17264318 | 564 days ago | IN | 0 ETH | 0.00197945 | ||||
Approve | 17246819 | 567 days ago | IN | 0 ETH | 0.00257117 | ||||
Approve | 17240963 | 568 days ago | IN | 0 ETH | 0.00301157 | ||||
Approve | 16977941 | 605 days ago | IN | 0 ETH | 0.00197388 | ||||
Approve | 16868733 | 620 days ago | IN | 0 ETH | 0.00070433 | ||||
Approve | 16833388 | 625 days ago | IN | 0 ETH | 0.00180474 | ||||
Approve | 16709103 | 643 days ago | IN | 0 ETH | 0.0008981 | ||||
Approve | 16700079 | 644 days ago | IN | 0 ETH | 0.00133298 | ||||
Approve | 16560292 | 664 days ago | IN | 0 ETH | 0.00076541 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PYEToken
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Arrays.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./interfaces/IPYE.sol"; contract PYEToken is Context, IPYE, Ownable, ERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => bool) isBlacklisted; mapping (address => bool) isStakingContract; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; //--------------------------------------BEGIN TOKEN HOLDER INFO---------| struct Staked { uint256 amount; } address[] holders; mapping (address => uint256) holderIndexes; mapping (address => Staked) public staked; uint256 public totalStaked; constructor() ERC20("PYE","PYE") { _name = "PYE"; _symbol = "PYE"; _decimals = 9; _totalSupply = 10 * 10**9 * 10**9; // 10 Billion _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() public override(ERC20, IPYE) view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) public override(ERC20, IPYE) view returns (uint256) { return _balances[account]; } /** * @dev returns the owned amount of tokens, including tokens that are staked in main pool. Balance qualifies for tier privileges. */ function getOwnedBalance(address account) external view returns (uint256){ return staked[account].amount.add(_balances[account]); } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public override(ERC20, IPYE) returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) public override(ERC20, IPYE) view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override(ERC20, IPYE) returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public override(ERC20, IPYE) returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal override { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); require(!isBlacklisted[recipient]); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); if(isStakingContract[recipient]) { uint256 newAmountAdd = staked[sender].amount.add(amount); setStaked(sender, newAmountAdd); } if(isStakingContract[sender]) { uint256 newAmountSub = staked[recipient].amount.sub(amount); setStaked(recipient, newAmountSub); } emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal override { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } //--------------------------------------BEGIN SHARE FUNCTIONS---------| function setStaked(address holder, uint256 amount) internal { if(amount > 0 && staked[holder].amount == 0){ addHolder(holder); }else if(amount == 0 && staked[holder].amount > 0){ removeHolder(holder); } totalStaked = totalStaked.sub(staked[holder].amount).add(amount); staked[holder].amount = amount; } function addHolder(address holder) internal { holderIndexes[holder] = holders.length; holders.push(holder); } function removeHolder(address holder) internal { holders[holderIndexes[holder]] = holders[holders.length-1]; holderIndexes[holders[holders.length-1]] = holderIndexes[holder]; holders.pop(); } // set an address as a staking contract function setIsStakingContract(address account, bool set) external onlyOwner { isStakingContract[account] = set; } //--------------------------------------BEGIN BLACKLIST FUNCTIONS---------| // enter an address to blacklist it. This blocks transfers TO that address. Balcklisted members can still sell. function blacklistAddress(address addressToBlacklist) external onlyOwner { require(!isBlacklisted[addressToBlacklist] , "Address is already blacklisted!"); isBlacklisted[addressToBlacklist] = true; } // enter a currently blacklisted address to un-blacklist it. function removeFromBlacklist(address addressToRemove) external onlyOwner { require(isBlacklisted[addressToRemove] , "Address has not been blacklisted! Enter an address that is on the blacklist."); isBlacklisted[addressToRemove] = false; } //--------------------------------------BEGIN RESCUE FUNCTIONS---------| // Rescue eth that is sent here by mistake function rescueETH(uint256 amount, address to) external onlyOwner { payable(to).transfer(amount); } // Rescue tokens that are sent here by mistake function rescueToken(IERC20 token, uint256 amount, address to) external onlyOwner { if( token.balanceOf(address(this)) < amount ) { amount = token.balanceOf(address(this)); } token.transfer(to, amount); } // -------------------------------------BEGIN MODIFIED SNAPSHOT FUNCTIONS--------------------| //@ dev a direct, modified implementation of ERC20 snapshot designed to track totalOwnedBalance (the sum of balanceOf(acct) and staked.amount of that acct), as opposed // to just balanceOf(acct). totalSupply is tracked normally via _tTotal in the totalSupply() function. using Arrays for uint256[]; using Counters for Counters.Counter; Counters.Counter private _currentSnapshotId; struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; event Snapshot(uint256 id); // owner can manually call a snapshot. function snapshot() public onlyOwner { _snapshot(); } function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } function getCurrentSnapshotID() public view onlyOwner returns (uint256) { return _getCurrentSnapshotId(); } // modified to also read users staked balance. function totalBalanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : (balanceOf(account).add(staked[account].amount)); } function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } // modified to also add staked[acct].amount function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], (balanceOf(account).add(staked[account].amount))); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IPYE { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToBlacklist","type":"address"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentSnapshotID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getOwnedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToRemove","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"set","type":"bool"}],"name":"setIsStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"staked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalBalanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600381526020016250594560e81b8152506040518060400160405280600381526020016250594560e81b815250620000646200005e6200015e60201b60201c565b62000162565b815162000079906004906020850190620001b2565b5080516200008f906005906020840190620001b2565b50506040805180820190915260038082526250594560e81b6020909201918252620000bf9250600d9190620001b2565b506040805180820190915260038082526250594560e81b6020909201918252620000ec91600c91620001b2565b50600b805460ff19166009179055678ac7230489e80000600a8190553360008181526006602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001509190815260200190565b60405180910390a362000294565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c09062000258565b90600052602060002090601f016020900481019282620001e457600085556200022f565b82601f10620001ff57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022f57825182559160200191906001019062000212565b506200023d92915062000241565b5090565b5b808211156200023d576000815560010162000242565b600181811c908216806200026d57607f821691505b6020821081036200028e57634e487b7160e01b600052602260045260246000fd5b50919050565b61219880620002a46000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c806382ccff89116100f9578063a0558c3f11610097578063dd62ed3e11610071578063dd62ed3e146103c2578063f2fde38b14610408578063f3290d751461041b578063f8a67a621461042e57600080fd5b8063a0558c3f14610389578063a457c2d71461039c578063a9059cbb146103af57600080fd5b806395d89b41116100d357806395d89b41146103465780639711715a1461034e578063981b24d01461035657806398807d841461036957600080fd5b806382ccff89146102e1578063893d20e8146102e95780638da5cb5b1461032857600080fd5b80633bf33976116101665780636ed52e68116101405780636ed52e681461028757806370a082311461029a578063715018a6146102d0578063817b1cd2146102d857600080fd5b80633bf339761461024c578063537df3b61461025f5780636baa9a571461027457600080fd5b806323b872dd1161019757806323b872dd14610211578063313ce56714610224578063395093511461023957600080fd5b806306fdde03146101be578063095ea7b3146101dc57806318160ddd146101ff575b600080fd5b6101c6610441565b6040516101d39190611d5b565b60405180910390f35b6101ef6101ea366004611df0565b6104d3565b60405190151581526020016101d3565b600a545b6040519081526020016101d3565b6101ef61021f366004611e1c565b6104ea565b600b5460405160ff90911681526020016101d3565b6101ef610247366004611df0565b610560565b61020361025a366004611df0565b6105a3565b61027261026d366004611e5d565b61062e565b005b610203610282366004611e5d565b6107db565b610272610295366004611e88565b610815565b6102036102a8366004611e5d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b6102726108ec565b61020360115481565b610203610979565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d3565b60005473ffffffffffffffffffffffffffffffffffffffff16610303565b6101c6610a08565b610272610a17565b610203610364366004611ec1565b610aa3565b610203610377366004611e5d565b60106020526000908152604090205481565b610272610397366004611eda565b610ace565b6101ef6103aa366004611df0565b610b97565b6101ef6103bd366004611df0565b610bf3565b6102036103d0366004611eff565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205490565b610272610416366004611e5d565b610c00565b610272610429366004611e5d565b610d2d565b61027261043c366004611f2d565b610e8d565b6060600d805461045090611f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461047c90611f6f565b80156104c95780601f1061049e576101008083540402835291602001916104c9565b820191906000526020600020905b8154815290600101906020018083116104ac57829003601f168201915b5050505050905090565b60006104e03384846110d4565b5060015b92915050565b60006104f7848484611288565b6105568433610551856040518060600160405280602881526020016120f06028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260096020908152604080832033845290915290205491906115d5565b6110d4565b5060019392505050565b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104e0918590610551908661161b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601360205260408120819081906105d790859061162e565b91509150816106235773ffffffffffffffffffffffffffffffffffffffff851660009081526010602090815260408083205460069092529091205461061e91905b9061161b565b610625565b805b95945050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff1661078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604c60248201527f4164647265737320686173206e6f74206265656e20626c61636b6c697374656460448201527f2120456e74657220616e20616464726573732074686174206973206f6e20746860648201527f6520626c61636b6c6973742e0000000000000000000000000000000000000000608482015260a4016106ab565b73ffffffffffffffffffffffffffffffffffffffff16600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602090815260408083205460109092528220546104e49161161b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b610977600061175f565b565b6000805473ffffffffffffffffffffffffffffffffffffffff1633146109fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b610a036117d4565b905090565b6060600c805461045090611f6f565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b610aa06117df565b50565b6000806000610ab384601461162e565b9150915081610ac457600a54610ac6565b805b949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b60405173ffffffffffffffffffffffffffffffffffffffff82169083156108fc029084906000818181858888f19350505050158015610b92573d6000803e3d6000fd5b505050565b60006104e033846105518560405180606001604052806025815260200161213e6025913933600090815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d16845290915290205491906115d5565b60006104e0338484611288565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff8116610d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ab565b610aa08161175f565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff1615610e3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4164647265737320697320616c726561647920626c61636b6c6973746564210060448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff16600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610f7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9e9190611fc2565b1015611035576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561100e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110329190611fc2565b91505b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af11580156110aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190611fdb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611176576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8216611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff82166113ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205460ff161561140157600080fd5b61140c838383611839565b611456816040518060600160405280602681526020016121186026913973ffffffffffffffffffffffffffffffffffffffff861660009081526006602052604090205491906115d5565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600660205260408082209390935590841681522054611492908261161b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602090815260408083209390935560089052205460ff161561150a5773ffffffffffffffffffffffffffffffffffffffff83166000908152601060205260408120546114fc908361161b565b9050611508848261189b565b505b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16156115765773ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604081205461156890836119fd565b9050611574838261189b565b505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127b91815260200190565b60008184841115611613576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab9190611d5b565b505050900390565b60006116278284612027565b9392505050565b6000806000841161169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a20696420697320300000000000000000000060448201526064016106ab565b6116a36117d4565b84111561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e7420696400000060448201526064016106ab565b60006117188486611a09565b84549091508103611730576000809250925050611758565b60018460010182815481106117475761174761203f565b906000526020600020015492509250505b9250929050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a0360125490565b60006117ef601280546001019055565b60006117f96117d4565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161182c91815260200190565b60405180910390a1919050565b73ffffffffffffffffffffffffffffffffffffffff83166118655761185d82611ace565b610b92611b19565b73ffffffffffffffffffffffffffffffffffffffff82166118895761185d83611ace565b61189283611ace565b610b9282611ace565b6000811180156118ce575073ffffffffffffffffffffffffffffffffffffffff8216600090815260106020526040902054155b1561195957600e805473ffffffffffffffffffffffffffffffffffffffff84166000818152600f60205260408120839055600183018455929092527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055611999565b8015801561198b575073ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604090205415155b156119995761199982611b27565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601060205260409020546011546119d1918391610618916119fd565b60115573ffffffffffffffffffffffffffffffffffffffff909116600090815260106020526040902055565b6000611627828461206e565b81546000908103611a1c575060006104e4565b82546000905b80821015611a78576000611a368383611cb1565b905084868281548110611a4b57611a4b61203f565b90600052602060002001541115611a6457809150611a72565b611a6f816001612027565b92505b50611a22565b600082118015611aad57508385611a9060018561206e565b81548110611aa057611aa061203f565b9060005260206000200154145b15611ac657611abd60018361206e565b925050506104e4565b5090506104e4565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260136020908152604080832060108352818420546006909352922054610aa09291611b1491610618565b611ccc565b6109776014611b14600a5490565b600e8054611b379060019061206e565b81548110611b4757611b4761203f565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff8481168452600f909252604090922054600e80549290931692918110611b9257611b9261203f565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559183168152600f918290526040812054600e805491939291611c039060019061206e565b81548110611c1357611c1361203f565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902055600e805480611c5657611c56612085565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905501905550565b6000611cc060028484186120b4565b61162790848416612027565b6000611cd66117d4565b905080611ce284611d16565b1015610b92578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b80546000908103611d2957506000919050565b81548290611d399060019061206e565b81548110611d4957611d4961203f565b90600052602060002001549050919050565b600060208083528351808285015260005b81811015611d8857858101830151858201604001528201611d6c565b81811115611d9a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610aa057600080fd5b60008060408385031215611e0357600080fd5b8235611e0e81611dce565b946020939093013593505050565b600080600060608486031215611e3157600080fd5b8335611e3c81611dce565b92506020840135611e4c81611dce565b929592945050506040919091013590565b600060208284031215611e6f57600080fd5b813561162781611dce565b8015158114610aa057600080fd5b60008060408385031215611e9b57600080fd5b8235611ea681611dce565b91506020830135611eb681611e7a565b809150509250929050565b600060208284031215611ed357600080fd5b5035919050565b60008060408385031215611eed57600080fd5b823591506020830135611eb681611dce565b60008060408385031215611f1257600080fd5b8235611f1d81611dce565b91506020830135611eb681611dce565b600080600060608486031215611f4257600080fd5b8335611f4d81611dce565b9250602084013591506040840135611f6481611dce565b809150509250925092565b600181811c90821680611f8357607f821691505b602082108103611fbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215611fd457600080fd5b5051919050565b600060208284031215611fed57600080fd5b815161162781611e7a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561203a5761203a611ff8565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008282101561208057612080611ff8565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000826120ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122074cabb7fa7c1d0da5b9ae83cb3ff402487ac7618c5f88be3659d5a89c5d8180f64736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101b95760003560e01c806382ccff89116100f9578063a0558c3f11610097578063dd62ed3e11610071578063dd62ed3e146103c2578063f2fde38b14610408578063f3290d751461041b578063f8a67a621461042e57600080fd5b8063a0558c3f14610389578063a457c2d71461039c578063a9059cbb146103af57600080fd5b806395d89b41116100d357806395d89b41146103465780639711715a1461034e578063981b24d01461035657806398807d841461036957600080fd5b806382ccff89146102e1578063893d20e8146102e95780638da5cb5b1461032857600080fd5b80633bf33976116101665780636ed52e68116101405780636ed52e681461028757806370a082311461029a578063715018a6146102d0578063817b1cd2146102d857600080fd5b80633bf339761461024c578063537df3b61461025f5780636baa9a571461027457600080fd5b806323b872dd1161019757806323b872dd14610211578063313ce56714610224578063395093511461023957600080fd5b806306fdde03146101be578063095ea7b3146101dc57806318160ddd146101ff575b600080fd5b6101c6610441565b6040516101d39190611d5b565b60405180910390f35b6101ef6101ea366004611df0565b6104d3565b60405190151581526020016101d3565b600a545b6040519081526020016101d3565b6101ef61021f366004611e1c565b6104ea565b600b5460405160ff90911681526020016101d3565b6101ef610247366004611df0565b610560565b61020361025a366004611df0565b6105a3565b61027261026d366004611e5d565b61062e565b005b610203610282366004611e5d565b6107db565b610272610295366004611e88565b610815565b6102036102a8366004611e5d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b6102726108ec565b61020360115481565b610203610979565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d3565b60005473ffffffffffffffffffffffffffffffffffffffff16610303565b6101c6610a08565b610272610a17565b610203610364366004611ec1565b610aa3565b610203610377366004611e5d565b60106020526000908152604090205481565b610272610397366004611eda565b610ace565b6101ef6103aa366004611df0565b610b97565b6101ef6103bd366004611df0565b610bf3565b6102036103d0366004611eff565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205490565b610272610416366004611e5d565b610c00565b610272610429366004611e5d565b610d2d565b61027261043c366004611f2d565b610e8d565b6060600d805461045090611f6f565b80601f016020809104026020016040519081016040528092919081815260200182805461047c90611f6f565b80156104c95780601f1061049e576101008083540402835291602001916104c9565b820191906000526020600020905b8154815290600101906020018083116104ac57829003601f168201915b5050505050905090565b60006104e03384846110d4565b5060015b92915050565b60006104f7848484611288565b6105568433610551856040518060600160405280602881526020016120f06028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260096020908152604080832033845290915290205491906115d5565b6110d4565b5060019392505050565b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104e0918590610551908661161b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601360205260408120819081906105d790859061162e565b91509150816106235773ffffffffffffffffffffffffffffffffffffffff851660009081526010602090815260408083205460069092529091205461061e91905b9061161b565b610625565b805b95945050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff1661078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604c60248201527f4164647265737320686173206e6f74206265656e20626c61636b6c697374656460448201527f2120456e74657220616e20616464726573732074686174206973206f6e20746860648201527f6520626c61636b6c6973742e0000000000000000000000000000000000000000608482015260a4016106ab565b73ffffffffffffffffffffffffffffffffffffffff16600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602090815260408083205460109092528220546104e49161161b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b610977600061175f565b565b6000805473ffffffffffffffffffffffffffffffffffffffff1633146109fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b610a036117d4565b905090565b6060600c805461045090611f6f565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b610aa06117df565b50565b6000806000610ab384601461162e565b9150915081610ac457600a54610ac6565b805b949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b60405173ffffffffffffffffffffffffffffffffffffffff82169083156108fc029084906000818181858888f19350505050158015610b92573d6000803e3d6000fd5b505050565b60006104e033846105518560405180606001604052806025815260200161213e6025913933600090815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d16845290915290205491906115d5565b60006104e0338484611288565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff8116610d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ab565b610aa08161175f565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604090205460ff1615610e3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4164647265737320697320616c726561647920626c61636b6c6973746564210060448201526064016106ab565b73ffffffffffffffffffffffffffffffffffffffff16600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ab565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610f7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9e9190611fc2565b1015611035576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561100e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110329190611fc2565b91505b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af11580156110aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190611fdb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611176576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8216611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff82166113ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205460ff161561140157600080fd5b61140c838383611839565b611456816040518060600160405280602681526020016121186026913973ffffffffffffffffffffffffffffffffffffffff861660009081526006602052604090205491906115d5565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600660205260408082209390935590841681522054611492908261161b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602090815260408083209390935560089052205460ff161561150a5773ffffffffffffffffffffffffffffffffffffffff83166000908152601060205260408120546114fc908361161b565b9050611508848261189b565b505b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16156115765773ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604081205461156890836119fd565b9050611574838261189b565b505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127b91815260200190565b60008184841115611613576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab9190611d5b565b505050900390565b60006116278284612027565b9392505050565b6000806000841161169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a20696420697320300000000000000000000060448201526064016106ab565b6116a36117d4565b84111561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e7420696400000060448201526064016106ab565b60006117188486611a09565b84549091508103611730576000809250925050611758565b60018460010182815481106117475761174761203f565b906000526020600020015492509250505b9250929050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a0360125490565b60006117ef601280546001019055565b60006117f96117d4565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161182c91815260200190565b60405180910390a1919050565b73ffffffffffffffffffffffffffffffffffffffff83166118655761185d82611ace565b610b92611b19565b73ffffffffffffffffffffffffffffffffffffffff82166118895761185d83611ace565b61189283611ace565b610b9282611ace565b6000811180156118ce575073ffffffffffffffffffffffffffffffffffffffff8216600090815260106020526040902054155b1561195957600e805473ffffffffffffffffffffffffffffffffffffffff84166000818152600f60205260408120839055600183018455929092527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055611999565b8015801561198b575073ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604090205415155b156119995761199982611b27565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601060205260409020546011546119d1918391610618916119fd565b60115573ffffffffffffffffffffffffffffffffffffffff909116600090815260106020526040902055565b6000611627828461206e565b81546000908103611a1c575060006104e4565b82546000905b80821015611a78576000611a368383611cb1565b905084868281548110611a4b57611a4b61203f565b90600052602060002001541115611a6457809150611a72565b611a6f816001612027565b92505b50611a22565b600082118015611aad57508385611a9060018561206e565b81548110611aa057611aa061203f565b9060005260206000200154145b15611ac657611abd60018361206e565b925050506104e4565b5090506104e4565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260136020908152604080832060108352818420546006909352922054610aa09291611b1491610618565b611ccc565b6109776014611b14600a5490565b600e8054611b379060019061206e565b81548110611b4757611b4761203f565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff8481168452600f909252604090922054600e80549290931692918110611b9257611b9261203f565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559183168152600f918290526040812054600e805491939291611c039060019061206e565b81548110611c1357611c1361203f565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902055600e805480611c5657611c56612085565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905501905550565b6000611cc060028484186120b4565b61162790848416612027565b6000611cd66117d4565b905080611ce284611d16565b1015610b92578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b80546000908103611d2957506000919050565b81548290611d399060019061206e565b81548110611d4957611d4961203f565b90600052602060002001549050919050565b600060208083528351808285015260005b81811015611d8857858101830151858201604001528201611d6c565b81811115611d9a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610aa057600080fd5b60008060408385031215611e0357600080fd5b8235611e0e81611dce565b946020939093013593505050565b600080600060608486031215611e3157600080fd5b8335611e3c81611dce565b92506020840135611e4c81611dce565b929592945050506040919091013590565b600060208284031215611e6f57600080fd5b813561162781611dce565b8015158114610aa057600080fd5b60008060408385031215611e9b57600080fd5b8235611ea681611dce565b91506020830135611eb681611e7a565b809150509250929050565b600060208284031215611ed357600080fd5b5035919050565b60008060408385031215611eed57600080fd5b823591506020830135611eb681611dce565b60008060408385031215611f1257600080fd5b8235611f1d81611dce565b91506020830135611eb681611dce565b600080600060608486031215611f4257600080fd5b8335611f4d81611dce565b9250602084013591506040840135611f6481611dce565b809150509250925092565b600181811c90821680611f8357607f821691505b602082108103611fbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215611fd457600080fd5b5051919050565b600060208284031215611fed57600080fd5b815161162781611e7a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561203a5761203a611ff8565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008282101561208057612080611ff8565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000826120ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122074cabb7fa7c1d0da5b9ae83cb3ff402487ac7618c5f88be3659d5a89c5d8180f64736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $672.5 | 0.4949 | $332.82 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.