Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17548017 | 506 days ago | IN | 0 ETH | 0.00037746 | ||||
Approve | 17547678 | 506 days ago | IN | 0 ETH | 0.00059402 | ||||
Approve | 17547661 | 506 days ago | IN | 0 ETH | 0.00074078 | ||||
Approve | 17547660 | 506 days ago | IN | 0 ETH | 0.00072273 | ||||
Approve | 17547658 | 506 days ago | IN | 0 ETH | 0.00069433 | ||||
Approve | 17547655 | 506 days ago | IN | 0 ETH | 0.00073437 | ||||
Approve | 17547653 | 506 days ago | IN | 0 ETH | 0.00069192 | ||||
Approve | 17547650 | 506 days ago | IN | 0 ETH | 0.00071463 | ||||
Approve | 17547649 | 506 days ago | IN | 0 ETH | 0.00070985 | ||||
Approve | 17547639 | 506 days ago | IN | 0 ETH | 0.01467356 | ||||
0x60806040 | 17547624 | 506 days ago | IN | 0 ETH | 0.02341867 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
rareCoin
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* A candy that is packed with energy. When consumed, it will instantly raise the level of a single crypto-purchasing degenerate by one. https://t.me/rarecandyPortal */ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract rareCoin is Ownable, ERC20 { bool public limited; uint256 public constant INITIAL_SUPPLY = 1_000_000_000 * 10**18; uint8 public buyTax = 15; uint8 public sellTax = 15; address public uniswapV2Pair; address private feesWallet; constructor() ERC20("Rare Candy", "RARE") { _mint(msg.sender, INITIAL_SUPPLY); feesWallet = msg.sender; } function setRule(bool _limited, address _uniswapV2Pair) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; } function setFees(uint8 newBuy, uint8 newSell) external onlyOwner { buyTax = newBuy; sellTax = newSell; } function setFeesWallet(address wallet) external onlyOwner { feesWallet = wallet; } function _transfer( address from, address to, uint256 amount ) internal virtual override { if (limited) { if (from == uniswapV2Pair) { transferWithFees(from, to, amount, buyTax); } else if (to == uniswapV2Pair) { transferWithFees(from, to, amount, sellTax); } else { super._transfer(from, to, amount); } } else { super._transfer(from, to, amount); } } function transferWithFees( address from, address to, uint256 amount, uint8 percentage ) internal { uint256 tax = (amount * percentage) / 100; uint256 netAmount = amount - tax; super._transfer(from, to, netAmount); super._transfer(from, feesWallet, tax); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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/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 (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.9.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": false, "runs": 200 }, "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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"newBuy","type":"uint8"},{"internalType":"uint8","name":"newSell","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600f600660016101000a81548160ff021916908360ff160217905550600f600660026101000a81548160ff021916908360ff1602179055503480156200004957600080fd5b506040518060400160405280600a81526020017f526172652043616e6479000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5241524500000000000000000000000000000000000000000000000000000000815250620000d6620000ca6200016160201b60201c565b6200016960201b60201c565b8160049081620000e791906200061f565b508060059081620000f991906200061f565b5050506200011a336b033b2e3c9fd0803ce80000006200022d60201b60201c565b33600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000821565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002969062000767565b60405180910390fd5b620002b3600083836200039b60201b60201c565b8060036000828254620002c79190620007b8565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037b919062000804565b60405180910390a36200039760008383620003a060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042757607f821691505b6020821081036200043d576200043c620003df565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004a77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000468565b620004b3868362000468565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000500620004fa620004f484620004cb565b620004d5565b620004cb565b9050919050565b6000819050919050565b6200051c83620004df565b620005346200052b8262000507565b84845462000475565b825550505050565b600090565b6200054b6200053c565b6200055881848462000511565b505050565b5b8181101562000580576200057460008262000541565b6001810190506200055e565b5050565b601f821115620005cf57620005998162000443565b620005a48462000458565b81016020851015620005b4578190505b620005cc620005c38562000458565b8301826200055d565b50505b505050565b600082821c905092915050565b6000620005f460001984600802620005d4565b1980831691505092915050565b60006200060f8383620005e1565b9150826002028217905092915050565b6200062a82620003a5565b67ffffffffffffffff811115620006465762000645620003b0565b5b6200065282546200040e565b6200065f82828562000584565b600060209050601f83116001811462000697576000841562000682578287015190505b6200068e858262000601565b865550620006fe565b601f198416620006a78662000443565b60005b82811015620006d157848901518255600182019150602085019450602081019050620006aa565b86831015620006f15784890151620006ed601f891682620005e1565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200074f601f8362000706565b91506200075c8262000717565b602082019050919050565b60006020820190508181036000830152620007828162000740565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007c582620004cb565b9150620007d283620004cb565b9250828201905080821115620007ed57620007ec62000789565b5b92915050565b620007fe81620004cb565b82525050565b60006020820190506200081b6000830184620007f3565b92915050565b611bc780620008316000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610357578063a9059cbb14610387578063cc1776d3146103b7578063dd62ed3e146103d5578063f2fde38b14610405578063f48ef4ff1461042157610142565b806370a08231146102c3578063715018a6146102f3578063860a32ec146102fd5780638da5cb5b1461031b57806395d89b411461033957610142565b8063313ce5671161010a578063313ce56714610201578063395093511461021f57806343d4f92b1461024f57806349bd5a5e1461026b5780634f7041a5146102895780634fcd2446146102a757610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632ff2e9dc146101e3575b600080fd5b61014f61043d565b60405161015c91906111ce565b60405180910390f35b61017f600480360381019061017a9190611289565b6104cf565b60405161018c91906112e4565b60405180910390f35b61019d6104f2565b6040516101aa919061130e565b60405180910390f35b6101cd60048036038101906101c89190611329565b6104fc565b6040516101da91906112e4565b60405180910390f35b6101eb61052b565b6040516101f8919061130e565b60405180910390f35b61020961053b565b6040516102169190611398565b60405180910390f35b61023960048036038101906102349190611289565b610544565b60405161024691906112e4565b60405180910390f35b610269600480360381019061026491906113b3565b61057b565b005b6102736105c7565b60405161028091906113ef565b60405180910390f35b6102916105ed565b60405161029e9190611398565b60405180910390f35b6102c160048036038101906102bc9190611436565b610600565b005b6102dd60048036038101906102d891906113b3565b610642565b6040516102ea919061130e565b60405180910390f35b6102fb61068b565b005b61030561069f565b60405161031291906112e4565b60405180910390f35b6103236106b2565b60405161033091906113ef565b60405180910390f35b6103416106db565b60405161034e91906111ce565b60405180910390f35b610371600480360381019061036c9190611289565b61076d565b60405161037e91906112e4565b60405180910390f35b6103a1600480360381019061039c9190611289565b6107e4565b6040516103ae91906112e4565b60405180910390f35b6103bf610807565b6040516103cc9190611398565b60405180910390f35b6103ef60048036038101906103ea9190611476565b61081a565b6040516103fc919061130e565b60405180910390f35b61041f600480360381019061041a91906113b3565b6108a1565b005b61043b600480360381019061043691906114e2565b610924565b005b60606004805461044c90611551565b80601f016020809104026020016040519081016040528092919081815260200182805461047890611551565b80156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b5050505050905090565b6000806104da61098b565b90506104e7818585610993565b600191505092915050565b6000600354905090565b60008061050761098b565b9050610514858285610b5c565b61051f858585610be8565b60019150509392505050565b6b033b2e3c9fd0803ce800000081565b60006012905090565b60008061054f61098b565b9050610570818585610561858961081a565b61056b91906115b1565b610993565b600191505092915050565b610583610d0a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900460ff1681565b610608610d0a565b81600660016101000a81548160ff021916908360ff16021790555080600660026101000a81548160ff021916908360ff1602179055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610693610d0a565b61069d6000610d88565b565b600660009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106ea90611551565b80601f016020809104026020016040519081016040528092919081815260200182805461071690611551565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b60008061077861098b565b90506000610786828661081a565b9050838110156107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c290611657565b60405180910390fd5b6107d88286868403610993565b60019250505092915050565b6000806107ef61098b565b90506107fc818585610be8565b600191505092915050565b600660029054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a9610d0a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f906116e9565b60405180910390fd5b61092181610d88565b50565b61092c610d0a565b81600660006101000a81548160ff02191690831515021790555080600660036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f99061177b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061180d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4f919061130e565b60405180910390a3505050565b6000610b68848461081a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be25781811015610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90611879565b60405180910390fd5b610be18484848403610993565b5b50505050565b600660009054906101000a900460ff1615610cf957600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7257610c6d838383600660019054906101000a900460ff16610e4c565b610cf4565b600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce757610ce2838383600660029054906101000a900460ff16610e4c565b610cf3565b610cf2838383610ebb565b5b5b610d05565b610d04838383610ebb565b5b505050565b610d1261098b565b73ffffffffffffffffffffffffffffffffffffffff16610d306106b2565b73ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906118e5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060648260ff1684610e5f9190611905565b610e699190611976565b905060008184610e7991906119a7565b9050610e86868683610ebb565b610eb386600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ebb565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190611a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090611adf565b60405180910390fd5b610fa4838383611134565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290611b71565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111b919061130e565b60405180910390a361112e848484611139565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117857808201518184015260208101905061115d565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a08261113e565b6111aa8185611149565b93506111ba81856020860161115a565b6111c381611184565b840191505092915050565b600060208201905081810360008301526111e88184611195565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611220826111f5565b9050919050565b61123081611215565b811461123b57600080fd5b50565b60008135905061124d81611227565b92915050565b6000819050919050565b61126681611253565b811461127157600080fd5b50565b6000813590506112838161125d565b92915050565b600080604083850312156112a05761129f6111f0565b5b60006112ae8582860161123e565b92505060206112bf85828601611274565b9150509250929050565b60008115159050919050565b6112de816112c9565b82525050565b60006020820190506112f960008301846112d5565b92915050565b61130881611253565b82525050565b600060208201905061132360008301846112ff565b92915050565b600080600060608486031215611342576113416111f0565b5b60006113508682870161123e565b93505060206113618682870161123e565b925050604061137286828701611274565b9150509250925092565b600060ff82169050919050565b6113928161137c565b82525050565b60006020820190506113ad6000830184611389565b92915050565b6000602082840312156113c9576113c86111f0565b5b60006113d78482850161123e565b91505092915050565b6113e981611215565b82525050565b600060208201905061140460008301846113e0565b92915050565b6114138161137c565b811461141e57600080fd5b50565b6000813590506114308161140a565b92915050565b6000806040838503121561144d5761144c6111f0565b5b600061145b85828601611421565b925050602061146c85828601611421565b9150509250929050565b6000806040838503121561148d5761148c6111f0565b5b600061149b8582860161123e565b92505060206114ac8582860161123e565b9150509250929050565b6114bf816112c9565b81146114ca57600080fd5b50565b6000813590506114dc816114b6565b92915050565b600080604083850312156114f9576114f86111f0565b5b6000611507858286016114cd565b92505060206115188582860161123e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156957607f821691505b60208210810361157c5761157b611522565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115bc82611253565b91506115c783611253565b92508282019050808211156115df576115de611582565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611641602583611149565b915061164c826115e5565b604082019050919050565b6000602082019050818103600083015261167081611634565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116d3602683611149565b91506116de82611677565b604082019050919050565b60006020820190508181036000830152611702816116c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611765602483611149565b915061177082611709565b604082019050919050565b6000602082019050818103600083015261179481611758565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117f7602283611149565b91506118028261179b565b604082019050919050565b60006020820190508181036000830152611826816117ea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611863601d83611149565b915061186e8261182d565b602082019050919050565b6000602082019050818103600083015261189281611856565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118cf602083611149565b91506118da82611899565b602082019050919050565b600060208201905081810360008301526118fe816118c2565b9050919050565b600061191082611253565b915061191b83611253565b925082820261192981611253565b915082820484148315176119405761193f611582565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061198182611253565b915061198c83611253565b92508261199c5761199b611947565b5b828204905092915050565b60006119b282611253565b91506119bd83611253565b92508282039050818111156119d5576119d4611582565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a37602583611149565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602383611149565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b5b602683611149565b9150611b6682611aff565b604082019050919050565b60006020820190508181036000830152611b8a81611b4e565b905091905056fea264697066735822122057daa6d6054a25715dcc9fb6a13ae728e1d63859c67b072c47860cbeace0fa7564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610357578063a9059cbb14610387578063cc1776d3146103b7578063dd62ed3e146103d5578063f2fde38b14610405578063f48ef4ff1461042157610142565b806370a08231146102c3578063715018a6146102f3578063860a32ec146102fd5780638da5cb5b1461031b57806395d89b411461033957610142565b8063313ce5671161010a578063313ce56714610201578063395093511461021f57806343d4f92b1461024f57806349bd5a5e1461026b5780634f7041a5146102895780634fcd2446146102a757610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632ff2e9dc146101e3575b600080fd5b61014f61043d565b60405161015c91906111ce565b60405180910390f35b61017f600480360381019061017a9190611289565b6104cf565b60405161018c91906112e4565b60405180910390f35b61019d6104f2565b6040516101aa919061130e565b60405180910390f35b6101cd60048036038101906101c89190611329565b6104fc565b6040516101da91906112e4565b60405180910390f35b6101eb61052b565b6040516101f8919061130e565b60405180910390f35b61020961053b565b6040516102169190611398565b60405180910390f35b61023960048036038101906102349190611289565b610544565b60405161024691906112e4565b60405180910390f35b610269600480360381019061026491906113b3565b61057b565b005b6102736105c7565b60405161028091906113ef565b60405180910390f35b6102916105ed565b60405161029e9190611398565b60405180910390f35b6102c160048036038101906102bc9190611436565b610600565b005b6102dd60048036038101906102d891906113b3565b610642565b6040516102ea919061130e565b60405180910390f35b6102fb61068b565b005b61030561069f565b60405161031291906112e4565b60405180910390f35b6103236106b2565b60405161033091906113ef565b60405180910390f35b6103416106db565b60405161034e91906111ce565b60405180910390f35b610371600480360381019061036c9190611289565b61076d565b60405161037e91906112e4565b60405180910390f35b6103a1600480360381019061039c9190611289565b6107e4565b6040516103ae91906112e4565b60405180910390f35b6103bf610807565b6040516103cc9190611398565b60405180910390f35b6103ef60048036038101906103ea9190611476565b61081a565b6040516103fc919061130e565b60405180910390f35b61041f600480360381019061041a91906113b3565b6108a1565b005b61043b600480360381019061043691906114e2565b610924565b005b60606004805461044c90611551565b80601f016020809104026020016040519081016040528092919081815260200182805461047890611551565b80156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b5050505050905090565b6000806104da61098b565b90506104e7818585610993565b600191505092915050565b6000600354905090565b60008061050761098b565b9050610514858285610b5c565b61051f858585610be8565b60019150509392505050565b6b033b2e3c9fd0803ce800000081565b60006012905090565b60008061054f61098b565b9050610570818585610561858961081a565b61056b91906115b1565b610993565b600191505092915050565b610583610d0a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900460ff1681565b610608610d0a565b81600660016101000a81548160ff021916908360ff16021790555080600660026101000a81548160ff021916908360ff1602179055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610693610d0a565b61069d6000610d88565b565b600660009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106ea90611551565b80601f016020809104026020016040519081016040528092919081815260200182805461071690611551565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b60008061077861098b565b90506000610786828661081a565b9050838110156107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c290611657565b60405180910390fd5b6107d88286868403610993565b60019250505092915050565b6000806107ef61098b565b90506107fc818585610be8565b600191505092915050565b600660029054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a9610d0a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f906116e9565b60405180910390fd5b61092181610d88565b50565b61092c610d0a565b81600660006101000a81548160ff02191690831515021790555080600660036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f99061177b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061180d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4f919061130e565b60405180910390a3505050565b6000610b68848461081a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be25781811015610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90611879565b60405180910390fd5b610be18484848403610993565b5b50505050565b600660009054906101000a900460ff1615610cf957600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7257610c6d838383600660019054906101000a900460ff16610e4c565b610cf4565b600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce757610ce2838383600660029054906101000a900460ff16610e4c565b610cf3565b610cf2838383610ebb565b5b5b610d05565b610d04838383610ebb565b5b505050565b610d1261098b565b73ffffffffffffffffffffffffffffffffffffffff16610d306106b2565b73ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906118e5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060648260ff1684610e5f9190611905565b610e699190611976565b905060008184610e7991906119a7565b9050610e86868683610ebb565b610eb386600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ebb565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190611a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090611adf565b60405180910390fd5b610fa4838383611134565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290611b71565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111b919061130e565b60405180910390a361112e848484611139565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117857808201518184015260208101905061115d565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a08261113e565b6111aa8185611149565b93506111ba81856020860161115a565b6111c381611184565b840191505092915050565b600060208201905081810360008301526111e88184611195565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611220826111f5565b9050919050565b61123081611215565b811461123b57600080fd5b50565b60008135905061124d81611227565b92915050565b6000819050919050565b61126681611253565b811461127157600080fd5b50565b6000813590506112838161125d565b92915050565b600080604083850312156112a05761129f6111f0565b5b60006112ae8582860161123e565b92505060206112bf85828601611274565b9150509250929050565b60008115159050919050565b6112de816112c9565b82525050565b60006020820190506112f960008301846112d5565b92915050565b61130881611253565b82525050565b600060208201905061132360008301846112ff565b92915050565b600080600060608486031215611342576113416111f0565b5b60006113508682870161123e565b93505060206113618682870161123e565b925050604061137286828701611274565b9150509250925092565b600060ff82169050919050565b6113928161137c565b82525050565b60006020820190506113ad6000830184611389565b92915050565b6000602082840312156113c9576113c86111f0565b5b60006113d78482850161123e565b91505092915050565b6113e981611215565b82525050565b600060208201905061140460008301846113e0565b92915050565b6114138161137c565b811461141e57600080fd5b50565b6000813590506114308161140a565b92915050565b6000806040838503121561144d5761144c6111f0565b5b600061145b85828601611421565b925050602061146c85828601611421565b9150509250929050565b6000806040838503121561148d5761148c6111f0565b5b600061149b8582860161123e565b92505060206114ac8582860161123e565b9150509250929050565b6114bf816112c9565b81146114ca57600080fd5b50565b6000813590506114dc816114b6565b92915050565b600080604083850312156114f9576114f86111f0565b5b6000611507858286016114cd565b92505060206115188582860161123e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156957607f821691505b60208210810361157c5761157b611522565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115bc82611253565b91506115c783611253565b92508282019050808211156115df576115de611582565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611641602583611149565b915061164c826115e5565b604082019050919050565b6000602082019050818103600083015261167081611634565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116d3602683611149565b91506116de82611677565b604082019050919050565b60006020820190508181036000830152611702816116c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611765602483611149565b915061177082611709565b604082019050919050565b6000602082019050818103600083015261179481611758565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117f7602283611149565b91506118028261179b565b604082019050919050565b60006020820190508181036000830152611826816117ea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611863601d83611149565b915061186e8261182d565b602082019050919050565b6000602082019050818103600083015261189281611856565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118cf602083611149565b91506118da82611899565b602082019050919050565b600060208201905081810360008301526118fe816118c2565b9050919050565b600061191082611253565b915061191b83611253565b925082820261192981611253565b915082820484148315176119405761193f611582565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061198182611253565b915061198c83611253565b92508261199c5761199b611947565b5b828204905092915050565b60006119b282611253565b91506119bd83611253565b92508282039050818111156119d5576119d4611582565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a37602583611149565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602383611149565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b5b602683611149565b9150611b6682611aff565b604082019050919050565b60006020820190508181036000830152611b8a81611b4e565b905091905056fea264697066735822122057daa6d6054a25715dcc9fb6a13ae728e1d63859c67b072c47860cbeace0fa7564736f6c63430008120033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.